* {
    margin: 0;
    padding: 0;
}

body{
    color: #5b5a5a;
    font-size: 16px;
    font-family: 'Karla', sans-serif;
    overflow-x:hidden ;
}



button {
    border: 0;
    outline: 0;
}

button:hover {
    cursor: pointer;
}

button:focus,
input:focus,
textarea:focus {
    border: 0;
    outline: 0;
}

a:hover {
    text-decoration: none;
}


/* a, p{
    font-size: 14px;
} */

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

.no-pad {
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6{
    font-family: 'Montserrat', sans-serif;
}

@font-face {
    font-family: big-noodle-titling;
    src: url(../fonts/big_noodle_titling.ttf);
}


 /* font-family: 'Karla', sans-serif; */
/* font-family: 'Montserrat', sans-serif;  */

.t-btn{
    height: 50px;
    min-width: 190px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #38b5e5;
    border-radius: 30px;
    padding: 0 20px;
    text-transform: uppercase;
    color: #000000;
    font-weight: bold;
    margin-top: 30px;
    transition: .5s;
}

.t-btn:hover{
    background-color: #38b5e5;
    color: #fff;
}

.heading h2{
    font-size: 40px;
    font-weight: 800;
    color: #0e2240;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.heading h5 {
    font-family: 'Karla', sans-serif;
    font-size: 16px;
    font-weight: bold;
    color: #38b5e5;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.text p{
    color: #a7b3c4;
    margin-bottom: 20px;
    font-weight: bold;

}

header a{
    color: #fff;
    transition: .5s;
    text-transform: uppercase;
}

header a:hover{
    color: #d8ad23;
}

header{
    position: absolute;
    left: 0;
    top: 50px;
    width: 100%;
    z-index: 999;
    color: #fff;
}

header .container
{
    max-width: 1770px;   
    margin: auto;
}

header .social-icons{
    display: flex;
    column-gap: 15px;
}

header .info{
    display: flex;
    justify-content: flex-end;
    column-gap: 60px;
}

header .info a i{
    margin-right: 10px;
}


header .nav-list ul{
    display: flex;
    justify-content: center;
    column-gap: 55px;
    margin-top: 40px;
}

header .nav-list ul li{
    list-style: none;
}

header .nav-list ul li a{
    position: relative;
    color: #fff!important;
}

header .nav-list ul li a::after{
    content: '';
    height: 3px;
    width: 0%;
    background-color: #fff;
    position: absolute;
    bottom: -10px;
    left: 0;

    transition: .5s;
}

header .nav-list ul li a:hover::after{
    width: 100%;
}


.home-sec-1{
    padding-top: 160px;
}

.home-sec-1 .text-1{
    max-width: 580px;
}


.home-banner{
    text-align: center;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    /* min-height: 950px; */
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    min-height: 100vh;
    /* overflow: hidden; */
}

.home-banner::after{
    content: "";
    height: 86px;
    width: 6px;
    background-color: #f7bd04;
    position: absolute;
    bottom: -86px;  
    left: 50%; 
    transform: translate(-50%, -50%);
    transition: .5s;
}

.home-banner:hover::after{
    bottom: -70px;  
}

.home-banner .man{
    position: absolute;
    bottom: 0;
    right: 26%;
    z-index: 1;
}

.home-banner .text {
    margin-top: 150px;
}

.home-banner .text h1{
    font-size: 295px;
    font-family: big-noodle-titling;
   display: inline-block;
}

.home-banner .text span{
    display: inline-block;
    margin: 0 14px;
}

.home-banner .text p{
    font-size: 40px;
    letter-spacing: 28px;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    margin: -30px 0 30px;
    z-index: 2;
    position: relative;
}

.home-banner .text a.t-btn{
    min-width: 250px;
    height: 60px;
    border: 3px solid #fff;
    /*column-gap: 20px;*/
    color: #fff;
    z-index: 2;
    position: relative;
}

.home-banner .text a.t-btn img{
    margin-left:10px;
}

.home-banner .text a.t-btn:hover{
    column-gap: 30px;
}

.home-sec-1 .text-2{
    margin-bottom: 40px;
    padding-left: 40px;
}

.home-sec-1 .text-2 h3{
 font-family: 'Karla', sans-serif;
font-size: 26px;
color: #0e2240;
font-weight: bold;
letter-spacing: -1px;
position: relative;
margin-bottom: 15px;
}

.home-sec-1 .text-2 h3::after{
    position: absolute;
    content: '';
    display: block;
    height: 22px;
    width: 11px;
    background-color: #38b5e5;
    border-radius: 20px;
    left: -50px;
    top: 5px;
    transition: .5s;
}

.home-sec-1 .text-2:hover h3::after{
    top: -5px;
}


.home-sec-2{
padding: 70px 0 160px;
}

.home-sec-2 .row{
    padding-left: 15px;
    padding-right: 15px;
}

.home-sec-2 .box{
    position: relative;
    overflow: hidden;
}

.home-sec-2 .box img.bg{
    width: 100%;
    height: 100%;
    transition: .5s;
    
}

.home-sec-2 .box:hover img.bg{
    transform: scale(1.15);
    filter: grayscale(100%);
    opacity: .8;
}

.home-sec-2 .box .text {
    position: absolute;
    bottom: 25px;
    left: 30px;
}

.home-sec-2 .box .text p{
    font-size: 23px;
    letter-spacing: 2px;
    color: #fff;
    text-transform: uppercase;
    margin-top: 20px;
    transition: .5s;
}

.home-sec-2 .box:hover .text p{
    letter-spacing: 4px;
}

.home-sec-4{
    padding: 140px 0;
}



.home-sec-4 .client-logos{
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
}

.home-sec-4 .client-logos img{
    width: 390px;
    height: 200px;
    object-fit: contain;
    flex: 25%;
    border: 1px solid #ebebeb66;
    padding: 30px 0 0;
    transition: .5s;
}

.home-sec-4 .client-logos img:hover{
    padding: 15px 0 0;
}

.home-sec-4 .container {
    background-repeat: no-repeat;
    background-position: top right;
    background-size: auto;
}

.home-sec-5 {
    background-repeat: no-repeat;
    background-size: auto;
    background-size: cover;
    padding: 10% 0;
    color: #fff;
    background-attachment: fixed;

}

.home-sec-5 .heading h2{
    color: #fff;
    margin-bottom: 130px;
}

.home-sec-5 .text {
    max-width: 520px;
    text-align: justify;
}

.home-sec-5 .text h5 {
    font-size: 26px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    margin: 10px 0 20px;
}

.home-sec-5 .img-box {
    margin-left: -50px;
}







.home-news-slider .slick-dots {
   
    display: flex;
    justify-content: flex-end;
    bottom: -50px;
    width: 102%;
    max-width: 102%;

}

.home-news-slider .slick-dots li button:before {
    width: 12px!important;
    height: 12px!important;
    border: 1px solid #fff;
    opacity: 1;
    background-color: transparent;
    transition: .5s;
}

.home-news-slider .slick-dots li.slick-active button:before{
    background-color: #fff;
}

.home-sec-6{
    padding: 7%  0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-attachment: fixed;

}

.home-sec-6 .text{
    max-width: 550px;
}

.home-sec-6 .text p{
    color: #5c6776;
}

.home-sec-6 .boxes{
    display: flex;
    flex-wrap: wrap;
    row-gap: 40px;
    column-gap: 40px;
    justify-content: flex-end;
}


.home-sec-6 .box{
    max-width: 318px;
    min-height: 350px;
    background-color: #38b5e5;
    border-radius: 10px;
    box-shadow: 0 0 10px #17171747;
    padding: 30px;
    color: #fff;
    transition:.5s;
}

.home-sec-6 .box img{
    transition: .5s;
}

.home-sec-6 .box:hover{
    background-color: #0e2240;
}
.home-sec-6 .box:hover img{
    transform: scale(1.10);
}

.home-sec-6 .box.navy-blue{
    background-color: #0e2240;
}

.home-sec-6 .box.navy-blue:hover{
    background-color: #38b5e5;
}

.home-sec-6 .box h3{
    font-size: 72px;
    font-weight: bold;
    margin-top: 30px;
}

.home-sec-6 .box p{
    font-size: 19px;
    text-transform: uppercase;
    letter-spacing: 1px;
}


#earth-col .location{
    position: absolute;
    top: 48%;
 left: 50%;
 transform: translate(-50%, -50%);
     z-index: 999;
     opacity: 0;
     transition: .5s;
}

.home-sec-7{
    background-color: #0a0f16;
    color: #fff;
    padding: 80px 0 0;
    position: relative;
}


.home-sec-7 .country{
    min-height: 700px;
}

.home-sec-7 .box{
    
    display: flex;
    align-items: center;
    column-gap: 20px;
    margin-bottom: 20px;
}

.home-sec-7 .box img{
    transition: .5s;
    width: 74px;
    border-radius: 100%;
    border: 3px solid white;
}

.home-sec-7 .box p{
    font-size: 20px;
    transition: .5s;
}

.home-sec-7 .box:hover p{
    font-size: 28px;
    font-weight: bold;
}

.home-sec-7 .box:hover img{
    width: 128px;
}

.home-sec-7 img.text-img{
    position: absolute;
    right: 0;
    top: 20%;
}

.home-sec-7 .img-box{
    position: relative;
}

.home-sec-7 .img-box .location img{
    position: absolute;
    transition: .5s;
}

#uae-loc{
    left: 59.5%;
    top: 35%;
    opacity: 0;
}



.home-sec-8 {
    background-image: url(../images/home/sec8-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    padding: 8% 0;
    color: #fff !important;
    background-attachment: fixed;
}
.home-sec-8 h2,
.home-sec-8 h5{color: #fff !important;}

.home-sec-8 p{
    color: #fff;
}
.home-sec-8 .text > p{
    font-size: 22px;
    font-weight: bold;
    color: #fff;
    line-height: 1.3;
}

.home-sec-8 .text {
    margin-top: 40px;
}

.home-sec-8 .text .box {
    display: flex;
    /*column-gap: 30px;*/
    margin-top:30px ;
    align-items: flex-start;
}
.home-sec-8 .text .box img{
    margin-right: 20px;
}

.home-sec-8 .text .box span{
    display: block;
    font-size: 14px;
}

.home-sec-8 form{
    margin-top: 40px;
}

.home-sec-8 form input,
.home-sec-8 form textarea{
    width: 100%;
    height: 43px;
    border: 1px solid rgb(123, 211, 248);
    border-radius: 50px;
    background-color: transparent;
    text-indent: 30px;
    margin-bottom: 20px;
    color: #fff;
}

.home-sec-8 form textarea{
    height: auto!important;
    padding-top:10px ;
    border-radius: 20px;
}

.home-sec-8 form button{
    width: 200px;
    height: 50px;
    border: 2px solid rgb(255, 255, 255);
    border-radius: 50px;
    background-color: transparent;
    color: #fff;
    transition: 0.5s;
}
.home-sec-8 form button:hover{
    background-color: #38b5e5;
    border: 2px solid  b #38b5e5;
    color: #fff;
}


.home-sec-8 form ::placeholder{color: #fff;}

.home-sucess-slider{
    position: relative;
}

.home-sucess-slider .slick-arrow{
    position: absolute;
    background-color: transparent;
    color: #fff;
    transition: .5s;
    font-size: 20px;
    bottom: -60px;
    left: 0;
}

.home-sucess-slider .slick-arrow.next-arrow{
    left: 40px;
}

.home-sucess-slider .slick-arrow:hover{
    color: #0e2240;
}



footer {
    background-color: #171717;
    padding: 100px 0 100px;
    font-family: 'Karla', sans-serif;
}

footer img.footer-logo {
    padding-bottom: 50px;
}

footer .footer-box a.mail {
    font-size: 30px;
    color: #38b5e5 !important;
    text-decoration: underline;
    display: block;
}

footer .footer-box p {
    font-size: 16px;
    color: #898989 !important;
    padding: 20px 0;
}

footer .footer-box .social-icons{
    display: flex;
    /*column-gap: 15px;*/
    margin: 20px 0 40px;
    justify-content: center;
}

footer .footer-box a {
    color: #898989;
    transition: .5s;
        margin: 0 7.5px;
}

footer .footer-box .social-icons a:hover {
    color: #38b5e5;
    transform: scale(1.2);
}

footer .footer-box h6 {
    text-transform: uppercase;
    color: #898989 !important;
    font-size: 14px;
}

footer .footer-box h6 a {
    color: #38b5e5 !important;
    font-weight: 800;
}




.container {
    max-width: 1480px;
}

.mini-container{
    max-width: 1300px;
}

@media only screen and (max-width: 1200px){

}




.page-title {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    min-height: 515px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
}

.about-title{
    background-image: url(../images/about-us/title.png)
}




.page-title h1 {
    font-size: 40px;
    text-transform: uppercase;
    letter-spacing: 30px;
    font-weight: 800;
    margin-top: 230px;
}

.about-sec-3 .sec3-box {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin: 100px 0;
    

}

.about-sec-3 .sec3-box.box-2{
    margin-right: -100px;
} 

.about-sec-3 .comp{
    float: right;
    margin-right: 50px;
}

.about-sec-3 .slide{
    float: left;
    margin-left: 60px;
}




.about-sec-3 .about-curve {
    position: absolute;
    bottom: 170px;
    left: 70px;
    max-width: 92%;
}

.about-sec-3 .sec3-box h3 {
    color: #0e2240;
    font-family: 'Karla', sans-serif;
    font-size: 26px;
    font-weight: 700;
    margin-top: 7px;
    margin-left: -2px;
}

.about-sec-3 .sec3-box p {
    color: #686b71;
    font-family: 'Karla', sans-serif;
    font-size: 15px;
    font-weight: 400;
    text-align: left;
}

.about-sec-3 .heading{
    margin-bottom: 80px;   
}

/* .ml-100 {
    padding-left: 100px;
}

.pl-15 {
    padding-left: 15px;
} */

.about-sec-4 {
    position: relative;
   
}

.about-sec-4 .sec4-box {
    min-width: 950px;
    min-height: 878px;
    top: 124px;
    right: 0px;
    position: absolute;
    padding: 6% 3% 6% 7%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.cl-w {
    color: white !important;
}


.about-sec-4 .text {
    color: white;
}

.about-sec-4 .text h6 {
    font-size: 26px;
    font-weight: 600;
    margin-top: 50px;
}

.about-sec-4 .text p {
    font-family: 'Karla', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #7f94b2;
    max-width: 80%;
}

.about-sec-5 {
    background-color: #f4f9fe;
    min-height: 600px;
    margin-top: 0;
    padding-top: 250px;
}

.about-sec-5 .about-logo-slider {
    margin-top: 20px;
}

.button.slick-next.slick-arrow:after {
    display: none !important;
}

.about-sec-3 {
    margin: 100px 0 60px;
}

.about-sec-3 .container{
    max-width: 1110px;
    position: relative;
}

.contact-sec-1{
    padding: 7% 0;
}

.contact-sec-1 .text-1 {
    max-width: 840px;
    margin: auto;
}

.contact-sec-1 .text-1 p{
    font-weight: normal;
}

.contact-sec-2{
    position: relative;
}

.contact-sec-2 iframe{
    filter: gray;
    -webkit-filter: grayscale(99%);
    -webkit-backface-visibility: hidden;
    margin-bottom:-10px;
}

/* .contact-sec-2::after{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #00000047 ;
    content: "";
    display: block;
    top:0;
    left:0;
} */

.media-sec-2{
    margin-bottom: 100px;
}

.media-sec-2 .heading{
    margin-top: 100px;
}

.video-slider{
    max-width:1220px;
    display: block;
    margin: auto;
    overflow: inherit;
}

.video-slider div video{
    width:100%;
    height: 300px;
    border-radius: 25px;
    transition: .5s;
    
   
}

.video-slider .slick-arrow{
    display: none;
}

.video-slider .slick-slide {
    opacity: .5;
    transition: .5s;
    border-radius: 25px;
    padding: 100px 0;

}

.video-slider .slick-slide video{
    transform: scale(1);

}

.video-slider .slick-active.slick-center  {
   
   opacity: 1;
   z-index: 999;
   position: relative;
  
  
}

.video-slider .slick-active.slick-center  video{
    transform: scale(1.5);
}

.media-sec-1{
    margin: 120px 0;
}

.media-sec-1 .box{
    transition: .3s;
    box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.148);
    margin-top: 40px;
}

.media-sec-1 .box:hover{
    background-color: #38b5e5;
}

.media-sec-1 .box .img-box{
    overflow: hidden; 
}

.media-sec-1 .box .img-box img{
    transition: .5s;
    width: 100%;
}

.media-sec-1 .box:hover .img-box img{
   transform: scale(1.05);
}

.media-sec-1 .box .text{
    padding: 40px 30px;
}

.media-sec-1 .box .text p.date{
    font-size: 17px;
    color: #858a95;
    font-weight: 600;
}

.media-sec-1 .box:hover .text p.date{
    color: #fff;
}

.media-sec-1 .box .text p.date::before{
    content:"";
    background-image: url(../images/media/clock.png);
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    margin-right: 14px;
}

.media-sec-1 .box:hover .text p.date::before{
    background-image: url(../images/media/clock-2.png);
}

.media-sec-1 .box:hover .text p.date{
    color: #fff;
}

.media-sec-1 .box .text h3{
    font-size: 26px;
    color: #0e2240;
    font-weight: bold;
    font-family: 'Karla', sans-serif;
    letter-spacing: -1px;
    width: 80%;
}

.media-sec-1 .box:hover .text h3{
    color: #fff;
}

.bus-sec-2{
    position: relative;
    margin-bottom: 260px;
}

.bus-sec-2 .box{
    z-index: 999;
    background-image: url(../images/business/bg.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    max-width: 972px;
    /* height: 100%; */
    display: flex;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    padding: 16%;
    min-height: 900px;

}

.bus-sec-2 .box .heading h2{
    color: #fff;
    font-weight: 600;
}

.bus-sec-2 .box p{
    color: #a4bbdd;
}

.bus-sec-2 .box ul{
    margin-top: 40px;
}

.bus-sec-2 .box ul li{
    list-style: none;
    position: relative;
    padding-left: 34px;
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 8px;
    font-weight: 600;
}

.bus-sec-2 .box ul li::before{
    width: 20px;
    height: 20px;
    background-image: url(../images/business/check.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
}

.bus-sec-2 .container-fluid{
    position: absolute;
    top:0;
    left: 0;
    margin-top: 5%;
    height: 100%;
}

.bus-sec-2 .row{
    height: 100%;
    margin-right: 0;
}

.bus-sec-2 .row > div{
    padding: 0;
    height: 100%;
}

.mobile-menu{
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: #0000008c;
    padding: 0;
    min-height: 80px;
    padding: 10px;
}

.mobile-menu .navbar-toggler{
    float: right;
    color: #fff;
    padding-top: 18px;
    transform: scale(1.3);
}

.mobile-menu ul {
    margin: 0;
    padding: 0;
    margin-top: 80px;
    margin-bottom: 10px;
}

.mobile-menu ul li{
    list-style: none;
}

.mobile-menu .navbar-nav .nav-link{
    padding: 10px 0 0 10px;
}

.mobile-menu .navbar-brand img{
    max-width: 100px;
}

.mobile-menu .navbar-brand{
    position: absolute;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    width: 100px;
    padding: 0;
}

.menu-logo{
    display: none;
}

.sticky-menu{
    position: fixed;
    top:0; left:0;
    width: 100%; 
    background-color: #0000008c;
    transition: .3s;
}

.sticky-menu .menu-logo{
    display: block;
}

.sticky-menu .nav-list{
    display: flex;
    padding: 12px 0;
}

.sticky-menu .logo img{
    max-width: 200px;
}

.sticky-menu .menu-logo img {
    max-width: 130px;
}
.sticky-menu .nav-list ul{
    width: 100%;
    justify-content: flex-end;
    align-items: center;
    margin: 0;
}

/* .sticky-menu .col-md-4{
    transition: .5s;
} */


.sticky-menu .col-md-4{
    display: none;
}

.sticky-menu .container{
    max-width: 1540px;
    padding: 0 50px;
}


/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}
 
::-webkit-scrollbar-track {
    background-color: #ebebeb;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: #38b5e5 !important; 
}

#scroll-top {
    display: inline-block;
    background-color: #38b5e5;
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 4px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color .3s, 
      opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    border-radius: 100%;
  }
  #scroll-top::after {
    content: "\f106 ";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 2em;
    line-height: 50px;
    color: #fff;
  }
  #scroll-top:hover {
    cursor: pointer;
    background-color: #0e2240;
  }
  #scroll-top:active {
    background-color: #0e2240;
  }
  #scroll-top.show {
    opacity: 1;
    visibility: visible;
  }






@media only screen and (max-width: 1800px){

    .home-sec-6 .box{
        max-width: 308px;
        min-height: 308;
    }

    .home-sec-6 .box p {
        font-size: 18px;
    }

    .home-sec-6 .box h3 {
        font-size: 62px;
    }
    .home-sec-6 .text {
        max-width: 600px;
    }
    .home-sec-4 {
        padding: 100px 0;
    }
    .about-sec-4 .img {
        max-width: 70%;
    }

    .about-sec-4 .sec4-box{
        padding: 4% 1% 4% 5%;
        min-height: 700px;
    }

    .bus-sec-2 .box{
        padding: 10%;
        min-height: 700px;
    }

    .bus-sec-2 .img-box img{
        max-width: 60%;
    }

    .bus-sec-2{
        margin-bottom: 220px;
    }

    .bus-sec-2 .box ul li{
        font-size: 18px;
    }
    .bus-sec-2 .box ul {
        margin-top: 30px;
    }

    .home-banner .text h1 {
        font-size: 235px;
    }

    .home-banner .text p {
        font-size: 38px;
        letter-spacing: 24px;
    }
    .home-banner .text a.t-btn{
        margin-top: 20px;
    }

    .home-sec-2{
        padding-bottom: 120px;
    }

    
}

@media only screen and (max-width: 1600px){
    #earth-col .location{
        width: 30px;
    }
    
    .home-banner .text span{
        margin: 0 10px;
    }

    .home-sec-5 .img-box {
        margin-left: 0;
    }

    .home-sec-4 .container{
        background-size: 240px;
    }

    .home-sec-2 {
        padding: 50px 0 70px;
    }
    .bus-sec-2 .box ul li {
        font-size: 16px;
    }

    .bus-sec-2 .box {
        /* padding: 6%; */
        min-height: 630px;
    }

    .about-sec-4 .sec4-box {
        min-width: 830px;
        min-height: 650px;
        top: 84px;
    }

    .about-sec-4 .text h6{
        margin-top: 30px;
    }

    .about-sec-4 .sec4-box {
        min-width: 900px;
    }
    .about-sec-4 .img {
        max-width: 60%;
    }

    .home-sec-1 {
        padding-top: 100px;
    }
    .page-title{
        min-height: 450px;
    }

    .page-title h1 {
        font-size: 35px;
        letter-spacing: 25px;
    }

    header .logo img {
        max-width: 160px;
    }

    header{
        top:30px;
    }

    header .info{
        column-gap: 30px;
    }

    .home-banner .text h1 {
        font-size: 200px;
    }

    .home-banner .text p {
        font-size: 32px;
        letter-spacing: 20px;
    }
    .home-banner .text a.t-btn{
        margin-top: 10px;
    }

    .home-banner .man{
        max-width: 11%;
    }

    .home-sec-4 {
        padding: 80px 0;
    }

    .home-sec-6 .box{
        max-width: 308px;
        min-height: 308;
    }

    .home-sec-7 .box:hover img{
        width: 100px;
    }

    .home-sec-7 .box:hover p {
    font-size: 24px;
    }
}

@media only screen and (max-width: 1400px){

    .home-sec-5 .heading h2 {
    color: #fff;
    margin-bottom: 40px;
}
    .home-sec-6 .box img {
        height: 70px;
        width: 70px;
        object-fit: contain;
    }
    .home-sec-6 .boxes{
        row-gap: 20px;
    column-gap: 20px;
    }
    .home-sec-6 .box {
        max-width: 258px;
        min-height: 258px;
        padding: 20px;
    }

    .home-sec-6 .box p {
        font-size: 16px;
        letter-spacing: 0;
    }
    
    

    .home-sec-6 .box h3 {
        font-size: 52px;
    }
    



    .bus-sec-2 {
        margin-bottom: 180px;
    }

    .bus-sec-2 .img-box img {
        max-width: 65%;
    }

    .bus-sec-2 .box ul li {
        font-size: 14px;
    }

    .bus-sec-2 .box {
        min-height: 570px;
        padding: 7% 10%;
    }
	header .info {
        column-gap: 16px;
        font-size: 14px;
    }

    header .info a i {
        margin-right: 4px;
    }

    .home-sec-7{
        padding: 40px 0 0;
    }

    .about-sec-4 .text h6 {
    margin-top: 20px;
    font-size: 22px;
}

.about-sec-4 .sec4-box{
    min-height: 500px;
    min-width: 800px;
    padding: 3% 1% 2% 5%;
    max-width: 500px;
}



.about-sec-4 .text p{
    max-width: 90%;
}




}
@media only screen and (max-width: 1199px){

    .home-sec-7 .box:hover img{
        width: 80px;
    }

    

    .home-banner .text span{
        margin: 0 8px;
    }

    .home-sec-5 .text img {
        max-width: 80px;
    }

    .home-sec-6 .box {
        max-width: 228px;
        min-height: 260px;
    }

    .home-sec-6 .box h3{
        font-size: 42px;
        margin-top: 20px;
    }

    .home-sec-2 .box .text p {
        font-size: 16px;
    }

    .bus-sec-2 .img-box img {
        max-width: 70%;
    }

    .about-sec-4 .img {
        max-width: 65%;
    }
	.page-title {
        min-height: 380px;
    }

    .page-title h1 {
        font-size: 30px;
        letter-spacing: 20px;
        margin-top: 180px;
    }

    header .info{
        flex-direction: column;
        align-items: flex-end;
    }

    .heading h2 {
        font-size: 36px;
    }
    .heading h5{
        letter-spacing: 1px;
        margin-bottom: 10px;
    }

    footer .footer-box a.mail {
        font-size: 24px;
    }

    footer{
        padding: 80px 0 60px;
    }

    footer img.footer-logo {
        padding-bottom: 30px;
        width: 160px;
    }

    footer .footer-box .social-icons{
        margin: 10px 0 30px;
    }

    .home-sec-7 img.text-img {
        max-width: 80%;
    }

    .media-sec-1 .box .text h3 {
        font-size: 24px;
    }

    .video-slider .slick-active.slick-center video {
        transform: scale(1.2);
    }

    .video-slider .slick-slide{
        padding: 60px 0;
    }

    .home-sec-8 .text > p{
        max-width: 90%;
    }

    .home-banner .text h1 {
        font-size: 170px;
    }

    .home-banner .text p {
        font-size: 28px;
        letter-spacing: 17px;
    }

    .t-btn{
        font-size: 15px;
    }

    .home-banner .text a.t-btn{
        min-width: 240px;
        height: 58px;
    }

    .home-sec-4 {
        padding: 50px 0;
    }

    

    
}

@media only screen and (max-width: 1100px){

    .home-sec-6 .box {
        max-width: 218px;
        min-height: 220px;
    }

    .bus-sec-2 {
        margin-bottom: 240px;
    }

    .home-banner .text h1 {
        font-size: 150px;
    }

}

 

@media only screen and (max-width: 992px){

    .home-sec-4 .container {
        background-size: 180px;
    }

    .home-sec-4 .client-logos img{
        flex: 50%;
        height: 140px;
        max-width: 140px;
        margin: auto;
        object-fit: inherit;
    }
    

    .home-banner .text {
        margin-top: 80px;
    }
}

@media only screen and (max-width: 991px){

    #main-herder{
        display: none;
    }
    
    .mobile-menu{
        display: block;
    }

    header {
        top: 0px;
    }

    .mobile-menu{
        background-color: #000000cf;
    }
    .home-sec-2 .box .text{
        left: 0;
        right: 0;
    }

    .home-sec-2 .box img.bg{
        object-fit: cover;
        height: 250px;
    }

    .home-banner .text span{
        margin: 0 6px;
    }

    .bus-sec-2 .box p{
        text-align: center;
    }

    .earth-container {
        width: 100%;
    }

    .text, .heading{
        text-align: center;
    }

    .home-sec-6 .box{
        text-align: center;
    }

    .home-sec-7 {
        padding: 40px 0;
    }

    .home-sec-5 .text img {
        max-width: 70px;
        margin: auto;
    }

    .home-sec-5 .text{
        text-align: center;
    }

    .home-sec-1 .text-2{
        text-align: left;
    }

    .home-sec-5 .text{
        max-width: 100%;
        text-align: justify;
    }

    .home-sec-6 .boxes {
        padding: 7% 10%;
    }

    .home-sec-6 .boxes{
        justify-content: center;
    }

    .home-sec-6 .text{
        margin-bottom: 40px;
        max-width: 100%;
    }

    .t-btn {
        height: 46px;
        min-width: 170px;
    }

    .home-sec-1 .text-2 h3{
        font-size: 22px;
    }

    .home-sec-1 .text-2 h3::after{
        height: 20px;
    width: 10px;
    }

    .home-sec-1 .text-2{
        margin-bottom: 0;
        margin-top: 40px;
    }

    .home-banner::after{
        height: 66px;
    width: 4px;
    bottom: -66px;
    }

    .home-banner .text h1 {
        font-size: 110px;
    }

    .home-banner .text p {
        font-size: 23px;
        letter-spacing: 15px;
        margin-top: -10px;
    }

    .home-banner{
        min-height:550px;
    }

    .home-banner .text a.t-btn {
        min-width: 210px;
        height: 55px;
        margin-top: 0px;
    }

    .bus-sec-2 .box ul li::before{
        left: 0;
        top: 2px;
        width: 16px;
        height: 16px;
    }

    .bus-sec-2 .box{
        float: none;
        max-width: 100%;
        min-height: auto;
    }

    .bus-sec-2 {
        margin-bottom: 0;
    }

    .bus-sec-2 .container-fluid{
        position: inherit;
        margin-top: 0;
    }

    .bus-sec-2 .img-box img {
        max-width: 100%;
    }

    .home-sec-8 .text > p {
        font-size: 20px;
    }

    .home-sucess-slider .slick-arrow{
        bottom: 70px;
    left: 45%;
    }

    .home-sucess-slider .slick-arrow.next-arrow {
        left: 50%;
    }

    .home-sucess-slider {
        padding-bottom: 80px;
    }

    .home-sec-8 .text .box{
        justify-content: center;
            /*column-gap: 20px;*/
            text-align: left;
    }
    
    .home-sec-8 .text .box img{
    margin-right: 20px;
}

    .home-sec-8{
        text-align: center;
    }

    .home-sec-8 .text {
        margin-top: 0;
        margin-bottom: 40px;
    }
    
    
    .home-sec-8 .text > p{
        max-width: 100%;
    }

    .heading h2 br{
        display: none;
    }

    .about-logo-slider .slick-slide img {
        display: block;
        margin: auto;
    }

    .about-sec-5{
        padding: 50px 0;
        min-height: auto;
    }

    .about-sec-4 .img {
        max-width: 100%;
    }

    .about-sec-4 .sec4-box{
        max-width: 500px;
    position: relative;
    top: 0;
    min-width: 100%;
    }

    .about-sec-4 .text p {
        max-width: 100%;
    }

    .about-sec-3 .sec3-box{
        justify-content: flex-start!important;
    }

    .about-sec-3 .sec3-box p{
        font-size: 14px;
    }

    .about-sec-3 .sec3-box h3{
        font-size: 23px;
    }

    .about-sec-3 .sec3-box img {
        max-width: 42px;
    }

    .home-sec-1 .text-2 h3::after{
        left: -30px;
    }

    .home-sec-1 .text-1 {
        max-width: 100%;
    }

    .home-sec-1 {
        padding-top: 80px;
    }

    .video-slider .slick-active.slick-center video {
        /* transform: scale(1); */
    }

    .video-slider .slick-slide{
        /* padding: 0px 0; */
    }

    .media-sec-2 {
        margin-bottom: 70px;
    }
    .media-sec-2 .heading {
        margin-top: 30px;
    }

    .media-sec-1 .box{
        margin-top: 0;
        margin-bottom: 40px;
    }

    .media-sec-1 {
        margin: 50px 0 0;
    }

    .media-sec-1 .box .text h3{
        width: 100%;
        font-size: 20px;
    }
	header .logo img {
        max-width: 140px;
    }

    header .nav-list ul{
        margin-top: 30px;
        column-gap: 10px;
        justify-content: space-between;
    }

    .page-title h1 {
        font-size: 28px;
        letter-spacing: 6px;
        margin-top: 160px;
    }

    .page-title {
        min-height: 320px;
    }

    

    body{
        font-size: 15px;
    }

    /* header {
        top: 20px;
    } */

    .heading h2 {
        font-size: 30px;
    }

    .heading h5{
        font-size: 14px;
        letter-spacing: 0;
    }

    .contact-sec-2 iframe {
        height: 400px;
    }

    .home-sec-7 img.text-img {
        max-width: 70%;
    }

   

    .about-sec-3 .about-curve{
        left: 30px;
    }

    .home-sec-7 .country {
        min-height: auto;
    }
    
}



@media only screen and (max-width: 767px){

    .home-banner .text span{
        margin: 0 4px;
    }

    .page-title {
        min-height: 280px;
    }

    .home-banner .text {
        margin-top: 70px;
    }

    .home-banner .text h1 {
    font-size: 90px;
}

.home-banner .text p {
    font-size: 20px;
    letter-spacing: 9px;
    margin-top: 0px;
}

    .home-sec-8 .text > p {
        font-size: 18px;
    }

    .home-sec-7 img.text-img {
        bottom: 10%;
        top: auto;
    }

    .about-sec-3 .sec3-box p {
        font-size: 12px;
    }

    .heading h2 {
        font-size: 28px;
        font-weight: 600;
    }

    .home-sec-7 .box img{
        width: 60px;
        border: 2px solid white
    }

    .home-sec-7 .box:hover img{
        width: 70px;
    }

    .home-sec-7 .box p {
        font-size: 18px;
    }

    .home-sec-7 .box:hover p {
        font-size: 20px;
    }
    /*Tablets [601px -> 1200px]*/
}
@media only screen and (max-width: 575px){

    
	body{
        font-size: 14px;
    }

    footer img.footer-logo {
        padding-bottom: 30px;
        width: 130px;
    }

    footer .footer-box a.mail {
        font-size: 18px;
    }

    footer .footer-box p {
        font-size: 14px;
    }

    footer .footer-box .social-icons {
        margin: 0px 0 20px;
    }

    footer {
        padding: 50px 0 40px;
    }

    .contact-sec-2 iframe {
        height: 320px;
    }

    .media-sec-2 {
        margin-bottom: 30px;
    }

    .video-slider div video{
        height: 160px;
    }

    .video-slider .slick-slide {
        padding: 10px 0 30px;
    }

    .video-slider .slick-active.slick-center video {
        transform: scale(1.1);
    }

    .about-sec-3 .about-curve {
        display: none;
    }

    .about-sec-3 .sec3-box{
        justify-content: center!important;
    }

    .about-sec-3 .sec3-box{
        margin: 40px 0;
    }

    .about-sec-3 .col-sm-4{
        text-align: center;
    }

    .about-sec-3 .slide,
    .about-sec-3 .comp {
        float: none;
        margin: 0;
        margin-bottom: 30px;
    }

    .about-sec-3 .sec3-box.box-2 {
        margin-right: 0;
    }

    .about-sec-3 {
        margin: 60px 0 30px;
    }

    .about-sec-3 .sec3-box h3{
        text-align: left;
    }

    .about-sec-4 .sec4-box{
        padding: 10% 5% 5%;
    }

    .home-sec-1 .text-2 h3{
        font-size: 22px;
    }

    .home-sec-8 .text > p {
        font-size: 16px;
    }

    .home-sec-8 .text .box{
        margin-top: 20px;
    }

    .home-sucess-slider .slick-arrow {
        left: 42%;
    }

    .home-sucess-slider {
        padding-bottom: 70px;
    }

    .home-sec-8{
        padding: 15% 0;
    }

    .bus-sec-2 .box ul li {
        font-size: 13px;
    }

    .mobile-menu .navbar-toggler{
        transform: scale(1.1);
        padding-right: 0;
    }

    #scroll-top {
        margin: 0px;
        bottom: 20px;
    right: 20px;
        width: 40px;
    height: 40px;
        display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
      }

      .home-banner .text h1 {
        font-size: 50px;
    }

    .home-banner .text p {
        font-size: 20px;
        letter-spacing: 3px;
        margin-top: 5px;
    }

    .home-banner .text a.t-btn{
        min-width: 190px;
    height: 54px;
    margin-top: -10px;
    column-gap: 20px;
    transform: scale(.8);
    font-size: 16px;
    }

    .home-banner {
        min-height: 400px;
    }

    .home-banner::after {
        height: 46px;
        width: 3px;
        bottom: -46px;
    }

    .home-banner:hover::after{
        bottom: -52px;
    }

    .home-banner .text {
        margin-top: 90px;
    }

    .t-btn {
        min-width: 150px;
        margin-top: 10px;
        font-size: 14px;

    }

    .home-sec-1 {
        padding-top: 60px;
    }

    .home-sec-1 .text-2 h3 {
        font-size: 20px;
    }

    .home-sec-2 {
        padding: 40px 0 40px;
    }

    .home-sec-4 .client-logos img {
        flex: 100%;
        /* height: 150px; */
        padding: 0px 0;
        border-left:0 ;
        border-right:0 ;
        /* border-top: 1px; */
    }

    .home-sec-4 .client-logos{
        margin-top: 0;
    }
    .home-sec-4 .container {
        background-size: 80px;
    }

    .home-sec-4{
        padding: 40px 0 0;
    }

    .home-sec-6 .box {
        max-width: 260px;
        min-height: 260px;
    }

    .home-sec-6 .boxes {
        row-gap: 30px;
        padding: 7% 10%;
    }

    .home-sec-5{
        padding: 10% 0 22%;
    }

   

.about-sec-4 .text h6{
    font-size: 20px;
}

.media-sec-1 .box .text {
    text-align: left;
    padding: 30px;
}

.page-title {
    min-height: 250px;
}

.page-title h1{
    margin-top: 80px;
}

.contact-sec-1{
    padding-top: 40px;
}

.home-banner .text span{
    margin: 0 2px;
}

.home-sec-2 .box img.bg {
    object-fit: cover;
    height: 200px;
}

.home-sec-2 .box .text img {
    max-width: 60px;
}

#earth-col .location {
    width: 20px;
}

.home-sec-7 .box{
    width: 33%;
    flex-direction: column;
    row-gap: 10px;
}

.home-sec-7 .country {
 
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.home-sec-7 .box{
    height: 90px;
}
.home-sec-7 .box img {
    width: 55px;
}

.home-sec-7 .box:hover img {
    width: 60px;
}

.home-sec-7 .box:hover p {
    font-size: 18px;
}

}




