/* 
    Created on : 10/05/2023, 11:18:23 AM
    Author     : Axel Durand www.axeldurand.com
*/
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;700;900&display=swap');


:root {
    --color-I: #fc5185;
    --color-II: #513896;
    --color-III: #eaedee;
    --color-IV: #bf933a;
  }
  
  html, body {
      font-family: 'Montserrat', sans-serif;
      font-weight: 400;
      height: 100%;
      color: #999;    
  }
  
  html{
      scroll-behavior: smooth;
  }
  
  a{
      color: var(--color-I);
  }
  
  .btn{
      border-radius: 0;
  }
  
  .btn-primary{
      background: var(--color-I);
      border-color: var(--color-I);
  }
  
  .btn-primary:hover{
      background: var(--color-II);
      border-color: var(--color-II);
  }
  
  .btn-default:hover{
      background: var(--color-II);
      border-color: var(--color-II);
      color: #FFF;
  }
  
  p{
      line-height: 2em;
  }
  
  .text-white{
      color: #fff;
  }
  
  .font-I{
      font-family: 'Nunito', serif;
  }
  
  .font-II{
      font-family: 'Montserrat', sans-serif;
  }
  
  .bg-white{
      background-color: #FFF;
  }
  
  .bg-I{
      background: var(--color-I);
  }
  
  .bg-II{
      background: var(--color-II);
  }
  
  .bg-III{
      background: var(--color-III);
  }
  
  .text-I{
      color: var(--color-I);
  }
  
  .text-II{
      color: var(--color-II);
  }
  
  .text-III{
      color: var(--color-III);
  }
  
  .ptb-25{
      padding-top: 25px;
      padding-bottom: 25px;
  }
  
  .ptb-50{
      padding-top: 50px;
      padding-bottom: 50px;
  }
  
  .p-50{
      padding: 50px;
  }
  
  .display-none{
      display: none;
  }
  
.navbar-brand{
    position: relative;
    background: url(../assets/img/sitio/logo.svg) no-repeat center;
    text-indent: -9999px;
    width: 270px;
    height: 100px;
    padding: 20px;
    margin: 0 0 0 50px;
}
.navbar-brand:after{
    position: absolute;
    content: '';
    width: calc(100% + 60px);
    height: calc(100% + 10px);
    top: -5px;
    left: -30px;
    border-radius: 0;
    background-color: #FFF;
    z-index: -1;
}
  
  .navbar{
      padding-top: 50px;
  }
  
  .navbar,
  .navbar-nav{
      background: none;
      border:none;
  }
  
  .navbar-nav>li>a{
      color: var(--color-I);
      background: #FFF;
      margin-right: 5px;
  }
  
  .navbar-nav>li>a:hover{
      color: #FFF;
      background: var(--color-I); 
  }
  
  .navbar-wrapper {
      position: absolute;
      width: 100%;
      top: 0;
      display: block;
      overflow: visible;
      min-height: 50px;
      z-index: 100;
  }
  
@media (max-width: 992px){
    .navbar{
        padding: 0;
        display: block;
        width: 100%;
        left: 0;
        z-index: 100 !important;
    }
    .navbar-brand{
        width: 50%;
        height: 85px;
        margin-left: 10px;
    }
    
    .navbar-toggler{
        z-index: 50 !important;
        background: #FFF;
        border-color: var(--color-II) !important;
        float: right;
        margin-right: 15px;
    }
    
    .navbar-toggler .fa{
        color: var(--color-II) !important;
    }

    .navbar-nav{
        padding: 0 15px;
    }
    .navbar-nav .nav-link{
        text-align: center;
        margin: 0;
        font-size: 1.2em;
        padding: 20px 0;
    }
}
  
  .inicio{
      position: relative;
      text-align: center;
      padding: 0;
      overflow: hidden;
  }
  .inicio video{
        position: relative;
      width: 100%;
  }
  .inicio .video-text-wrapper{
    display: block;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%);
    width: 80%;
    z-index: 10;
  }
  .inicio .video-text-wrapper h1{
    color: #FFF;
    font-size: 5em;
  }
  .inicio .video-text-wrapper h2{
    font-size: 1.5em;
    color: #FFF;
  }

  .inicio:before{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #000;
    opacity: .5;
    z-index: 1;
  }
  
  .intro{
      position: relative;
      padding: 100px 0;
  }
  
  .intro:after{
      content: '';
      position: absolute;
      display: block;
      top: -60px;
      left: 50%;
      transform: translateX(-50%);
      background: url(../assets/img/sitio/Premier_Isologo_Azul.svg);
      width: 120px;
      height: 120px;
      z-index: 20 !important;
  }
  
  .intro-text{
      position: relative;
      display: inline-block;
      background: rgba(42,57,76,.95);
      text-align: center;
      padding: 50px 75px;
      z-index: 30 !important;
  }
  
  @media (max-width: 992px){
      .intro-text{
          padding: 50px;
      }
      .intro-text h1{
          font-size: 22px;
      }  
      .intro h1{
          font-size: 22px;
      }
      .intro h3{
          font-size: 18px;
      }

      .inicio,
      .inicio video{
        height: 90vh;
      }
      .inicio video{
        object-fit: cover;
        width: 100vw;
        height: 100vh;
        position: fixed;
        top: 0;
        left: 0;
      }
      .inicio .video-text-wrapper{
        width: 95%;
        top: calc(50% - 100px);
      }

      .inicio .video-text-wrapper h1{
        font-size: 3em;
      }
  }
  
  .que-hacemos{
      position: relative;
  }
  
  .bloc-I{
      position: relative;
  display: block;    
      width: 100%;
      padding-right: 100px;
      z-index: 20 !important;
  }
  
  @media (max-width: 992px){
      .bloc-I{
          padding: 25px;
      }    
  }
  
  .que-hacemos:before{
      position: absolute;
      width: 50%;
      height: 60%;
      content: '';
      background: #FFF;
      top: -50px;
      right: 0;
      transform: translateX(-25%);
  }
  
  .bloc-II{
      position: absolute;
      top: 100px;
      left: 90%;
      width: 600px;
      height: 400px;
      -webkit-box-shadow: 0px 0px 31px 0px rgba(0,0,0,0.4);
      -moz-box-shadow: 0px 0px 31px 0px rgba(0,0,0,0.4);
      box-shadow: 0px 0px 31px 0px rgba(0,0,0,0.4);
      z-index: 20 !important;
  }
  
  @media (max-width: 992px){
      .que-hacemos{
          padding-bottom: 50px;
      }
      .bloc-II{
          display: none;
      }
  }
  
  .quote{
      text-align: center;
      color: var(--color-I);
          font-family: 'Cinzel', serif;
  }
  
  .quote p{
      text-align: center;
      color: var(--color-I);
      font-family: 'Cinzel', serif;
      font-size: 32px;
      line-height: 1em;
  }
  
  .quote .author{
     font-size: 20px; 
  }
  
  .guillemets{
      display: block;
      margin: 25px auto;
      background: url(../assets/img/sitio/guillemet.svg) no-repeat center;
      width: 32px;
      height: 25px;
  }
  
  .rotate-180{
      transform: rotate(180deg);
  }
  
  .galeria{
      padding: 30px 15px;
  }
  
  .swiper-pagination-bullet-active{
      background-color: var(--color-I);
  }
  
  @media (max-width: 992px){
    .navbar{
        background-color: #fff;
    }
      .navbar-brand{
          width: 160px;
          height: 70px;
      }
       .navbar-brand:after{
          display: none;
      }
      .quote{
          margin-bottom: 50px;
      }
      .quote p{
          font-size: 22px;
      }
      .quote .author{
          font-size: 14px;
      }
      .guillemets{
          margin: 15px auto;
          width: 20px;
          height: 20px;
      }
  
      .galeria{
          padding: 100px 0 0 0;
      }
  
      .swiper{
          margin-bottom: 20px;
      }

      .card-title{
        font-size: 1.1em;
      }
  }
  
  .mision{
      position: relative;
      background: #eaedee url(../assets/img/sitio/DY6A8495.jpg) no-repeat center;
      z-index: 1;
      background-size: cover;
      background-attachment: fixed;
      padding-bottom: 550px;
      overflow: hidden;
  }
  
  .mision:before{
      content: '';
      border-top: 500px solid #eaedee;
      border-right: 100vw solid transparent;
      width: 0;
      position: absolute;
      z-index: -2;
  }
  
  .mision:after {
    content: '';
    left: 0;
    top: 0;
    border-bottom: 500px solid #eaedee;
    border-left: 100vw solid transparent;
    width: 0;
    position: absolute;
    bottom: 0;
    z-index: -2;
  }
  
  .servicios{
      position: relative;
      min-height: 275px;
  }
  
  .bloc-III{
      display: block;
      position: absolute;
      top: -300px;
      z-index: 10;
  }
  
  .bloc-III ul li{
      font-size: 16px;
  }
  
  .quote-II{
      display: block;
      position: absolute;
      top: -200px;
      z-index: 10;
  }
  
  @media (max-width: 992px){
      .bloc-0{
          padding: 50px 25px;
          width: calc(100%);
      }
      .bloc-III{
          top: 200px;
          padding: 50px 25px;
          width: calc(100% - 30px);
      }
      .quote-II{
          top: -50px;
      }
      .servicios{
          min-height: 1000px;
      }
  }
  
  .quienes-somos{
      position: relative;
      background: url(../assets/img/sitio/bg-quienes.jpg) no-repeat center;
      background-attachment: fixed;
      background-size: cover;
      min-height: 800px;
  }
  
  .bloc-IV{
      position: absolute;
      top: -100px;
  }
  
  @media (max-width: 992px){
      .bloc-IV{
          padding:50px 25px;
          width: calc(100% - 30px);
      }   
  }

  #productos{
    position: relative;
  }
  
  .contacto{
      position: relative;
      padding: 100px 0;
      overflow: hidden;
  }
  
  .contacto:before{
      content: '';
      position: absolute;
      display: block;
      width: 75vh;
      height: 75vh;
      background: url(../assets/img/sitio/bg-contacto.jpg);
      filter: blur(5px);
      opacity: 0.2;
      top: 25px;
  }
  
  .contacto a{
     color: #fff; 
  }

  .contacto .btn-primary{
    background-color: #FFF;
    color: var(--color-I);
  }
  
  .copyright{
      background: #000;
      text-align: center;
      font-size: 12px;
      color: #FFF;
      padding: 25px 0;
  }
  
  .contact-wrapper{
      position: relative;
  }
  
  .contact-title{
      position: absolute;
      left: -60px;
      top: 0;
      font-size: 60px;
  }
  
  .contact-wrapper address{
      padding-top: 125px;
  }

  .btn-wsp{
    position: fixed;
    bottom: 50px;
    right: 50px;
    background-color: none;
    border: none;
    width: 75px;
    height: 75px;
    text-align: center;
    padding: 0;
    z-index: 100;
}
  
  @media (max-width: 992px){
      .contact-title{
          position: absolute;
          left: 0;
          top: 0;
          font-size: 40px;
      }
      .contact-wrapper address{
          padding-top: 75px;
      }

      .btn-wsp{
        position: fixed;
        bottom: 10px;
        right: 10px;
       width: 60px;
        height: 60px;
    }
  }
  
  .axel{
      color: var(--color-II);
  }
  
  .footer-social{
      margin: 50px 0;
      padding: 0;
  }
  .footer-social li{
    display: inline-block;
    margin: 0 auto;
    padding: 0;
  }
  .footer-social li a{
      display: inline-block;
      border-radius: 50%;
      text-align: center;
      width: 50px;
      height: 50px;
      background: #FFF;
      color: var(--color-I);
      padding: 10px;
      font-size: 22px;
      margin: 0 10px 0 0;
  }
  
  .footer-social li a:hover{
      background: var(--color-II);
      color: #FFF;
  }
  
  .icono{
      display: block;
      width: 45px;
      margin: 20px 0;
  }
  
  .modal-header{
      background: var(--color-I);
      color: #FFF;
  }
  
  .modal-title{
      font-family: 'Cinzel', serif;
  }
  
  /* .bloc-II:before{
      position: absolute;
      bottom: -450px;
      left:50%;
      width: 150px;
      height: 170px;
      content: '';
      background: url(../assets/img/sitio/icono.svg) no-repeat center;
  } */

.card-hover{
    position: relative;
    z-index: 1;
    text-align: left;
}

.card-hover:hover::before{
    content: '+';
    background-color: var(--color-I);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    text-align: center;
    color: #FFF;
    font-weight: bold;
    font-size: 5em;
    padding-top: 35%;
  }



.clientes{
    position: relative;
    background-color: var(--color-II);
    overflow: hidden;
}
.clientes:before {
    content: '';
    position: absolute;
    display: block;
    width: 75vh;
    height: 75vh;
    background: url(../assets/img/sitio/bg-contacto.jpg);
    background-size: cover;
    filter: blur(5px);
    opacity: 0.2;
    top: 0;
}
.clientes video{
    -webkit-box-shadow: 0px 0px 31px 0px rgba(0,0,0,0.4);
    -moz-box-shadow: 0px 0px 31px 0px rgba(0, 0, 0, 0.4);
    box-shadow: 0px 0px 31px 0px rgba(0,0,0,0.4);
}
.clientes .fs-3{
    font-size: 60px;
}


.copyright-logo{
    display: inline-block;
    margin: 0 auto;
    width: 120px;
    height: 70px;
}
.copyright-logo.axel{
    width: 50px;
}
.copyright-logo img{
    margin: 0 5px;
}