@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@600;700&family=Poppins:wght@500&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    transition: 0.4s ease;
    font-family: "Poppins", sans-serif;
}

:root {
    --main-color: rgb(22, 224, 224);
}

html {
    font-size: 12px;
}

.container {
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0.5rem;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
}

.menu-icons {
    display: none;
    align-items: center;
    justify-content: center;
    color: #eee;
    font-size: 2rem;
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    cursor: pointer;
    z-index: 1500;
    /* display: none; */
}

nav {
    width: 100%;
    border-radius: 1px solid rgba(255, 255, 255, 0.1);
    -webkit-border-radius: 1px solid rgba(255, 255, 255, 0.1);
    -moz-border-radius: 1px solid rgba(255, 255, 255, 0.1);
    -ms-border-radius: 1px solid rgba(255, 255, 255, 0.1);
    -o-border-radius: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    height: 60px;
    background: rgba(0, 0, 0, 0.7);
    justify-content:center;
    gap: 2rem;
    padding: 0 2rem;
}

.logo {
    position: fixed;
    left: 3rem; 
    display: flex;
    font-size: 3rem;
    color: #eee;
    font-family: 'Poppins', sans-serif;
    text-shadow: -1px -1px 0 #1900ff, 1px -1px 0 #1900ff, -1px 1px 0 #1900ff, 1px 1px 0 #1900ff;
    align-items: center; /* Centra verticalmente el contenido dentro del logo */ 
    justify-content: center; /* Centra horizontalmente el contenido dentro del logo */ 
    width: 100px; /* Ajusta el ancho según necesites */ 
    height: 45px; /* Ajusta la altura según necesites */ 
    z-index: 1000; 
    background: var(--main-color); /* Cambia --secondary-color por el color de fondo que prefieras */ 
    border-radius: 10px
}

.nav-list {
    list-style-type: none;
    display: flex;
    align-items: center;
}

.nav-list li {
    line-height: 8rem;
    position: relative
}

.sub-menu li {
    line-height: 4rem;
}

.nav-list a {
    display: block;
    color: #eee;
    padding: 0 1.5rem;
    font-size: 1.4rem;
    text-transform: uppercase;
    transition: color 650ms;
    -webkit-transition: color 650ms;
    -moz-transition: color 650ms;
    -ms-transition: color 650ms;
    -o-transition: color 650ms;
    position: relative;
    width: 100%;
    align-items: center;
    
}

.nav-list a:hover {
    color: var(--main-color);
}

.btn {
    padding: 1.3rem;
    display: inline-block;
    border: 2px solid var(--main-color);
    border-radius: 0.5rem;
    -webkit-border-radius: 0.5rem;
    -moz-border-radius: 0.5rem;
    -ms-border-radius: 0.5rem;
    -o-border-radius: 0.5rem;
    transition: background-color 650ms;
    -webkit-transition: background-color 650ms;
    -moz-transition: background-color 650ms;
    -ms-transition: background-color 650ms;
    -o-transition: background-color 650ms;
}

.btn:hover {
    color: var(--main-color);
}

.sub-menu {
    list-style-type: none;
    min-width: 20rem;
    display: block;
    position: absolute;
    border-top: 3px solid var(--main-color);
    background: rgba(0,0,0, 0.8);
    z-index: 100;
    top: 16rem;
    transition: all 250ms ease;
    -webkit-transition: all 250ms ease;
    -moz-transition: all 250ms ease;
    -ms-transition: all 250ms ease;
    -o-transition: all 250ms ease;
    opacity: 0;
    visibility: hidden;
    white-space: nowrap;
    align-items: center;
}

.fas { 
    position: absolute; 
    right: 2%; 
    top: 50%; 
    transform: translateY(-50%); }

.sub-menu::before {
    content: '';
    position: absolute;
    top: -2.5rem;
    left: 3rem;
    border: 1.2rem solid transparent;
    border-bottom: 1.2rem solid var(--main-color);
}

.sub-menu .sub-menu::before {
    top: .9rem;
    left: -2.5rem;
    border: 1.2rem solid transparent;
    border-right-color: var(--main-color);
}

.sub-menu .sub-menu {
    border-top: none;
    border-left: 3px solid var(--main-color);
    top: 0;
    left: 160%;
}


.nav-list li:hover>.sub-menu {
    top: 8rem;
    opacity: 1;
    visibility: visible;
}

.sub-menu li:hover>.sub-menu {
    top: 0;
    left: 100%;
}

li.move-right {
    margin: auto 0 auto auto;
    line-height: initial;
}

@media screen  and (max-width: 1000px) {
    .nav-list {
        position: fixed;
        top: 70px;
        left: 0.5rem;
        height: 100vh;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.8);
        z-index: 1000;
        align-items: initial;
        display: none;
        overflow-y: scroll;
        width: 380px;
    }
    .nav-list::-webkit-scrollbar { 
        width: 10px; 
    }

    .nav-list > li {
        line-height: 6rem;
    }

    .sub-menu {
        position: initial;
        border: 3px solid transparent;
        margin-left: 1rem;
        max-height: 0;
        background: rgba(0, 0, 0, 0.8);
        overflow: hidden;
        margin-right: 0.4rem;
        padding-right: 1rem;
    }

    .sub-menu .sub-menu {
        border: none;
        overflow: hidden;
        margin-right: 0.4rem;
    }

    .sub-menu::before {
        display: none;
    }

    .nav-list li:hover > .sub-menu {
        opacity: 1;
        visibility: visible;
        max-height: initial;
    }

    li.move-right {
        margin: 0 auto 0 0;
        line-height: initial;
    }

    .menu-icons {
        display: block;
    }

    .fa-times {
        display: none;
    }

    nav.active .fa-times {
        display: block;
    }

    nav.active .fa-bars {
        display: none;
    }
    
    nav.active .nav-list {
        display: flex;
    }
}
/*=== hero section start ===*/
.hero {
    width: 100%;
    min-height: 100vh;
    background: url("../images/2.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero .swiper .slide {
    display: flex;
    border-radius: 25px;
    gap: 2.5rem;
    align-items: center;
    justify-content: center;
    text-align: justify;
    padding: 3.5rem 12.5%;
}

.hero .swiper .slide .hero-col {
    flex: 1 1 20rem;
    text-align: justify;
}

.hero .swiper .slide .hero-col img{
    width: 100%;
    height: 27rem;
    animation: animate 3s linear infinite;
    opacity: 0.65;
    border-radius: 10px;
}

@keyframes animate
{
    0%
    {
        transform: translateY(0px);
    }

    40%
    {
        transform: translateY(-50px);
    }

    80%
    {
        transform: translateY(20px);
    }
}

.hero .swiper .slide .hero-col h1{
    color: #fff;
    font-size: 3.6rem;
    text-transform: uppercase;
    padding-bottom: 1rem;
}

.hero .swiper .slide .hero-col p{
    color: #fff;
    font-size: 14px;
    padding-bottom: 3rem;
}

.hero .swiper .slide .hero-col .btn{
    background: #08abeb;
    padding: 0.8rem 3.5rem;
    font-size: 1rem;
    text-transform: capitalize;
    color: #fff;
    border-radius: 10px;
}

.hero .swiper .slide .hero-col .btn:hover{
    background: #0f54df;
}

.hero .swiper .swiper-pagination-bullet{
    width: 20px;
    height: 20px;
    background: #fff;
}

#menuBtn {
    color: #fff;
    font-size: 2.6rem;
    display: none;
}
@media(max-width:991px){
    .header .navbar {
        display: none;
        position: absolute;
        left: 0;
        top: 3.8rem;
        width: 100%;
        background: #031450;
        text-align: center;
    }

    .header .navbar.active{
        display: block;
    }

    #menuBtn {
        display: block;
    }

    .header .navbar a,
    .header .navbar span i{
        display: block;
        margin-top: 1rem;
    }
}

@media(max-width:768px){
    .hero{
        min-height: 120px;
    }

    .hero .swiper .slide {
        flex-direction: column;
        margin-top: 3.8rem;
    }

    .hero .swiper .slide .hero-col img {
        height: auto;
        margin-bottom: 12rem;
    }
}

/*=== services section start ===*/
section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3.5rem 12.5%;
    background-color: #f7f3f3;
}

section h2 {
    font-size: 2.2rem;
    text-transform: capitalize;
    padding-bottom: 1rem;
    padding-top: 2.5rem;
}

section h2 span {
    color: #08abeb;
}

section p.text {
    color: #302828;
    padding-bottom: 2rem;
}

.services {
    min-height: 100vh;
}

.services .service-row{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    padding: 2.5rem 0;
}

.service-row .col-1 {
    background: #fff;
    box-shadow: 0 0 5px rgba(0,0,0,0.4);
    padding: 1.5rem 1rem;
}

.service-row .col-1 img {
    width: 100px;
    height: 100px;
}

.service-row .col-1 h4 {
    font-size: 1.6rem;
    text-transform: uppercase;
    padding-bottom: 0.5rem;
    color: #302828;
}

.service-row .col-1 p {
    color: #031450;
    padding-bottom: 0.5rem;
}

.service-row .col-1 a {
    text-transform: capitalize;
    color: #0f54df;
    font-size: 1rem;
}

.services button.all {
    background: #08abeb;
    padding: 1rem 3.5rem;
    font-size: 1.2rem;
    text-transform: capitalize;
    border-radius: 5px;
    color: #031450;
    cursor: pointer;
}

.services button.all:hover {
    color: #fff;
    background: #0f54df;
}

@media(max-width:1150px) {
    .services .service-row {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:768px) {
    .services .service-row {
        grid-template-columns: 1fr;
    }
}

/*=== about us section start ===*/

.about {
    width: 100%;
    min-height: 100vh;
    background: #06389d;
}

.about h2,
.about p.text {
    color: #fff;
}



.about .about-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;    
}

.about-row .col-2 {
    flex: 1 1 20rem;
    text-align: justify;
}

.about-row .col-2 img {
    width: 100%;
    animation: animate 3s linear infinite;
}

.about-row .col-2 h4 {
    text-transform: capitalize;
    font-size: 1.9rem;
    color: #fff;
    padding-bottom: 1rem;
}

.about-row .col-2 h3 {
    text-transform: capitalize;
    font-size: 1.2rem;
    color: #fff;
    padding-bottom: 1rem;
}

.fila2 h3 {
    text-align: justify;
    text-transform: capitalize;
    font-size: 1.2rem;
    color: #fff;
    padding-bottom: 1rem;
}

.about-row .col-2 p {
    color: #dadada;
    padding-bottom: 2rem;
}

.about-row .col-2 a {
    padding: 1rem 3.5rem;
    color: #031450;
    background: #08abeb;
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: capitalize;
    border-radius: 5px;
}

.about-row .col-2 a:hover {
    background: #06389d;
    color: #fff;
    border: 1px solid #fff;
}

/*=== choose section start ===*/

@media(max-width:650px) {
    .choose .choose-row {
        grid-template-columns: 1fr;
    }
}

/*=== team section start ===*/
.team{
    width: 100%;
    background: #072768;
    padding-top: 1.6rem;
    padding-bottom: 2rem;
    text-align:  center;
}

.team h2 {
    color: #fff;
    font-size: 2.2rem;
    text-transform: capitalize;
    padding-bottom: 1rem;
}

.team h2 span {
    color: #08abeb;
}

.team .team-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin: 3rem;
}

.team-row .team-col {
    background: #031450;
    padding: 1.5rem 1rem;
    border-radius: 10px;
}
.team-row .team-col img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 5px solid #fff;
    transition: 0.4s ease;
}

.team-row .team-col:hover img {
    transform: scale(1.05);
}

.team-row .team-col h5 {
    color: #08abeb;
    font-size: 1.3rem;
    text-transform: capitalize;
}

.team-row .team-col span {
    color: #fff;
    text-transform: capitalize;
}

.team-row .team-col .social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.team-row .team-col .social i {
    font-size: 1.6rem;
    color: #fff;
    cursor: pointer;
}

.team-row .team-col .social i:hover {
    color: #08abeb;
}

@media(max-width:1090px) {
    .team .team-row {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:650px) {
    .team .team-row {
        grid-template-columns: 1fr;
    }
}

/*=== customer section start ===*/

.customer .custom-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding-top: 3.5rem;
    padding-bottom: 2rem;
}

.custom-row .custom-col {
    flex: 1 1 25rem;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
    padding: 1.5rem 1rem;
    margin-bottom: 2rem;
    position: relative;
    text-align: justify;    
}

.custom-row .custom-col img{
    position: absolute;
    top: -3rem;
    left: 2rem;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 5px solid #06389d;
}

.custom-row .custom-col .col-1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 3rem;
    padding-bottom: 1rem;
}

.custom-row .custom-col .col-1 h6,
.custom-row .custom-col .col-1 i {
    font-size: 1.2rem;
    color: #253350;
}

.custom-row .arrow-btn span {
    border: 1px solid #072768;
    padding: 0.5rem 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: #031450;
}

/*=== footer section start ===*/
.footer {
    width: 100%;
    background: #072768;
}

.footer .footer-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 2rem;
}

.footer-row .footer-col {
    text-align: justify;    
}

.footer-row .footer-col h5 {
    color: #fff;
    font-size: 1.3rem;
    padding-bottom: 1rem;
}

.footer-row .footer-col span {
    display: block;
    color: #f7f3f3;
}

.footer-row .footer-col span i {
    padding-right: 0.5rem;
}

.footer-row .footer-col span:hover,
.footer-row .footer-col span i:hover {
    color: #08abeb;
}

.footer-row .footer-col .social {
    padding-top: 1rem;
    display: flex;
    gap: 1rem;
    font-size: 1.6rem;
}

.footer-row .footer-col p {
    color: #fff;
}

.footer-row .footer-col a {
    display: block;
    color: #fff;
    margin-bottom: 0.5rem;
    text-transform: capitalize;
}

.footer-row .footer-col a:hover {
    color: #08abeb;
}

.footer-row .footer-col input {
    width: 100%;
    height: 40px;
    font-size: 1.2rem;
    padding: 0.5rem;
}

.footer-row .footer-col button {
    margin-top: 1.5rem;
    width: 100%;
    background: #08abeb;
    height: 40px;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
}

.footer-bottom {
    padding: 1.5rem 0;
    text-align: center;
    background-color: #f7f3f3;
    color: #031450;
    width: 100%;
    position: relative;
}

.top-button a i{
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    position: absolute;
    font-size: 1.6rem;
    color: #fff;
    background: #0f54df;
    right: 2rem;
    bottom: 1rem;
}

@media(max-width:991px) {
    .footer .footer-row {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:550px) {
    .footer .footer-row {
        grid-template-columns: 1fr;
    }

    .top-button a i {
        bottom: 0.5rem;
        right: 0.5rem;
    }
}

/*=== preLoader ===*/
 .preLoader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #1b1941 url(../images/preloader.gif) no-repeat;
    background-size: 50%;
    background-position: center;
    top: 0;
    left: 0;
    z-index: 1000;
    animation: animated 2s linear infinite;
 }

 .preLoader.loader {
    opacity: 0;
    display: none;
 }

 @keyframes animated
 {
    0%{
        opacity: 1;
        display: block;        
    }
    50%{
        opacity: 1;
        display: block;        
    }
    80%{
        opacity: 0;
        display: none;        
    }
    100%{
        opacity: 0;
        display: none;        
    }
 }