.help-block {
    color: indianred !important;
    font-size: 12px;
    padding: 5px;
}

.w-100 { width: 100% }

.popup-overlay {
    background: rgba(0, 22, 2, 0.8);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    overflow-y: scroll;
    visibility: hidden;
    opacity: 0;
    transition: all .35s ease-in-out;
}

@media (max-width: 993px) {
    .popup-overlay {
        display: block;
    }
}

.popup-overlay.popup-overflow {
    margin: auto;
    width: 100%;
    padding: 250px 0 50px;
    transition: all .35s ease-in-out;
}

@media (max-width: 993px) {
    .popup-overlay.popup-overflow {
        padding: 0;
    }
}

.popup-overlay.visible {
    visibility: visible;
    opacity: 1;
    z-index: 999999;
}

.popup-overlay.visible .popup-overflow {
    padding: 50px 0 50px;
}

@media (max-width: 993px) {
    .popup-overlay.visible .popup-overflow {
        padding: 0;
    }
}

.popup-overlay .popup-frame {
    width: 993px;
    background: #F6F6F6;
    margin: 0 auto;
    box-shadow: 11px 40px 38px rgba(38, 40, 39, 0.35);
    border-radius: 18px;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
}

@media (max-width: 993px) {
    .popup-overlay .popup-frame {
        width: 100%;
        border-radius: 0;
        min-height: 100vh;
    }
}

.popup-overlay .popup-image {
    width: 400px;
    min-height: 512px;
    background-size: cover;
    background-position: left center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: end;
    align-items: flex-end;
    padding: 40px 15px;
}

@media (max-width: 993px) {
    .popup-overlay .popup-image {
        display: none;
    }
}

.popup-overlay .points {
    background: linear-gradient(180deg, #ffffff 23.96%, #f2f2f2 77.08%);
    box-shadow: 0 24px 34px rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 5px 16px;
}

.popup-overlay .points li {
    position: relative;
    margin: 20px 0;
    font-size: 15px;
    color: #4D5C4E;
    padding-left: 29px;
    line-height: 1.4;
}

.popup-overlay .points li strong {
    font-weight: 700;
}

.popup-overlay .points li:before {
    position: absolute;
    content: '';
    background: url(../images/check.svg) no-repeat center/contain;
    width: 20px;
    height: 20px;
    left: 0;
    top: 50%;
    margin-top: -10px;
}

.popup-overlay .popup-content {
    padding: 40px;
    width: calc(100% - 400px);
}


.popup-overlay .popup-content .mobile {
    display: none;
}

.popup-overlay .popup-content .desktop {
    display: block;
}

@media (max-width: 993px) {
    .popup-overlay .popup-content {
        width: 100%;
        padding: 30px 20px 100px;
    }

    .popup-overlay .popup-content .mobile {
        display: block;
    }

    .popup-overlay .popup-content .desktop {
        display: none;
    }
}

.popup-overlay .popup-content header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 100%;
}

.popup-overlay .popup-content header h2 {
    font-size: 24px;
    font-weight: 700;
}

.popup-overlay .popup-content header h2.success {
    position: relative;
    padding-top: 55px;
}

.popup-overlay .popup-content header h2.success:before {
    position: absolute;
    content: '';
    background: url(../images/check.svg) no-repeat center/contain;
    width: 40px;
    height: 40px;
    top: 0;
    left: 0;
}

.popup-overlay .popup-content header .close-popup {
    background: url(../images/close.svg) no-repeat center/contain;
    width: 32px;
    height: 32px;
    display: inline-block;
    cursor: pointer;
}

.popup-overlay .popup-content form h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 30px 0 10px;
}

.popup-overlay .popup-content form .points {
    margin: 40px 0;
}

@media (min-width: 994px) {
    .popup-overlay .popup-content form .points {
        display: none;
    }
}

@media (max-width: 993px) {
    .popup-overlay .popup-content form .form-btn {
        position: fixed;
        background: #fff;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 20px;
        margin: 0;
        box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.16);
    }
}

.popup-overlay .popup-content .alert {
    background: #E6F1FD;
    border-radius: 8px;
    padding: 16px 16px 16px 50px;
    margin: 25px 0;
    color: #003874;
    line-height: 1.3;
    font-size: 15px;
    position: relative;
}

.popup-overlay .popup-content .alert:before {
    position: absolute;
    content: '';
    background: url(../images/icon-info.svg) no-repeat center/contain;
    width: 24px;
    height: 24px;
    top: 16px;
    left: 16px;
}

.popup-overlay .form-success-btns {
    background: #fff;
    box-shadow: 0 24px 34px rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 5px 16px;
    margin: 70px 0 30px;
}

.popup-overlay .form-success-btns strong {
    font-size: 18px;
    font-weight: 700;
    margin: 15px 0 20px 0;
    display: block;
}

.popup-overlay .form-success-btns .btn {
    width: 100%;
    display: block;
    height: 45px;
    line-height: 45px;
    font-size: 15px;
    margin: 10px 0;
    text-align: center;
}

.popup-overlay .popup-form {
    display: block;
}

.popup-overlay .popup-form.hide {
    display: none;
}

.popup-overlay .popup-success {
    display: none;
    padding-top: 50px;
}

.popup-overlay .popup-success.visible {
    display: block;
}

.popup-overlay .help-block {
    color: indianred !important;
    font-size: 12px;
    margin-top: 3px;
    margin-bottom: -10px;
}

.clearfix:after {
    clear: both;
    display: table;
    content: '';
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.form-row {
    margin: 18px 0;
}

.textbox, .select-styled select {
    background-color: #fff;
    border: 1px solid rgba(0, 22, 2, 0.08);
    border-radius: 8px;
    height: 48px;
    width: 100%;
    padding: 0 20px;
    font-size: 14px;
    font-weight: 500;
    transition: all .25s ease-in-out;
}

.textbox:focus, .select-styled select:focus {
    border-color: rgba(84, 176, 73, 0.7);
}

.textbox[name="name"], .select-styled select[name="name"] {
    background: url(../images/icon-name.svg) no-repeat 20px center;
    background-color: #fff;
    padding-left: 50px;
}

.textbox[name="email"], .select-styled select[name="email"] {
    background: url(../images/icon-email.svg) no-repeat 20px center;
    background-color: #fff;
    padding-left: 50px;
}

.textbox[name="phone"], .select-styled select[name="phone"] {
    background: url(../images/icon-phone.svg) no-repeat 20px center;
    background-color: #fff;
    padding-left: 50px;
}

.checkbox-styled {
    position: relative;
    cursor: pointer;
    width: 100%;
}

.checkbox-styled input {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    opacity: 0;
}

.checkbox-styled i {
    border: 2px solid rgba(0, 22, 2, 0.16);
    border-radius: 6px;
    width: 24px;
    height: 24px;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    overflow: hidden;
    transition: all .25s ease-in-out;
}

.checkbox-styled i:before {
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    position: absolute;
    content: '';
    background: url(../images/check.svg) center no-repeat;
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transition: all .25s ease-in-out;
}

.checkbox-styled input:checked ~ i {
    border-color: #34870B;
}

.checkbox-styled input:checked ~ i:before {
    opacity: 1;
    visibility: visible;
}

.checkbox-styled span {
    vertical-align: middle;
    display: inline-block;
    width: calc(100% - 30px);
    padding: 0 0 0 15px;
    font-size: 14px;
    line-height: 1.4;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.2;
}

@media (max-width: 620px) {
    .section-title {
        font-size: 32px;
        text-align: center;
    }
}

.select-styled {
    position: relative;
    width: 100%;
}

.select-styled:before {
    position: absolute;
    content: '';
    top: 50%;
    right: 20px;
    background: url(../images/select-arrow.svg);
    width: 10px;
    height: 14px;
    margin-top: -7px;
}

.select-styled select {
    -webkit-appearance: none;
    appearance: none;
}

.form-btn .btn {
    width: 100%;
    height: 45px;
    line-height: 45px;
    font-size: 14px;
}


.post__content__table {
    padding: 35px 65px 55px 100px;
    background: #ffffff;
    box-shadow: 0px 20px 50px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    margin: 70px 0;
}
.post__content__table.post__content__table--noPadding {
    padding: 0;
}
.post__content__table__heading {
    display: flex;
}
.post__content__table__heading p {
    font-weight: 500;
    font-size: 24px;
    line-height: 34px;
}
.post__content__table__row {
    display: flex;
}

.post__content__table__info {
    width: 60%;
    display: flex;
    flex-wrap: wrap;
}
.post__content__table__col {
    width: calc(100% / 6);
}
.post__content__table__col p {
    margin: 0;
    height: 34px;
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 34px;
    letter-spacing: 0.03em;
    color: #15b2ee;
    justify-content: center;
}
.post__content__table__col--first {
    width: 40%;
}
.post__content__table__col--first p {
    color: rgba(38, 50, 56, 0.7);
    justify-content: flex-start;
}
.post__content__table__col--borderRight {
    border-right: 1px solid #f3f3f3;
}
.post__content__table__button {
    margin-top: 50px;
    text-align: center;
}
.post__content__table__button .btn-outline-primary {
    color: #54b049;
}

.article-content h2 {
    font-style: normal;
    font-size: 24px;
}