.calc-block {
    display: flex;
    flex-direction: column;
    position: relative;
    gap: 40px;
}
.calc-block__bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    z-index: 1;
}
.calc-block__bg-img {
    margin-left: auto;
    margin-right: auto;
}
.calc-block__form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 3;
}
.calc-block__section {
    align-self: stretch;
    position: relative;
    row-gap: 15px;
}
.calc-block__section_switch {
    row-gap: 44px;
}
.calc-block__switch {
    background: none;
    border: none;
    border-radius: 0;
    padding: 0;
    width: 30px;
    height: 30px;
    color: var(--color-dark);
    transition: color var(--animate);
    
    position: absolute;
    left: 50%;
    top: calc(100% + 10px);
    transform: translate(-50%,0) rotate(90deg);
    z-index: 3;
}
.calc-block__switch:hover {
    color: var(--color-primary);
}
.calc-block__btn {
    margin-top: 10px;
    width: 100%;
}
.calc-block__result {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 3;
}
.calc-block__result-title {
    font-weight: 500;
    font-size: 20px;
    line-height: 1.18;
    text-align: center;
}
.calc-block__result-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 460px;
    max-width: 100%;
}
.calc-block__result-logo {
    max-width: 80px;
}
.calc-block__result-btn {}
.calc-block_main {
    flex-direction: column-reverse;
}
@media screen and (min-width: 576px) {
    .calc-block__btn {
        width: auto;
    }
}
@media screen and (min-width: 768px) {
    .calc-block {
        padding: 30px;
        border: 1px solid var(--color-primary);
        border-radius: var(--radius-md);
        gap: 40px;
    }
    .calc-block_manager {
        padding: 30px;
        border: 1px solid var(--color-primary);
        border-radius: var(--radius-md);
        gap: 40px;
    }
    .calc-block__form {}
    .calc-block__section {
        margin-left: -26px;
        margin-right: -26px;
    }
    .calc-block__section > .col,
    .calc-block__section > [class*=col-] {
        padding-left: 26px;
        padding-right: 26px;
    }
    /*.calc-block__section_switch {
        row-gap: 44px;
    }*/
    .calc-block__result-title {
        font-weight: 700;
        font-size: 32px;
    }
}
@media screen and (min-width: 992px) {
    .calc-block__form {
        gap: 32px;
    }
    .calc-block__switch {
        left: 100%;
        top: 55px;
        transform: translate(-50%,0);
        
    }
}