/* FUENTE */

@font-face {
    font-family: 'acumin'; 
    src: url('../font/Acumin\ Pro\ Wide\ Light.otf') format('opentype');
    font-weight: 100; 
    font-style: normal;
}

@font-face {
    font-family: 'acumin'; 
    src: url('../font/Acumin-Variable-Concept.ttf') format('opentype');
    font-weight: normal; 
    font-style: normal;
}

@font-face {
    font-family: 'acumin'; 
    src: url('../font/Acumin-BdPro.otf') format('opentype');
    font-weight: bold; 
    font-style: normal;
}

@font-face {
    font-family: 'acumin';
    src: url('../font/Acumin-Variable-Concept.ttf') format('opentype');
    font-weight: 900; 
    font-style: normal;
}

body{
    font-family: 'acumin';
}

/** BANNER **/

.logo-img{
    max-width: 215px;
}

.banner-container {
    position: relative;
    width: 100%;
    height: 100vh; /* Puedes ajustar la altura */
    overflow: hidden;
    display: flex;
    min-height: 620px;
}

.banner {
    display: flex;
    transition: transform 1s ease-in-out;
}

.slide-only{
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    z-index: 1;

    position: absolute;
    top: 0;
    left: 0;
}

.slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;

    position: absolute;
    top: 0;
    left: 0;
}
  
.slide.active {
    opacity: 1;
    z-index: 2;
}


.indicators {
    flex-direction: column;
     /*0 60*/
    padding: 0 40px;
    justify-content: center;
    z-index: 3;
    position: relative;
    display: flex;
    gap: 10px;
  }

.banner-section{
    color: white;
    z-index: 3;
    width: 100%;
    position: relative;
    padding-top: 40px;
}

.banner-container .banner img{
    filter: brightness(50%)
}

.navbar-nav{
    width: 100%;
    display: flex;
    text-align: center;
    font-size: 16px;
}

.custom-nav{
    height: 85px;
    background-color: rgba(140, 139, 144,0.85);
    z-index: 2;
}

.custom-toggler.navbar-toggler {
    border-color: #ffffff;
}

.custom-toggler .navbar-toggler-icon {
            background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath stroke='rgba(253, 247, 233,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24' /%3E%3C/svg%3E");
}

.navbar-nav li{
    flex: 1;
}

.navbar-nav li a{
    color: white !important;
    display: inline-block;
    padding: 6px 2px 2px !important;
    transition: 0.15s ease-in-out;
}

.navbar-nav li a:hover,.navbar-nav li a.active{
    box-shadow: 0px 3px 0px #f1ef9a;
    font-weight: 700;
}

.dot {
    width: 15px;
    height: 15px;
}



/** FOOTER **/

.footer1{
    background: #517733;
    color: white;
  }
  
.footer1 .cont-img{
width: 500px;
}

.footer1 .contacto h4{
display: inline-block;
border-bottom: 4px solid #f1ef9a;
height: 38px;
margin-bottom: 24px;
width: 150px;
}

.footer2 .col-auto{
    margin-bottom: 1rem !important;
  }

.footer2 .line{
    height: 64px;
    border-left: 2px solid #93ab81;
  }


@media only screen and (min-width: 1200px ) {
    .logo-img{
        min-width: 200px;
    }

    .indicators{
        padding: 0 80px !important;
    }

    .navbar-nav{
        font-size: 18px;
    }
}

@media only screen and (max-width: 768px ) {
    .custom-nav{
        height: auto !important;
    }
}

@media only screen and (max-width: 576px ) {

    .indicators {
        padding: 0 20px;
    }
  }
