.mws-row {
    display: flex;
    margin: 0 -15px;
    width: calc(100% + 30px);
    flex-wrap: wrap;
}

[class*="col-"] {
    padding: 0 15px;
}

.col-mws-lg-1 {
    width: 8.33333333%;
}
.col-mws-lg-2 {
    width: 16.66666667%;
}
.col-mws-lg-3 {
    width: 25%;
}
.col-mws-lg-4 {
    width: 33.33333333%;
}
.col-mws-lg-5 {
    width: 41.66666667%;
}
.col-mws-lg-6 {
    width: 50%;
}
.col-mws-lg-7 {
    width: 58.33333333%;
}
.col-mws-lg-8 {
    width: 66.66666667%;
}
.col-mws-lg-9 {
    width: 75%;
}
.col-mws-lg-10 {
    width: 83.33333333%;
}
.col-mws-lg-11 {
    width: 91.66666667%
}
.col-mws-lg-12 {
    width: 100%;
}


.calculator-content-section {
    margin: 70px 0 120px;
}

.calculator-content-section .calc-content-title {
    padding-left: 25px;
    margin-bottom: 30px;
}

.calc-title-decor {
    position: relative;
    padding-left: 25px;
}

.calc-title-decor p {
    margin-bottom: 0;
    max-width: 70%;
}

.calc-title-decor h2 {
    margin-bottom: 10px;
    font-size: 60px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.6px;
}

.calc-title-decor:before {
    content: "";
    display: block;
    width: 4px;
    height: 100%;
    background-color: #60A5D2;
    position: absolute;
    left: 0;
    top: 0;
}


.calculator-content-section .calc-content-title h2 {
    color: #444;
    font-size: 60px;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: capitalize;
    margin-bottom: 0;
}

.calculator-content-section .calc-content-title .subtitle {
    color: #60A5D2;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.2px;
    text-transform: capitalize;
}

.calculator-content-section .calc-content-description {
    margin-bottom: 40px;
}

.calculator-content-section .calc-content-description p {
    margin-bottom: 0;
}

.calculator-content-section .calc-statistic-block .mws-row {
    counter-reset: calc-card-counter;
}

.calculator-content-section .calc-statistic-block .calc-statistic-card {
    padding: 30px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0px 0px 40.8px 0px rgba(28, 36, 55, 0.13);
    margin-bottom: 30px;
    height: calc(100% - 30px);
}

.calculator-content-section .calc-statistic-block .calc-statistic-title {
    color:#60A5D2;
    font-size: 45px;
    font-weight: 600;
    letter-spacing: 0.45px;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.calculator-content-section .calc-statistic-block .calc-statistic-card .calc-card-title {
    color: #044A96;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.24px;
    text-transform: capitalize;
    margin-bottom: 23px;
    display: flex;
    align-items: center;
}

.calculator-content-section .calc-statistic-block .calc-statistic-card .calc-card-title:before {
    counter-increment: calc-card-counter;
    content: counter(calc-card-counter);
    display: block;
    height: 100%;
    font-size: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-right: 10px;
}

.calculator-content-section .calc-statistic-block .calc-statistic-card .calc-card-content h4 {
    color: #444;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.18px;
    text-transform: capitalize;
    margin-bottom: 10px;
}
.calculator-content-section .calc-statistic-block .calc-statistic-card .calc-card-content p {
    color: #444;
    font-size: 18px;;
    font-weight: 400;
    letter-spacing: 0.18px;
    margin-bottom: 20px;
}
.calculator-content-section .calc-statistic-block .calc-statistic-card .calc-card-content strong {
    color: #044A96;
}

.calc-reasons-section {
    margin: 120px 0 60px;
}

.calc-reasons-section .calc-title-decor {
    margin-bottom: 40px;
}

.calc-reasons-section .reason-item {
    margin-bottom: 60px;
}

.calc-reasons-section .reason-item .reason-item-title {
    color: #044A96;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.24px;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.calc-reasons-section .reason-item p {
    margin: 0;
}

.calc-reasons-section .calc-reasons-image img {
    width: 100%;
    height: 510px;
    object-fit: cover;
}

.calc-reasons-section .calc-reasons-image-tablet {
    display: none;
}





.calculator-container {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    max-width: 1600px;
    width: 100%;
    padding: 0 100px;
}

.calculator-section {
    margin: 120px 0 64px;
}

.calculator-section .calc-title-decor {
    margin-bottom: 48px;
}

.calculator-section * {
    box-sizing: border-box;
}

.calculator-section .row {
    display: flex;
    margin: 0 -42px;
    width: calc(100% + 84px);
}

.calculator-section .row .row-column {
    width: 50%;
    padding: 0 42px;
}

.calculator-section .calculator {
    padding: 50px;
    background-color: #F4F8FB;
    border-radius: 5px;
}

.calculator-section .calculator-field {
    width: 100%;
    margin: 0 -15px 30px;
    display: flex;
    justify-content: space-between;
}

.calculator-section .calculator-field-margin {
    margin-bottom: 20px;
}

.calculator-section .calculator-field:last-of-type {
    margin-bottom: 0;
}

.calculator-section .calculator-field .input-wrapper {
    max-width: 50%;
    width: 100%;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.calculator-section .calculator-field-full .input-wrapper {
    max-width: 100%;
}

.calculator-section .calculator-field label {
    margin-bottom: 17px;
    display: block;
    color: #044A96;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.calculator-section .calculator-field label .question {
    display: none;
}

.calculator-section .calculator-field:last-of-type .input-wrapper {
    max-width: 100%;
}

.calculator-section .calculator-field .input-wrapper input {
    max-width: 100%;
    height: 50px;
    padding: 0 15px;
    border-radius: 3px;
    box-shadow: 0px 2px 5px 0px rgba(28, 36, 55, 0.07);
    border: none;
    outline: none;
    width: 100%;
    color: #8F8F8F;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.18px;
}

.calculator-section .calculator-field .input-wrapper input::placeholder {
    color: #8F8F8F;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.18px;
}

.calculator-section .calculator-field .slider-buttons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 3px;
    background: #FFF;
    box-shadow: 0px 2px 5px 0px rgba(28, 36, 55, 0.07);
    height: 50px;
    padding: 0 2px;
}

.calculator-section .calculator-field .slider-buttons .slider-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    width: 12%;
    color: #444;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.2px;
    border-radius: 4px;
    cursor: pointer;

}

.calculator-section .calculator-field .slider-buttons .slider-button+.slider-button:before {
    content: "";
    display: block;
    width: 1px;
    height: 24px;
    background: #C2D1E0;
    position: relative;
    right: 35%;
    min-width: 1px;
}

.calculator-section .calculator-field .slider-buttons .slider-button.slider-button-active {
    background-color: #60A5D2;
    color: #fff;
    z-index: 1;
}

.calculator-section .calculator-field .slider-buttons .slider-button.no-before:before {
    opacity: 0;
}

.calculator-section .calculator-field .slider-buttons .slider-button.slider-button-active:before {
    display: none;
}

.calculator-section .result-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 3px;
    box-shadow: 0px 2px 5px 0px rgba(28, 36, 55, 0.07);
    padding: 20px;
    height: 101px;
    margin-bottom: 30px;
}

.calculator-section .result-wrapper:last-of-type {
    margin-bottom: 0;
}

.calculator-section .result-wrapper .answer-price-title {
    color: #444;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.24px;
    margin: 0;
}

.calculator-section .result-wrapper .price {
    color: #044A96;
    font-size: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.calculator-section .answer-subtitle {
    margin: 25px 0 100px;
    color: #444;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.18px;
}

.btns-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.btns-wrapper .btn {
    max-width: calc(50% - 10px);
    width: 100%;
    height: 63px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    border-radius: 3px;
    background: #044A96;
    color: #FFF;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
}

.btns-wrapper .btn:hover {
    background-color: #343b4d;
}

.btns-wrapper .btn-white {
    max-width: calc(50% - 10px);
    width: 100%;
    height: 63px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    border-radius: 3px;
    background: #fff;
    color: #044A96;
    border: 1px solid #044A96;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    transition: 0.3s;
}

.btns-wrapper .btn-white:hover {
    background-color: #044A96;
    color: #fff;
}

.banner-blog .banner-link {
    max-width: 250px;
    width: 100%;
    height: 63px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    border-radius: 3px;
    background: #fff;
    color: #044A96;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: 20px;
    text-transform: uppercase;
}

@media (max-width: 1024px) {
    .row {
        margin: 0 -12px;
        width: calc(100% + 24px);
    }
    .col-mws-md-1 {
        width: 8.33333333%;
    }
    .col-mws-md-2 {
        width: 16.66666667%;
    }
    .col-mws-md-3 {
        width: 25%;
    }
    .col-mws-md-4 {
        width: 33.33333333%;
    }
    .col-mws-md-5 {
        width: 41.66666667%;
    }
    .col-mws-md-6 {
        width: 50%;
    }
    .col-mws-md-7 {
        width: 58.33333333%;
    }
    .col-mws-md-8 {
        width: 66.66666667%;
    }
    .col-mws-md-9 {
        width: 75%;
    }
    .col-mws-md-10 {
        width: 83.33333333%;
    }
    .col-mws-md-11 {
        width: 91.66666667%
    }
    .col-mws-md-12 {
        width: 100%;
    }

    .calculator-content-section {
        margin: 70px 0 80px;
    }

    .calculator-container {
        padding: 0 50px;
    }

    .calculator-content-section .calc-content-title h2 {
        font-size: 40px;
    }

    .calculator-content-section .calc-statistic-block .calc-statistic-title {
        font-size: 30px;
    }

    .calc-title-decor h2 {
        font-size: 40px;
    }

    .calc-reasons-section .calc-reasons-image-tablet {
        display: block;
        margin-bottom: 20px;
    }

    .calc-reasons-section .calc-reasons-image-pc {
        display: none;
    }

    .calc-reasons-section {
        margin: 80px 0 40px;
    }

    .calculator-section {
        margin: 80px 0;
    }

    .calculator-section .row .row-column {
        width: 100%;
    }

    .calculator-section .calculator {
        margin-bottom: 40px;
    }

    .calculator-section .answer-subtitle {
        margin: 25px 0 60px;
    }

    .calc-reasons-section .reason-item {
        margin-bottom: 40px;
    }

    .calculator-content-section .calc-statistic-block .calc-statistic-card .calc-card-title {
        font-size: 24px;
    }

    .calculator-section .calculator-field .slider-buttons .slider-button+.slider-button:before {
        right: 45%;
    }
}

@media (max-width: 600px) {

    .mws-row {
        display: flex;
        margin: 0 -12px;
        width: calc(100% + 24px);
        flex-wrap: wrap;
    }

    [class*="col-"] {
        padding: 0 12px;
    }

    .col-mws-m-1 {
        width: 8.33333333%;
    }
    .col-mws-m-2 {
        width: 16.66666667%;
    }
    .col-mws-m-3 {
        width: 25%;
    }
    .col-mws-m-4 {
        width: 33.33333333%;
    }
    .col-mws-m-5 {
        width: 41.66666667%;
    }
    .col-mws-m-6 {
        width: 50%;
    }
    .col-mws-m-7 {
        width: 58.33333333%;
    }
    .col-mws-m-8 {
        width: 66.66666667%;
    }
    .col-mws-m-9 {
        width: 75%;
    }
    .col-mws-m-10 {
        width: 83.33333333%;
    }
    .col-mws-m-11 {
        width: 91.66666667%
    }
    .col-mws-m-12 {
        width: 100%;
    }

    .calculator-container {
        padding: 0 25px;
    }

    .calc-title-decor p {
        max-width: 100%;
    }

    .calc-title-decor h2 {
        line-height: 1.2;
        font-size: 28px;
    }

    .calculator-content-section {
        margin: 60px 0;
    }

    .calc-reasons-section {
        margin: 60px 0 20px;
    }

    .calculator-section {
        margin: 60px 0;
        overflow: hidden;
    }

    .calculator-section .calculator {
        padding: 25px;
    }

    .calculator-section .calculator-field .input-wrapper {
        max-width: 100%;
        margin-bottom: 24px;
        padding: 0;
    }

    .calculator-section .calculator-field {
        flex-wrap: wrap;
        margin: 0;
        width: initial;
    }

    .calculator-section .calculator-field .slider-buttons .slider-button {
        font-size: 16px;
    }

    .calculator-section .result-wrapper .answer-price-title {
        font-size: 20px;
        margin-bottom: 0!important;
        margin-right: 40px;
    }

    .calculator-section .result-wrapper .price {
        font-size: 30px;
    }

    .calculator-content-section .calc-statistic-block .calc-statistic-card {
        padding: 25px;
    }

    .calculator-content-section .calc-statistic-block .calc-statistic-card .calc-card-title {
        font-size: 20px;
    }

    .calculator-content-section .calc-statistic-block .calc-statistic-card .calc-card-content p {
        font-size: 16px;
    }

    .calculator-content-section .calc-statistic-block .calc-statistic-card .calc-card-content h4 {
        font-size: 16px;
    }
    .calculator-section .row .row-column {
        padding: 0 25px;
    }
}

@media (max-width: 400px) {
    .calculator-section .calculator-field .slider-buttons .slider-button {
        font-size: 14px;
    }
}