

html, body {
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
    color: #000000;
    border: none;
}

button {
    cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
    display: block;
    font-family: 'Montserrat', sans-serif;
    text-transform: none;
    font-weight: 600;
    color: #0E0C0A;
}

h1 {
    font-size: 54px;
    line-height: 66px;
}

h2 {
    font-size: 42px;
    line-height: 51px;
}

h4 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
    color: #000000;
}

strong {
    font-weight: 700;
}

a, button {
    text-decoration: none;
    display: inline-block;
    transition: 0.4s;
}

a,
a:visited {
    color: #0ED19E;
}

a:hover,
a.active {
    color: #00976E;
}

.image {
    font-size: 0;
    line-height: 0;
}

img {
    width: 100%;
    max-width: 100%;
    border: none;
}

main {
    display: block;
}

section {
    position: relative;
}

.get-btn {
    width: 306px;
    height: 74px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    line-height: 29px;
    font-weight: 600;
    color: #FFFFFF;
    background-color: #0ED19E;
    border: none;
    border-radius: 5px;
    transition: 0.4s;
    text-decoration: none;
}

.get-btn:hover {
    background-color: #91E7CD;
}

.get-btn:disabled {
    background-color: #D0D2D7;
}

.get-btn:focus {
    background-color: #00976E;
}

.wrapper {
    width: 100%;
    max-width: 1580px;
    height: 100%;
    margin: 0 auto;
    padding: 0 50px;
}

.large {
    max-width: 1870px;
}

.flex-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.block-important {
    display: block !important;
}

.logo {
    width: 190px;
    min-width: 190px;
    height: 58px;
}


/*--------------- PREFORM ---------------*/

.preform {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    z-index: 3;
}

.preform .field-box {
    position: relative;
    margin: 0 46px 0 0;
}

.preform .field-box:nth-child(1) {
    position: relative;
}



.preform .field-box:nth-child(2) {
    width: 201px;
}

.preform .fieldText {
    width: 100%;
    height: 74px;
    background-color: #FFFFFF;
    border: 1px solid #49A58A;
    border-radius: 5px;
    padding: 25px 40px 25px 18px;
    font-size: 16px;
    line-height: 16px;
    color: #000000;
}

.preform .fieldText::placeholder {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preform .fieldText.input-error {
    background: url("../img/icon-error.svg") no-repeat 90% 50% #FFEFEB;
    background-size: 20px 20px;
    border-color: #FF6741;
}

.preform .fieldText.input-valid {
    background: url("../img/icon-valid.svg") no-repeat 90% 50% #ffffff;
    background-size: 20px 20px;
    border-color: #00976E;
}

.preform label,
.preform .select-helper {
    position: absolute;
    top: 25px;
    left: 20px;
    font-size: 20px;
    line-height: 24px;
    color: #656F72;
    transition: 0.4s;
    pointer-events: none;
}

.preform .select-helper {
    padding: 10px;
    top: 15px;
    left: 10px;
    background-color: #ffffff;
}

.preform .fieldText:focus ~ .select-helper,
.preform .fieldText:not(:placeholder-shown) ~ .select-helper {
    font-size: 11px;
    line-height: 13px;
    font-weight: 600;
    top: 6px;
    left: 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preform .fieldText:focus ~ label,
.preform .fieldText:not(:placeholder-shown) ~ label,
.preform .fieldText.input-error ~ label {
    font-size: 11px;
    line-height: 13px;
    font-weight: 600;
    top: 6px;
    left: 20px;
}

.preform .fieldText:focus ~ label {
    color: #000000;
}

.preform .fieldText.input-error ~ label {
    color: #FF6741;
}

.preform .zip-error {
    font-size: 13px;
    line-height: 18px;
    font-weight: 500;
    color: #FF6741;
    position: absolute;
    top: 100%;
    left: 0;
}


/*--------------- HEADER ---------------*/

header {
    padding: 30px 0;
    background-color: #fff;
    box-shadow: 0 4px 20px rgba(46, 47, 55, 0.07);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 995;
}

header.static-header {
    position: static;
    box-shadow: 0 4px 40px rgba(85, 92, 91, 0.25);
}

header.static-header .wrapper {
    justify-content: center;
}

header .navigate.flex-box {
    justify-content: flex-end;
}

header .navigate li {
    margin: 0 0 0 60px;
}

header .navigate li.phone-link {
    margin: 0 0 0 75px;
}

header .navigate li a,
header .navigate li a:visited {
    color: #000000;
    font-weight: 500;
}

header .navigate li.phone-link a,
header .navigate li.phone-link a:visited {
    color: #0ED19E;
    font-weight: 600;
}

header .menu .navigate li a:hover,
header .menu .navigate li a.active,
header .menu .navigate li.phone-link a:hover,
header .menu .navigate li.phone-link a.active {
    color: #00976E;
}

header .hum-box {
    display: none;
    margin: 0 0 0 20px;
    cursor: pointer;
}

header .hum {
    width: 35px;
    height: auto;
    position: relative;
}

header .hum span {
    display: block;
    width: 100%;
    height: 4px;
    background-color: #000000;
    margin: 8px 0;
}

header .menu .close {
    display: none;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 24px;
    right: 24px;
    cursor: pointer;
}

header .menu .close:before,
header .menu .close:after {
    content: '';
    position: absolute;
    top: 50%;
    display: block;
    width: 100%;
    height: 2px;
    background-color: #000000;
}

header .menu .close:before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

header .menu .close:after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}


/*--------------- HOME ---------------*/

.main-preform-section {
    margin: 118px 0 0;
    padding: 180px 0;
    background: linear-gradient(180deg, #286E5C 0%, #2F7462 100%);
}

.main-preform-section h1 {
    max-width: 920px;
    color: #FFFFFF;
    position: relative;
    z-index: 2;
}
.main-preform-section p {
  margin: 23px 0 0 0;
  color: #fff;
  font-size: 24px;
  font-weight: 500;
}
.main-preform-section .box-preform {
    margin-top: 42px;
}

.main-preform-section .image {
    width: 100%;
    max-width: 980px;
    height: auto;
    position: absolute;
    top: -4px;
    right: 0;
    z-index: 1;
}


.inform-section {
    padding: 175px 0 120px;
}

.inform-section .wrapper {
    position: relative;
}

.inform-section .content {
    width: 649px;
    padding: 118px 63px;
    background-color: #33816C;
    border-radius: 7px;
    position: relative;
    z-index: 2;
}

.inform-section .content h2,
.inform-section .content p {
    color: #ffffff;
}

.inform-section .content p {
    margin: 40px 0 0;
}

.inform-section .image {
    width: 60%;
    max-width: 1055px;
    position: absolute;
    top: -75px;
    right: 50px;
    z-index: 1;
}


.how-works-section h2 {
	width: 100%;
	max-width: 930px;
    margin: 0 auto 105px;
    font-size: 54px;
    line-height: 66px;
    text-align: center;
}

.how-works-section .item {
    width: 420px;
    height: 500px;
    padding: 60px 40px;
    background-color: #FFFFFF;
    box-shadow: 0 10px 30px rgba(77, 85, 89, 0.1);
    border-radius: 7px;
}

.how-works-section .item:nth-child(2) {
    margin: 0 40px;
}

.how-works-section .item .image {
    height: 130px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.how-works-section .item img {
    width: auto;
    height: 100%;
    max-height: 100%;
}

.how-works-section .item h4,
.how-works-section .item p {
    text-align: center;
}

.how-works-section .item h4 {
    margin: 45px 0;
}

.how-works-section .item p {
    color: #000000;
}


.debt-benefits-section {
    padding: 100px 0 155px;
}

.debt-benefits-section h2.title {
    margin: 0 0 115px;
    font-size: 54px;
    line-height: 66px;
    text-align: center;
}

.debt-benefits-section .info {
    width: 100%;
    max-width: 1000px;
    padding: 185px 100px 97px 93px;
    background-color: #2B705E;
    border-radius: 7px;
    position: relative;
    z-index: 2;
}

.debt-benefits-section .info:before {
    content: '';
    display: block;
    width: 282px;
    height: 183px;
    background: url("../img/img-benefits-before.png") no-repeat 50% 50%;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 22px;
}

.debt-benefits-section .info:after {
    content: '';
    display: block;
    width: 100px;
    height: 100%;
    background-color: inherit;
    position: absolute;
    top: 0;
    right: -95px;
    border-radius: 0 7px 7px 0;
}

.debt-benefits-section .info h2 {
    font-size: 38px;
    line-height: 46px;
    color: #ffffff;
}

.debt-benefits-section .info article {
    margin: 65px 0 88px;
    max-width: 727px;
    color: #ffffff;
}

.debt-benefits-section .info article p {
    margin: 0 0 35px;
}

.debt-benefits-section .info article p:last-child {
    margin: 0;
}

.debt-benefits-section .blocks {
    position: relative;
    z-index: 3;
}

.debt-benefits-section .blocks .block {
    position: relative;
    background-color: #FFFFFF;
    box-shadow: 0 10px 30px rgba(77, 85, 89, 0.1);
    border-radius: 7px;
}

.debt-benefits-section .blocks .block_1 {
    width: 509px;
    top: 60px;
    left: -160px;
    z-index: 5;
	padding: 54px 26px;
}
.debt-benefits-section .blocks .block_2 {
    width: 473px;
    top: 0;
    left: -80px;
    z-index: 4;
	padding: 77px 40px 28px;
}
.debt-benefits-section .blocks .block_3 {
    width: 434px;
    top: -60px;
    left: 0;
    z-index: 3;
	padding: 88px 30px 21px;
}

.debt-benefits-section .blocks .image {
    width: 100px;
    height: 70px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.debt-benefits-section .blocks .image img {
    width: auto;
    height: auto;
}

.debt-benefits-section .blocks h4 {
    margin: 4px 0 0;
    font-size: 24px;
    line-height: 29px;
    font-weight: 600;
    color: #0E0C0A;
    text-align: center;
}

.debt-benefits-section .blocks h4 .text-color {
    color: #00AE7B;
}


.debt-types-section h2 {
    margin: 0 0 85px;
    font-size: 54px;
    line-height: 66px;
    text-align: center;
}

.debt-types-section .debts-list {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.debt-types-section .debt {
    width: 300px;
    min-width: 300px;
    height: 300px;
    margin: 0 30px 50px;
    background-color: #FFFFFF;
    box-shadow: 0 10px 30px rgba(77, 85, 89, 0.1);
    border-radius: 7px;
    padding: 67px 30px;
}

.debt-types-section .debt .image {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.debt-types-section .debt img {
    width: auto;
    height: auto;
}

.debt-types-section .debt span {
    display: block;
    margin: 40px 0 0;
    font-size: 24px;
    line-height: 28px;
    font-weight: 500;
    color: #000000;
    text-align: center;
}


.customer-section {
    padding: 150px 0 250px;
}

.customer-section .wrapper {
    position: relative;
}

.customer-section h2.title {
    font-size: 54px;
    line-height: 66px;
    text-align: center;
    margin: 0 0 85px;
}

.customer-section .image {
    max-width: 1202px;
    border-radius: 7px;
}

.customer-section .content {
    width: 649px;
    padding: 136px 63px;
    background-color: #2B705E;
    border-radius: 7px;
    position: absolute;
    top: 240px;
    right: 15px;
}

.customer-section .content h2 {
    color: #FFFFFF;
}

.customer-section .content article {
    margin: 48px 0 0;
    color: #FFFFFF;
}

.customer-section .content article p {
    margin: 0 0 30px;
    padding: 0 0 0 15px;
    position: relative;
}

.customer-section .content article p:last-child {
    margin: 0;
}

.customer-section .content article p:before {
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #ffffff;
    position: absolute;
    top: 13px;
    left: 0;
}


.faq-section h2 {
    font-size: 54px;
    line-height: 66px;
    text-align: center;
}

.faq-section .accordeon {
    margin: 85px 0 0;
}

.faq-section .accordeon .box-acc {
    margin: 0 0 28px;
}

.faq-section .ac-head h4,
.faq-section .ac-body {
    font-family: 'Poppins', sans-serif;
}

.faq-section .accordeon .ac-head {
    padding: 36px 70px 36px 47px;
    box-shadow: 0 5px 20px rgba(89, 131, 189, 0.5);
    border-radius: 15px;
    position: relative;
    cursor: pointer;
}

.faq-section .accordeon .ac-head:hover {
    box-shadow: 0 5px 20px #CEECE3;
}

.faq-section .accordeon .ac-head.in {
    box-shadow: 0 5px 20px rgba(89, 131, 189, 0.5);
    border-radius: 15px 15px 0 0;
}

.faq-section .accordeon .ac-head:before {
    display: block;
    content: '';
    width: 20px;
    height: 12px;
    position: absolute;
    top: calc(50% - 6px);
    right: 50px;
    background: url("../img/icon-arrow-accordeon.svg") no-repeat;
    background-size: cover;
    transition: 0.4s;
}

.faq-section .accordeon .ac-head.in:before {
    transform: rotate(180deg);
}

.faq-section .ac-head h4 {
    color: #000000;
}

.faq-section .accordeon .ac-body {
    display: none;
    padding: 32px 70px 26px 47px;
    background-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0 5px 20px rgba(89, 131, 189, 0.5);
    border-radius: 0 0 8px 8px;
    font-size: 15px;
    line-height: 24px;
    color: #637381;
}


.easy-start-section {
    padding: 70px 0 85px;
}

.easy-start-section .content {
    padding: 75px 20px;
    background-color: #135946;
    border-radius: 7px;
}

.easy-start-section .content h2 {
    margin: 0 0 48px;
    font-size: 54px;
    line-height: 66px;
    color: #ffffff;
    text-align: center;
}

.easy-start-section .preform {
    max-width: 810px;
    margin: 0 auto;
}




/*--------------- TERMS / PRIVACY ---------------*/

.terms {
    padding: 217px 0 10px;
}

.terms h1 {
    text-align: center;
    margin: 0 0 110px;
}

.terms h3,
.terms p {
    padding: 0 0 37px;
}

.terms article {
    padding: 0 0 60px;
}

.terms .underline {
    text-decoration: underline;
}


/*--------------- CONTACT ---------------*/

.contact-us-section {
    padding: 217px 0 123px;
}

.contact-us-section h1 {
    text-align: center;
    margin: 0 0 117px;
}

.contact-us-section .info h4 {
    margin: 0 0 32px;
}

.contact-us-section .info p {
    margin: 0 0 100px;
}

.contact-us-section .form-container {
    width: 626px;
    min-width: 626px;
    padding: 67px 60px;
    background: #F5F2F0;
    border-radius: 7px;
    margin: 0 0 0 40px;
    position: relative;
}

.contact-us-section .form-container .box-error-field {
    width: 100%;
    position: relative;
    margin: 0 0 30px;
}

.contact-us-section .form-container .flex-box .box-error-field {
    width: 48%;
}

.contact-us-section .form-container input,
.contact-us-section .form-container textarea {
    background: #FFFFFF;
    border-radius: 7px;
    border: 2px solid #B0B1B5;
    width: 100%;
    padding: 32px 24px;
    font-size: 16px;
    line-height: 16px;
    color: #636363;
}

.contact-us-section .form-container input:focus,
.contact-us-section .form-container textarea:focus {
    border-color: #9F9F9F;
}

.form-container .box-error-field input.error,
.form-container .box-error-field textarea.error {
    border: 2px solid #DD6F5B;
    background: url("https://cutmydebt.com/images/icon-error.svg") no-repeat #FFD0C9;
    background-size: 20px 20px;
    background-position: calc(100% - 20px) 50%;
}

.form-container .box-error-field textarea.error {
    background-position: calc(100% - 20px) 10%;
}

.form-container .box-error-field input.valid,
.form-container .box-error-field textarea.valid {
    border: 2px solid #71A78F;
}

.contact-us-section .form-container input {
    height: 80px;
}

.form-container .box-error-field.field-text {
    height: 188px;
}

.contact-us-section .form-container textarea {
    height: 100%;
}

.contact-us-section .form-container p.holder {
    position: absolute;
    top: 32px;
    left: 24px;
    font-size: 16px;
    line-height: 16px;
    color: #636363;
    transition: 0.4s;
    pointer-events: none;
}

.form-container .box-error-field input:focus ~ p.holder,
.form-container .box-error-field textarea:focus ~ p.holder,
.form-container .box-error-field input.valid ~ p.holder,
.form-container .box-error-field textarea.valid ~ p.holder,
.form-container .box-error-field input.error ~ p.holder,
.form-container .box-error-field textarea.error ~ p.holder {
    font-size: 12px;
    line-height: 16px;
    top: 10px;
}

.form-container .box-error-field input.valid ~ p.holder,
.form-container .box-error-field textarea.valid ~ p.holder {
    color: #71A78F;
}

.form-container .box-error-field input.error ~ p.holder,
.form-container .box-error-field textarea.error ~ p.holder {
    color: #DD6F5B;
}

.form-container .box-error-field label {
    display: none;
    position: absolute;
    left: 0;
    bottom: -20px;
    font-size: 12px;
    line-height: 18px;
    color: #FF6741;
}

.form-container .box-error-field textarea+label {
    bottom: -16px;
}

.form-container .box-error-field input.error + label,
.form-container .box-error-field textarea.error + label {
    display: block;
}

.form-container .box-bot-form p {
    font-size: 14px;
    line-height: 21px;
    margin: 0 0 30px;
}

.form-container .box-bot-form p.notification-required {
    font-size: 12px;
    line-height: 16px;
    margin: 10px 0 0;
}

.contact-us-section .mobile-visible {
    display: none;
}

.form-container .desc {
    padding: 230px 0 190px;
}

.form-container .desc .image {
    width: 100%;
    max-width: 210px;
    margin: 0 auto;
}

.form-container .desc h4 {
    margin: 22px 0 18px;
    text-align: center;
}

.form-container .desc p {
    font-size: 18px;
    line-height: 20px;
    font-weight: 700;
    text-align: center;
}


/*--------------- FOOTER ---------------*/

footer {
    padding: 60px 0 37px;
    background-color: #475051;
    color: #fff;
}

footer a {
    font-weight: 500;
    color: #fff;
}

footer .footer-menu {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
}

footer .footer-logo,
footer .footer-menu li {
    margin: 0 70px 0 0;
}

footer .footer-menu li a,
footer .footer-menu li a:visited {
    text-decoration: underline;
}

footer .footer-menu li a:hover {
    text-decoration: none;
    color: #0ED19E;
}

footer .footer-menu li a.active {
    text-decoration: none;
    color: #0ED19E;

}

footer .footer-menu li a.active:hover {
    text-decoration: underline;
}

footer .navigate.flex-box {
    justify-content: flex-start;
}

footer .material,
footer p.copyright {
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

footer .material {
    padding: 40px 0 50px;
}

footer p.copyright {
    text-align: center;
}


/* modal */

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1007;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.79);
    cursor: pointer;
}

.modal {
    display: flex;
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    z-index: 1007;
    overflow-y: auto;
}

.modal .window {
    width: 870px;
    position: relative;
    z-index: 1008;
    text-align: center;
    border-radius: 7px;
    background-color: #F5F2F0;
    animation: modal 0.5s ease-in;
    -webkit-animation: modal 0.5s ease-in;
    -moz-animation: modal 0.5s ease-in;
    padding: 90px 50px 140px;
}

.modal .window .content {
    margin: 0 auto 60px;
    width: 100%;
    max-width: 420px;
}

.modal .window .image {
    width: 100%;
    max-width: 350px;
    margin: 0 auto 26px;
}

.modal .window h2,
.modal .window p.notification {
    text-align: center;
}

.modal .window p.notification {
    color: #000000;
    margin: 38px 0 0;
}

.modal .window p.notification > span {
    font-weight: 600;
    color: #DD6F5B;
}

/* close modal */

.modal .window .close-modal {
    position: absolute;
    top: 32px;
    right: 32px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.modal .window .close-modal:before,
.modal .window .close-modal:after {
    content: '';
    position: absolute;
    top: 7px;
    right: 0;
    display: block;
    width: 100%;
    height: 2px;
    background-color: #333333;
    transition: 0.4s;
}

.modal .window .close-modal:before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.modal .window .close-modal:after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}


/* captcha contact us */

div#feedCaptcha {
    transform: scale(0.8);
    position: relative;
}

#feedCaptcha > div {
    position: relative;
    left: -38px;
    margin: 0 0 0 1px;
}


/* reject page */
.main-reject-section {
    padding: 140px 0 240px;
    text-align: center;
}

.main-reject-section h1 {
    color: #333333;
}

.main-reject-section .subtitle {
    margin: 30px 0 55px;
    font-size: 24px;
    line-height: 29px;
    font-weight: 600;
    color: #000000;
}

.main-reject-section .row {
    display: flex;
    justify-content: center;
    align-content: center;
}

.main-reject-section .item {
    width: 425px;
    background-color: #FFFFFF;
    box-shadow: 0 30px 60px rgba(116, 125, 132, 0.156714);
    padding: 75px 50px 67px;
}

.main-reject-section .item .icon {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 38px;
}

.main-reject-section .item:nth-child(1) {
    margin: 0 90px 0 0;
}

.main-reject-section .item:nth-child(1) .icon {
    width: 137px;
}

.main-reject-section .item:nth-child(2) .icon {
    width: 268px;
}

.main-reject-section .item p {
    margin: 25px 0 40px;
    font-size: 16px;
    line-height: 20px;
    color: #000000;
}

.main-reject-section .reject-btn {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 244px;
    height: 67px;
    background-color: #FFFFFF;
    border: 1px solid #00AE7B;
    border-radius: 7px;
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    color: #00AE7B;
}

.main-reject-section .reject-btn:hover {
    border: 1px solid #00976E;
    color: #00976E;
}
/* -- internal --  */
section.internal .title, .contact-us .title {
    height: 220px;
    background-color: #11624D;
    background-image: -webkit-linear-gradient(-70deg, #286E5C 70%, #11624D 50%);
}
.contact-us .title {
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-us .title h1 {
    color: #fff;
}
section.internal {
    margin: 118px 0 0;
    padding: 0 0 85px;
}
section.internal .policy h1 {
    position: absolute;
    top: 80px;
    text-align: center;
    color: #fff;
    width: 100%;
    max-width: 1480px;
}
section.internal p {
    margin-bottom: 30px;
}

/* contact */
.contact-us .message__wrapper {
  margin-top: 40px;
  margin-bottom: 100px;
  justify-content: center;
  display: flex;
}
.contact-us .message__wrapper .form {
  display: flex;
  flex-direction: column;
  max-width: 760px;
  background: #FFFFFF;
    box-shadow: 0px 10px 50px #EBEFF2;
    border-radius: 10px;
  padding: 40px 60px 40px;
}
.contact-us .message__wrapper .form__inputs-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.contact-us .message__wrapper .form__box {
  margin-top: 20px;
  position: relative;
  width: calc(50% - 15px);
  max-height: 130px;
}
.contact-us .message__wrapper .form__box .h7 {
    font-family: 'Inter';
font-style: normal;
font-weight: 400;
font-size: 14px;
line-height: 26px;
color: #868686;
}
.contact-us .message__wrapper .form__field {
  width: 100%;
  height: 70px;
  padding: 21px 20px;
  font-size: 13px;
  line-height: 18px;
  font-weight: 400;
  background: #FFFFFF;
    border: 1px solid #D8D8D8;
    border-radius: 7px;
}
.contact-us .message__wrapper .form__field:focus {
  border-color: #4F4F4F;
}
.contact-us .message__wrapper .form .custom-error {
  border-color: #E62B2B;
}
.contact-us .message__wrapper .form__error {
  display: none;
      position: absolute;
    color: #F33838;
    font-size: 10px;
    line-height: 12px;
    background-color: #FFF;
    border-radius: 4px;
    bottom: -15px;
    margin: 0;
}
.d-flex {
    display: flex !important;
}
.contact-us .message__wrapper .form__message {
  resize: none;
  height: 130px;
}
.contact-us .message__wrapper .form__buttons-wrapper {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
}
.contact-us .message__wrapper .form__buttons-wrapper button {
  width: 168px;
  height: 70px;
  background: #D0D2D7;
border-radius: 7px;
  color: #FFF;
  font-family: 'Montserrat';
font-style: normal;
font-weight: 600;
font-size: 24px;
line-height: 29px;
border: none;
}
.contact-us .message__wrapper .form__buttons-wrapper button:hover {
  background-color: #00AE7B;
}
.contact-us .message__wrapper .form__buttons-wrapper .h7 {
  position: absolute;
  left: 0;
  bottom: -30px;
  font-size: 13px;
  line-height: 18px;
  font-weight: 400;
}
.contact-us .message__wrapper #feedCaptchaHidden-error {
  color: #F33838;
    font-size: 10px;
    line-height: 12px;
  position: absolute;
  top: 100px;
}
.contact-us .message__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 310px;
  margin-right: 40px;
}
.contact-us .message__content .title-box {
  display: flex;
  flex-direction: column;
  margin-bottom: 50px;
  margin-top: 40px;
  align-items: flex-start;
}
.contact-us .message__content .title-box img {
    width: initial;
}
.contact-us .message__content .title-box h1 {
  margin-top: 4px;
}
.contact-us .message__content .address-box {
  display: flex;
  flex-direction: column;
  font-family: 'Montserrat';
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 20px;
    color: #5D6368;
}
.contact-us .message__content .address-box a {
  font-family: 'Montserrat';
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 20px;
    color: #5D6368;
}
.contact-us .message__content .address-box a:hover {
  color: #286E5C;
}
.contact-us .message__content .address-box p {
 margin: 0;
}
.address-box > div {
    display: flex;
    align-items: center;
    margin-bottom: 37px;
}
.address-box > div > div {
    width: 65px;
    height: 65px;
    border: 1px solid #00AE7B;
    border-radius: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 23px;
    flex-shrink: 0;
}
.contact-us .message .thank {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 760px;
  padding: 80px 20px 70px;
  background: #FFFFFF;
    box-shadow: 0px 10px 50px #EBEFF2;
    border-radius: 10px;
    width: 100%;
        justify-content: center;
}
.contact-us .message .thank img {
    width: initial;
}
.contact-us .message .thank h2 {
  font-family: 'Montserrat';
font-style: normal;
font-weight: 500;
font-size: 24px;
line-height: 29px;
text-align: center;
color: #080F0F;
margin: 30px 0 12px;
}
.contact-us .message .thank p {
  font-family: 'Montserrat';
font-style: normal;
font-weight: 300;
font-size: 18px;
line-height: 25px;
color: #5D6368;
margin:  0;
}

#omForm.omForm .omForm-radio__control-icon {
	width: auto;
}

/* 
=================
RANGE
=================
*/

.range {
  height: 80px;
  box-shadow: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  border-radius: 10px;
  padding: 0 93px 0 66px;
}
.range .sliderValue {
  position: relative;
  width: 100%;
}
.range .sliderValue span {
  color: #0ed19e;
  font-size: 29px;
  font-weight: 700;

  position: absolute;

  top: -15px;
  left: 4px;
  transform-origin: bottom;
  transition: transform 0.3s ease-in-out;
  line-height: 55px;
  z-index: 2;
}

.range .sliderValue span:after {
  position: absolute;
  content: url(../img/popup-range.svg);

  z-index: -1;
  position: absolute;
  top: 66%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.range .field {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: center;
  height: 100%;
}
.range .field .value {
  position: absolute;
  font-size: 18px;
  font-weight: 600;
  color: #ffff;
}
.range .field .value.left {
  left: -68px;
  bottom: -5px;
}

.range .field .value.right {
  right: -103px;
  bottom: -5px;
}
.range .field input {
  -webkit-appearance: none;
  height: 3px;
  width: 100%;
  width: 342px;
  height: 17px;
  border-radius: 10px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 1) 60%,
    rgba(255, 255, 255, 1) 60%
  );
  outline: none;
  border: none;
}
.range .field input::-moz-slider-thumb {
  -moz-appearance: none;
}
.range .field input::-ms-slider-thumb {
  -ms-appearance: none;
}

.range .field input::-webkit-slider-thumb {
  -webkit-appearance: none;

  width: 30px;
  height: 30px;
  background: #0ed19e;
  border-radius: 50%;
  cursor: pointer;
}
.range .field input::-moz-range-thumb {
  -moz-appearance: none;
  border: none;
  width: 30px;
  height: 30px;
  background: #0ed19e;
  border-radius: 50%;
  cursor: pointer;
}
.range .field input::-moz-range-progress {
  background: #0ed19e;
}
.range .field input::-webkit-range-progress {
  background: #0ed19e;
}
