html,
body {
    background: #F4F2F1;
    font-family: "Aeonik", sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.3;
    color: gray;
    scroll-behavior: smooth;
    overflow-x: hidden
}

a {
    color: gray;
    text-decoration: none;
    transition: all 0.5s
}

a:hover {
    color: gray;
    text-decoration: none
}

a:focus {
    text-decoration: none
}

a:visited {
    text-decoration: none
}

.img-responsive {
    max-width: 100%
}

ul {
    padding: 0;
    margin: 0;
    list-style: none
}

.hidden {
    display: none !important
}

@media (max-width: 768px) {
    .hidden-xs {
        display: none !important
    }
}

@media (min-width: 768px) {
    .visible-xs {
        display: none !important
    }
}

.hidden-md {
    display: block !important
}

@media (min-width: 990px) {
    .hidden-md {
        display: none !important
    }
}

@font-face {
    font-family: 'Aeonik';
    src: url(fonts/aeonik-light.ttf);
    font-weight: 300
}

@font-face {
    font-family: 'Aeonik';
    src: url(fonts/aeonik-regular.ttf);
    font-weight: 400
}

@font-face {
    font-family: 'Aeonik';
    src: url(fonts/aeonik-medium.ttf);
    font-weight: 600
}

@font-face {
    font-family: 'Aeonik';
    src: url(fonts/aeonik-bold.ttf);
    font-weight: 700
}

@keyframes fromBottom {
    from {
        opacity: 0;
        transform: translateY(50px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.anim {
    opacity: 0
}

.anim.play {
    animation-fill-mode: forwards;
    animation-duration: 1s
}

.anim.play.fromBottom {
    animation-name: fromBottom
}

@media (min-width: 768px) {
    .anim.play.d1 {
        animation-delay: 0.2s
    }

    .anim.play.d2 {
        animation-delay: 0.4s
    }

    .anim.play.d3 {
        animation-delay: 0.6s
    }

    .anim.play.d4 {
        animation-delay: 0.8s
    }

    .anim.play.d5 {
        animation-delay: 1s
    }

    .anim.play.d6 {
        animation-delay: 1.2s
    }

    .anim.play.d7 {
        animation-delay: 1.4s
    }

    .anim.play.d8 {
        animation-delay: 1.6s
    }

    .anim.play.d9 {
        animation-delay: 1.8s
    }

    .anim.play.d10 {
        animation-delay: 2s
    }

    .anim.play.d11 {
        animation-delay: 2.2s
    }

    .anim.play.d12 {
        animation-delay: 2.4s
    }
}

.main-title {
    font-size: 30px;
    color: #C5BBB8;
    font-weight: 600;
    margin-bottom: 80px;
    border-left: 10px solid #F47920;
    padding-left: 15px
}

@media (min-width: 990px) {
    .main-title {
        font-size: 43px;
        max-width: 485px
    }
}

.title {
    color: #F47920;
    font-weight: 700;
    text-transform: uppercase
}

.description {
    max-width: 95%;
    margin-bottom: 30px
}

.description .title {
    font-size: 17px;
    margin-bottom: 20px
}

.description p {
    font-size: 16px;
    margin-bottom: 30px;
    font-weight: 300;
    line-height: 1.4
}

.description .columns {
    column-count: 2
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999999;
    padding: 20px;
    transition: all 0.5s
}

header .menu-icon {
    position: relative;
    width: 25px;
    height: 20px;
    margin-top: 8px;
    cursor: pointer
}

header .menu-icon .line {
    position: absolute;
    top: 0;
    width: 100%;
    height: 2px;
    background: #fff;
    transition: all 0.5s;
    border-radius: 5px
}

header .menu-icon .line:nth-of-type(2) {
    top: calc(50% - 1px)
}

header .menu-icon .line:nth-of-type(3) {
    top: initial;
    bottom: 0
}

header .menu-icon.active .line {
    transform: rotate(45deg);
    top: 8px
}

header .menu-icon.active .line:nth-of-type(1) {
    transform: rotate(-45deg)
}

header .menu-icon.active .line:nth-of-type(2) {
    opacity: 0
}

header .navigation {
    text-align: center
}

@media (max-width: 768px) {
    .title {
        margin-bottom: 10px!important;
    }

    header .navigation {
        background: #f4f2f1;
        width: 100%;
        left: 0;
        position: fixed;
        height: 100%;
        top: 97px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.5s
    }

    header .navigation.show {
        opacity: 1;
        visibility: visible;
        transition: all 0.5s
    }
}

header .navigation li {
    display: inline-block;
    margin: 0 30px;
    vertical-align: middle
}

@media (max-width: 768px) {
    header .navigation li {
        margin: 50px 30px;
        display: block
    }
}

header .navigation li a {
    text-transform: uppercase;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    position: relative
}

header .navigation li a:after {
    content: "";
    position: absolute;
    width: 0;
    left: 50%;
    height: 2px;
    background: #fff;
    bottom: -10px;
    transition: all 0.5s
}

header .navigation li a:hover,
header .navigation li a.active {
    color: #fff
}

header .navigation li a:hover:after,
header .navigation li a.active:after {
    width: 100%;
    left: 0;
    transition: all 0.5s
}

header .navigation li img {
    display: block;
    width: 45px
}

header.active {
    background: #f4f2f1;
    transition: all 0.5s
}

header.active .menu-icon .line {
    background: gray
}

header.active .navigation a {
    color: #F47920
}

header.active .navigation a:after {
    background: #F47920
}

header.active .navigation a:hover,
header.active .navigation a.active {
    color: #F47920
}

.hero {
    height: 100vh;
    position: relative
}

@media (min-width: 768px) {
    .hero {
        height: auto
    }
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom
}

.hero .content {
    position: absolute;
    width: 95%;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
}

@media (min-width: 768px) {
    .hero .content {
        top: 100px
    }
}

.hero .title {
    text-align: center;
    font-size: 20px;
    max-width: 500px;
    margin: 0 auto
}

.hero .description {
    color: #fff;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    margin-top: 21px
}

.proyecto {
    padding: 50px 0
}

@media (min-width: 990px) {
    .proyecto {
        padding: 100px 0
    }
}

.proyecto .proyecto-slider {
    margin-top: 100px;
    padding: 0 20px;
    margin-bottom: 100px
}

@media (min-width: 990px) {
    .proyecto .proyecto-slider {
        margin-bottom: 0
    }

    .proyecto .proyecto-slider .flex-control-nav {
        text-align: right;
        font-size: 0
    }
}

.ubicacion {
    padding: 50px 0
}

@media (min-width: 990px) {
    .ubicacion {
        padding: 100px 0
    }
}

.ubicacion .ubicacion-slider {
    padding: 0 20px;
    margin-bottom: 100px;
    margin-top: 100px
}

@media (min-width: 990px) {
    .ubicacion .ubicacion-slider {
        margin-bottom: 0
    }

    .ubicacion .ubicacion-slider .flex-control-nav {
        text-align: left;
        font-size: 0
    }
}

@media (min-width: 990px) {
    .ubicacion .flex-column {
        padding-left: 50px
    }
}

.map {
    position: relative
}

.map .ubics li {
    position: absolute
}

.map .ubics li:before {
    content: "";
    width: 12px;
    height: 12px;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 100px;
    border: 4px solid #F47920
}

@media (min-width: 768px) {
    .map .ubics li:before {
        width: 20px;
        height: 20px;
        border: 6px solid #F47920
    }
}

@media (min-width: 990px) {
    .map .ubics li:before {
        width: 30px;
        height: 30px;
        border: 9px solid #F47920
    }
}

.map .ubics li .place {
    position: absolute;
    bottom: 8px;
    left: calc(50% - 90px);
    min-width: 170px;
    text-align: center;
    background: white;
    padding: 10px;
    color: #666666;
    font-size: 18px;
    font-weight: 400;
    border-radius: 13px
}

@media (min-width: 768px) {
    .map .ubics li .place {
        left: calc(50% - 85px)
    }
}

@media (min-width: 990px) {
    .map .ubics li .place {
        left: calc(50% - 70px)
    }
}

.map .ubics li:hover {
    z-index: 1
}

.contacto {
    padding: 50px 0
}

@media (min-width: 768px) {
    .contacto {
        padding: 210px 0
    }
}

.contacto .title {
    font-size: 20px;
    margin-bottom: 30px
}

@media (min-width: 768px) {
    .contacto .title {
        font-size: 26px;
        margin-bottom: 80px
    }
}

.contacto input:not([type=submit]),
.contacto textarea:not([type=submit]) {
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 2px solid #C5BBB8;
    color: #C5BBB8;
    font-size: 16px;
    margin-bottom: 20px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 700
}

.contacto input:not([type=submit])::placeholder,
.contacto textarea:not([type=submit])::placeholder {
    text-transform: uppercase;
    color: #C5BBB8
}

.contacto textarea {
    height: 400px;
    margin: 0 !important
}

.contacto input[type=submit] {
    display: inline-block;
    width: fit-content;
    background: #F47920;
    border: 0;
    color: #fff;
    text-transform: uppercase;
    font-size: 16px;
    padding: 20px 74px;
    border-radius: 5px;
    font-weight: 700;
    transition: all 0.5s;
    margin-top: 50px
}

.contacto input[type=submit]:hover {
    background: #e35f00;
    transition: all 0.5s
}

.unidades {
    background: #fff;
    padding: 100px 0
}

.unidades .unidades-title {
    text-transform: uppercase;
    font-size: 34px
}

.unidades .line {
    width: 100%;
    height: 3px;
    background: #F47920;
    margin: 30px 0
}

.unidades .title {
    margin-bottom: 20px
}

.unidades img {
    margin-top: 40px
}

.unidades p {
    margin-bottom: 0
}

.unidades .unidades-slider {
    padding: 0 16px
}

.unidades .unidades-slider .ubicacion-img {
    width: 300px
}

@media (min-width: 768px) {

}

@media (max-width: 768px) {
    .unidades .unidades-slider .flex-direction-nav {
        display: none
    }
}

.unidades .unidades-slider .flex-direction-nav a:before {
    background-image: url("img/arrow3.svg")
}

@media (min-width: 768px) {
    .unidades .unidades-slider .flex-direction-nav .flex-next {
        right: -80px !important
    }
}

@media (min-width: 768px) {
    .unidades .unidades-slider .flex-direction-nav .flex-prev {
        left: -80px !important
    }
}

@media (max-width: 768px) {
    .unidades .unidad {
        display: block !important
    }
}

footer {
    background: #7f7f7f;
    padding: 50px 0;
    text-align: center
}

@media (min-width: 990px) {
    footer .content {
        display: flex;
        justify-content: space-between;
        align-items: center
    }

    footer .content img {
        margin: 0 10px;
        max-width: 90%
    }
}

footer .item {
    margin: 50px 0
}

.flexslider {
    margin: 0;
    border: 0;
    padding: 0;
    background: transparent
}

.flexslider .flex-direction-nav a {
    opacity: 1;
    width: 35px;
    height: 35px
}

.flexslider .flex-direction-nav a:before {
    content: '';
    font-size: 0;
    width: 35px;
    height: 35px;
    background-image: url("img/arrow2.svg");
    background-repeat: no-repeat;
    background-size: contain
}

@media (min-width: 768px) {
    .flexslider .flex-direction-nav .flex-next {
        right: 40px !important
    }
}

@media (min-width: 768px) {
    .flexslider .flex-direction-nav .flex-prev {
        left: 40px !important
    }
}

.flexslider .flex-direction-nav .flex-prev:before {
    transform: rotate(180deg)
}

.flexslider .flex-control-nav {
    left: 0;
    bottom: -60px
}

.flexslider .flex-control-nav li {
    margin: 0 5px
}

.flexslider .flex-control-nav li a {
    width: 12px;
    height: 12px;
    background: transparent;
    border: 1px solid gray;
    box-shadow: none
}

.flexslider .flex-control-nav li a.flex-active {
    background: gray
}

@media (min-width: 1500px) {
    .container {
        max-width: 1450px
    }
}