@font-face {
    font-family: 'CustomFont';
    src: url('../assets/font/PangeaAfrikan-RegularWeb.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'CustomFontBold';
src: url('../assets/font/PangeaAfrikan-BoldWeb.woff2') format('woff2');
font-weight: bold;
font-style: normal;
}

:root {
    --darkBlue: #003162;
    --lightBlue: #00c4ff;
    --grey: #555656;
    --whitesmoke: #f3f3f3;
}

h2, h3 ,h4, h5, .label {
    font-family:'CustomFontBold' ;
}

html,
body {
    font-family: 'CustomFont', sans-serif;
    padding: 0px;
    margin: 0px;
    scroll-behavior: smooth;
    overflow-x: hidden;
    cursor: default;
}

.social-media{
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 150000;
    margin: 20px;
}

.social-media img {
    width: 80px;
    height: auto;
    cursor: pointer;
}

/* width */
::-webkit-scrollbar {
    width: 6px;
}

/* Track */
::-webkit-scrollbar-track {
    background: var(--whitesmoke);
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 2px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}


/* Menu Burguer Icon responsive */

.menu-responsive{
    margin: auto auto;
}

.burger-icon {    
    display:none;
    cursor: pointer;
    width: 35px; /* Width of the burger icon */
    height: 35px; /* Height of the burger icon */
    position: fixed;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.7);
    margin: 10px;
    border-radius: 5px;
    align-items: center;
    justify-content: center;
    padding: 2px;
    border: 1px solid var(--darkBlue);
}

.line {
    background-color: var(--darkBlue); /* Color of the lines */
    height: 4px; /* Height of each line */
    width: 25px;
    transition: all 0.3s ease; /* Smooth transition */
    margin: 0;
}

.menu-responsive {
    display: none; /* Hide the menu initially */
}

.menu-responsive.active {
    display: block; /* Show menu when active */
}

/*Language feature*/
.language-lebel{
    color: var(--darkBlue);
    text-align: center;
    margin-top: 13px;
    z-index: -5;
}

.switch {
    position: fixed;
    display: inline-block;
    width: 60px;
    height: 34px;
    top: 0;
    right: 0;
    margin: 10px;
    z-index: 30;
  }
  
  .switch input { 
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../assets/icons/eng.png');
    background-size: 72px 46px;
    background-position: center center;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: rgba(255,255,255,.4);
    border: 1px solid var(--whitesmoke);
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  input:checked + .slider {
    background-image: url('../assets/icons/spa.png');
    background-size: 72px 46px;
    background-position: center center;
  }
  
  input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
  }
  
  input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
  }
  
  /* Rounded sliders */
  .slider.round {
    border-radius: 34px;
  }
  
  .slider.round:before {
    border-radius: 50%;
  }

/*menu start*/
nav {
    background-color: var(--whitesmoke);
    position: fixed;
    z-index: 20;
    height: 130px;
    top: 0px;
    width: 100%;
    box-shadow: 1px 1px 15px 5px rgba(0, 0, 0, 0.2);
    /*overflow: hidden;*/
    text-align: center;
    transform: translateY(-130px);
    transition: transform 0.3s ease-in-out;
    display: flex;
    justify-content: center;
    /* Center horizontally */
    align-items: center;
    /* Center vertically */
}

.menu-static{
    position: absolute;
    z-index: 10;
    left: 0;
    right: 30%;
    top: 15px;
}

.menu-static ul {
    display: flex;
    justify-content: center;
    /* Center horizontally */
    align-items: center;
    /* Center vertically */
    margin: 0;
    padding: 0;
    z-index: 10;
}

.menu-static ul li {
    font-size: 22px;
    color: var(--darkBlue);
    display: inline-flex;
    box-sizing: border-box;
    list-style: none;
    justify-content: center;
    padding: 5px;
    margin: 0 15px;
}

.menu-static ul li:hover{
    color: var(--whitesmoke);
    transition: all .2s ease-in-out;
    }

.menu-responsive {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 100;
    text-align: center;
    background-color: rgba(0, 49, 98, .8);
    padding-top: 50%;
    width: 100vw;
    height: 100vh;
    transition: all .2s ease-in-out;
}

.menu-responsive ul {
    display: inline-block;
    justify-content: center;
    /* Center horizontally */
    align-items: center;
    /* Center vertically */
    margin: 0;
    padding: 0;
    z-index: 10;
}

.menu-responsive ul li{
    list-style: none;
    color: white;
    margin: 18px;
    font-size: 18px;
}

.show {
    transform: translateY(0);
}

.nav .container .row {
    margin: 0;
    padding: 0;
    justify-content: center;
    /* Center horizontally */
    align-items: center;
    /* Center vertically */
}

.decoration-line {
    background: linear-gradient(42deg, rgba(0, 49, 98, 1) 10%, rgba(0, 196, 255, 1) 90%);
    height: 5px;
    width: 100%;
    position: absolute;
    bottom: 0;
}

.menu {
    position: relative;
    width: 1300px;
    height: 100%;
    justify-items: center;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    /* Center horizontally */
    align-items: center;
    /* Center vertically */
}

.menu h2{
    text-align: left;
}

.menu ul {
    display: flex;
    justify-content: center;
    /* Center horizontally */
    align-items: center;
    /* Center vertically */
    margin: 0;
    padding: 0;
}

.menu ul li {
    font-size: 22px;
    color: var(--darkBlue);
    display: inline-flex;
    box-sizing: border-box;
    list-style: none;
    justify-content: center;
    padding: 5px;
    margin: 0 15px;
}

.menu ul li:hover {
    color: var(--lightBlue);
    transition: all .2s ease-in-out;
}

.logo {
    display: flex;
    justify-content: center;
    /* Center horizontally */
    align-items: center;
    /* Center vertically */
    height: 100px;
    width: auto;
    position: relative;
}

.logo-in-main-responsive{
    display: none;
}

a,
a:hover,
a:focus {
    text-decoration: none;
}

.main-section {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
    position: relative;
    /*box-shadow: inset 10px 10px 100px 5px rgb(0, 0, 0, 0.5);*/
    /*background-repeat: no-repeat;*/
    /*display: flex;*/
    /*justify-content: center;*/
    /* Center horizontally */
    /*align-items: center;*/
    /* Center vertically */
}

.main-section .left-main-section{
    background-image: url('../assets/image/businesspeople-working-laptop-office-es.webp');
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    /* Center horizontally */
    align-items: center;
    /* Center vertically */
}

.main-title h2{
    font-size: 25px!important;
    color: var(--darkBlue);
    margin: 10px 0;
}

.main-title h1{
    font-size: 45px!important;
    color: var(--darkBlue);
}

.right-main-section{
    min-height: 100vh;
    display: flex;
    justify-content: center;
    /* Center horizontally */
    align-items: center;
    /* Center vertically */
}

.logo-in-main{
    position: relative;
    height: 300px;
    width: auto;
}

.button-contact-us{
    color: white;
    background-color: var(--darkBlue);
    padding: 8px 10px;
    text-align: center;
    border-radius: 5px;
    border: none;
    margin-top: 10px;
}

.info-section {
    position: relative;
    margin: 0;
    padding: 0 120px;
    width: 100%;
    min-height: 100vh;
    background-color: var(--darkBlue);
    background-size: cover;
    /*box-shadow: inset 10px 10px 100px 5px rgb(0, 0, 0, 0.5);*/
}

.container-carousel{
    margin: 60px auto;
    padding: 0px
}

.subject-title{
    position: absolute;
    top: 110px;
    left: 0;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px;
    z-index: 15;
    border-radius: 0 5px 5px 0;
    box-shadow: 5px 5px 10px 5px rgb(0, 0, 0, 0.2);
    transform: translateX(-700px);
    transition: transform .5s ease-in-out;
}

.subject-title h4 {
    font-size: 30px;
    color: var(--darkBlue);
}

.show-subject{
    transform: translateX(0);
}


/*Coursel style*/
.carousel-style{
    background: linear-gradient(42deg, rgba(0, 49, 98, 1) 10%, rgba(0, 196, 255, 1) 90%);
    width: 100%;
    height: 85vh;
    border-radius: 5px;
    border: 1px solid var(--grey);
    padding: 5px;
}

.carousel-in-style {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    background-color: var(--whitesmoke);
    box-shadow: 10px 10px 100px 5px rgb(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.carousel-in-style img{
    width: 100%;
    margin: 0;
    padding: 0;
    position: absolute;
}

/*Responsive*/
.label-responsive,
.text-responsive{
    display: none;
}

.carousel-in-style .label{
    position: absolute;
    color: var(--darkBlue);
    font-size: 35px;
    z-index: 10;
    bottom: 0;
    left: 0;
    margin: 0 0 200px 80px;    
    font-weight: 500;
    background-color: rgb(255,255,255, .8);
    padding: 10px;
    border-radius: 5px;
    max-width: 800px;
}

.carousel-in-style .text{
    position: absolute;
    color: var(--darkBlue);
    font-size: 25px;
    z-index: 10;
    bottom: 0;
    left: 0;
    margin: 80px;
    font-weight: 500;
    min-width: 600px;
    background-color: rgb(255,255,255, .8);
    padding: 10px;
    border-radius: 5px;
    }

    .nosotros{
        margin: 0;
        padding: 0;
        width: 100%;
        min-height: 100vh;
        display: flex;
        justify-content: center;
        /* Center horizontally */
        align-items: center;
        /* Center vertically */
        background-image: url("../assets/image/landmarks-modern-city.webp"); 
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
    }
    
    .nosotros h3{
        text-align: center;
        margin: 50px;
        color: var(--darkBlue);
    }    

    .nosotros-content{
        text-align: justify;
    }

    .nosotros-card{
        background: linear-gradient(42deg, rgba(0, 49, 98, 1) 10%, rgba(0, 196, 255, 1) 90%);
        border-radius: 5px;
        text-align: center;
        padding: 0px;
        position: relative;
        display: flex;
        box-shadow: 1px 1px 5x 2px rgb(0, 0, 0, 0.2);
        /*cursor: pointer;*/
        
    }
    
    .nosotros-card:hover{
        box-shadow: 1px 1px 20px 2px rgb(0, 0, 0, 0.2);
        transform: translateY(10px);
        transition: transform .2s ease-in-out;
    }
    
    .nosotros-card-content{
        height: auto;
        background-color: #fff;
        border-radius: 5px;
        text-align: center;
        margin: 5px;
        padding: 5px;
    }
    
    .nosotros-card p{
        color: var(--darkBlue);
        margin: 20px 5px 0px 5px;
        font-size: 18px;
        text-align: justify;
        margin: 30px;
    }

.complementary-services-section{
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    /* Center horizontally */
    align-items: center;
    /* Center vertically */    
}

.complementary-services-section h3{
    text-align: center;
    margin: 50px;
    color: var(--darkBlue);
}

.complementary-services-card{
    height: 500px;
    background: linear-gradient(42deg, rgba(0, 49, 98, 1) 10%, rgba(0, 196, 255, 1) 90%);
    border-radius: 5px;
    text-align: center;
    padding: 0px;
    position: relative;
    display: flex;
    box-shadow: 1px 1px 5x 2px rgb(0, 0, 0, 0.2);
    /*cursor: pointer;*/
    
}

.complementary-services-card:hover{
    box-shadow: 1px 1px 20px 2px rgb(0, 0, 0, 0.2);
    transform: translateY(10px);
    transition: transform .2s ease-in-out;
}

.complementary-services-card-content{
    height: auto;
    background-color: #fff;
    border-radius: 5px;
    text-align: center;
    margin: 5px;
    padding: 5px;
}

.complementary-services-card p{
    color: var(--darkBlue);
    margin: 20px 5px 0px 5px;
    font-size: 18px;
}

.complementary-services-card h4{
    color: var(--darkBlue);
    margin: 20px 5px 0px 5px;
    font-size: 25px!important;
}

.contactUs-section {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 80vh;
    position: relative;
    background-color: var(--whitesmoke);     
}


.contactUs-section h3{
    text-align: center;
    padding: 50px;
    color: var(--darkBlue);
}

.Copyright{
    text-align: center;
    font-weight: 500;
    background-color: var(--lightBlue);
    height: 70px;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contactUs-section ul{
    padding: 0;
}

.contactUs-section ul li{
    list-style: none;
}

.contactUs-section h5,
.contactUs-section p,
.contactUs-section ul li a{
    color: var(--darkBlue);
}

.contact-icons{
    width: 50px;
    height: auto;
    display: block;
    margin: 20px auto 20px auto;
}

.social-media-follow-us img {
    width: 50px;
    height: auto;
    display: inline-flex;
}


iframe{
    border: 2px solid var(--darkBlue);
    width:100%;
    min-height:250px;
    border-radius: 7px;
}

.logo-in-footer{
    position: relative;
    height: 250px;
    width: auto;

}

/*.main-section .container::before {
    content: '';
    position: absolute;
    bottom: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: skewX(-20deg) skewY(0deg);
    width: 10000px;
    height: 100vw;
    border-left: 500px solid transparent;
    border-right: 500px solid transparent;
    border-bottom: 1000px solid white;
    margin-left: 800px;
}
*/

@media screen and (min-width: 801px) and (max-width: 1250px) {

    .carousel-in-style .label {
        margin: 0px 2.5% 240px 2.5%;
        width: 95%;
    }

    .carousel-in-style .text{
        margin: 0px 2.5% 1% 2.5%;
        width: 95%;
    }

    .complementary-services-card {
        height: 550px;
    }

}


@media screen and (max-width: 800px) {

    .social-media img {
        width: 50px;
        height: auto;
        cursor: pointer;
    }

    .burger-icon {
        display: inline-grid;
    }

    .main-section .left-main-section{
        background-image: url('../assets/image/businesspeople-working-laptop-office-es-responsive.webp');
    }

    .main-title h1,
    .main-title h2{
        color: var(--darkBlue);
    }

    .nav,
    .menu-static{
        display: none;
    }

    .main-section .left-main-section {
        /*background-position: -500px 0;*/
        background-position: 65% center;
        /*filter: brightness(1) contrast(1.5);*/
    }

     .right-main-section{
        width: 100%;
    }

    .logo-in-main-responsive{
        display:inherit;
        position: absolute;
        height: 40%;
        width: auto;
        top: 20px;
    }

    .main-title{
        margin-top: 65%;
    }

    .main-title h2{
        font-size: 20px!important;
        font-weight: lighter;
    }
    
    .right-main-section{
        display: none;
    }

    .info-section{
        padding: 0;
    }

    .nosotros{
        background-position: -400px center;
        background-size:inherit;
    }

    .nosotros-card{
        margin: 20px;
    }

    .nosotros-card-content{
        padding: 10px;
    }

    .nosotros-card p {
        margin: 0;
    }


    .carousel-style{
        height: 680px;
    }

    .container-carousel{
        margin: 0px auto;
        padding: 0px
    }

    .carousel-item {
        height: 130vh;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        margin-bottom: 300px;
    }

    .subject-title {
        position: absolute;
        top: 75px;
        left: 0;
        font-size: 18px;
        background-color: rgba(255, 255, 255, 0.8);
        padding: 10px;
        z-index: 15;
        border-radius: 0 5px 5px 0;
        box-shadow: 5px 5px 10px 5px rgb(0, 0, 0, 0.2);
        max-width: 400px;
    }

    .info-section {
        padding: 60px 10px 10px 10px;
        min-height: 135vh;
    }

    .carousel-in-style .label,
    .carousel-in-style .text {
        display: none;
        text-align: justify;
    }

    .label-responsive{
        display:inherit;
        font-size: 30px;
    }
    .text-responsive{
        display:inherit;
        font-size: 22px;
    }
       
    .carousel-style{
        height: 400px;
        margin-top: 150px;        
    }


    .label-responsive,
    .text-responsive {
        color: white;
    }


    .logo-in-footer{
        display: block;
        margin: 20px auto 20px auto;
    }

    iframe {
        display: flex;
        margin: auto auto;
    }

}