@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500&display=swap');

:root {
    /* Colors: */
    --yellow: #CDAA91;
    --white: #FFFFFF;
    --brown: #4D4D4C;
    --orange: #D69A3B;
    --red: #8F2320;

    --cream: #F4F4F4;
    --blue: #0B94A6;
    --green: #84AF29;
    --black: #1D1D1B;
    --unnamed-color-575756: #575756;
    --dark: #4D4D4C;

    /* Font/text values */
    --unnamed-font-style-normal: normal;
    --unnamed-font-weight-normal: normal;
    --unnamed-font-size-11: 11px;
    --unnamed-font-size-16: 16px;
    --unnamed-font-size-22: 22px;
    --unnamed-font-size-31: 31px;
    --unnamed-font-size-45: 45px;
    --unnamed-font-size-63: 63px;
    --unnamed-font-size-90: 90px;
    --unnamed-font-size-127: 127px;
    --unnamed-character-spacing--0-55: -0.55px;
    --unnamed-character-spacing--0-8: -0.8px;
    --unnamed-character-spacing--1-1: -1.1px;
    --unnamed-character-spacing--1-55: -1.55px;
    --unnamed-character-spacing--2-25: -2.25px;
    --unnamed-character-spacing--3-15: -3.15px;
    --unnamed-character-spacing--4-5: -4.5px;
    --unnamed-character-spacing--6-35: -6.35px;
    --unnamed-line-spacing-120: 120px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--brown);
    font-weight: 600;
}

::-moz-selection {
    /* Code for Firefox */
    color: var(--white);
    background: var(--blue);
}

::selection {
    color: var(--white);
    background: var(--blue);
}

h1 {
    font: normal normal medium 56px/93px;
    letter-spacing: -1.6px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}


h2 {
    font-size: 28px;
    letter-spacing: -0.52px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

h2 span {
    font-size: 40px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: -1.18px;
    font-family: 'Inter', sans-serif;
}

h3 {
    font: normal normal normal 52px/75px;
    letter-spacing: -1.37px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

h3 span {
    font-style: italic;
}

h4 {
    font: normal normal normal 36px/41px;
    letter-spacing: 0px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

h5 {
    font: normal normal normal 23px/22px;
    letter-spacing: -0.23px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

h6 {
    font: normal normal medium 24px/30px;
    letter-spacing: -0.24px;
    color: var(--green);
    text-transform: uppercase;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

p {
    font-size: 18px;
    letter-spacing: -0.4px;
    color: var(--dark);
    font-weight: normal;
    line-height: 2;
    font-family: 'Inter', sans-serif;
}

small {
    font: normal normal 300 14px;
    letter-spacing: -0.32px;
}

.text-primary {
    color: var(--green) !important;
}

main {
    position: relative;
}

.special-btn {
    background: var(--green) 0% 0% no-repeat padding-box;
    color: var(--white);
    text-transform: uppercase;
    text-align: center;
    box-shadow: 0px 20px 50px #0000005A;
    border-radius: 200px 0px 200px 200px;
    rotate: 45deg;
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    border: none;
    position: relative;
    z-index: 2;
    transition: all .4s ease;
}

/*--------

    N A V B A R

--------*/
nav {
    position: fixed;
    top: -100px;
    width: 100%;
    z-index: 99;
    transition: all .3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

nav.scroll {
    background-color: var(--blue);
    top: 0;
    transition: all .3s ease;
}

nav button {
    position: absolute;
    bottom: -20px;
}


nav button.form-select {
    border-radius: 70px;
    color: #575756;
    padding: 0.375rem 20px;
    width: 300px;
    text-align: center;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
}

nav .links a {
    margin-left: 2rem;
    color: var(--white);
    text-decoration: none;
}

nav a img {
    height: 40px;
}

nav .map-wrapper-2 {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 0px 30px #00000029;
    border-radius: 13px;
    max-width: 538px;
    min-width: 350px;
    height: auto;
    right: 0;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    right: 50%;
    transform: translate(50%, -10%);
    opacity: 0;
    cursor: none;
    pointer-events: none;
    z-index: 0;
}

nav .map-wrapper-2.active {
    transition: all .7s ease;
    opacity: 1;
    pointer-events: all;
    z-index: 7;
    right: 50%;
    transform: translate(50%, 65%);
}

nav .map-wrapper-2 .btn-map {
    position: absolute;
    bottom: -75px;
    background: #4D4D4C 0% 0% no-repeat padding-box;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    right: 50px;
    z-index: 2;
    width: 150px;
    height: 150px;
    border-radius: 100px;
    text-decoration: none;
}

nav .map-wrapper-2 small {
    color: var(--orange);
    font-size: 16px;
}

nav .map-wrapper-2 p {
    color: var(--brown);
    font-size: 18px;
    letter-spacing: 0px;
    line-height: 1;
}

/*--------

    H E A D E R

--------*/

header {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: -15px;
    position: relative;
    z-index: 6;
    background: #F7F6F4 0% 0% no-repeat padding-box;
    box-shadow: 0px 0px 20px #00000029;
}

header .guiar {
    background: #F7F6F4 0% 0% no-repeat padding-box;
    border-radius: 37px;
    height: 70px;
    width: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    z-index: 4;
    padding-top: 5px;
}

header .guiar img {
    width: 50px;
    position: relative !important;
    height: auto !important;
}

header .guiar-back {
    background: rgb(236, 216, 184);
    background: radial-gradient(circle, rgba(236, 216, 184, 1) 0%, rgba(247, 246, 244, 1) 100%);
    height: 100px;
    position: absolute;
    z-index: 0;
    width: 400px;

}

header .contact-h {
    width: 100%;
    background: var(--green) 0% 0% no-repeat padding-box;
    padding: 10px 0;
    color: var(--white);
    margin-top: -15px;
    z-index: 3;
}

header .contact-h a {
    display: flex;
    color: var(--white);
    text-decoration: none;
}

header .contact-h small {
    font-family: var(--playfair-display);
}

header .sub-nav {
    width: 100%;
    position: absolute;
    bottom: -120px;
    height: 120;
}

header .sub-nav a {
    color: var(--white);
    text-decoration: none;
}

header .sub-nav .map-selector {
    background: var(--white);
    color: var(--brown);
    border-radius: 100px;
    padding: .375rem 30px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

header .sub-nav .map-wrapper {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 0px 30px #00000029;
    border-radius: 13px;
    width: 538px;
    height: 457px;
    right: 0;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(-500px);
    opacity: 0;
    cursor: none;
    pointer-events: none;
    z-index: 0;
}

header .sub-nav .map-wrapper.active {
    transform: translateY(0px);
    transition: all .7s ease;
    opacity: 1;
    pointer-events: all;
    z-index: 7;
}

header .sub-nav .map-wrapper .btn-map {
    position: absolute;
    bottom: -75px;
    background: #4D4D4C 0% 0% no-repeat padding-box;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    right: 50px;
    z-index: 2;
    width: 150px;
    height: 150px;
    border-radius: 100px;
    text-decoration: none;
}

header .sub-nav .map-wrapper small {
    color: var(--orange);
    font-size: 16px;
}

header .sub-nav .map-wrapper p {
    color: var(--brown);
    font-size: 18px;
    letter-spacing: 0px;
    line-height: 1;
}

/*----

  M E N U

----*/
.menu {
    position: fixed;
    top: -100%;
    left: 0;
    height: 100vh;
    width: 100vw;
    padding: 10px 120px;
    background: #1D1D1D 0% 0% no-repeat padding-box;
    z-index: 9999;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: start;
    transition: all .4s ease;
    pointer-events: none;
    opacity: 0;
}

.menu.active {
    top: 0;
    transition: all .4s ease;
    pointer-events: all;
    opacity: 1;
    overflow: scroll;
}

.menu .link {
    padding-bottom: 18px;
    border-bottom: 1px solid #727272;
    text-decoration: none;
    color: #FFFFFF !important;
    margin-bottom: 30px;
}

.menu .link h2 {
    font-size: 62px;
    letter-spacing: 0;
}

.menu .link p {
    letter-spacing: 0px;
    color: #989898;
    font-size: 28px;
}

.menu .link:hover h2 {
    color: #CDAA91;
}

.menu .sub-links {
    letter-spacing: 0px;
    color: #FFFFFF;
    font-size: 20px;
    text-decoration: none;
}

.menu .sub-links:hover {
    color: #CDAA91;
}

.accordion-button-menu {
    background-color: transparent;
    border: none;
}

.guiar-card {
    border-radius: 18px;
    position: relative;
    overflow: hidden;
}

.guiar-card h4 {
    font-size: 22px;
}

.guiar-card .img-bg {
    position: absolute;
    width: 130%;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    z-index: 0;
}

.guiar-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: transparent linear-gradient(180deg, #464646 0%, #1E1E1EB6 26%, #0E0E0E 100%) 0% 0% no-repeat padding-box;
    opacity: .8;
    mix-blend-mode: multiply;
}

.guiar-card .card-c {
    position: relative;
    z-index: 2;
}

.card-md {
    padding: 25px 20px;
}

.card .card-title,
.nav-d .card-title,
.card-title {
    border-radius: 20px;
    padding: 5px 25px;
    border: 1px solid;
    padding-top: 1px;
}

.card .card-title small,
.nav-d .card-title small,
.card-title small {
    text-transform: uppercase;
}

.card-title.black {
    color: var(--white);
    background-color: #272727;
    border-color: #272727;
}

.card-title.yellow {
    color: var(--black);
    background-color: var(--yellow);
    border-color: var(--yellow);
}

.card-c p {
    color: var(--cream);
}


/*-----

    H E R O

-----*/
.hero {
    position: relative;
    overflow: hidden;
    padding-bottom: 10px;
    z-index: -1;
}

.hero .hero-bg {
    position: absolute;
    z-index: 1;
    height: 100%;
    width: auto;
    top: 0;
    aspect-ratio: 2;
    mix-blend-mode: color-burn;
}


.hero .hero-color {
    position: absolute;
    z-index: 0;
    height: 100%;
    width: auto;
    top: 0;
    aspect-ratio: 2;
    background-color: #0B94A6;
    opacity: 0.86;
}

.hero .hero-leaves {
    position: absolute;
    z-index: 1;
    height: auto;
    width: 160%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.logo img {
    height: 60px;
    width: auto;
    position: absolute;
    z-index: 0;
    top: 0;
}

.hero .overlay {
    background: transparent linear-gradient(0deg, var(--white) 0%, #FFFFFF00 100%) 0% 0% no-repeat padding-box;
    height: 493px;
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 1;
}

.hero .container-fluid {
    z-index: 2;
    color: var(--white);
}

.hero .h-container {
    position: absolute;
    width: 110%;
    margin-left: -5%;
    margin-top: 10%;
}

.hero h1 {
    text-shadow: 0px 0px 20px #00000079;
    letter-spacing: -1.12px;
    font-size: 43px;
    margin-bottom: 10px;
}

.hero h1 span {
    text-transform: uppercase;
    font-size: 76px;
    font-weight: bold;
    letter-spacing: -1.74px;
}

.btn-project {
    position: absolute;
    top: 200px;
    background-color: #10595C;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    text-align: center;
    left: -100px;
    z-index: 2;
    width: 200px;
    height: 200px;
    border-radius: 100px;
    text-decoration: none;
    box-shadow: 0px 20px 50px #0000005A;
}

.btn-project:hover {
    color: var(--white);
    text-decoration: underline;
}

.btn-models {
    background: var(--blue) 0% 0% no-repeat padding-box;
    color: var(--white);
    text-transform: uppercase;
    text-align: center;
    box-shadow: 0px 20px 50px #0000005A;
    border-radius: 200px 200px 200px 0px;
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}

.images-h .col {
    padding: 0 1.2rem;
    width: 20% !important;
}

.images-h .h-img {
    overflow: hidden;
    position: relative;
    border-radius: 13px;
    box-shadow: 0px 0px 20px #00000029;
}

.images-h .h-img img {
    position: absolute;
    height: 100%;
    width: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.images-h .col:first-child .h-img {
    height: 650px;
}

.images-h .col:nth-child(2) {
    margin-top: 220px;
}

.images-h .col:nth-child(2) .h-img {
    height: 650px;
}

.images-h .col:nth-child(2) {
    margin-top: 220px;
}

.images-h .col:nth-child(3) {
    margin-top: 400px;
}

.images-h .col:nth-child(3) .h-img {
    height: 650px;
}

.images-h .col:nth-child(4) {
    margin-top: 170px;
}

.images-h .col:nth-child(4) .h-img {
    height: 650px;
}

.images-h .col:nth-child(5) {
    margin-top: 50px;
}

.images-h .col:nth-child(5) .h-img {
    height: 650px;
}

/*-----

    S E C T I O N S

------*/

.un-concepto {
    overflow: hidden;
    padding-top: 7rem;
}

.un-concepto .leaves-der {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: auto;
    mix-blend-mode: multiply;
    z-index: -1;
}

.un-concepto .leaves-izq {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: auto;
    mix-blend-mode: multiply;
    z-index: -1;
    rotate: 180deg;
}

.concepto-blue{
    margin-top: 60px;
    margin-bottom: 200px;
    padding: 60px 0px;
    padding-bottom: 15px;
}

.concepto-blue h2{
    margin-bottom: 0px;
}

.arboledas-data {
    padding: 6rem 0;
}

.arboledas-data .img-s-two {
    height: 450px;
    overflow: hidden;
    position: relative;
    border-radius: 13px;
    width: 100%;
    box-shadow: 0px 0px 20px #00000029;
}

.arboledas-data .img-s-two img {
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    width: auto;
    transform: translateX(-50%);
}

.arboledas-data .btn-models {
    width: 140px;
    height: 140px;
    font-size: 14px;
    font-weight: 400;
    justify-content: end;
    padding-bottom: 5px;
    padding-left: 5px;
    right: -50px;
}

.arboledas-data .btn-models i {
    align-self: baseline;
    rotate: 45deg;
}

.video-section {
    padding: 6rem 0;
}

.video-exp {
    position: relative;
    z-index: 2;
    height: 630px;
    border-radius: 13px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.video-exp .video {
    position: absolute;
    top: 50%;
    width: 140%;
    height: auto;
    left: 50%;
    z-index: 0;
    transform: translate(-50%, -50%);
}


.video-exp button.playing {
    opacity: 0;
    transition: all .4s ease;
}

.video-section .leaves-top-r {
    position: absolute;
    mix-blend-mode: multiply;
    top: -280px;
    right: -130px;
    z-index: -1;
    rotate: 0deg;
    width: 50%;
    height: auto;
}

.video-section .leaves-bottom-l {
    position: absolute;
    mix-blend-mode: multiply;
    bottom: -260px;
    left: -180px;
    z-index: -1;
    rotate: 180deg;
    width: 50%;
    height: auto;
}

.green-band {
    position: absolute;
    z-index: 1;
    background-color: #F4F4F4;
    width: 100%;
    height: 380px;
    transform: translateY(-50%);
    top: 50%;
}

.amenidades {
    padding-top: 6rem;
    padding-bottom: 12rem;
}

.s-green {
    background-color: var(--blue);
    color: var(--white);
}

.s-green .container {
    padding: 0 2.5rem;
}

.s-green .virtual-btn {
    height: 200px;
    width: 200px;
    border-radius: 200px 0px 200px 200px;
    background-color: var(--green);
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    font: normal normal medium 18px/18px;
    letter-spacing: 0px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: -100px;
    margin-right: 200px;
    padding-right: 18px;
    padding-top: 20px;
}

.s-green .leaves-top-r {
    mix-blend-mode: multiply;
    position: absolute;
    z-index: -1;
    height: 700px;
    width: auto;
    bottom: 30px;
    right: 0;
}

.s-green .leaves-bottom-l {
    mix-blend-mode: multiply;
    position: absolute;
    z-index: -1;
    width: auto;
    height: 700px;
    top: 40px;
    left: 0;
}

.our-model {
    padding: 12rem 0;
}

.our-model .our-model-img {
    height: 530px;
    position: relative;
    border-radius: 13px;
    overflow: hidden;
}

.our-model .our-model-img img {
    position: absolute;
    height: 100%;
    width: auto;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.s-logos {
    padding-bottom: 6rem;
    padding-right: 4rem;
    padding-left: 4rem;
}

.s-logos .badge {
    background: #0B94A6 0% 0% no-repeat padding-box;
    border-radius: 19px;
    color: var(--white);
    letter-spacing: -.6px;
    font-size: 21px;
    font-weight: 400;
}

.s-logos h2 {
    font-size: 52px;
}

.s-logos h2 span {
    font-size: 80px;
    font-weight: 600;
}

.s-logos .leaves-s {
    position: absolute;
    z-index: -1;
    mix-blend-mode: multiply;
    left: -50px;
    top: -200px;
    width: 440px;
    height: auto;
}

.swiper-wrapper {
    margin-left: -200px;
    padding: 30px 0;
}

.button-wrapper {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.swiper-slide {
    border-radius: 13px;
    box-shadow: 0px 0px 30px #00000029;
    overflow: hidden;
}

.service-img {
    height: 470px;
    position: relative;
    overflow: hidden;
}

.service-img img {
    position: absolute;
    z-index: 0;
    height: auto;
    width: 290%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.service-img .overlay {
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 140px;
    background: transparent linear-gradient(180deg, #FFFFFF00 0%, #FFFFFF 100%) 0% 0% no-repeat padding-box;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    text-align: center;
    padding-bottom: 30px;
}

.service-img .overlay h6 {
    color: var(--blue) !important;
    font-size: 25px;
    text-transform: initial;
}

.swiper-button-next,
.swiper-button-prev {
    background-color: var(--brown);
    color: var(--white);
    height: 60px;
    width: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
    content: none;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
    content: none;
}

.img-s-heart {
    height: 445px;
    border-radius: 13px;
    overflow: hidden;
    position: relative;
    box-shadow: 0px 0px 20px #00000029;
}

.img-s-heart img,
.img-s-heart-two img {
    position: absolute;
    width: auto;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.img-s-heart-two {
    position: absolute;
    left: -20%;
    bottom: -50%;
    border-radius: 13px;
    overflow: hidden;
    height: 100%;
    background-color: red;
    box-shadow: 0px 0px 40px #00000029;
}

/*-----

    F O R M

-----*/
.bg-cream {
    background-color: #F7F6F4;
}


.form-control {
    background: transparent;
    border: none;
}

.simple-input {
    border-radius: 28px;
    background: #EBEBEB 0% 0% no-repeat padding-box;
    padding: .8rem;
}

.special-input {
    border: 1px solid var(--black);
    padding: .4rem;
    border-radius: 28px;
}

.special-input .input-name {
    position: absolute;
    background-color: var(--cream);
    color: var(--black);
    top: -8px;
    left: 30px;
    font-size: 11px;
}

.special-input input:focus {
    background: transparent;
    border: none;
    box-shadow: none;
}

.first-row .col-md-4 {
    margin-bottom: 1rem;
}

form .btn-submit {
    position: absolute;
    top: -150px;
    right: 0px;
    rotate: 0deg;
}

/*---

    L O G O S

----*/

.logos img {
    width: 200px;
}


.contact-us {
    background-color: #F4F4F4;
    padding: 3rem 0;
}

.contact-us .badge {
    background: #0B94A6 0% 0% no-repeat padding-box;
    border-radius: 19px;
    color: var(--white);
    letter-spacing: -.6px;
    font-size: 21px;
    font-weight: 400;
    text-transform: uppercase;
}

.contact-us .number {
    letter-spacing: -2.11px;
    color: #333333;
    text-transform: uppercase;
    font-size: 80px;
    font-weight: 800;
    margin-bottom: .3rem;
    line-height: 1;
}

.contact-us .leaves-contact-l {
    position: absolute;
    left: -110px;
    bottom: 0;
    height: 470px;
    width: auto;
    mix-blend-mode: multiply;
}

.contact-us .leaves-contact-r {
    position: absolute;
    right: -250px;
    bottom: 0;
    height: 470px;
    width: auto;
    mix-blend-mode: multiply;
}

/*-----

    H O U S E  C A R D

------*/

.houses .col-md-4 {
    padding-right: 5rem;
}

.house-card {
    position: relative;
}

.house-card small {
    color: var(--green) !important;
}

.house-card h4 {
    font-family: var(--inter);
    font-size: 30px;
    letter-spacing: -1.7px;
    color: #4D4D4C;
}

.house-card .model {
    background-color: var(--cream);
    border-radius: 13px 13px 0px 0px;
    height: 220px;
    flex-direction: column;
    justify-content: end;
    padding: 20px 40px;
    margin-top: 30px;
    position: relative;
}

.house-card .model-price{
    background-color: var(--green);
    color: var(--cream) !important;
    border-radius: 0px 0px 13px 13px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 10px;
    margin-bottom: 30px;
}

.house-card .model-price small{
    color: var(--cream) !important;
}

.model {
    text-decoration: none;
    color: #4D4D4C;
    position: relative;
    overflow: hidden;
}

.model-sold-out img{
    filter: grayscale(1);
}

.model-sold-out::after{
    content: 'Agotado';
    background-color: var(--orange);
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: -2px;
    font-weight: bold;
    font-size: 1.3em;
    padding: 15px 30px;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 10;
}

.model-sold-out .leaves{
    opacity: 1 !important;
}

.house-card .img-model {
    border-radius: 500px;
    width: 250px;
    height: 250px;
    aspect-ratio: 1;
    position: absolute;
    overflow: hidden;
    top: -40px;
    right: -50px;
    box-shadow: 0px 0px 30px #0000006C;
    z-index: 2;
}

.house-card .img-model img {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: auto;
}

.model:hover {
    color: #4D4D4C;
    cursor: pointer;
}

.leaves {
    mix-blend-mode: multiply;
    opacity: 0;
    position: absolute;
    left: -100px;
    bottom: 12%;
    width: 270px;
    rotate: -40deg;
}

.model:hover .leaves {
    opacity: 1;
    transition: all .3s ease;
}

.model h2 {
    font-size: 42px;
}

.h-2 {
    margin-top: 10rem;
}

.house-card .accordion-button {
    padding: inherit;
    letter-spacing: -0.8px;
    color: #4D4D4C;
    font-size: 16px;
    padding-right: 10px !important;
}

.house-card .accordion-body {
    background-color: var(--cream);
}

.house-card .accordion-button:not(.collapsed) {
    color: var(--brown);
    background-color: var(--white);
}

.house-card .accordion-button::after {
    width: 14px;
    height: 14px;
    background-size: 14px;
}

.house-card .accordion-body {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
}

.house-card .accordion-element {
    display: flex;
    align-items: end;
    width: 50%;
    margin-bottom: 10px;
    letter-spacing: -0.8px;
    color: #4D4D4C;
    font-size: 16px;
    font-family: var(--inter);
    padding-right: 8px;
}

.house-card .accordion-element img {
    width: 20px;
    aspect-ratio: 1;
    margin-bottom: 5px;
    margin-right: 12px;
}

/*--MODAL MODEL--*/
@media (min-width: 576px) {
    .modal-dialog {
        max-width: 1150px;
    }
}

.modal-content {
    border-radius: 0 !important;
    background: transparent;
    border: none;
}

.modal-body {
    padding: 3rem 4rem;
    position: relative;
    background-color: white;
}

.modal-container-fluid {
    background-color: white;
}

.modal-content .s-green {
    background-color: var(--blue);
}

.modal-exit {
    background: #4D4D4C 0% 0% no-repeat padding-box;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 88px;
    width: 88px;
    border-radius: 100px;
}

.model-modal .modal-body {
    overflow: initial;
}

.model-modal .hero-modal {
    padding-top: 10rem;
}

/*Modal Font Text*/

.model-modal h1 {
    letter-spacing: -3.15px;
    color: #4D4D4C;
    font-size: 54px;
    position: relative;
    margin-bottom: 12px;
    line-height: 1;
}

.model-modal h1::before {
    content: "";
    background-image: url(../img/simple-leaves.png);
    background-size: 100% auto;
    background-position: center;
    display: inline-block;
    width: 100%;
    height: 140px;
    position: absolute;
    left: -50px;
    bottom: 30px;
    rotate: -30deg;
    mix-blend-mode: multiply;
}

.model-modal .sub-h {
    font-weight: 600;
    color: var(--green);
    letter-spacing: -0.16px;
    font-family: 'Inter';
    font-size: 14px;
    margin-bottom: 32px;
}

.model-modal p {
    letter-spacing: -0.32px;
    font-size: 16px;
    color: #4D4D4C;
    font-weight: 600;
    line-height: 33px;
}

.model-modal h6 {
    font-size: 24px;
    font-family: 'Inter', sans-serif;
    letter-spacing: -1.2px;
    color: #84AF29;
    text-transform: uppercase;
}

/*First Secction Modal*/

.model-modal .modal-content {
    overflow: scroll;
}


.model-modal .model-price {
    position: absolute;
    width: 200px;
    height: 200px;
    background: #0B94A6 0% 0% no-repeat padding-box;
    color: var(--white);
    box-shadow: 0px 20px 50px #0000005A;
    border-radius: 1000px;
    opacity: 0;
    transition: all .3s ease;
    right: -35px;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.model-modal .model-price small {
    margin-bottom: 5px;
    font: normal normal bold 13px/20px Futura;
    letter-spacing: 0px;
    color: #F7F6F4;
    text-transform: uppercase;
}

.model-modal .model-price p {
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    font: normal normal medium 20px/25px Futura;
    letter-spacing: 0px;
    color: #F7F6F4;
    text-transform: uppercase;
}

.first-swipper-modal .swiper-wrapper {
    margin-left: 0;
}

.first-swipper-modal p {
    font: normal normal bold 20px/22px Futura;
    letter-spacing: -0.4px;
    color: #FFFFFF;
    text-transform: uppercase;
}

.first-swipper-modal h4 {
    font: normal normal medium 30px/41px Futura;
    letter-spacing: -0.6px;
    color: #FFFFFF;
}

.first-swipper-modal .swiper-slide {
    box-shadow: none;
}

.modal-body .slider {
    position: relative;
}

.model-modal .model-exterior {
    position: absolute;
    top: -100px;
    left: -60px;
    width: 200px;
    height: 200px;
    aspect-ratio: 1;
    overflow: hidden;
    z-index: 3;
    border-radius: 100px;
}

.model-modal .model-exterior img {
    height: 100%;
    width: auto;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.slider .model-price {
    bottom: 0;
    opacity: 1;
    z-index: 3;
    right: -15px;
}

.model-modal .swiper-wrapper {
    height: 587px;
}

.modal-body .slider .swiper-modal {
    height: 100%;
    padding-bottom: 100px;
}

.modal-body .slider .swiper-modal .buttons-wrapper {
    position: absolute;
    width: 150px;
    bottom: 60px;
    left: -10px;
}

.modal-body .slider .swiper-modal .swiper-slide {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: 40px 60px;
    border-radius: 20px;
}

.modal-body .slider .swiper-modal .swiper-slide .pic-content {
    position: relative;
    z-index: 1;
    color: var(--white);

}

.modal-body .slider .swiper-modal .swiper-slide img {
    position: absolute;
    height: 100%;
    width: auto;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

/*Seccion Two Modal*/

.modal-section-two {
    padding: 4rem 0;
}

.diagrama {
    width: 90%;
}

.tab-content {
    background: #F4F4F4 0% 0% no-repeat padding-box;
    border-radius: 0px 0px 13px 13px;
    padding: 60px;
}

.tab-pane {
    display: flex;
    flex-wrap: wrap;
}

.tab-content>.active {
    display: flex;
    flex-wrap: wrap;
}

.tab-element {
    width: 50%;
    padding-right: 20px;
    margin-bottom: 35px;
    letter-spacing: -0.9px;
    color: #4D4D4C;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    flex-direction: column;
}

.tab-element img {
    width: 42px;
    aspect-ratio: 1;
    margin-bottom: .5rem;
}

.tab-element h6 {
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.9px;
    color: #4D4D4C;
    font-size: 18px;
    text-transform: none;
}

.nav-tabs .nav-link {
    margin-bottom: -2px;
}

.nav-tabs {
    border-bottom: 0;
}

.nav-link {
    text-align: center;
    letter-spacing: -0.8px;
    color: #4D4D4C;
    border-radius: 13px 13px 0px 0px;
    font: normal normal medium 16px/42px Futura;
    letter-spacing: -0.8px;
    color: #4D4D4C;
}

.nav-link.active {
    background-color: #F4F4F4 !important;
    border: none;
}

/*Video Section Modal*/
.video-section {
    padding: 6rem 0;
}

.video-modal {
    height: 405px;
    overflow: hidden;
    z-index: 1;
}

.video-modal .video {
    position: absolute;
    width: 140%;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
    height: auto;
}

.video-section .top-left {
    width: 60%;
    height: auto;
    position: absolute;
    top: -190px;
    right: -80px;
    z-index: 0;
    mix-blend-mode: multiply;
}

.video-section .bottom-right {
    width: 60%;
    height: auto;
    position: absolute;
    bottom: -160px;
    left: -94px;
    z-index: 0;
    mix-blend-mode: multiply;
    rotate: 160deg;

}

.video-modal .special-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    transition: all .4s ease;
}

/*Section Three Modal*/

.modal-section-three {
    padding: 3rem 0;
}

.modal-fotos .picture-slide {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.modal-fotos .picture-slide img {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: auto;
}

.model-modal .modal-fotos {
    padding-bottom: 90px;
    margin-right: -130px;
}

.modal-fotos .button-wrapper {
    bottom: 30px;
    left: 45%;
}

.model-modal .modal-fotos .swiper-wrapper .swiper-slide {
    height: fit-content;
}

.model-modal .modal-fotos .swiper-wrapper {
    height: auto;
    display: flex;
    align-items: center;

}

.modal-fotos .pic-1 {
    height: 400px;
}

.modal-fotos .pic-2 {
    height: 340px;
}

.modal-footer {
    height: 525px;
    position: absolute;
    z-index: 0;
    overflow: hidden;
    top: 0;
    left: 0;
    width: 100%;
}

.modal-footer>* {
    margin: 0;
}

.footer-m .card .card-element {
    position: absolute;
    width: 83px;
    top: 20px;
    right: 20px;
}

.modal-footer img {
    position: absolute;
    top: 0;
    height: auto;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.footer-m .container {
    margin-bottom: -200px;
    position: relative;
    z-index: 1;
}

.footer-m .col-md-6 {
    margin-top: 188px;
}

.footer-m .card-body {
    padding: 60px 40px 20px 40px;
}

.mySwiper .swiper-wrapper {
    margin-left: -200px;
    padding: 30px 0;
}

.button-wrapper {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.mySwiper .swiper-slide {
    border-radius: 13px;
    box-shadow: 0px 0px 30px #00000029;
    overflow: hidden;
}


/*-----

    C U S T O M

-----*/

.fit {
    width: fit-content;
}

section {
    overflow: hidden;
}

.pb-6 {
    padding-bottom: 4rem;
}

.m-special {
    margin-top: 10rem;
    padding-bottom: 15rem;
}

.m-special .line-el {
    width: 480px;
}

.m-special .p {
    width: 410px;
}



/*----

    F O O T E R

-----*/
.pre-footer {
    height: 497px;
    overflow: hidden;
}

.pre-footer img {
    width: 120%;
    height: auto;
    position: absolute;
    bottom: 0;
    left: 0;
}

footer {
    background: var(--blue) 0% 0% no-repeat padding-box;
    color: var(--white);
    padding: 2rem 0;
}

footer a {
    color: var(--white);
    text-decoration: none;
}

footer a:hover {
    color: var(--white);
    text-decoration: underline;
}

footer .card {
    margin-top: -160px;
    color: var(--brown);
}

footer .card-body {
    padding: 60px 40px 20px 40px;
}

footer .card .card-element {
    position: absolute;
    width: 83px;
    top: 20px;
    right: 20px;
}

footer .card li {
    font-size: 14px;
}

footer .card ol {
    padding-left: 20px;
}

footer .last-footer,
footer .last-footer a {
    color: #CCCCCC;
}

.terms {
    padding-top: 15rem;
    padding-bottom: 10rem;
}

/*----

    B I G  S C R E E N

-----*/
/*-
@media (min-width: 1800px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 2200px;
    }
}
-*/

@media (min-width: 1400px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 90%;
    }
}

.floatingContactBtn{
    display: none;
    width: 70px;
    height: 70px;
    background-color: #0B94A6;
    color: #fff;
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999;
    text-decoration: none;
    border-radius: 20px 20px 0px 20px;
    text-align: center;
    line-height: 87px;
    box-shadow: 0px 0px 10px rgba(0,0,0,.3);
}

.floating-whatsapp{
  display: block;
  background-color: #25D366;
  bottom: 30px;
  right: 30px;
  left: initial;
}

/*
.floatingContactBtn::before{
    content: 'Contáctanos';
    position: absolute;
    left: 40px;
    background: #0B94A6;
    line-height: 29px;
    padding: 4px 10px 4px 40px;
    border-radius: 0px 20px 20px 0px;
    bottom: 0px;
    z-index: -1;
}
*/

.floatingContactBtn i::before{
    font-size: 2em;
}


.whatsappBtn{
    margin-top: 25px;
    margin-bottom: 80px;
    color: #25D366;
    text-decoration: none;
    padding: 8px 0px 12px 0px;
    border-radius: 20px 20px 0px 20px;
    text-align: center;
    box-shadow: 0px 0px 10px rgba(0,0,0,.3);
    display: block;
    border: 2px solid #25D366;
    font-size: .9em;
  }
  
  .whatsappBtn i::before{
    color: #25D366;
    font-size: 1.4em;
    position: relative;
    top: 3px;
  }
  
  .whatsappBtn:hover{
    background-color: #25D366;
    color: #fff;
  }
  
  .whatsappBtn:hover i::before{
    color: #fff;
  }
  
  .modalwhatsappBtn{
    margin-top: 25px;
    margin-bottom: 80px;
    color: #25D366;
    text-decoration: none;
    padding: 8px 0px 12px 0px;
    border-radius: 20px 20px 0px 20px;
    text-align: center;
    box-shadow: 0px 0px 10px rgba(0,0,0,.3);
    display: block;
    border: 2px solid #25D366;
    font-size: .9em;
  }
  
  
  .modalwhatsappBtn i::before{
    color: #25D366;
    font-size: 1.4em;
    position: relative;
    top: 3px;
  }
  
  .modalwhatsappBtn:hover{
    background-color: #25D366;
    color: #fff;
  }
  
  .modalwhatsappBtn:hover i::before{
    color: #fff;
  }
/*------

    R E S P O N S I V E

------*/
@media (max-width: 64em) {
    .floatingContactBtn{
        display: block;
    }

    .floating-whatsapp{
        display: block;
        background-color: #25D366;
        bottom: 100px;
        left: 20px;
        right: initial;
    }
    
    .container {
        padding: 0 35px;
    }

    .menu {
        padding-top: 43px;
        padding-left: 25px;
        padding-right: 25px;
        padding-bottom: 80px;
    }

    .menu .link {
        margin-bottom: 15px;
    }

    .menu .sub-links {
        font-size: 23px;
    }

    .menu .link h2 {
        font-size: 36px;
        letter-spacing: 0;
        line-height: 36px;
    }

    .menu .link p {
        font-size: 18px;
    }

    nav {
        background-color: var(--blue);
        top: 0;
        padding-bottom: 35px;
        padding-top: 0;
    }

    nav .guiar-back {
        background: rgb(236, 216, 184);
        background: radial-gradient(circle, rgba(236, 216, 184, 1) 0%, rgba(247, 246, 244, 1) 100%);
        height: 100%;
        position: absolute;
        z-index: 0;
        width: 100%;
    }

    nav .guiar {
        background: #F7F6F4 0% 0% no-repeat padding-box;
        border-radius: 37px;
        height: 70px;
        width: 70px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        position: relative;
        z-index: 4;
        padding-top: 5px;
        margin-bottom: -15px;
    }

    nav .container {
        padding-top: 30px !important;
    }

    .menu .accordion-collapse .row {
        gap: 15px;
    }

    .guiar-card .img-bg {
        height: 170%;
        width: auto !important;
    }

    nav .links {
        display: none;
    }

    header {
        display: none;
    }

    /*----fonts-----*/
    h1 {
        font: normal normal normal 40px/45px Futura;
        letter-spacing: -0.8px;
    }

    h3 {
        font: normal normal normal 48px/56px Futura;
        letter-spacing: -1.26px;
    }


    /*----HERO-----*/

    .hero {
        height: auto;
        padding-bottom: 40px;
    }

    .hero h1 {
        line-height: 1.3;
    }

    .hero .hero-leaves {
        height: 100%;
        width: auto;
    }

    .hero .h-container {
        margin-top: 45%;
    }

    .btn-project {
        left: 15%;
        top: inherit;
        bottom: 110px;
    }

    .images-h .col-4 {
        padding: 0 0.9rem;
    }

    .images-h .col {
        padding: 0;
    }

    .images-h .h-img img {
        height: auto !important;
        width: 100% !important;
    }

    .images-h {
        width: auto;
        padding: 0 50px;
    }

    .images-h .col:nth-child(3) {
        margin-top: 200px;
    }

    .images-h .col:nth-child(3) .h-img {
        height: 480px;
        margin-top: 0;
    }

    .images-h .col:nth-child(2) {
        display: none;
    }

    .images-h .col:nth-child(1) {
        display: none;
    }

    .images-h .col:nth-child(4) {
        display: none;
    }

    .images-h .col:nth-child(5) {
        display: none;
    }

    .concepto-blue h2{
        padding: 80px 0px;
    }

    /*---Sections----*/
    .un-concepto.pb-6 {
        padding-bottom: 0;
    }

    .virtual-tour h4{
        padding-top: 85px;
    }

    .finance-section .position-absolute{
        position: relative !important;
    }

    .un-concepto .leaves-der,
    .un-concepto .leaves-izq {
        display: none;
    }

    .arboledas-data {
        padding: 3rem 0;
    }

    .arboledas-data .my-0 {
        text-align: initial;
    }

    .arboledas-data .btn-models {
        right: 0;
        z-index: 3;
        position: relative !important;
    }

    .video-section {
        padding-top: 2rem;
        padding-bottom: 10rem;
    }

    .video-exp {
        height: 632px;
    }

    .video-exp video,
    .video-exp img {
        height: 100% !important;
        width: auto !important;
    }

    .video-exp .video-bg {
        height: 100%;
        width: auto;
    }

    .video-modal .video-modal-img,
    .video-modal .video {
        height: 100%;
        width: auto;
    }

    .video-section .green-band {
        height: 500px;
    }


    .video-section .leaves-top-r {
        top: -140px;
        right: 50px;
        rotate: -90deg;
        width: auto;
        height: 81%;
        z-index: 0;
    }

    .video-section .leaves-bottom-l {
        bottom: -230px;
        left: 0;
        z-index: 0;
        rotate: 125deg;
        width: auto;
        height: 83%;
    }

    .houses .col-md-4 {
        padding-right: 0;
        margin-bottom: 100px;
        padding-right: 10px;
    }

    .houses .img-model {
        width: 184px;
        height: 184px;
        right: -10px;
    }

    .our-model {
        text-align: center;
    }

    .our-model p {
        margin-bottom: 64px;
    }

    .s-green {
        background: none;
    }

    .s-green .container {
        z-index: 3;
        position: relative;
        background-color: var(--blue);
        color: var(--white);
        padding-top: 40px;
    }

    .s-green .leaves-top-r {
        z-index: 0;
    }

    .s-green .leaves-bottom-l {
        z-index: 0;
        top: 70px;
    }

    .swiper-wrapper {
        margin-left: -110px;
    }

    .model-modal .diagrama {
        margin-bottom: 32px;
    }

    .modal-fotos .swiper-wrapper {
        margin-left: 0;
    }

    .swiper-modal .swiper-wrapper {
        margin-left: 0;
    }

    .swiper-modal {
        width: 130%;
        margin-left: -50px;
        margin-top: 10rem;
    }

    .modal-body .img-model {
        top: -40px;
        left: 50%;
        transform: translateX(-50%);
    }

    .modal-body .slider .swiper-modal .swiper-slide {
        padding: 40px;
        padding-bottom: 140px;
    }

    .modal-body .slider .swiper-modal .swiper-slide .pic-content {
        text-align: center;
    }

    .modal-content .tab-content {
        padding-left: 30px;
        padding-right: 30px;
    }

    .modal-content .tab-element h6 {
        text-align: start;
    }

    .slider .model-price {
        right: 50%;
        transform: translateX(50%);
    }

    .modal-body .slider .swiper-modal .buttons-wrapper {
        left: 50%;
        transform: translateX(-50%);
        bottom: 100px;
    }

    .modal-body .slider {
        margin-bottom: 10rem;
    }

    .video-modal {
        height: 512px;
    }

    .video-modal video {
        height: 100%;
        width: auto;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .modal-footer {
        height: 601px;
    }

    .modal-footer img {
        height: 100%;
        width: auto;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .service-img {
        height: 373px;
    }

    .service-img img {
        height: 100%;
        width: auto;
    }

    .s-green .virtual-btn {
        margin-right: 0;
        margin-top: 30px;
        margin-bottom: -150px;
    }

    .s-green .container {
        padding: 0 0;
    }

    .m-special {
        padding-bottom: 7rem;
    }

    .m-special .text-center {
        margin-bottom: 15px;
    }

    .m-special img {
        width: 100%;
    }

    .m-special .p {
        width: auto;
        margin-bottom: 150px;
    }

    .mySwiper .swiper-wrapper {
        margin-left: 0;
    }

    .mySwiper {
        padding-left: 3rem;
        padding-right: 3rem;
    }

    .img-s-heart {
        height: 532px;
    }

    .img-s-heart-two {
        left: 15%;
        height: 382px;
    }

    .pre-footer {
        height: 946px;
    }

    .pre-footer img {
        height: 100%;
        width: auto;
        top: 0;
        transform: translateY(0);
        transform: translateX(-50%);
        left: 50%;
    }

    .contact-us .leaves-contact-l,
    .contact-us .leaves-contact-r {
        display: none;
    }

    .contact-us .badge {
        position: inherit !important;
    }

    .contact-us .number {
        font-size: 55px;
        text-decoration: none;
        color: var(--black);
    }

    .amenidades .service-img img {
        height: 120%;
        width: auto;
    }

    /*---

    M O D A L

  ---*/
    .modal-body {
        padding: 3rem;
    }

    .model-modal .modal-fotos {
        margin-right: 0px;
    }

    .modal-section-two,
    .modal-section-three {
        text-align: center;
    }

    .model-modal .model-exterior {
        top: 40px;
        left: 50%;
        transform: translateX(-50%);
    }

    .video-section .top-left {
        width: auto;
        height: 60%;
        top: -187px;
        right: 0;
    }

    .video-section .bottom-right {
        width: auto;
        height: 60%;
        bottom: -100px;
        left: inherit;
        right: 0;
        rotate: 0deg;
    }

    .video-modal .special-btn {
        left: 25%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    /*---

    F O R M

  ---*/
    .s-logos {
        padding-left: 0;
        padding-right: 0;
    }

    .s-logos h2 {
        font-size: 40px;
    }

    .s-logos h2 span {
        font-size: 60px;
    }

    .s-logos .leaves-s {
        z-index: 0;
    }

    .s-logos .badge {
        position: relative;
        z-index: 1;
    }

    form {
        padding-bottom: 80px;
    }

    form .col-md-3 {
        margin-bottom: 16px;
    }


    form .btn-submit {
        bottom: -150px;
        right: initial;
        left: 50%;
        transform: translateX(-50%);
        top: inherit;
    }

    .form-row {
        margin-bottom: 20rem;
    }

    footer .card {
        margin-top: -450px;
        margin-bottom: 5rem;
    }

    .card-element {
        display: none;
    }

    footer .order-first a {
        margin-bottom: 2rem;
    }

    footer .order-first {
        margin-bottom: 5rem;
    }

    footer .last-footer {
        padding-top: 1.5rem;
        padding-bottom: 4rem;
    }
}