* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

:root {
    --main-bg-green: #00F379;
    --main-bg-fblue: #162D5F;
    --main-bg-blue: #004C73;

}

q::after,
q::before {
    content: "";
}

@font-face {
    font-family: "Canela";
    src: url("../fonts/candela.eot");
    src: url("../fonts/candela.eot?#iefix") format("embedded-opentype"), url("../fonts/candela.woff2") format("woff2"), url("../fonts/candela.woff") format("woff"), url("../fonts/candela.ttf") format("truetype"), url("../fonts/candela.svg#Canela") format("svg");
}
@font-face {
    font-family: 'HOKSansProMedium';
    src: url('../fonts/HOKSansProMedium.eot');
    src: url('../fonts/HOKSansProMedium.eot') format('embedded-opentype'),
         url('../fonts/HOKSansProMedium.woff2') format('woff2'),
         url('../fonts/HOKSansProMedium.woff') format('woff'),
         url('../fonts/HOKSansProMedium.ttf') format('truetype'),
         url('../fonts/HOKSansProMedium.svg#HOKSansProMedium') format('svg');
}

body {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-style: normal;
}

.bgytxt{
    /*background-image: url('img/background-home.png');*/
    background-position: center center;
    background-size: cover;
}
#home {
    /*background-image: url('img/background-home.png');*/
    background-position: center center;
    background-size: cover;
}

#proyectohome {
    background-image: url('img/proyecto-home_1.png');
    background-position: center center;
    background-size: cover;
}

#proyecto {
    /*background-image: url('img/proyecto.jpg');*/
    background-position: center center;
    background-size: cover;
}

#ubicacion {
    background-image: url('img/ubicacion-home.png');
    background-position: center center;
    background-size: cover;
}

#openers {
    background-image: url('img/openers-home.png');
    background-position: center center;
    background-size: cover;
}

#unidades {
    background-image: url('img/unidades-home.png');
    background-position: center center;
    background-size: cover;
}

#amenities {
    background-image: url('img/amenities.jpg');
    background-position: center center;
    background-size: cover;
}

#equipo {
    background-image: url('img/equipo.jpg');
    background-position: center center;
    background-size: cover;
}
#universo {
    background-image: url('img/universo.jpg');
    background-position: center center;
    background-size: cover;
}
#vision {
    background-image: url('img/vision.jpg');
    background-position: center center;
    background-size: cover;
}
#curaduria {
    background-image: url('img/curaduria.jpg');
    background-position: center center;
    background-size: cover;
}
#curaduriasection {
    background-image: url('img/curaduria-section.jpg');
    background-position: center center;
    background-size: cover;
}

video{
    width: 100%;
    position: absolute;
    top: 0px;
    left:0px;
    z-index: 0;
  }
  .bgsection{
      height:100vh;
      overflow: hidden;
      background-position: center;
  }
  .bgsectionunidades{
      min-height:100vh;
  }
  @media (max-aspect-ratio: 16/9){
        video {
            height: 100%;
            width: auto;
            position: absolute;
            top: 0px;
            left: 0px;
            z-index: 0;
        }
    }
  @media (max-width:575.98px) {
    video {
        height: 100%;
        width: auto;
        position: absolute;
        top: 0px;
        left: 50%;
        z-index: 0;
        transform: translateX(-50%);
    }

  }

.green {
    color: var(--main-bg-green);
}
section {
    position: relative;
}
section.bgytxt {
    min-height: 100vh;
}

#header.active {
    /*background-color: var(--main-bg-fblue);*/
    background-color: rgba(255,255,255,0.95);
}
#header {
    position: fixed;
    width: 100%;
    padding: 30px 50px;
    z-index: 10;
    transition: all 0.6s cubic-bezier(0.68, 0.01, 0.22, 0.99);
    top: 0;
}
.mainlogomobile{
    display: none;
}
.mainlogo{
    width: 290px;
    z-index: 3;
    position: relative;
}
.navmenu {
    height: 30px;
    overflow: hidden;
    text-align: right;
}

.navmenu ul {
    margin: 0px;
    padding: 0px;
    display: flex;
    text-align: right;
    float: right;
    transform: translateX(130%);
    transition: all 0.6s cubic-bezier(0.68, 0.01, 0.22, 0.99);
    margin-top: -7px;
    margin-right: 15px;
}

.navmenu.active ul {
    transform: translateX(0%);
}

.navmenu ul li {
    display: inline;
    color: #fff;
    padding: 6px 12px;
}

.navmenu ul li a {
    text-decoration: none;
}
.navmenu ul li a:hover {
    text-decoration: none;

}
.navmenu ul li a {
    padding-bottom: 5px;
    color:#fff;
    position: relative;
}
#header.active .navmenu ul li a{
    color:var(--main-bg-fblue);
}
.floatatvlogo{
    position: fixed;
    left:65px;
    bottom:50px;
    background-image: url(../img/logo-atv.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 100px;
    height: 115px;
    z-index: 105;
    /*transition: visibility 0s, opacity 1.1s linear;*/
}
.floatatvlogo.hid{
    /*visibility: hidden;
    opacity: 0;*/
}
.floatatvlogo a{
    display: block;
    width: 100%;
    height: 100%;
}
.navmenu ul li a:hover:before {
    width: 100%;
}
.navmenu ul li a::before {
    display: block;
    content: '';
    width: 0;
    height: 2px;
    bottom: 5px;
    left: 0;
    bottom: -3px;
    z-index: 0;
    position: absolute;
    background: var(--main-bg-green);
    transition: all 0.3s ease-in-out;
}

.navbars {
    width: 30px;
    float: right;
    cursor: pointer;
    transition: all 0.3s ease-out;
    position: relative;
    display: block;
    height: 30px;
    z-index: 2;
}

.navbars span {
    display: inline-block;
    background-color: var(--main-bg-green);
    height: 3px;
    width: 100%;
    margin-bottom: 6px;
    transition: all 0.3s ease-out;
    position: absolute;
    left: 0px;
    top: 0px;
}

.navbars span {
    transform: translateY(0px);
}

.navbars span+span {
    transform: translateY(9px);
}

.navbars span+span+span {
    transform: translateY(18px);
    display: none;
}

.navbars.active span {
    transform: translate(0px, 10px) rotate(-45deg);

}

.navbars.active span+span {
    transform: translate(0px, 10px) rotate(45deg);
}

.navbars.active span+span+span {
    display: none;
}

h3.title {
    color: #fff;
    text-align: center;
    font-family: "Canela";
    font-size: 45px;
    line-height: 1.3em;
    font-weight: normal;
    margin-bottom: 1em;
    transition: all 0.5s ease;
}

.centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 42vw;
    text-align: center;
    z-index: 1;
}
.centered100 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85vw;
    text-align: center;
    z-index: 1;
}
.centeredquote {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1;
}

p {
    text-align: center;
    color: #fff;
    font-size: 18px;
    line-height: 1.2em;
    margin-bottom: 3em;
}

.btnmore {
    color: #fff !important;
    border: 1px solid #fff;
    border-radius: 35px;
    line-height: 35px !important;
    padding: 0px 20px;
    display: inline-block;
    transition: all 0.3s;
}

.btnmore:hover {
    background-color: rgba(0,243,121,0.3);
    background-color: rgba(255,255,255,0.3);
    text-decoration: none;
}

footer {
    background-color: #162D5F;
    padding: 50px;
    color: #fff;;
}

.lastline{
    margin-top: 5em;
}
footer .socials li{
 display: inline;
 margin-right: 10px;
}
.logofooter{
    /*opacity: 0;*/
}
.developers p{
    vertical-align: bottom;
    margin: 0;
    position: absolute;
    bottom: 0px;
    left: 15px;
    font-size:14px;
    width: 100%;
}
.developers img{
    vertical-align: bottom;
    margin-right: 20px;
}
.marginado{
    padding:6em;
}
.quotegreen {
    background-color: var(--main-bg-green);
}
.quotebck{
    background-size: cover;
}
footer ul a{
    color:#fff;
}
footer ul a:hover{
    color:#fff;
    text-decoration: none;
}
footer ul{
    list-style: none;
    padding: 0px;
    margin: 0px;
    float: left;
    margin-right: 50px;
}

.quotewhite q{
    color: #fff;
    width: 80%;
    max-width: 1200px;
    text-align: center;
    font-family: "Canela";
    font-size: 2em;
    line-height: 1.3em;
    font-weight: normal;
    display: block;
    margin: 20px auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.quotebck.qblanco q{
    color:#fff!important;
}
.quotebck q{
    color: var(--main-bg-green);
    width: 80%;
    max-width: 1200px;
    text-align: center;
    font-family: "Canela";
    font-size: 45px;
    line-height: 1.3em;
    font-weight: normal;
    margin-bottom: 1em;
    display: block;
    margin: 100px auto 40px auto;
}
.quotegreen q {
    color: #004C73;
    width: 80%;
    max-width: 1200px;
    text-align: center;
    font-family: "Canela";
    font-size: 45px;
    line-height: 1.3em;
    font-weight: normal;
    margin-bottom: 1em;
    display: block;
    margin: 100px auto 40px auto;
}

.quotegreen p {
    width: 50%;
    color: var(--main-bg-blue);
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3em;
    font-weight: normal;
    display: block;
    margin: 0px auto;
    margin-bottom: 80px;
}

h4.title {
    color: var(--main-bg-green);
    text-align: center;
    font-family: "Canela";
    font-size: 2.7rem;
    line-height: 1.05em;
    font-weight: normal;
    margin: 1.5em 0;
    margin-top: 0;
}

.textnpic p {
    color: var(--main-bg-blue);
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6em;
    margin-bottom: 1.3em;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}
.martitegui{
    background-image: url(img/martitegui.jpg);
    height: 100vh;
    background-size: cover;
}
.battistelli{
    background-image: url(img/battistelli.jpg);
    height: 100vh;
    background-size: cover;
}
.paiva{
    background-image: url(img/paiva.jpg);
    height: 100vh;
    background-size: cover;
}
.arrowdown{
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
}
.cls-1 {
    fill: none;
    stroke: #fff;
    stroke-miterlimit: 10;
    stroke-width: 2px;
}
.gallerythumbs h6{
    color:#fff;
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    text-shadow: 2px 2px 3px #000;
}

.unidades text{
    display: none;
}
.unidades{
    transition: all 0.3s cubic-bezier(0.68, 0.01, 0.22, 0.99);
}
.unidades.active text,
.unidades:hover text{
    display: block;
}
.unidades.active rect,
.unidades:hover rect,
.unidades:hover polyline,
.unidades.active polyline,
.unidades.active polygon,
.unidades:hover polygon{
    fill:#00F379;
}

.unidadfilter li a:hover,
.unidadfilter li a{
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.1em;
}
.unidadfilter li{
    background-color: #fff;
    border-radius: 10px;
    position: relative;
    cursor: pointer;
}

.unidadfilter li span{
    background-color: #162D5F;
    color:#fff;
    border-radius: 50%;
    width: 14px;
    height: 14px;
    line-height: 14px;
    text-align: center;
    font-size: 9px;
    display: none;
    position: absolute;
    right:5px;
    top:50%;
    transform: translateY(-50%);
}
.unidadfilter li.active span{
    display: block;
}
.unidadfilter li.active{
    background-color: #00F379;
    padding: 2px 6px;
    margin-bottom: 5px;
}

 
.modal-dialog{
    top:50%;
    transform: translateY(-50%)!important;
}

@media (max-width: 1280px) {
    .quotebck q{
        color: var(--main-bg-green);
        width: 93%;
        font-size: 34px;
    }
    .textnpic p {
        color: var(--main-bg-blue);
        text-align: center;
        font-family: 'Roboto', sans-serif;
        font-weight: 400;
        font-size: 18px;
        line-height: 1.4em;
        margin-bottom: 2rem;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
    }
    h4.title {
        color: var(--main-bg-green);
        text-align: center;
        font-family: "Canela";
        font-size: 44px;
        line-height: 1.05em;
        font-weight: normal;
        margin: 2rem 0;
        margin-top: 0;
    }
}
#contactosection{
    color:var(--main-bg-blue);
    padding: 30px 50px;
    padding-top:100px;
    min-height: 100vh;
}
#contactosection p{
    color:var(--main-bg-blue);
    font-family: "Canela";
    font-size: 24px;
    text-align: left;
    line-height: 30px;
    margin-bottom: 1em;
}
#contactosection p.small{
    color:var(--main-bg-blue);
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size:14px;
    text-align: left;
    line-height: 20px;
}
#contactosection h1{
        font-family: "Canela";
        font-size: 44px;
        color:var(--main-bg-blue);
        padding:40px 0px;
}
#contactosection input[type=text]{
    border-radius: 40px;
    border: 1px solid var(--main-bg-blue);
    position: relative;
    z-index: 1;
    background-color: transparent;
}
#contactosection textarea{
    border-radius: 15px;
    border: 1px solid var(--main-bg-blue);
}
#contactosection label{
    position: absolute;
    left:18px;
    top:6px;
    background-color:#fff;
    padding:2px;
    transform: translateY(0px);
    z-index: 1;
    transition: all 0.3s cubic-bezier(0.68, 0.01, 0.22, 0.99);
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size:14px;
}
#contactosection .form-group.active label{
    transform: translateY(-16px);
    z-index: 2;
    font-size:11px;
}
#contactosection button{
    border: 1px solid var(--main-bg-green);
    color:var(--main-bg-blue);
    padding:8px 20px;
    border-radius: 40px;
    background-color: #fff;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    margin-bottom: 30px;
}
.form-group{
    position: relative;
}
#contactosection ul{
    list-style: none;
    margin: 0px;
    padding:0px;
    margin-bottom: 40px;
}
#contactosection ul li{
    display: inline;
    padding-right: 50px;
}
#contactosection ul li a i{
    color: var(--main-bg-green);
    font-size: 20px;
    padding-right: 5px;
}
#contactosection ul li a{
    font-family: "Canela";
    font-size: 20px;
    color:var(--main-bg-blue);
}
#contactosection p.equipo{
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}
.bottomeddiv div{
    position: absolute;
    bottom:0px;
    left:0px;
}
.bottomeddiv{
    position: relative;
    float:left; margin-left:30px;height:100%;min-width: 150px;
}
.desarrolloyarq {

}
.unidaddetail h3{
    color:var(--main-bg-green);
    font-size: 2.5rem;
    font-family: "Canela";
    border-bottom:1px solid var(--main-bg-fblue);
    padding-bottom: 0.5rem;
}
.unidaddetail p:first-of-type{
    border-bottom:1px solid var(--main-bg-fblue);
}
.unidaddetail p{
    color:var(--main-bg-blue);
    text-align: left;
    line-height:1.6em;
    font-family: 'Roboto';
    padding: 0.5rem;
    margin-bottom: 1.5em;
}
.unidaddetail .masinfo:hover{
    background-color: var(--main-bg-green);
    border: 1px solid var(--main-bg-green);
}
.unidaddetail .masinfo{
    border-radius: 20px;
    background-color: transparent;
    border: 1px solid var(--main-bg-blue);
    padding: 6px 20px;
    color: var(--main-bg-blue);
    display: inline-block;
    margin-bottom: 20px;
}
.unidadnav h5{
    border-bottom: 1px solid var(--main-bg-blue);
    color: var(--main-bg-blue);
    font-family: "Canela";
    font-size: 1.3rem;
    padding-bottom: 6px;
}
.cargaunidad{
    position: absolute;
    top:0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: 10;
    display: none;
    padding-left: 50px;
    overflow: hidden;
}
.volver{
    font-size: 0.8rem;
    color: var(--main-bg-blue);
    margin-bottom: 2rem;
    display: block;
}
.mapacentrado{
    position: relative;
    padding-left: 50px;
}
.vcentrado{
    position: absolute;
    top:50%;
    transform: translateY(-50%);
    width: 100%;
    padding-left: 50px;
}
.unidadfilter{
    list-style-type: none;
    padding-left:0px;
    margin-bottom: 20px;
}

.unidadfilter li a{
    font-family: 'Roboto';
    color: var(--main-bg-fblue)!important;
}

#unidades h4{
    color: var(--main-bg-fblue);
    font-family: "Canela";
    font-size: 25px;
    padding: 0px;
    padding-bottom: 30px;
    text-align: center;
}
#unidades .filtrosmobile h4{
    text-align: left;
    padding: 0px;
    padding-bottom: 30px;
}
.fullscreen-modal .modal-dialog {
    margin: 0;
    margin-right: auto;
    margin-left: auto;
    width: 80%;
    max-width: 1900px;
  }
  .carousel-thumbnails .carousel-indicators li {
    height: auto;
    width: 16%;
    max-width: 16%;
    border: none;
}
.fullscreen-modal .carousel-control-prev {
    left: -10%;
}

.logoscontacto{
    display: inline-block;
    vertical-align: bottom;
    font-size: 12px;
    text-align: center;
    min-width: 28%;
    margin-right: 2%;
}
.logoscontacto img{
    max-height: 58px;
}
.desarrolloyarq {
    
    margin-top: 45px;
}

.fullscreen-modal .carousel-control-next {
    right: -10%;
}
.logoblancombl{
    display: none;
}
footer .logoblanco{
    height: 90px;
}



  @media (min-width: 768px) {
    .fullscreen-modal .modal-dialog {
      width: 750px;
    }
}
  @media (min-width: 992px) {
    .fullscreen-modal .modal-dialog {
      width: 970px;
    }
  }
  @media (min-width: 1200px) {
    .fullscreen-modal .modal-dialog {
       width: 1170px;
    }
  }


  @media (max-width: 700px) {
      .mapacentrado{
    position: relative;
    padding-left: 10px;
    }
    .cargaunidad {
        padding-left: 10px;
    }
    #unidades h4 {
        color: var(--main-bg-fblue);
        font-family: "Canela";
        font-size: 25px;
        padding: 0px;
        padding-bottom: 10px;
        text-align: center;
    }
    .centered {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90vw;
        text-align: center;
        z-index: 1;
    }
    #header {
        position: fixed;
        width: 100%;
        padding: 30px 10px 3px 10px;
        z-index: 10;
        transition: all 0.6s cubic-bezier(0.68, 0.01, 0.22, 0.99);
    }
    .floatatvlogo{
        position: fixed;
        left:30px;
        bottom:20px;
        background-image: url(../img/logo-atv.png);
        background-repeat: no-repeat;
        background-size: contain;
        width: 80px;
        height: 115px;
        z-index: 105;
        /*transition: visibility 0s, opacity 1.1s linear;*/
    }
    .textnpic{
        padding-top: 2em;
        padding-bottom: 2em;
    }
    .marginado .col-md-6{
        min-height: 40vh!important;
    }
    .marginado {
        padding: 2.2em;
    }
    .quotewhite q {
        font-size: 1.5rem;
        padding: 0;
        margin: 0;
        width: 90%;
    }
    h4.title {
        color: var(--main-bg-green);
        text-align: center;
        font-family: "Canela";
        font-size: 44px;
        line-height: 1.05em;
        font-weight: normal;
        margin: 2rem 0;
    }
    /*h3.title {
        color: #fff;
        text-align: center;
        font-family: "Canela";
        font-size: 6rem;
        line-height: 1.3em;
        font-weight: normal;
        margin-bottom: 1em;
        transition: all 0.5s ease;
    }
    p {
        text-align: center;
        color: #fff;
        font-size: 2.3rem;
        line-height: 1.2em;
        margin-bottom: 3em;
    }
    .bgsection {
        height: 100vh;
        overflow: hidden;
        background-size: cover;
        background-position: center;
    }
    .btnmore {
        color: #fff !important;
        border: 1px solid #fff;
        border-radius: 35px;
        line-height: 35px !important;
        padding: 0px 20px;
        display: inline-block;
        transition: all 0.3s;
        font-size: 1.8rem;
        line-height: 3rem;
    }*/

    .centeredquote {
        position: relative;
        top: 0%;
        left: 0%;
        transform: translate(0%, 0%);
        text-align: center;
        z-index: 1;
    }

    .quotegreen q {
        color: #004C73;
        width: 90%;
        max-width: 1200px;
        text-align: center;
        font-family: "Canela";
        font-size: 2.2em;
        line-height: 1.3em;
        font-weight: normal;
        margin-bottom: 1em;
        display: block;
        margin: 60px auto 40px auto;
    }
    .quotegreen p{
        width: 90%;
    }
    section.ytvideo {
        min-height: 30vh!important;
    }
    .navmenu.active {
        display: block;
        transform: translateX(0%);
    }
    .navmenu {
        overflow: hidden;
        text-align: center;
        width: 100%;
        height: 100%;
        background-color: #162D5F;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1;
        display: none;
        transition: all 0.6s cubic-bezier(0.68, 0.01, 0.22, 0.99);
    }
    .navmenu ul li {
        display: block;
        color: #fff;
        padding: 6px 12px;
        width: 100%;
        float: none;
        text-align: center;
    }
    .navmenu ul {
        margin: 0px;
        padding: 0px;
        display: flex;
        text-align: center;
        transition: all 0.6s cubic-bezier(0.68, 0.01, 0.22, 0.99);
        margin-top: 3em;
        margin-right: 15px;
        width: 100%;
        float: none;
        display: block;
        transform: translate(0%,-50%)!important;
        margin: 0;
        position:absolute;
        top: 45%;
    }
    .navmenu ul li a {
        padding-bottom: 5px;
        color: #fff;
        position: relative;
        font-size:1.8em;
    }
    .mainlogo{
        width: 40vw;
    }
    .mainlogo{
        width: 40vw;
        display: none;
    }
    .mainlogomobile{
        width: 40vw;
        display: block;
        position: relative;
        z-index: 10;
        margin-bottom: 15px;
    }
    .developers{
        min-height: 50px;
    }
    footer{
        padding:20px;
    }
    footer .logoblanco{
    }
    .lastline {
        margin-top: 2em;
    }
    .bgsection {
        height: 100vh;
        overflow: hidden;
        background-position: top center;
        background-size: cover;
    }

    #header.active .navmenu ul li a {
        color: #fff;
    }
    .vcentrado {
        position: relative;
        top: 0%;
        transform: translateY(0%);
        width: 100%;
        margin-top: 100px;
        padding-left: 0;
    }
    .filtrosmobile{
        /*display: none;*/
    }
    .logoscontacto{
        display: block;  height:120px; font-size:12px; text-align:center;
    }
    #contactosection {
        padding: 100px 10px;
    }
    .desarrolloyarq {
        height: auto;
        width: 100%;
        position: relative;
        bottom: 0px;
        margin-top: 30px;
    }
    footer ul a{
        color:#fff;
        font-size: 1.5rem;
    }
    .logoblancodddd{
        display: none;
    }
    .logoblancomblddd{
        display: inline-block;
    }
    footer ul {
        list-style: none;
        padding: 0px;
        margin: 0px auto;
        float: none;
        text-align: center;
    }
    .developers{
        text-align: center!important;
    }
    .developers img {
        vertical-align: bottom;
        margin-right: 20px;
        margin: 10px auto;
    }
    .developers p {
        vertical-align: bottom;
        margin: 0;
        position: absolute;
        bottom: 0px;
        left: 0px;
        font-size: 14px;
        width: 100%;
    }
    .unidaddetail h3 {
        color: var(--main-bg-green);
        font-size: 1.8rem;
        font-family: "Canela";
        border-bottom: 1px solid var(--main-bg-fblue);
        padding-bottom: 0.5rem;
    }
    .unidaddetail p:first-of-type {
        border-bottom: 1px solid var(--main-bg-fblue);
        padding: 0.5rem;
        font-size: 1rem;
    }
    .ytvideo{
        padding: 1em 0;
    }
}
