/**  
* -----------------------------------------------------------------------------
* -----------------------------------------------------------------------------   
    TABLE OF CONTENT
---------------------------------------------------------
    01. General CSS
    02. Menu Responsive
    03. Header Menu
    04. Banner Home
    05. Social Media Tab 
    06. Portafolio 
    07. Clientes 
    08. Us 
    09. Equipo
    10. Contacto
    11. Footer

--------------------------------------------------------*/


/* -----------------------------------
    01. General CSS
-------------------------------------*/


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    width: 100vw;
    overflow-x: hidden;
}

#root{
    width: 100vw;
    height: auto;
    overflow-x: hidden;
}

#main{
    width: 100vw;
    height: auto;
}

.flex-row{
    height: auto;
    display: flex;
    flex-wrap: wrap;
}

.book-now span{
    color: #fff;
    width: 200px;
    height: 50px;
    padding: 5px;
    display: flex;
    cursor: pointer;
    overflow: hidden;
    font-size: 17.5px;
    border-radius: 5px;
    position: relative;
    align-items: center;
    justify-content: center;
    font-family: 'Mulish', sans-serif;
}

.book-now span b{
    z-index: 1;
    font-weight: 700;
    position: relative;
}

.book-now img{
    width: 35px;
    height: auto;
    filter: invert(1); 
    margin: 0 5px 0 0;
}

.book-now span::before{
    content: '';
    z-index: 0;
    width: 200%;
    height: 200%;
    transition: 0.5s;
    position: absolute;
    background-size: cover;
    background-position: auto;
    background-repeat: no-repeat;
    transform: translate(20%, 15%);
    background: linear-gradient(135deg, rgba(255,0,108, 1) 30%, rgba(157,0,184,0.8) 45%, rgba(72,0,255,1) 70%);
}

.book-now:hover span::before{
    transform: translate(-20%, -15%);
}

.title{
    width: 85%;
    height: auto;
    display: flex;
    padding: 75px 0 0 0;
    margin: 0 10% 0 10%;
    align-items: center;
    justify-content: center;
}

.title > div{
    width: auto;
    height: auto;
    text-align: center;
}

.title h4{
    color: #FF0074;
    font-size: 18px;
    font-family: 'Oswald', sans-serif;
}

.title h3{
    font-size: 24px;
    margin: 20px 0 0 0;
    font-family: 'Mulish', sans-serif;
}

@media only screen and (max-width: 400px){
    .title h3{ font-size: 21px; }
}

.bar{
    width: 100%;
    display: flex;
    justify-content: center;
}

.bar div{
    height: 3px;
    transition: 0.5s;
    border-radius: 5px;
    background: #FF0074;
    margin: 25px 3px 0 3px;
}

.bar div:nth-child(1){ width: 20px; }
.bar div:nth-child(2){ width: 60px; }

.bar.on div:nth-child(1){ width: 60px; }
.bar.on div:nth-child(2){ width: 20px; }


/* -----------------------------------
    02. Menu Responsive
-------------------------------------*/

.menu-hamburguer{
    top: 0;
    right: 0;
    width: 20%;
    height: 100px;
    display: flex;
    position: absolute;
    align-items: center;
    padding: 0 0 10px 20px;
    justify-content: center;
}

.menu-button{
    display: flex;
    position: fixed;
    padding: 20px 0 0 0;
    z-index: 5 !important;
}

#burguer-button.burguer-button-change .line{ background: #FF0188; }

.hamburger{
   width: 25px;
   height: 25px;
   display: block;
   cursor: pointer;
   position: relative;
}

.hamburger:hover .line{ background: #FF0188; }

.line{
   height: 4px;
   width: 100%;
   background: #fff;
   transition: 0.5s;
   position: absolute;
}

.line:nth-child(1){ top: 0px; }
.line:nth-child(2){ top: 7px; }
.line:nth-child(3){ top: 14px; }

.hamburger.active .line:nth-child(1){ transform: translateY(7px) rotate(-45deg); }

.hamburger.active .line:nth-child(2){ opacity:0; }

.hamburger.active .line:nth-child(3){ transform: translateY(-7px) rotate(45deg); }

#menu-responsive{
    top: 0;
    z-index: 3;
    width: 0vw;
    display: none;
    min-height: auto;
    position: fixed;
    justify-content: right;
}

#menu-responsive.hide{
    width: 0px;
    height: 0px;
    transition: 2s;
}

#menu-responsive.show{
    width: 100vw;
    height: 100vh;
    transition: 0s;
}

#menu-responsive.show, #menu-responsive.hide{ display: flex; }

#menu-responsive > div:nth-child(1){
    top: 0;
    z-index: 2;
    width: 100vw;
    height: 110vh;
    position: absolute;
    background: rgba(81, 0, 181, 0.5);
}

#menu-responsive.show > div:nth-child(1){ animation: dashIn 1s ease-out forwards; }
#menu-responsive.hide > div:nth-child(1){ animation: dashOut 0.75s ease-in forwards; }

#menu-responsive > div:nth-child(2){
    top: 0;
    z-index: 3;
    width: 500px;
    height: 110vh;
    position: absolute;
    padding: 70px 0 0 0;
    background: linear-gradient(to right, #5100B5 55%, #A700C2);
}

@media only screen and (max-width: 500px){
    #menu-responsive > div:nth-child(2){ width: 100vw; }
}

#menu-responsive.show > div:nth-child(2){ animation: dashIn 0.5s ease-out forwards; }
#menu-responsive.hide > div:nth-child(2){ animation: dashOut 1s ease forwards; }

@keyframes dashIn{
     0%{ right: -200vw; }
    100%{ right: 0; }
}

@keyframes dashOut{
     0%{ right: 0; }
    100%{ right: -200vw; }
}

#menu-responsive ul{
    margin: 0;
    color: #fff;
    font-weight: 400;
    list-style: none;
    font-size: 18.5px;
    box-sizing: border-box;
    padding: 0 75px 10px 45px;
    font-family: 'Oswald', sans-serif;
}

#menu-responsive li{
    padding: 5px 10px 10px 5px;
    border-bottom: 1.5px solid rgba(0, 0, 0, 0.1);
}

#menu-responsive span{
    cursor: pointer;
    transition: 0.25s;
}

#menu-responsive span:hover{ color: #FF0188; }

.menu-info{
    width: 90%;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 10px 20px 10px 45px;
}

.menu-info img{
    width: 40px;
    height: 40px;
    margin-right: 15px;
}

.menu-info h4, .menu-info h5{ font-family: 'Mulish', sans-serif; }

.menu-info h4{ 
    font-size: 16px; 
    font-weight: 800;
}

.menu-info h5{ 
    font-size: 14px; 
    font-weight: 600;
}

#menu-responsive i{ padding: 0 7.5px 0 0; }

@media only screen and (min-width: 990px){
    .menu-hamburguer, #menu-responsive{ display: none;}
    #menu-responsive.show, #menu-responsive.hide{ display: none; }
}

/* -----------------------------------
    03. Menu Home
-------------------------------------*/

#menu-home{
    top: 0;
    left: 0;
    z-index: 5;
    width: 100vw;
    height: 100px;
    display: none;
    position: fixed;
    transition: 0.5s;
    align-items: center;
    justify-content: center;
}

#menu-home.menu-fixed{ background-color: #fff; }

#menu-home > div{ 
    width: 20%;
    display: flex;
}

#menu-home ul{
    width: 60%;
    color: #fff;
    display: flex;
    font-size: 18px;
    font-weight: 400;
    list-style: none;
    padding: 50px 0 0 0;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
}

#menu-home.menu-fixed ul{ color: #000; }

#menu-home li{ 
    width: 75px;
    height: 30px;
    display: flex;
    transition: 1s;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    margin: 0 20px 0 20px; 
}

#menu-home li:nth-child(1) svg rect{ stroke-dashoffset: 0; }

#menu-home svg, #menu-home rect{
    width: 75px;
    height: 30px;
    fill: transparent;
    position: absolute;
}

#menu-home svg rect{
    stroke: #fff;
    transition: 2s;
    stroke-width: 4;
    stroke-dasharray: 480;
    stroke-dashoffset: 480;
}

#menu-home.menu-fixed svg rect{ stroke:#000; }

#menu-home li:hover svg rect{ 
    transition: 2s;
    stroke-dashoffset: 0; 
}

@media only screen and (min-width: 990px){
    #menu-home{ display: flex; }
}

/* -----------------------------------
    04. Banner Home
-------------------------------------*/

.home-background{
    width: 100vw;
    height: 100%;
    position: absolute;
    background-size: cover;
    background-position: auto;
    background-repeat: no-repeat;
}

.home-background:nth-child(1){ 
    opacity: 0;
    animation: vanish 40s infinite;
    background-image: url("../images/equipo.jpg"); 
}

.home-background:nth-child(2){
    opacity: 0;
    animation: vanish 40s infinite;
    animation-delay: 10s;
    background-image: url("../images/rock.jpg"); 
}

.home-background:nth-child(3){ 
    opacity: 0;
    animation: vanish 40s infinite;
    animation-delay: 20s;
    background-image: url("../images/momentoCam.jpeg"); 
}

.home-background:nth-child(4){ 
    opacity: 0;
    animation: vanish 40s infinite;
    animation-delay: 30s;
    background-image: url("../images/we-belong.png"); 
}

@keyframes vanish{
    0% { opacity: 0; }
    5% { opacity: 1; }
    20% { opacity: 1; }
    25% { opacity: 0; }
}

#home-wrap{
    width: 100vw;
    height: auto;
}

#home{
    width: 100vw;
    height: auto;
    display: flex;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    align-items: center;
    justify-content: center;
}

#home::before{
    content: '';
    width: 200%;
    height: 200%;
    position: absolute;
    background-size: cover;
    background-position: auto;
    background-repeat: no-repeat;
    animation: before 15s infinite;
    background: linear-gradient(-45deg, rgba(81, 0, 181, 0.85), rgba(255, 76, 23, 0.85), rgba(167, 0, 194, 0.85), rgba(40, 8, 171, 0.85), rgba(25, 210, 193, 0.85), rgba(25, 210, 132, 0.85));
}

@keyframes before{
    0%{ transform: translate(20%, 20%); }
    50%{ transform: translate(-20%, -20%); }
    100%{ transform: translate(20%, 20%); }
}

#home section{
    width: 750px;
    position: absolute;
    text-align: center;
}

#home header{
    width: 80%;
    height: auto;
    display: flex;
    justify-content: center;
    margin: -20px 10% -30px 10%;
}

@media only screen and (max-height: 650px){
    #home section{ margin: 0 0 100px 0; }
}

#home header img{ width: 80%; }

#home h3{
    color: #fff;
    font-size: 18px;
    font-weight: 300;
    font-family: 'Inter', sans-serif;
}

#home h3 b{
    font-weight: 800;
}

@media only screen and (max-width: 900px){
    #home section{ width: 700px; }
}

@media only screen and (max-width: 800px){
    #home section{ width: 600px; }
}

@media only screen and (max-width: 660px){
    #home header img{ width: 100%; }
    #home section{ max-width: 90%; }
    #home header{ margin: 25px 10% -15px 10%; }
    #home h3{ font-size: 16.5px; }
}

.home-slide{
    display: flex;
    justify-content: center;
}

.home-slide .book-now{ 
    width: 160px;
    height: 45px;
    font-size: 16.5px; 
    margin: 15px 0 0 0;
}

.home-slide .book-now img{ width: 25px; }

#promo-video-window{ display: none; }

#promo-video-window.video-playing{
    top: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    position: fixed;
    align-items: center;
    z-index: 10 !important;
    justify-content: center;
    background: rgba(0, 0, 0, 0.99);
}

#promo-video-window div{
    top: 0;
    width: 100vw;
    display: flex;
    font-size: 25px;
    position: absolute;  
    padding: 30px 30px 0 0;
    justify-content: right;
}

#promo-video-window i{
    color: #D3D3D3;
    transition: 0.5s;
}

#promo-video-window i:hover{
    color: #fff;
    cursor: pointer;
    transition: 0.5s;
}

#promo-video-window iframe{
    width: 55vw;
    height: 30.8vw;
    min-width: 500px;
    min-height: 280px;
}

.video-promo{
    right: 35px;
    bottom: 25px;
    width: 100vw;
    height: auto;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: right;
}

.video-promo b{
    color: #fff;
    font-size: 18px;
    padding: 0 5px 0 0;
    font-family: 'Oswald', sans-serif;
}

.video-player{
    display: flex;
    width: 82.5px;
    height: 82.5px;
    align-items: center;
    justify-content: center;
}

#player-halo{
    width: 75px;
    height: 75px;
    display: flex;
    transition: 0.2s;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: radial-gradient(closest-side, rgba(255, 255, 255, 1.0), rgba(255, 255, 255, 0.1));
}

#player-halo.player-hover{
    width: 70px;
    height: 70px;
    transition: 0.2s;
    background: radial-gradient(closest-side, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.2));
}

#player-halo > div{
    display: flex;
    width: 63.75px;
    height: 63.75px;
    cursor: pointer;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
}

#player-halo > div > div{
    color: #000;
    width: 55px;
    height: 55px;
    display: flex;
    cursor: pointer;
    transition: 0.2s;
    font-size: 22.5px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.75);
}

#player-halo > div:hover > div{
    color: #000;
    width: 52.5px;
    height: 52.5px;
    font-size: 28px;
    transition: 0.2s;
    background: rgba(255, 255, 255, 0.8);
}

/* -----------------------------------
    05. Social Media Tab
-------------------------------------*/

#social-media-tab{
    width: auto;
    right: -40px;
    height: 215px;
    display: none;
    position: absolute;
    transition: 0.5s;
    border-radius: 10px;
    align-items: center;
    top: calc(40vh - 30px);
}

#social-media-tab ul{
    color: #fff;
    width: 150px;
    list-style: none;
    padding: 15px 0 0 40px;
}

#social-media-tab a{ 
    width: 50px;
    color: #fff;
    display: flex;
    cursor: pointer;
    transition: 0.25s;
    justify-content: center;
    padding: 7.5px 0 7.5px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

#social-media-tab a:nth-child(1){ border-top:none; }
#social-media-tab a:nth-last-child(1){ border-bottom: none; }
#social-media-tab a:hover{ background: rgba(0, 0, 0, 0.3); }

@media only screen and (min-width: 990px){
    #social-media-tab{ display: flex; }
}

/* -----------------------------------
    06. Portafolio
-------------------------------------*/

#folio{
    width: 100vw;
    height: auto;
    position: relative;
    padding: 0 0 50px 0;
}

#folio::before{
    top: 0;
    left: 0;
    z-index: -1;
    content: '';
    width: 100%;
    height: 100%;
    position: fixed;
    background-size: cover;
    background-position: auto;
    background-repeat: no-repeat;
    background-image: url("../images/folio.svg"); 
}

.main-events{
    width: 100vw;
    height: auto;
    padding-bottom: 50px;
}

.main-events > section{
    width: 100vw;
    height: auto;
    display: flex;
    padding: 10px 0 0 0;
    justify-content: center;
}

.main-events .flex-row{
    width: 90%;
    min-width: 400px;
    justify-content: center;
}

.main{
    width: 350px;
    height: 300px;
    display: flex;
    cursor: pointer;
    transition: 0.5s;
    border-radius: 5px;
    align-items: center;
    justify-content: center;
    margin: 20px 10px 0 10px;
}

.main:hover{ background: linear-gradient(-45deg, rgba(219,0,237,0.5) 0%, rgba(90,0,208,1) 70%); }

.main > div{
    width: 100%;
    height: 85%;
    margin-top: 15px;
    transition: 0.5s;
}

.main:hover > div{
    margin-top: -15px; 
}

.main header{
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
    margin-bottom: -10px;
    justify-content: center;
}

.main img{
    height: auto; 
    filter: invert(81%) sepia(100%) saturate(6714%) hue-rotate(327deg) brightness(102%) contrast(106%); 
}

.main:nth-child(1) img{ width: 125px; }
.main:nth-child(2) img{ width: 71.43px; }
.main:nth-child(3) img{ width: 64.287px; }

.main section, .main footer{ 
    width: 100%;
    display: flex;
    margin-top: 5px;
    transition: 0.25s;
    text-align: center;
    justify-content: center;
}

.main:hover section, .main:hover footer{ color: #fff; }

.main h4{
    font-size: 19px;
    font-weight: 800;
    font-family: 'Mulish', sans-serif;}

.main h5{
    font-size: 17px;
    font-weight: 500;
    font-family: 'Mulish', sans-serif;
}

.counter-section{
    width: 100vw;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 50px 0 0 0;
    background-image: url(../images/rock.jpg);
    background-size: cover;
    background-position: auto;
    background-repeat: no-repeat;
}

.counter-section > section{
    width: 100vw;
    height: 100%;
    display: flex;
    min-height: 350px;
    align-items: center;
    justify-content: center;
    padding: 20px 0 20px 0;
    background: linear-gradient(to right, rgba(81, 0, 181, 0.8) 55%, rgba(167, 0, 194, 0.8)); 
}

.counter-section .flex-row{
    width: 90%;
    min-width: 400px;
    justify-content: center;
}

.counter-folio{
    width: 200px;
    color: #fff;
    display: flex;
    margin: 20px 35px 20px 35px;
}

.counter-folio header{
    height: 100%;
    display: flex;
    align-items: center;
}

.counter-folio img{ 
    width: 80px;
    filter: invert(23%) sepia(68%) saturate(7367%) hue-rotate(328deg) brightness(96%) contrast(117%); 
}

.counter-folio section{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0 0 15px;
}

.counter-folio h4{
    font-size: 35px;
    font-weight: 500;
    font-family: 'Oswald', sans-serif;
}

.counter-folio b{ font-weight: 800; }

.counter-folio h5{
    font-size: 15px;
    font-weight: 700;
    margin: -5px 0 0 0;
    font-family: 'Mulish', sans-serif;
}

.events{
    width: 100vw;
    height: auto;
    min-height: 100vh;
    margin: 50px 0 0 0;
}

.events > section{
    width: 100vw;
    height: auto;
    display: flex;
    padding: 0 0 50px 0;
    justify-content: center;
}

.events .flex-row{
    width: 85%;
    min-width: 400px;
    justify-content: center;
}

.event{
    width: 350px;
    height: 300px;
    cursor: pointer;
    border-radius: 5px;
    margin: 20px 10px 0 10px;
    background: linear-gradient(45deg, rgba(255,255,255,1) 65%, rgba(255,12,106,0.05) 100%);
}

.event > div{
    width: 100%;
    height: 100%;
    transition: 0.5s;
}

.event > div:hover{ 
    color: #fff;
    background: linear-gradient(-30deg, rgba(238,25,255,0.6) 35%, rgba(76,0,176,1) 60%);
    background-size: 200% 200%;
    background-position: 40% 40%; 
    animation: backgroundMove 0.5s forwards;
}

@keyframes backgroundMove{
    0% { background-position: 0% 0%;  }
    35% { background-position: 0% 0%;  }
    100% { background-position: 40% 40%;  }
}

.event header{
    width: 100%;
    height: 125px;
    display: flex;
    align-items: center;
    justify-content: left;
    padding: 10px 40px 0 40px;
}

.event img{
    height: auto; 
    filter: invert(81%) sepia(100%) saturate(6714%) hue-rotate(327deg) brightness(102%) contrast(106%); 
}

.event section, .event footer{ 
    width: 100%;
    display: flex;
    padding: 10px 40px 0 40px;
}

.event h4{
    font-size: 22.5px;
    font-weight: 900;
    font-family: 'Mulish', sans-serif;
}

.event h5{
    font-size: 16.5px;
    font-weight: 500;
    font-family: 'Mulish', sans-serif;
}

.event span{
    font-size: 65px;
    position: absolute;
    margin: 0px 0 0 175px;
    color: rgba(255, 0, 97, 0.2);
    font-family: 'Oswald', sans-serif;
}

/* -----------------------------------
    07. Clientes
-------------------------------------*/

#clientes{
    width: 100vw;
    height: auto;
    min-height: 100vh;
    position: relative;
    padding: 0 0 50px 0;
}

#clientes-background{
    z-index: -1;
    width: 100%;
    height: 100%;
    opacity: 0.75;
    position: absolute;
    background-size: cover;
    background-position: auto;
    background-repeat: no-repeat;
    background-image: url("../images/liquid-cheese.svg"); 
}

#clientes::before{
    top: 0;
    left: 0;
    z-index: -1;
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background-size: cover;
    background-position: auto;
    background-repeat: no-repeat;
    background-image: url("../images/we-belong.png"); 
}

#clientes section{
    width: 100vw;
    display: flex;
    margin: 50px 0 0 0;
    justify-content: center;
}

@media only screen and (max-width: 400px){
    #clientes section{ margin: 30px 0 0 0; }
}

#clientes .flex-row{
    width: 80vw;
    height: auto;
    min-width: 350px;
    justify-content: center;
}

#clientes img{
    width: auto;
    margin: 15px 15px 15px 15px;
}

#clientes img:nth-child(1){
    height: 42.5px;
    margin: 17.5px 15px 15px 15px;
}

#clientes img:nth-child(2){
    height: 35px;
}

#clientes img:nth-child(3){
    height: 37.5px;
    margin: 20px 15px 15px 15px;
}

#clientes img:nth-child(4){
    height: 40px;
    margin: 20px 15px 15px 15px;
}

#clientes img:nth-child(5){
    height: 27.5px;
    margin: 22.5px 15px 15px 15px;
}

#clientes img:nth-child(6){
    height: 32.5px;
    margin: 22.5px 15px 15px 15px;
}

#clientes img:nth-child(7){
    height: 40px;
    margin: 20px 15px 15px 15px;
}

#clientes img:nth-child(8){
    height: 25px;
    margin: 25px 15px 15px 15px;
}

#clientes img:nth-child(9){
    height: 20px;
    margin: 25px 15px 15px 15px;
}

#clientes img:nth-child(10){
    height: 17.5px;
    margin: 27.5px 15px 15px 15px;
}

#clientes img:nth-child(11){
    height: 40px;
}

#clientes img:nth-child(12){
    height: 55px;
}

#clientes img:nth-child(13){
    height: 20px;
    margin: 32.5px 15px 15px 15px;
}

#clientes img:nth-child(14){
    height: 45px;
    margin: 17.5px 15px 15px 15px;
}

#clientes img:nth-child(15){
    height: 25px;
    margin: 30px 15px 15px 15px;
}

#clientes img:nth-child(16){
    height: 15px;
    margin: 37.5px 15px 15px 15px;
}

#clientes img:nth-child(17){
    height: 47.5px;
    margin: 20px 15px 15px 15px;
}

#clientes img:nth-child(18){
    height: 80px;
    margin: 0 15px 15px 15px;
}

#clientes img:nth-child(19){
    height: 17.5px;
    margin: 20px 15px 15px 15px;
}

#clientes img:nth-child(20){
    height: 35px;
    margin: 10px 15px 15px 15px;
}

#clientes img:nth-child(21){
    height: 20px;
    margin: 17.5px 15px 15px 15px;
}

#clientes img:nth-child(22){
    height: 30px;
    margin: 7.5px 15px 15px 15px;
}

#clientes img:nth-child(23){
    height: 50px;
    margin: 5px 15px 15px 15px;
}

#clientes img:nth-child(24){
    height: 50px;
    margin: 7.5px 15px 15px 15px;
}

#clientes img:nth-child(25){
    height: 52.5px;
    margin: 5px 15px 15px 15px;
}

#clientes img:nth-child(26){
    height: 35px;
    margin: 12.5px 15px 15px 15px;
}

#clientes img:nth-child(27){
    height: 15px;
    margin: 22.5px 15px 15px 15px;
}

#clientes img:nth-child(28){
    height: 60px;
    margin: 0 15px 15px 15px;
}

#clientes img:nth-child(29){
    height: 30px;
    margin: 15px 15px 15px 15px;
}

#clientes img:nth-child(30){
    height: 40px;
    margin: 7.5px 15px 15px 15px;
}

#clientes img:nth-child(31){
    height: 30px;
    margin: 7.5px 15px 15px 15px;
}

#clientes img:nth-child(32){
    height: 30px;
    margin: 12.5px 15px 15px 15px;
}

#clientes img:nth-child(33){
    height: 52.5px;
    margin: -2.5px 15px 15px 15px;
}

#clientes img:nth-child(34){
    height: 65px;
    margin: 0 15px 15px 15px;
}

#clientes img:nth-child(35){
    height: 25px;
    margin: 15px 15px 15px 15px;
}

#clientes img:nth-child(36){
    height: 40px;
    margin: 12.5px 15px 15px 15px;
}

#clientes img:nth-child(37){
    height: 30px;
    margin: 15px 15px 15px 15px;
}

#clientes img:nth-child(38){
    height: 30px;
    margin: 15px 15px 15px 15px;
}

#clientes img:nth-child(39){
    height: 40px;
    margin: 12.5px 15px 15px 15px;
}

#clientes img:nth-child(40){
    height: 45px;
    margin: 5px 15px 15px 15px;
}

#clientes img:nth-child(41){
    height: 60px;
    margin: 0 15px 15px 15px;
}

/* -----------------------------------
    08. Us
-------------------------------------*/

#us{
    width: 100vw;
    height: auto;
    display: flex;
    min-height: 100vh;
    margin: 75px 0 75px 0;
    align-items: center;
    justify-content: center;
}

#us > .flex-row{
    width: 90vw;
    height: auto;
    min-width: 400px;
    justify-content: center;
}

#us > .flex-row > header{
    width: 50%;
    min-width: 400px; 
    margin: 150px 0 50px 0;
}

#us .flex-row > section{
    width: 50%;
    min-width: 400px; 
    margin: 150px 0 150px 0;
}

#us > .flex-row > header{
    display: flex;
    overflow-x: hidden;
    padding: 0 25px 0 0;
    align-items: center;
    justify-content: center;
}

#us > .flex-row > header > div{
    width: 225px;
    height: 425px;
    min-width: 225px;
    min-height: 425px;
    position: absolute;
}

@media only screen and (max-width: 500px){
    #us > .flex-row > header > div{ 
        width: 150px;
        height: 350px;
        min-width: 150px;
        min-height: 350px;
        margin: 0 0 0 2vw;
    }
}

#us > .flex-row > header > div{ z-index: 1; }

#us > .flex-row > header > div:nth-child(1) > div{ margin: 0 0 0 -110px; }

#us > .flex-row > header > div:nth-child(1) > div:nth-child(1), #us .flex-row > header > div:nth-child(3) > div:nth-child(2){
    width: 100%;
    height: 75%;
    background: rgba(97, 0, 129, 0.75);
}

#us > .flex-row > header > div:nth-child(3) > div{ margin: 0 0 0 110px; }

#us > .flex-row > header > div:nth-child(1) > div:nth-child(2), #us .flex-row > header > div:nth-child(3) > div:nth-child(1){
    width: 100%;
    height: 25%;
    background: transparent;
}

#us > .flex-row > header img{
    z-index: 2;
    position: absolute;
}

@media only screen and (max-width: 500px){
    #us > .flex-row > header img{ 
        width: 85vw;
        margin: 0 0 0 5vw; 
    }
}

#us h6{
    width: 85%;
    font-size: 17px;
    font-weight: 500;
    line-height: 27.5px;
    margin: 50px 0 0 5%;
    font-family: 'Mulish', sans-serif;
}

#us > .flex-row > section > .flex-row{ justify-content: left; }

.counter-us{
    width: 200px;
    display: flex;
    margin: 50px 20px -20px 5%;
}

.counter-us header{
    height: 100%;
    display: flex;
    align-items: center;
}

.counter-us img{
    width: 85px;
    filter: invert(23%) sepia(68%) saturate(7367%) hue-rotate(328deg) brightness(96%) contrast(117%);
}

.counter-us section{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0 0 15px;
}

.counter-us h4{
    font-size: 35px;
    font-weight: 500;
    font-family: 'Oswald', sans-serif;
}

.counter-us b{ font-weight: 800; }

.counter-us h5{
    font-size: 15px;
    font-weight: 700;
    margin: -5px 0 0 0;
    font-family: 'Mulish', sans-serif;
}

#us .book-now{ margin: 75px 0 0 5%; }

@media only screen and (max-width: 900px){
    #us .flex-row > section{ margin: 150px 0 0 0; }
    #us h6{ text-align: center; }
    #us > .flex-row > section > .flex-row{  justify-content: center; }  
    #us .book-now{ 
        width: 100%;
        display: flex;
        justify-content: center; 
    }
}

/* -----------------------------------
    9. Equipo
-------------------------------------*/

#team{
    color: #fff;
    width: 100vw;
    height: auto;
    min-height: 100vh;
    position: relative;
    background: linear-gradient(to right, rgba(81, 0, 181, 0.8) 55%, rgba(167, 0, 194, 0.8)); 
}

#team::before{
    top: 0;
    left: 0;
    z-index: -1;
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background-size: cover;
    background-position: auto;
    background-repeat: no-repeat;
    background-image: url("../images/equipo.jpg"); 
}

#team-title{
    margin-bottom: 50px;
}

.team-h5-title{ 
    width: 100%; 
    margin-bottom: -5px; 
}

.team-h5-title h5{ font-size: 20px; }
.team-h5-title > div { max-width: 750px; }

#team .flex-row{
    width: 100%;
    padding: 0 25px 0 25px;
    justify-content: center;
}

.team-member{
    width: 275px;
    height: auto;
    cursor: pointer;
    margin: 25px 15px 25px 15px;
}

.team-member header{
    width: 100%;
    display: flex;
    justify-content: center;
}

.team-member header div{
    width: 200px;
    height: 200px;
    display: flex;
    overflow: hidden;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
}

.team-member header img{
    width: 300px;
    height: auto;
}

.team-member section{
    width: 100%;
    text-align: center;
    font-family: 'Mulish', sans-serif;
}

.team-member .arrow{
    opacity: 0;
    width: 45px;
    height: 45px;
    transition: 0.5s;
    position: absolute;
    margin: -135px 0 0 -140px;
    transform: scaleX(-1) rotate(135deg);
    filter: invert(19%) sepia(100%) saturate(6714%) hue-rotate(327deg) brightness(102%) contrast(106%);
}

.team-member:nth-child(5) .arrow{
    margin: -135px 0 0 -160px;
}

.team-member:hover .arrow{
    opacity: 1;
    margin: -80px 0 0 -140px;
}

.team-member:nth-child(5):hover .arrow{
    opacity: 1;
    margin: -80px 0 0 -160px;
}

.team-member h5{
    font-size: 20px;
    font-weight: 900;
    padding: 20px 0 0 0;
}

.team-member h6{
    font-size: 18px;
    font-weight: 700;
    padding: 5px 0 0 0;
}

.team-member section div{
    width: 100%;
    display: flex;
    margin: 5px 0 0 0;
    justify-content: center;
}

.team-member .book-now span{
    width: 150px;
    height: 35px;
    font-size: 14px;
    transition: 0.5s ease;
    transform: rotatey(90deg);
}

.team-member:hover .book-now span{ transform: rotatey(0); }

.team-member .book-now img{
    width: 25px;
}

/* -----------------------------------
    10. Contacto
-------------------------------------*/

#contact{
    width: 100vw;
    height: auto;
    min-height: 100vh;
    margin: 0 10px 0 10px;
}

#contact-title{ margin-bottom: 100px; }
#contact-title h4{ margin-bottom: -15px; }
#contact-title h3{ margin-bottom: -10px; }

#contact .flex-row{
    width: 100%;
    justify-content: center;
}

#contact .flex-row > div{ 
    width: 45%;
    height: 50vh;
    display: flex;
    min-width: 350px;
    min-height: 400px;
    align-items: center;
    justify-content: center; 
}

#contact .flex-row > div:nth-child(1) section{ width: 100%; } 

.map-socials{ padding: 0 0 25px 30px; }

.map-socials h5{
    color: #FF0074;
    font-size: 20px;
    font-weight: 800;
    padding: 0 0 0 5px;
    font-family: 'Mulish', sans-serif;
}

.map-socials ul{
    width: auto;
    display: flex;
    list-style: none;
    padding: 5px 0 0 0;
}

.map-socials a{ 
    color: #000;
    width: 25px;
    display: flex;
    cursor: pointer;
    font-size: 18px;
    transition: 0.25s;
    margin: 0 15px 0 0;
    text-decoration: none;
    justify-content: center;
}

.map-socials a:hover{ 
    color: #000;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.4); 
}

#contact iframe{
    width: 85%;
    height: 300px;
}

#contact .menu-info{ 
    color: #000; 
    padding: 10px 20px 10px 20px;
}

@media only screen and (max-width: 800px){
    #contact .flex-row > div{ width:100vw; }
    .map{ margin: -75px 0 0 0; } 
    #contact iframe{ 
        width: 85vw;
        height: 85vw;
        max-height: 350px; 
    }
}

#contact .quick-contact{
    width: 100vw;
    height: auto;
    display: flex;
    padding: 50px 0 50px 0;
    align-items: center;
    justify-content: center;
}

.quick-contact form{
    width: 90vw;
    height: auto;
    padding: 20px;
    max-width: 700px;
    border-radius: 5px;
    background: linear-gradient(-45deg, rgba(219,0,237,0.5) 0%, rgba(90,0,208,1) 70%);
}

#qc-title{ margin-bottom: 15px; }

#qc-title h3{
    color: #fff;
    margin: -75px 0 -10px 0;
}

#qc-contact{
    width: 100%;
    display: flex;
    justify-content: center;
}

.send_Message{
    width: 100%;
    color: #fff;
    font-size: 18px;
    text-align: center;
    margin: -20px 0 35px 0;
    font-family: 'Oswald', sans-serif;
}

#qc-contact div{
    height: 3px;
    transition: 0.5s;
    border-radius: 5px;
    background: #FF0074;
    margin: 0 3px 0 3px;
}

#qc-contact div:nth-child(1){ width: 20px; }
#qc-contact div:nth-child(2){ width: 60px; }

#qc-contact.on div:nth-child(1){ width: 60px; }
#qc-contact.on div:nth-child(2){ width: 20px; }

.quick-contact > form > div{
    width: 100%;
    display: flex;
    justify-content: center;
}

.quick-contact input{
    width: 90%;
    max-width: 250px;
}

.quick-contact input, .quick-contact textarea{ margin: 0 10px 25px 10px; }

.quick-contact input, .quick-contact textarea{
    color: #fff;
    border: none;
    padding: 10px;
    font-size: 16px;
    font-weight: 600;
    background: #5600CF;
    font-family: 'Mulish', sans-serif;
}

.quick-contact textarea{
    width: 90%;
    height: 90vw;
    max-width: 520px;
    max-height: 150px;
}

.quick-contact input:focus, .quick-contact textarea:focus{ outline: none; }

.quick-contact input::placeholder, .quick-contact textarea::placeholder{
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Mulish', sans-serif;
}

.send .book-now span{
    width: auto;
    height: auto;
    padding: 10px 20px 10px 20px;
}

/* -----------------------------------
    12. Footer
-------------------------------------*/

#footer{
    width: 100vw;
    height: auto;
    text-align: center;
    padding: 50px 10px 50px 10px;
    font-family: 'Mulish', sans-serif;
}

#footer h4{ cursor: pointer; }

#footer h4, #footer h6 b{ color: #FF0074; }