/* Reset default */
* {
    padding:0;
    margin:0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    color:inherit;
}


/* Custom Style */
html {
    scroll-behavior:smooth;
}

body {
    background-color: rgb(35, 35, 35);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

header {
    background: linear-gradient(to right,
    rgba(255, 0, 0, 0.6), /* Rojo transparente */
    rgba(255, 165, 0, 0.6), /* Naranja transparente */
    rgba(255, 255, 0, 0.6), /* Amarillo transparente */
    rgba(0, 128, 0, 0.6), /* Verde transparente */
    rgba(0, 0, 255, 0.6), /* Azul transparente */
    rgba(75, 0, 130, 0.6), /* Índigo transparente */
    rgba(238, 130, 238, 0.6) /* Violeta transparente */
    );
    position: fixed;
    width: 100%;
    backdrop-filter: blur(5px);
    z-index: 1000;
    top: 0;
}

/*header {*/
/*    background: linear-gradient(to right,*/
/*    rgba(255, 153, 51, 0.8),   !* Naranja intenso con transparencia *!*/
/*    rgba(255, 178, 71, 0.75),  !* Naranja medio con transparencia *!*/
/*    rgba(255, 204, 102, 0.7),  !* Naranja claro con transparencia *!*/
/*    rgba(255, 224, 130, 0.65), !* Naranja amarillento con transparencia *!*/
/*    rgba(255, 232, 153, 0.6),  !* Amarillo anaranjado con transparencia *!*/
/*    rgba(255, 242, 178, 0.55), !* Amarillo claro con transparencia *!*/
/*    rgba(255, 250, 205, 0.5)   !* Amarillo pálido con transparencia *!*/
/*    );*/
/*    position: fixed;*/
/*    width: 100%;*/
/*    backdrop-filter: blur(5px);*/
/*    z-index: 1000;*/
/*    top: 0;*/
/*}*/

.header__content {
    max-width: 1200px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding: 0 10px 5px 10px;
    height: 60px;
    margin: 0 auto;
}

.logo {
    color:rgb(255,255,255,0.8);
    font-weight: 800;
    font-size: 40px;
    text-shadow: 4px 3px 1px  rgb(0, 0, 0);
}

.logo:hover {
    color: rgb(255,255,255,1);
}

.nav__list {
    display:flex;
    column-gap: 1px; 
    font-size: 16px;
    font-weight: 600;
}

.nav__link {
    color: rgba(255,255,255,0.7);
    padding:19px;
}

.nav__link:focus {
    background-color: rgba(14, 14, 15, 0.2);
}

.nav__link:hover {
    background-color: rgba(14, 14, 15, 0.2);
    color: rgb(255,255, 255);
    transition: 0.4s all;
}


.nav__icon {
    display: none;
}

.nav__list__mini {
    display:none;
}

.main {
    background-color: rgb(26, 26, 26);
    width: 100%;
}

.main_section {
    background-image: url('img/main-bg.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    width: 100%;
    z-index: -1;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
}

.banner {
    background-color: rgb(0,0,0,0.7);
    backdrop-filter: blur(5px);
    width:100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align:center;
    padding-top: 10px;
    padding-bottom:30px;
    gap: 10px;
}

.banner__marquee {
    background-color: rgba(23, 23, 23, 0.7);
    backdrop-filter: blur(5px);
    width:100%;
    padding: 20px;
}

.marquee__container {
    display: flex;
    gap:100px;
    max-width:1200px;
    margin: 0 auto;
    overflow:hidden;
    mask: linear-gradient(
        to right,
        transparent,
        white 10%,
        white 90%,
        transparent
    );
}

.marquee__container:hover .marquee__list{
    animation-play-state: paused;
}

.marquee__list {
    display:flex;
    gap: 100px;
    animation: marquee__scroll 20s linear infinite;
}

.marquee__img {
    height: 50px;
    width: 50px;
}

@keyframes marquee__scroll {
    to {
        transform: translatex(calc(-100% - 100px));
    }
}

.title {
    color:rgb(255, 255, 255);
    font-size: 50px;
    font-weight: 700;
    max-width:1200px;
}

.p {
    color: rgb(255, 255, 255);
    font-size: 30px;
    font-weight: 500;
    padding: 0 10px;
    max-width:1200px;
}


.section {
    height:100vh;
    max-width: 1200px;
    margin: 60px auto;
    display:flex;
    justify-content: center;
    align-items: flex-end;
}

.container__business {
    height: calc(100vh - 85px);
    background-color: rgb(0, 0, 0,0);
    color:rgb(255, 255, 255);
    width:100%;
    margin: 10px;
    display:grid;
    overflow:auto;
    grid-template-rows: repeat(2, 1fr);
    grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
    border-top: 5px solid rgb(255, 255, 255);
    border-bottom: 5px solid rgb(255, 255, 255);
    mask: linear-gradient(
        to top,
        transparent,
        white 5%,
        white 95%,
        transparent
    );
}

.container__services {
    height: calc(100vh - 85px);
    width:100%;
    margin: 10px;
    display:grid;
    grid-template-rows: repeat(3, 1fr);
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    padding: 30px;
    gap: 30px;
    overflow:auto;
    border-top: 5px solid rgb(255, 255, 255);
    border-bottom: 5px solid rgb(255, 255, 255);
    mask: linear-gradient(
        to top,
        transparent,
        white 5%,
        white 95%,
        transparent
    );
}

.service {
    box-shadow: 0 0 5px rgb(255,255,255,0.8);
    border-radius: 10px;
    padding:20px;
    color:rgb(255, 255, 255);
    grid-column: span 2;
}

.service p {
    margin-top:20px;
}
.service h2 {
    font-size: 25px;
}

/* hr reset*/

hr {
    border: 0; /* Reset default border */
    height: 1px; /* Set height */
    background-color: #000; /* Use hex, rgb, or rgba */
    margin: 10px 0; /* Adjust spacing */
}

.service__hr1 {
    background-color: #FF0000; /* Rojo */
    height: 3px;
}

.service__hr2 {
    background-color: #008000; /* Verde */
    height: 3px;
}

.service__hr3 {
    background-color: #0000FF; /* Azul */
    height: 3px;
}

.service__hr4 {
    background-color: #FFFF00; /* Amarillo */
    height: 3px;
}

.service__hr5 {
    background-color: #8A2BE2; /* Violeta */
    height: 3px;
}

.service__hr6 {
    background-color: #00FFFF; /* Cian */
    height: 3px;
}

.service__hr7 {
    background-color: #FF69B4; /* Rosa fuerte */
    height: 3px;
}

.service__hr8 {
    background-color: #FFA500; /* Naranja */
    height: 3px;
}

.service__hr9 {
    background-color: #32CD32; /* Verde lima */
    height: 3px;
}

.service__hr10 {
    background-color: #8A2BE2; /* Violeta */
    height: 3px;
}

.container__gallery {
    height: calc(100vh - 85px);
    width:100%;
    margin: 10px;
    display:grid;
    grid-template-rows: repeat(4, 1fr);
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 20px;
    padding: 20px;
    overflow: auto;
    border-top: 5px solid rgb(255, 255, 255);
    border-bottom: 5px solid rgb(255, 255, 255);
    mask: linear-gradient(
        to top,
        transparent,
        white 5%,
        white 95%,
        transparent
    );
}

.gallery__img {
    width:100%;
    height:200px;
    border-radius:5px;
    object-fit: cover;
}

.gallery__img:hover {
    transform: scale(110%);
    transition-duration:0.5s;
    box-shadow: 0 0 8px rgb(255, 255, 255);
    transition-timing-function: ease;
}

.business {
    box-shadow: 0px 0px 5px rgb(163, 160, 160);
    padding: 30px;
    margin: 20px;
    grid-column: span 4;
    grid-row: span 1;
    background-color: rgb(0, 0, 0,0);
    border-radius:10px;
}
.mission {
    box-shadow: 0px 0px 5px rgb(163, 160, 160);
    padding: 30px;
    margin: 20px;
    background-color: rgb(0, 0, 0,0);
    grid-column: span 2;
    border-radius:10px;
}
.vision {
    box-shadow: 0px 0px 5px rgb(163, 160, 160);
    padding: 30px;
    margin: 20px;
    grid-column: span 2;
    border-radius:10px;
    background-color: rgb(0, 0, 0,0);
}


h2 {
    font-size: 30px;
    padding-bottom: 20px;
}

.container__contact {
    height: calc(100vh - 85px);
    width:100%;
    margin: 10px;
    display:grid;
    grid-template-rows: 1fr 1fr  7fr;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
    overflow: auto;
    align-items: end;
    border-top: 5px solid rgb(255, 255, 255);
    border-bottom: 5px solid rgb(255, 255, 255);
    mask: linear-gradient(
        to top,
        transparent,
        white 5%,
        white 95%,
        transparent
    );
    
}

.container__contact  div h1{
    color: white;
}

.container__contact div p {
    color: white;
    padding-bottom: 20px;
}

.iframe {
    width:100%;
    height:100%;
    border-radius:10px;
}

@media(max-width:1170px) {
    #service {
        grid-column: span 1;
    }
    .container__services {
        grid-template-rows: repeat(2, 1fr);
    }
}

@media(max-width:820px) {
    .nav__list {
        display:none;
    }

    .nav__icon {
        display:block;
        padding-top: 10px;
        background-color:rgb(255, 255, 255, 0);
        border: 0;
    }

    .nav__list__mini {
        background-color:rgba(14, 14, 15, 0.5);
        width: 100%;
        display:flex;
        flex-direction: column;
        align-items: center;
        padding: 5px;
        gap: 5px; 
    }

    .nav__link__mini {
        font-size: 20px;
        color: white;
        border-radius: 2px;
        width:100%;
        padding:15px;
        background-color: rgba(0, 0, 0, 0.3);
    } 
    .business {
        grid-column: span 3;
    }
    .mission {
        grid-column: span 3;
    }
    .vision {
        grid-column: span 3;
    }
    
    .hidden {
        display:none;
    }

}