* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'Ubuntu', sans-serif;
  }



/* navbar section */

.navbar{
    position: sticky;
    z-index: 2;
    top: 0;
    width:100%;
    height:90px;
}


/* Mobile devices */
@media only screen and (max-width: 767px) {
  /* Your mobile-specific CSS styles go here */
    .navbar-nav{
        width: 100%;
        display: flex;
        align-items: flex-center;
        justify-content: flex-center;
        background-color:white !important;
    }
    .nav-item{
        margin-bottom: 10px !important;
    }
    .dropdown-item.active, .dropdown-item:active{
        background-color: #1774ba;
        color: white !important;
        border-radius: 30px;
        padding: 5px 20px !important;
        margin: 8px 8px !important;
    }
    .nav-item a{
        font-family: 'Ubuntu', sans-serif;
        font-weight: bold;
        color: #1774ba !important;
        font-size: 16px !important;
        /*margin: 0px 20px;*/
        /*padding: 5px 20px !important;*/
    }
    
    .nav-item a:hover{
        background-color: #1774ba;
        color: white !important;
        border-radius: 30px;
        /*margin: 8px 8px !important;*/
    }
    .active a{
        background-color: #1774ba;
        color: white !important;
        border-radius: 30px;
    }
  
  /* Any other mobile-specific styles can be added here */
}

/* Desktop devices */
@media only screen and (min-width: 768px) {
  /* Your desktop-specific CSS styles go here */
     .navbar-nav{
        width: 100%;
        height: 75px;
        display: flex;
        align-items: flex-end;
        justify-content: flex-end;
        
    }
    .dropdown-item.active, .dropdown-item:active{
        background-color: #1774ba;
        color: white !important;
        border-radius: 30px;
        /*padding: 5px 20px !important;*/
        margin: 8px 8px !important;
    }
    .nav-item a{
        font-family: 'Ubuntu', sans-serif;
        font-weight: bold;
        color: #1774ba !important;
        font-size: 16px !important;
        /*margin: 0px 20px;*/
        /*padding: 5px 20px !important;*/
    }
    
    .nav-item a:hover{
        background-color: #1774ba;
        color: white !important;
        border-radius: 30px;
        /*margin: 8px 8px !important;*/
    }
    .active a{
        background-color: #1774ba;
        color: white !important;
        border-radius: 30px;
    }

    /* Any other desktop-specific styles can be added here */
}
.navbar-brand img{
    width: 100px;
    padding: 1px 0px;
}

.nav-link{
    margin: 0px 35px;
}

/* navbar section end */


/* hero section */

/* #hero{
    height: 95vh;
    margin: 0px;
    padding: 0px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('/Images/home-hero.jpg');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}

.form{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.query-form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 60%;
    height: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7));  
    padding: 20px 0px;
    border-radius: 7%;
    box-shadow: 2px 2px 2px 2px rgb(0 0 0 / 0.2);
}

#hero h2{
    text-align: center !important;
    width: 75%;
    color: #34447c;
}

.query-form input{
    width: 90%;
    border-left: none;
    border-right: none;
    border-top: none;
    background: none;
    color: #1774ba;
    font-weight: bold;
    text-align: center;
}

.query-form input::placeholder{
    color: #34447c;
    font-weight: 500;
}

.query-form button{
    width: 40%;
    border-radius: 50px;
    margin-top: 25px;
    font-weight: bold;
    background-color: #34447c;
    color: white;
    border: none;
}

.query-form button:hover{
    background-color: #1774ba;
    color: white;
}

.query-form input, .query-form button{
    padding: 10px 0px;
}


@media only screen and (max-width: 767px){

    #hero .container{
        padding: 3% 0%;
    }

    h1{
        text-align: center;
        font-size: 25px !important;
        margin-bottom: 25px !important;
    }

    .query-form{
        padding: 35px;
    }

    h2{
        font-size: 25px;
        width: 90%;
    }

    .query-form input{
        margin-top: 5px;
        width: 90%;
    }

    .query-form{
        justify-content: left !important;
    }


} */

.slider {
    overflow: hidden;
    width: 100%;
    height: 100vh;
    position: relative;
  }
  
  .slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    animation: slide 15s infinite;
  }
  
  .slider .slide:nth-child(1) {
    background-image: url('/Images/home-hero.jpg');
    animation-delay: -0s;
  }
  
  .slider .slide:nth-child(2) {
    background-image: url('/Images/home-hero-1.jpg');
    animation-delay: -3s;
  }
    
  .slider .slide:nth-child(3) {
    background-image: url('/Images/home-hero-2.jpg');
    animation-delay: -6s;
  }
    
  .slider .slide:nth-child(4) {
    background-image: url('/Images/home-hero-3.jpg');
    animation-delay: -9s;
  }
  
  .slider .slide:nth-child(5) {
    background-image: url('/Images/home-hero-1.jpg');
    animation-delay: -12s;
  }
  
  @keyframes slide {
    0%, 15%, 100% {
      transform: translateX(0);
      animation-timing-function: ease;
    }
    20% {
      transform: translateX(-100%);
      animation-timing-function: step-end;
    }
    95% {
      transform: translateX(100%);
      animation-timing-function: ease;
    }
  }


  #hero{
    height: 100vh;
    margin: 0px;
    padding: 0px;
    width: 100%;
    /* display: flex;
    justify-content: center;
    align-items: center; */
}

.form{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    margin-top: 25%;
}

.query-form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 350px;
    height: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9));  
    padding: 20px 0px;
    border-radius: 7%;
    box-shadow: 2px 2px 2px 2px rgb(0 0 0 / 0.2);
}

#hero h2{
    text-align: center !important;
    width: 75%;
    color: #34447c;
}

.query-form input{
    width: 90%;
    border-left: none;
    border-right: none;
    border-top: none;
    background: none;
    color: #1774ba;
    font-weight: bold;
    text-align: center;
}

.query-form input::placeholder{
    color: #34447c;
    font-weight: 500;
}

.query-form button{
    width: 40%;
    border-radius: 50px;
    margin-top: 25px;
    font-weight: bold;
    background-color: #34447c;
    color: white;
    border: none;
}

.query-form button:hover{
    background-color: #1774ba;
    color: white;
}

.query-form input, .query-form button{
    padding: 10px 0px;
}


@media only screen and (max-width: 767px){

    #hero .container{
        padding: 3% 0%;
    }

    h1{
        text-align: center;
        font-size: 25px !important;
        margin-bottom: 25px !important;
    }

    .query-form{
        padding: 35px;
    }

    h2{
        font-size: 25px;
        width: 90%;
    }

    .query-form input{
        margin-top: 5px;
        width: 90%;
    }

    .query-form{
        justify-content: left !important;
    }


}



/* hero section end */



/* hero section end */

/* about section */

#about{
    padding: 2% 0% 2%;
    color: #1774ba;
}

#about h2{
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 40px;
    color: #34447c;
}

#about p{
    font-size: 20px;
    font-weight: 500;
    line-height: 25px;
    margin-bottom: 10px;
}

@media only screen and (max-width: 767px){

    #about{
        text-align: center;
        padding: 7% 2% 3% !important;
    }

    #about h2{
        text-align: center !important;
    }

    #about p{
        font-size: 16px;
        font-weight: 500;
    }
}

/* about section end */



/* sevices section */

#services{
    padding: 2% 0% 2%;
    background-color: #F5F5F7;
}

.services-box{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 1% !important; 
}

.services-box .box{
    overflow: hidden;
    text-align: center;
    padding: 15px;
    /* border: 2px solid black; */
    border-radius: 10px;
    width: 100%;
    box-shadow: 0 0 15px rgb(0 0 0 / 0.2);
    /* box-shadow: 2px 2px 2px 2px #000000; */
    background-color: white;
}

.box img{
    width: 100%;
}

.box h3{
    font-size: 25px;
    margin-top: 7px;
    font-weight: bold;
    color: #1774ba;
    margin-bottom: 15px;
    padding: 0px 10%;
}

.box a{
    background: #34447c;
    color: white !important;
    border-radius: 15px;
    font-size: 18px !important;
    padding: 7px 20px;
}

.box a:hover{
    text-decoration: none;
    background: #1774ba;
    font-weight: bold;
}

@media only screen and (max-width: 767px){

    /* .box img{
        height: 300px;
        width: 400px;
        object-fit: cover;
        -o-object-fit: cover;
    } */

    .box h3{
        font-size: 18px;
    }

}
/* sevices section end */


/* clinet section */

#client{
    padding-bottom: 15px;
}

#client h3{
    font-size: 40px;
    text-align: center;
    background-color: #34447c;
    padding: 7px;
    color: white;
    margin-bottom: 30px;
}

.slider-customer {
    width: 100%;
    margin: auto;
    overflow: hidden;
}
.slider-customer ul {
    display: flex;
    padding: 0;
    animation: cambio 10s infinite linear;
}
.slider-customer li {
    padding:0 10px;
    list-style: none;
}
.slider-customer img {
    /* max-width: fit-content !important; */
    width: 150px !important;
    /* height: 100% !important; */
    height: 100px !important;
    border: 1px solid black;
    border-radius: 7px;
    padding: 10px;
    object-fit: contain;
}
@keyframes cambio {
    from {margin-left: 0%}
    to {margin-left: -100%}
}

@media only screen and (max-width: 767px){

    #client h3{
        font-size: 18px;
    }

}


/* clinet section end */

/* contact section */

#contact{
    padding: 50px 0px;
    background: rgb(237, 243, 245);
    width: 100% !important;
}

.social-icons{
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.social-icons i{
    font-size: 27px !important;
    margin: 0px 10px;
    background-color: #34447c;
    color: white;
    height: 50px;
    width: 50px;
    border-radius: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-bottom{
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.logo-bottom img{
    width: 200px;
}

.bottom-menu{
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: left !important;
}

.bottom-menu-box a h6{
    font-size: 20px !important;
    font-weight: bold;
    color: #34447c !important;
}

.bottom-menu-box a:hover{
    text-decoration: none !important;
    color: black !important;
}

@media only screen and ( max-width: 767px){
    .social-icons, .logo-bottom, .bottom-menu{
        margin-top: 50px;
    }

    #contact{
        padding: 20px 0px;
    }

    .social-icons i{
        font-size: 20px !important;
        height: 40px;
        width: 40px;
    }

    .logo-bottom img{
        width: 150px;
    }

    .bottom-menu-box a{
        text-align: center;
    }

    .bottom-menu-box a h6{
        font-size: 16px !important;
    }
}


/* contact section end */

/* adress section */

#bottom-address{
    padding-bottom: 25px;
    background: rgb(237, 243, 245);
    color: #34447c !important;
    width: 100%;
}

.address-column{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.address-box{
    border-left: 3px solid #34447c;
    padding-left: 10px;
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.address-box p{
    padding: 0px !important;
    margin: 0px !important;
    font-weight: 500;
}

@media only screen and ( max-width: 767px){
    .address-box{
        border-left: none;
        text-align: center !important;
    }

    .address-box p{
        font-size: 16px;
    }
}


.dropdown:hover .dropdown-menu {
    display: block;
}

/* adress section end */

/* footer */

#footer{
    background-color: #34447c;
    color: white;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-copyright p{
    margin: 0px;
    padding:5px;
    font-size: 16px;
    font-weight: 500;
}

.footer-copyright p a{
    color: gold !important;
    font-weight: bold;
}

/* footer end */
