@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&display=auto");

body {
    padding: 0px;
    margin: 0px;
    background-color: #FFFFFF;
    font-family: "Quicksand", sans-serif;
    font-weight: 400;
    cursor: default;
}

body,
html {
    height: 100%;
}

input:focus,
div:focus,
span:focus,
textarea:focus,
select:focus {
    outline: none;
    background-image: none;
}

input::-ms-clear {
    display: none;
}

div,
a,
span,
input,
textarea,
select {
    -webkit-tap-highlight-color: transparent;
    font-family: "Quicksand", sans-serif;
}

div::-moz-focus-inner,
span::-moz-focus-inner,
input::-moz-focus-inner,
textarea::-moz-focus-inner,
select::-moz-focus-inner {
    border: 0;
}

.touch {
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}

.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* HEADER */

.header {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    width: 100%;
    height: 110px;
    padding-bottom: 10px;
    box-sizing: border-box;
    transition: 0.18s;
    z-index: 10;
}

.header.header-compact {
    background-color: rgba(0, 0, 0, 0.35);
    height: 80px;
    padding-bottom: 0px;
}

.header-frame {
    display: flex;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
}

.header-left {
    flex: none;
    padding-left: 24px;
    padding-right: 56px;
}

.header-brand {
    display: block;
    width: 148px;
    margin-top: 7px;
}

.header-compact .header-brand {
    margin-top: 10px;
}

.header-right {
    flex: auto;
}

.header-actions {
    display: flex;
}

.header-actions-frame {
    flex: auto;
    display: flex;
    justify-content: flex-end;
}

.header-actions-layout {
    display: flex;
}

.header-action {
    display: flex;
    align-items: center;
}

.header-link,
.header-link:link,
.header-link:visited {
    display: block;
    color: #FFFFFF;
    font-size: 17px;
    line-height: 17px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.18s;
}

.header-link:hover {
    color: #E20532;
}

.touch .header-link:hover {
    color: #FFFFFF;
}

.header-link:active,
.touch .header-link:active {
    color: #E20532;
}

.header-divisor {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 4px;
    padding-left: 24px;
    padding-right: 24px;
}

.header-point {
    width: 6px;
    height: 6px;
    border-radius: 100px;
    background-color: #FFFFFF;
}

.header-menu {
    flex: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 56px;
}

.header-menu-lines {
    display: flex;
    flex-direction: column;
    row-gap: 4px;
    width: 28px;
    padding: 24px;
    cursor: pointer;
}

.header-menu-line {
    width: 100%;
    height: 4px;
    border-radius: 100px;
    background-color: #FFFFFF;
    transition: 0.18s;
}

.header-menu-lines:hover .header-menu-line {
    background-color: #E20532;
}

.touch .header-menu-lines:hover .header-menu-line {
    background-color: #FFFFFF;
}

.header-menu-lines:active .header-menu-line,
.touch .header-menu-lines:active .header-menu-line {
    background-color: #E20532;
}

.header-line {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    opacity: 1;
    transition: 0.18s;
}

.header-line img {
    display: block;
    width: 100%;
}

.header.header-compact .header-line {
    opacity: 0;
}

/* INTRO */

.intro {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #6F8385;
    overflow: hidden;
}

.intro-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    overflow: hidden;
}

@keyframes bg-anima {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes bg-anima-2 {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.7);
    }

    100% {
        transform: scale(1);
    }
}

.intro-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.55;
}

.intro-caption {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding-top: 2%;
    padding-left: 32px;
    padding-right: 32px;
    box-sizing: border-box;
    color: #FFFFFF;
    font-size: 64px;
    line-height: 66px;
    font-weight: 500;
    text-align: center;
    transition: 3s;
    transform: scale(1.2) translateY(50%);
}

.intro-caption-on {
    transform: scale(1) translateY(0);
}

.intro-caption strong {
    font-weight: 700;
}

/* DREAM */

.dream {
    position: relative;
    width: 100%;
    padding-left: 24px;
    padding-right: 24px;
    box-sizing: border-box;
    background-color: #E20532;
    overflow: hidden;
}

.red-top-curve {
    position: relative;
    width: 100%;
}

.red-top-curve img {
    display: block;
    width: 100%;
}

.red-top-curve-intro {
    position: absolute;
    bottom: 0;
    left: 0;
}

.red-bottom-curve {
    position: relative;
    width: 100%;
}

.red-bottom-curve img {
    display: block;
    width: 100%;
}

.dream-content {
    position: relative;
    width: 100%;
    padding-top: 130px;
    padding-bottom: 130px;
}

.dream-house {
    position: absolute;
    top: 0;
    right: -17%;
    display: flex;
    align-items: center;
    height: 100%;
    opacity: 0.06;
}

.dream-house img {
    display: block;
    height: 76%;
    animation: bg-anima-2 45s linear infinite;
}

.dream-layout {
    display: flex;
    column-gap: 24px;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.dream-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40%;
}

.dream-logo img {
    display: block;
    width: 100%;
    max-width: 288px;
}

.dream-text {
    display: flex;
    align-items: center;
    width: 60%;
    box-sizing: border-box;
    color: #FFFFFF;
    font-size: 28px;
    line-height: 38px;
}

.dream-text>div {
    max-width: 610px;
}

.dream-text strong {
    font-weight: 600;
}

.dream-paragraph {
    padding-bottom: 30px;
}

.dream-paragraph:last-of-type {
    padding-bottom: 0;
}

.dream-caption {
    width: 100%;
    padding-top: 130px;
    color: #FFFFFF;
    font-size: 42px;
    line-height: 44px;
    font-weight: 700;
    text-align: center;
    transform: translateY(100%);
}

/* CAPTION */

.caption {
    position: relative;
    width: 100%;
    background-color: #FFFFFF;
    overflow: hidden;
}

.caption-bg {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 1690px;
    padding-bottom: 50%;
    margin: 0 auto;
}

.caption-bg-pic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../resources/bg-1.jpg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.caption-text {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding-left: 24px;
    padding-right: 24px;
    box-sizing: border-box;
}

.caption-frame {
    width: 100%;
    max-width: 648px;
}

.caption-pic {
    position: relative;
    width: 100%;
    padding-bottom: 40.8629485051046%;
}

.caption-pic img {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
}

.caption-pic-1 {
    transform: translateX(100%);
}

.caption-pic-2 {
    left: 6px !important;
    top: 6px !important;
    transform: translateX(-100%);
}

/* STEPS */

.steps {
    position: relative;
    display: flex;
    flex-direction: column;
    row-gap: 92px;
    overflow: hidden;
}

.steps-bg {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
}

.steps-bg-house {
    width: 74%;
}

.steps-bg-house-frame {
    position: relative;
    width: 100%;
    padding-bottom: 90.38711613484045%;
    margin-left: -33%;
}

.steps-bg-house-frame img {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    opacity: 0.05;
    animation: bg-anima-2 45s linear infinite;
}

.step {
    position: relative;
    display: flex;
    width: 100%;
    z-index: 2;
}

.step-left {
    position: relative;
    display: flex;
    justify-content: flex-start;
    width: 50%;
    order: 1;
}

.step-alt .step-left {
    display: flex;
    justify-content: flex-end;
    order: 2;
}

.step-right {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    padding-left: 32px;
    padding-right: 10%;
    box-sizing: border-box;
    order: 2;
}

.step-alt .step-right {
    order: 1;
    padding-left: 10%;
    padding-right: 32px;
}

.step-house {
    position: relative;
    width: 100%;
    padding-bottom: 90.36144578313253%;
    margin-left: -15%;
}

.step-house img {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
}

.step-icon {
    position: absolute;
    top: 0;
    bottom: 0;
    right: -7.6%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 200px;
    margin-top: 44%;
    box-sizing: border-box;
    border: solid 2px #E20532;
    border-radius: 500px;
    background-color: #FFFFFF;
    transform: scale(0);
    opacity: 0;
}

.step-icon img {
    display: block;
    width: 100%;
}

.step-alt .step-house {
    margin-right: -15%;
}

.step-alt .step-icon {
    left: -7.6%;
}

.step-content {
    max-width: 520px;
}

.step-title {
    padding-bottom: 24px;
    color: #E20532;
    font-size: 40px;
    line-height: 40px;
    font-weight: 700;
}

.step-text {
    color: #000000;
    font-size: 28px;
    line-height: 38px;
    font-weight: 400;
}

.step-button,
.step-button:link,
.step-button:visited {
    display: inline-block;
    padding-top: 12px;
    padding-bottom: 15px;
    padding-left: 30px;
    padding-right: 30px;
    margin-top: 42px;
    border-radius: 200px;
    border: solid 2px #E20532;
    color: #E20532;
    font-size: 22px;
    line-height: 22px;
    font-weight: 400;
    text-decoration: none;
    transition: 0.18s;
}

.step-button:hover {
    color: #FFFFFF;
    background-color: #E20532;
    border-color: transparent;
}

.touch .step-button:hover {
    color: #E20532;
    background-color: transparent;
    border-color: #E20532;
}

.step-button:active,
.touch .step-button:active {
    color: #FFFFFF;
    background-color: #E20532;
    border-color: transparent;
}

/* ADVANCE */

.advance {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    background-color: #FFFFFF;
    overflow: hidden;
}

.advance-picture {
    width: 100%;
    max-width: 80%;
}

.advance-picture img {
    display: block;
    width: 100%;
}

.advance-layout {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    max-width: 1500px;
    height: 100%;
    margin: 0 auto;
    z-index: 2;
}

.advance-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45%;
    padding-left: 3%;
    box-sizing: border-box;
}

.advance-brand {
    width: 100%;
    max-width: 396px;
}

.advance-brand img {
    display: block;
    width: 100%;
}

.advance-caption {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
}

.advance-together {
    width: 100%;
    max-width: 668px;
}

.advance-together-frame {
    position: relative;
    width: 100%;
    padding-bottom: 32.0121723545665%;
}

.advance-together-1-frame {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.advance-together-1 {
    display: block;
    width: 80%;
    margin-left: -25%;
    transform: translateY(100%);
}

.advance-together-2 {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: translateY(-100%);
}

/* FEATURES */

.features {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.gray-top-curve {
    position: relative;
    width: 100%;
}

.gray-top-curve img {
    display: block;
    width: 100%;
}

.gray-bottom-curve {
    position: relative;
    width: 100%;
}

.gray-bottom-curve img {
    display: block;
    width: 100%;
}

.features-bg {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}

.features-bg img {
    position: absolute;
    top: 0;
    left: -28%;
    display: block;
    height: 100%;
    opacity: 0.15;
    animation: bg-anima-2 45s linear infinite;
}

.features-content {
    position: relative;
    padding-left: 24px;
    padding-right: 24px;
    box-sizing: border-box;
    background-color: #C7C7C7;
}

.features-layout {
    position: relative;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    z-index: 2;
}

.features-intro {
    width: 100%;
    max-width: 900px;
    padding-top: 72px;
    margin: 0 auto;
    color: #000000;
    font-size: 28px;
    line-height: 38px;
    font-weight: 400;
    text-align: center;
}

.features-intro strong {
    font-weight: 600;
}

.features-items {
    display: flex;
    flex-direction: column;
    row-gap: 100px;
    width: 100%;
    max-width: 900px;
    padding-top: 80px;
    padding-bottom: 130px;
    margin: 0 auto;
}

.features-item {
    display: flex;
    column-gap: 8%;
}

.features-item-icon-frame {
    flex: none;
    display: flex;
    align-items: center;
}

.features-item-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 220px;
    height: 220px;
    box-sizing: border-box;
    border: solid 2px #E20532;
    border-radius: 500px;
    background-color: #FFFFFF;
}

.features-item-icon img {
    display: block;
    width: 100%;
}

.features-item-content {
    flex: auto;
    display: flex;
    align-items: center;
}

.features-item-title {
    padding-bottom: 24px;
    color: #E20532;
    font-size: 40px;
    line-height: 40px;
    font-weight: 700;
}

.features-item-text {
    color: #000000;
    font-size: 28px;
    line-height: 38px;
    font-weight: 400;
}

/* LOGO */

.logo {
    width: 100%;
}

.logo-pic {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-top: 220px;
    padding-bottom: 120px;
    padding-left: 24px;
    padding-right: 24px;
    box-sizing: border-box;
}

.logo-brand {
    width: 100%;
    max-width: 480px;
    transform: scale(0.25);
}

.logo-brand img {
    display: block;
    width: 100%;
}

/* CONSULT */

.consult {
    width: 100%;
    overflow: hidden;
}

.consult-layout {
    display: flex;
    width: 100%;
}

.consult-left {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    padding-left: 10%;
    padding-right: 24px;
    box-sizing: border-box;
}

.consult-content {
    width: 100%;
    max-width: 580px;
    padding-top: 100px;
    padding-bottom: 310px;
}

.consult-right {
    position: relative;
    width: 50%;
}

.consult-house {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    width: 100%;
    height: 100%;
    padding-left: 32px;
    padding-right: 32px;
    box-sizing: border-box;
}

.consult-home {
    display: block;
    width: 100%;
}

.consult-hand {
    position: absolute;
    bottom: 0;
    right: -8%;
    width: 100%;
    height: 100%;
    transform: translateY(40%) translateX(10%) scale(0.85);
}

.consult-hand img {
    position: absolute;
    bottom: 0;
    display: block;
    width: 130%;
}

/* CONTACT */

.contact {
    position: relative;
    width: 100%;
    margin-top: -50px;
    z-index: 2;
}

.contact-icon {
    position: absolute;
    bottom: -170%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 210px;
    height: 210px;
    margin: 0 auto;
    box-sizing: border-box;
    border-radius: 500px;
    border: solid 2px #E20532;
    background-color: #FFFFFF;
}

.contact-content {
    padding-top: 150px;
    padding-bottom: 100px;
    padding-left: 24px;
    padding-right: 24px;
    box-sizing: border-box;
    background-color: #E20532;
}

.contact-layout {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.contact-intro {
    color: #FFFFFF;
    font-size: 31px;
    line-height: 42px;
    font-weight: 400;
}

.contact-intro div {
    padding-bottom: 20px;
}

.contact-form {
    padding-top: 22px;
}

.contact-box {
    display: block;
    width: 100%;
    max-width: 800px;
    height: 56px;
    padding: 0;
    padding-left: 24px;
    padding-right: 24px;
    margin: 0 auto;
    margin-bottom: 32px;
    box-sizing: border-box;
    border-style: none;
    border-radius: 100px;
    background-color: rgba(255, 255, 255, 0.75);
    color: #E20532;
    font-size: 23px;
    line-height: 23px;
    font-weight: 600;
    text-align: center;
    transition: 0.18s;
}

.contact-box::placeholder {
    color: rgba(226, 5, 50, 0.5);
    font-weight: 400;
    opacity: 1;
}

.contact-box:focus {
    background-color: rgba(255, 255, 255, 1);
}

.contact-options {
    display: inline-flex;
    column-gap: 48px;
}

.contact-radio {
    position: relative;
    display: block;
    height: auto;
    padding-top: 2px;
    padding-left: 38px;
    margin-top: 10px;
    margin-bottom: 10px;
    box-sizing: border-box;
    color: #FFFFFF;
    font-size: 18px;
    line-height: 22px;
    font-weight: 400;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: 0.18s;
}

.contact-radio input {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    cursor: pointer;
}

.contact-radio-checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 22px;
    width: 22px;
    border-radius: 100px;
    background-color: transparent;
    border: solid 2px rgba(255, 255, 255, 0.75);
    transition: 0.18s;
}

.contact-radio input:checked~.contact-radio-checkmark {
    border-color: rgba(255, 255, 255, 1);
}

.contact-radio-checkmark:after {
    content: "";
    display: none;
    position: absolute;
    transition: 0.18s;
}

.contact-radio input:checked~.contact-radio-checkmark:after {
    display: block;
}

.contact-radio .contact-radio-checkmark:after {
    top: 6px;
    left: 6px;
    width: 10px;
    height: 10px;
    border-radius: 100px;
    background: #FFFFFF;
    transition: 0.18s;
}

.contact-button {
    display: block;
    margin: 0 auto;
}

.contact-button {
    display: inline-block;
    padding-top: 12px;
    padding-bottom: 15px;
    padding-left: 30px;
    padding-right: 30px;
    margin-top: 38px;
    border-radius: 200px;
    border: solid 2px #FFFFFF;
    background-color: transparent;
    color: #FFFFFF;
    font-size: 22px;
    line-height: 22px;
    font-weight: 400;
    text-decoration: none;
    cursor: pointer;
    transition: 0.18s;
}

.contact-button:hover {
    color: #E20532;
    background-color: #FFFFFF;
    border-color: transparent;
}

.touch .contact-button:hover {
    color: #FFFFFF;
    background-color: transparent;
    border-color: #FFFFFF;
}

.contact-button:active,
.touch .contact-button:active {
    color: #E20532;
    background-color: #FFFFFF;
    border-color: transparent;
}

/* FOOTER */

.footer {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 70px;
    padding-left: 10%;
    padding-right: 10%;
    box-sizing: border-box;
}

.footer-layout {
    display: flex;
    column-gap: 32px;
    width: 100%;
    max-width: 1500px;
    height: 100%;
    margin: 0 auto;
}

.footer-logo {
    flex: none;
    display: flex;
    align-items: center;
}

.footer-brand {
    width: 190px;
}

.footer-brand img {
    display: block;
    width: 100%;
}

.footer-links {
    flex: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 24px;
    text-align: center;
}

.footer-link,
.footer-link:link,
.footer-link:visited {
    display: block;
    color: #000000;
    font-size: 17px;
    line-height: 21px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.18s;
}

.footer-link:hover {
    color: #E20532;
}

.touch .footer-link:hover {
    color: #FFFFFF;
}

.footer-link:active,
.touch .footer-link:active {
    color: #E20532;
}

.footer-divisor {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 3px;
}

.footer-point {
    width: 6px;
    height: 6px;
    border-radius: 100px;
    background-color: #000000;
}

.footer-networks {
    flex: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    column-gap: 20px;
}

.footer-social,
.footer-social:link,
.footer-social:visited {
    display: block;
    width: 48px;
    height: 48px;
    border-radius: 100px;
    border: solid 2px #000000;
    cursor: pointer;
    transition: 0.18s;
}

.footer-social:hover {
    transform: scale(1.16);
}

.touch .footer-social:hover {
    transform: scale(1);
}

.footer-social:active,
.touch .footer-social:active {
    transform: scale(1.16);
}

.footer-social img {
    display: block;
    width: 100%;
    height: 100%;
}

/* TOAST */

#toast {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 16px;
    padding-top: 48px;
    box-sizing: border-box;
    text-align: center;
    z-index: 1000;
}

#toast-content {
    display: inline-block;
    padding: 17px;
    padding-bottom: 19px;
    padding-left: 32px;
    padding-right: 32px;
    border-radius: 100px;
    background-color: #000000;
    color: #FFFFFF;
    font-size: 17px;
    line-height: 23px;
    font-weight: 700;
    opacity: 0;
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.2);
    transform: translateY(-80%);
}

#confirm {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #111111;
    background: -moz-linear-gradient(45deg, #111111 0%, #000000 100%);
    background: -webkit-linear-gradient(45deg, #111111 0%, #000000 100%);
    background: linear-gradient(45deg, #111111 0%, #000000 100%);
    color: #FFFFFF;
    font-size: 18px;
    line-height: 26px;
    text-align: center;
    z-index: 1010;
}

#confirm strong {
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
}

#confirm>div {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 32px;
    box-sizing: border-box;
}

#confirm>div>div {
    max-width: 600px;
    margin: 0 auto;
}

#confirm>div>div>div {
    padding-bottom: 16px;
}

#confirm img {
    display: block;
    width: 100px;
    margin: 0 auto;
    margin-bottom: 32px;
}

#exit {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 130px;
    height: 50px;
    padding: 0 !important;
    border-radius: 100px;
    border: solid 2px #FFFFFF;
    box-sizing: border-box;
    margin-top: 16px;
    font-size: 16px !important;
    line-height: 16px !important;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.18s;
}

#exit:hover {
    transform: scale(1.12);
}

.touch #exit:hover {
    transform: scale(1);
}

#exit:active,
.touch #exit:active {
    transform: scale(1.12);
}


/* PANEL */

.panel-bg {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #E20532;
    opacity: 0.85;
    z-index: 999;
}

.panel-bg-show {
    animation-name: anima-panel-bg-show;
    animation-duration: 0.25s;
}

@keyframes anima-panel-bg-show {
    from {
        opacity: 0;
    }

    to {
        opacity: 0.85;
    }
}

.panel-bg-hide {
    animation-name: anima-panel-bg-hide;
    animation-duration: 0.25s;
    animation-fill-mode: forwards;
}

@keyframes anima-panel-bg-hide {
    from {
        opacity: 0.85;
    }

    to {
        opacity: 0;
    }
}

.panel {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    opacity: 1;
    z-index: 999;
    transform: scale(1);
}

.panel-show {
    animation-name: anima-panel-show;
    animation-duration: 0.25s;
}

@keyframes anima-panel-show {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.panel-hide {
    animation-name: anima-panel-hide;
    animation-duration: 0.25s;
    animation-fill-mode: forwards;
}

@keyframes anima-panel-hide {
    from {
        opacity: 1;
        transform: scale(1);
    }

    to {
        opacity: 0;
        transform: scale(0.9);
    }
}

.panel-close {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
    width: 72px;
    height: 72px;
    cursor: pointer;
}

.panel-close img {
    display: block;
    width: 24px;
    height: 24px;
    transition: 0.18s;
}

.panel-close:hover img {
    transform: scale(1.2);
}

.touch .panel-close:hover img {
    transform: scale(1);
}

.panel-close:active img,
.touch .panel-close:active img {
    transform: scale(1.2);
}

.panel-buttons {
    text-align: center;
}

.panel-btn,
.panel-btn:link,
.panel-btn:visited,
.panel-btn:visited:hover {
    display: inline-block;
    padding: 13px;
    padding-bottom: 15px;
    box-sizing: border-box;
    color: #FFFFFF;
    font-size: 20px;
    line-height: 20px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.18s;
}

.panel-btn:hover {
    color: #000000 !important;
}

.touch .panel-btn:hover {
    color: #FFFFFF;
}

.panel-btn:active,
.touch .panel-btn:active {
    color: #000000 !important;
}

.panel-btn-2,
.panel-btn-2:link,
.panel-btn-2:visited,
.panel-btn-2:visited:hover {
    display: inline-block;
    padding: 13px;
    padding-bottom: 15px;
    box-sizing: border-box;
    color: #000000;
    font-size: 20px;
    line-height: 20px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.18s;
}

.panel-btn-2:hover {
    color: #FFFFFF !important;
}

.touch .panel-btn-2:hover {
    color: #000000;
}

.panel-btn-2:active,
.touch .panel-btn-2:active {
    color: #FFFFFF !important;
}

.panel-social {
    display: flex;
    column-gap: 16px;
    width: 116px;
    padding-top: 24px;
    padding-bottom: 16px;
    margin: 0 auto;
}

.panel-social-link,
.panel-social-link:link,
.panel-social-link:visited,
.panel-social-link:visited:hover {
    width: 50px;
    height: 50px;
    border: solid 2px #000000;
    border-radius: 100px;
    box-sizing: border-box;
    cursor: pointer;
    transform: scale(1);
    transition: 0.18s;
}

.panel-social-link img {
    display: block;
    width: 100%;
    height: 100%;
}

.panel-social-link:hover {
    transform: scale(1.2);
}

.touch .panel-social-link:hover {
    transform: scale(1);
}

.panel-social-link:active,
.touch .panel-social-link:active {
    transform: scale(1.2);
}

/* MODAL */

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    opacity: 0;
    overflow: auto;
    z-index: 10;
}

.modal-show {
    opacity: 1;
    transition: 0.25s;
}

.modal-hide {
    opacity: 0;
    transition: 0.35s;
}

.modal-layout {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.modal-centered {
    width: 100%;
    height: 100%;
    padding: 16px;
    margin: auto;
    box-sizing: border-box;
}

.modal-frame {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 640px;
    margin: 0 auto;
    box-sizing: border-box;
    border-radius: 10px;
    background-color: #FFFFFF;
    box-shadow: 0px 0px 48px 0px rgba(0, 0, 0, 0.2);
    transform: scale(0.95);
    transition: 0.25s;
}

.modal-show .modal-frame {
    transform: scale(1);
    transition: 0.25s;
}

.modal-hide .modal-frame {
    transform: scale(0.95);
    transition: 0.25s;
}

.modal-content {
    height: 100%;
    overflow: auto;
}

.modal-content::-webkit-scrollbar {
    width: 18px;
    height: 18px;
    border-radius: 30px;
}

.modal-content::-webkit-scrollbar-thumb {
    min-height: 64px;
    background: #D4D4D4;
    border-radius: 30px;
    border: solid 6px #FFFFFF;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: #999999;
}

.modal-content::-webkit-scrollbar-track {
    background-color: transparent;
    border-radius: 0px;
}

.modal-loader {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
}

.modal-spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    box-sizing: border-box;
    border-radius: 50%;
    border: 4px solid #E20532;
    border-bottom-color: transparent;
    animation: modal-spinner-anima 0.5s linear infinite;
}

@keyframes modal-spinner-anima {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.modal-close-frame {
    position: sticky;
    display: flex;
    justify-content: flex-end;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    z-index: 3;
}

.modal-close {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 12px;
    right: 18px;
    width: 40px;
    height: 40px;
    box-sizing: border-box;
    background-color: transparent;
    border-radius: 100px;
    cursor: pointer;
}

.modal-close img {
    display: block;
    width: 18px;
    height: 18px;
    transition: 0.18s;
}

.modal-close:hover img {
    transform: scale(1.25);
}

.touch .modal-close:hover img {
    transform: scale(1);
}

.modal-close:active img,
.touch .modal-close:active img {
    transform: scale(1.25);
}

/* DOCUMENT */

.document-content {
    padding: 40px;
    padding-bottom: 100px;
    box-sizing: border-box;
    color: #000000;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
}

.document-content-intro {
    padding: 0;
    margin: 0;
    margin-bottom: 32px;
    color: #E20532;
    font-size: 22px;
    line-height: 28px;
    font-weight: 600;
}

.document-content-intro p {
    margin: 0 !important;
    padding: 0 !important;
}

.document-content p {
    padding: 0;
    margin: 0;
    margin-bottom: 16px;
}

.document-content ul,
.document-content ol {
    padding: 0;
    margin: 0;
    margin-bottom: 16px;
}

.document-content ul li {
    list-style-position: inside;
    list-style-type: disc;
}

.document-content ol li {
    list-style-position: inside;
    list-style-type: decimal;
}

.document-content h1 {
    padding: 0;
    margin: 0;
    margin-top: 32px;
    margin-bottom: 32px;
    color: #E20532;
    font-size: 34px;
    line-height: 42px;
    font-weight: 700;
}

.document-content h2 {
    padding: 0;
    margin: 0;
    margin-top: 40px;
    margin-bottom: 24px;
    color: #E20532;
    font-size: 15px;
    line-height: 21px;
    font-weight: 600;
    text-transform: uppercase;
}

.document-content h3 {
    padding: 0;
    margin: 0;
    margin-top: 40px;
    margin-bottom: 24px;
    color: #E20532;
    font-size: 15px;
    line-height: 21px;
    font-weight: 600;
}

.document-content h4 {
    padding: 0;
    margin: 0;
    margin-top: 32px;
    margin-bottom: 20px;
    color: #000000;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
}

.document-content h5 {
    padding: 0;
    margin: 0;
    margin-top: 32px;
    margin-bottom: 20px;
    color: #666666;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
}

.document-content strong {
    color: #222222;
    font-weight: 600;
}

.document-content a,
.document-content a:link,
.document-content a:active,
.document-content a:visited,
.document-content a:hover,
.document-content a:visited:hover {
    text-decoration: underline;
    color: #999999;
}

/* RESPONSIVE */

@media (max-width: 1300px) {

    .footer-links {
        flex-direction: column;
        row-gap: 8px;
    }

}

@media (max-width: 920px) {

    .header-actions-frame {
        display: none;
    }

    .header-left {
        flex: auto;
        padding-right: 24px;
    }

    .header-menu {
        flex: auto;
        justify-content: flex-end;
        padding-left: 24px;
    }

}

@media (max-width: 900px) {

    .header-actions-frame {
        justify-content: center;
    }

    .header-actions-layout {
        flex-direction: column;
        row-gap: 8px;
    }

    .dream-layout {
        flex-direction: column;
        row-gap: 48px;
    }

    .dream-logo {
        width: 100%;
    }

    .dream-text {
        justify-content: center;
        width: 100%;
        text-align: center;
    }

    .step {
        flex-direction: column;
        row-gap: 56px;
    }

    .step-left {
        order: 1;
        width: 100%;
    }

    .step-alt .step-left {
        order: 1;
    }

    .step-right {
        order: 2;
        width: 100%;
        padding-left: 24px;
        padding-right: 24px;
    }

    .step-alt .step-right {
        order: 2;
        padding-left: 24px;
        padding-right: 24px;
    }

    .advance {
        height: 600px;
        justify-content: center;
    }

    .advance-picture {
        max-width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
    }

    .advance-picture img {
        display: block;
        width: auto;
        height: 100%;
    }

    .advance-layout {
        flex-direction: column;
        row-gap: 32px;
        padding-top: 100px;
        padding-left: 24px;
        padding-right: 24px;
        box-sizing: border-box;
    }

    .advance-logo {
        width: 100%;
        padding-left: 0;
    }

    .advance-brand {
        max-width: 280px;
    }

    .advance-caption {
        width: 100%;
    }

    .features-item {
        flex-direction: column;
    }

    .features-item-icon-frame {
        justify-content: center;
    }

    .features-item-content {
        padding-top: 40px;
        text-align: center;
    }

    .consult-layout {
        flex-direction: column;
    }

    .consult-left {
        width: 100%;
        padding-left: 24px;
        padding-right: 24px;
    }

    .consult-right {
        width: 100%;
    }

    .consult-content {
        padding-top: 60px;
        padding-bottom: 150px;
    }

    .consult-house {
        position: relative;
    }

    .contact-options {
        display: inline-flex;
        flex-direction: column;
        column-gap: 48px;
    }

}

@media (max-width: 840px) {

    .footer-layout {
        flex-direction: column;
        row-gap: 32px;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-networks {
        justify-content: center;
    }

}

@media (max-width: 480px) {

    .header {
        padding-bottom: 0px;
    }

    .intro {
        height: 90%;
    }

    .intro-caption {
        padding-top: 15%;
        font-size: 48px;
        line-height: 50px;
    }

    .dream-content {
        padding-top: 80px;
        padding-bottom: 100px;
    }

    .dream-text {
        font-size: 25px;
        line-height: 37px;
    }

    .dream-caption {
        padding-top: 70px;
        font-size: 42px;
        line-height: 44px;
    }

    .caption {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .steps {
        row-gap: 80px;
    }

    .step-icon {
        width: 160px;
        height: 160px;
        margin-top: 37%;
    }

    .step-title {
        padding-bottom: 30px;
        font-size: 38px;
        line-height: 42px;
    }

    .step-text {
        font-size: 23px;
        line-height: 35px;
    }

    .step-button,
    .step-button:link,
    .step-button:visited {
        padding-top: 13px;
        padding-bottom: 14px;
        padding-left: 30px;
        padding-right: 30px;
        margin-top: 40px;
        font-size: 20px;
        line-height: 20px;
    }

    .advance {
        height: 500px;
    }

    .features-intro {
        font-size: 30px;
        line-height: 42px;
    }

    .features-items {
        row-gap: 50px;
        padding-top: 50px;
        padding-bottom: 100px;
    }

    .features-item-content {
        padding-top: 24px;
    }

    .features-item-icon {
        width: 180px;
        height: 180px;
    }

    .features-item-title {
        padding-bottom: 20px;
        font-size: 38px;
        line-height: 42px;
    }

    .features-item-text {
        font-size: 23px;
        line-height: 35px;
    }

    .logo-pic {
        padding-top: 180px;
        padding-bottom: 80px;
    }

    .consult-content {
        padding-bottom: 100px;
    }

    .contact-icon {
        bottom: -100px;
        width: 150px;
        height: 150px;
    }

    .contact-content {
        padding-top: 130px;
        padding-bottom: 100px;
    }

    .contact-intro {
        font-size: 26px;
        line-height: 37px;
    }

    .contact-intro div {
        padding-bottom: 24px;
    }

    .contact-form {
        padding-top: 24px;
    }

    .contact-box {
        height: 54px;
        padding-left: 24px;
        padding-right: 24px;
        margin-bottom: 24px;
        font-size: 22px;
        line-height: 22px;
    }

    .contact-radio {
        padding-top: 4px;
        font-size: 18px;
        line-height: 22px;
    }

    .contact-button {
        padding-top: 13px;
        padding-bottom: 14px;
        margin-top: 40px;
        font-size: 20px;
        line-height: 20px;
    }

}