@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');



:root {

--primary:#ff4747;

--secondary:#5553CD;

--grey:#474747;

--white:#fff;

--black:#000;

--light-grey:#e9e9e9;

--blue:#2825AB;

--light-pink:#FFCCCE;

--sky-blue:#5553CD;

}



body{padding:0px; margin:0px; font-family:"Outfit", sans-serif; color:#000; 

font-size:14px; background:#f5f5f5;}

h1,h2,h3,h4,h5,h6{display:block;}

ul {list-style:none;}

a{text-decoration:none;}



.top-bar{

background:#161376;

border-bottom:solid 1px var(--white);

text-align: center;

width: 100%;

position:absolute;

top:0px;

z-index: 9999;}

.nav{

background:#161376;

display: flex;

width:100%;

position:absolute;

top:41px;

height:60px;

z-index:9999;

padding:0px 0px 3px;}

.nav .logo{width:70%; margin-top: 12px;}

.nav .logo img{width:100%; display:block;}

.sticky{

position: fixed;

top: 0;

left: 0;

width: 100%;

z-index:100;

background:var(--black);

}



.NavMenu {

  flex: 10;

  list-style: none;

  position: relative;

  display: flex;

  justify-content:center;

}



.NavMenu li {

  display: inline-block;

}



.NavMenu li input {

  display: none;

}



.NavMenu li a {

  display: block;

  padding: 20px 25px;

  font-size:1.2vw;

  text-decoration: none;

  color:var(--white);

  position: relative;

}



.NavMenu li a:after{

position: absolute;

top:44px;

left: 0;

right: 0;

margin: 0 auto;

content: "";

background: linear-gradient(275deg, rgba(255,255,255,1) 0%, rgba(255,71,79,1) 100%);

width: 0%;

border-radius:50px;

height:3px;

transition: all 0.5s;}

.NavMenu li a:hover::after{width:30%; top:50px;}

.NavMenu li a.active::after{width:30%; top:50px;}





.NavMenu li a label {

  cursor: pointer;

  appearance: none;

  display: block;

  font-size:1.3vw;

}



.NavMenu li a label.lbl-bdr{border-bottom:solid 1px #595959; height:40px; 

position:relative;}



.NavMenu li a label dd{display:inline-block; width:10px; height:10px;

position:relative; top:11px; left:5px;}

.NavMenu li a label dd img{width:100%; display:block;}



.NavMenu li a label span{display:inline-block; width:8px; height:8px;

position:absolute; top:8px; right:15px;}

.NavMenu li a label span img{width:100%; display:block;}



.NavMenu li ul {

  position: absolute;

  display: flex;

  flex-direction: column;

  background-color:var(--black);

  min-width: 200px;

  top: 80%;

  box-shadow: 0 3px 5px rgb(0 0 0/20%);

  transition: all 0.5s;

  -webkit-transition: all 0.5s;

  -moz-transition: all 0.5s;

  -ms-transition: all 0.5s;

  -o-transition: all 0.5s;

  transform: translateY(10px);

  -webkit-transform: translateY(10px);

  -moz-transform: translateY(10px);

  -ms-transform: translateY(10px);

  -o-transform: translateY(10px);

  visibility: hidden;

  opacity: 0;

}



.NavMenu li ul li {

  position: relative;

  margin:0;

}



.NavMenu li ul li a {

  color:var(--white);

  font-size: 1vw;

  font-weight:400;

  padding: 6px 10px;

  display: block;

  transition: all 0.5s;

  -webkit-transition: all 0.5s;

  -moz-transition: all 0.5s;

  -ms-transition: all 0.5s;

  -o-transition: all 0.5s;

}

.NavMenu li ul li a:hover{color:#D7D7D7; font-weight:300;}

.NavMenu li ul li a:after{display:none;}



.NavMenu li ul li ul {

  position: absolute;

  left: 100%;

  top: 6px;

  padding-bottom:20px;

}



@media(min-width:992px) {

  .NavMenu li ul li a:hover {

  }



  .NavMenu li:hover>ul,

  .NavMenu li ul li:hover>ul {

    visibility: visible;

    opacity: 1;

    transform: translateY(0);

    -webkit-transform: translateY(0);

    -moz-transform: translateY(0);

    -ms-transform: translateY(0);

    -o-transform: translateY(0);

  }

}



@media(max-width:991.98px) {

  header {

    padding: 6px 5%;

  }



  .logo {

    flex: 6;

  }



  .bartoggle {

    display: flex;

    justify-content: center;

    font-size: 30px;

    align-items: center;

    background-color: #fff;

    padding: 0 10px;

    cursor: pointer;

  }



  .NavMenu {

    width: 500px;

    flex: 12;

    position: fixed;

    flex-direction: column;

    background-color: #2874f0;

    left: 0;

    top: 40px;

    height: 100vh;

    z-index: -1;

    padding: 15px 0 50px 0;

    justify-content: start;

    overflow-y: scroll;

    transition: all 0.5s;

    -webkit-transition: all 0.5s;

    -moz-transition: all 0.5s;

    -ms-transition: all 0.5s;

    -o-transition: all 0.5s;

    transform: translateX(-100%);

    -webkit-transform: translateX(-100%);

    -moz-transform: translateX(-100%);

    -ms-transform: translateX(-100%);

    -o-transform: translateX(-100%);

  }



  .NavMenu li ul,

  .NavMenu li ul li ul {

    position: initial;

    left: 0;

    visibility: visible;

    opacity: 1;

    top: 0;

    display: none;

  }



  .NavMenu li a {

    padding: 8px 15px;

    border-bottom: 1px solid #fff;

  }



  .NavMenu li ul li ul {

    background: #2874f0;

    position: inherit;

    margin-top: -10px;

  }



  .NavMenu li ul li ul li a {

    font-size: 14px;

    color: #fff;

    font-weight: 400;

    text-transform: initial;

    padding: 7px 15px 7px 30px;

  }



  .NavMenu li a label::after {

    right: 10px;

  }



  .NavMenu li input:checked+ul,

  .NavMenu li ul li input:checked+ul {

    display: flex;

    flex-direction: column;

    margin-bottom: 15px;

  }



  input:checked+.NavMenu {

    transform: translateX(0);

    -webkit-transform: translateX(0);

    -moz-transform: translateX(0);

    -ms-transform: translateX(0);

    -o-transform: translateX(0);

  }



}



.tp-bar-bg{ width:100%; height:40px; display:block;}

.tp-bar-bg ul{padding:0; margin:0; border-right:solid 1px #626262; height:40px;

padding-top:10px; text-align:left;}

.tp-bar-bg ul li{display:inline-block; width:fit-content; height:16px;

padding-right:15px; margin-right:10px; border-right:solid 1px var(--white);

padding-left:26px; position:relative; font-size:15px; color:var(--white); 

 line-height: 15px;}

.tp-bar-bg ul li a{font-size:15px; color:var(--white);}

.tp-bar-bg ul li a:hover{color:var(--primary);}

.tp-bar-bg ul li img{width:20px; display:block; position:absolute;

left:0; top:-1px;}

.tp-bar-bg ul li:last-child{padding-right:0px; margin-right:0px;

border-right:none;}

.top-bar-sMedia{padding-top: 10px;}

.top-bar-sMedia a{display:inline-block; width:fit-content; margin:0 5px;}

.top-bar-sMedia a i{font-size:16px; color:var(--white);}



a.bk-now{background:var(--primary); width:fit-content;  display:block; border-radius:50px;

font-size:18px; color:var(--white); font-weight:600; padding:8px 30px; margin-top:8px;}



/*.banner-contArea{position:absolute; width:100%; height:35%; left:0; right:0;

bottom:0; margin:0 auto; display: block; padding:30px 30% 0 5%;

background:url(../images/home-banner-overlay.webp) no-repeat 0 0;

background-size:100% 100%!important;}*/



.banner-contArea{position:absolute; width:100%; height:35%; left:0; right:0;

bottom:0; margin:0 auto; display: block; padding:30px 30% 0 5%;

background:linear-gradient(182deg,rgba(0, 0, 0, 0.49) 0%, rgba(60, 58, 146, 1) 50%, 

rgba(29, 26, 139, 1) 100%);}

.banner-contArea h1{font-size:45px; color:var(--white); font-weight:800;}

.banner-contArea h3{font-size:25px; color:var(--white); font-weight:600;}

.banner-contArea h6{font-size:17px; color:var(--light-grey); line-height:30px;}

.videoembed {width:100%; height:95vh;}

.home-video{width:100%; margin-top:95px;}



.text1 {

position: relative;

/*animation: text 4s 1;*/

animation-name: text;

animation-duration: 4s;

animation-iteration-count: infinite;

}



@keyframes text {

  0% {

    color: white;

    margin-bottom: 0px;

  }

  30% {

    letter-spacing: 0px;

    margin-bottom: 0px;

  }

  85% {

    letter-spacing: 8px;

    margin-bottom: 0px;

  }

  100% {

    margin-bottom: 0px;

  }

}







.trns-soluImg-01{width:60%; position: relative;}

.trns-soluImg-01 img{width:100%; height:420px; display:block; border-radius:40px;}

.trns-soluImg-02{width:50%; position:absolute; top:15%; right:15px; z-index:20;}

.trns-soluImg-02 img{width:100%; height:420px; display:block; border-radius:40px;

border:solid 7px var(--white);}

.years{background:var(--blue); width:65%; height:100px; border-radius:10px;

position:absolute; bottom:-44px; right:55px; padding:0 10px; display:flex; 

align-items:center; z-index:10;}

.years h3{font-size:40px; color:var(--white); font-weight:800; line-height:30px;}

.years h4{font-size:16px; color:var(--white); text-transform:uppercase; font-weight:600;}

.trns-solu-contArea{}

.trns-solu-contArea h5{font-size:20px; color:var(--primary); text-transform:uppercase;

font-weight:600;}

.trns-solu-contArea h5 dd{display:inline-block; width:9px; height:9px; border-radius:100%;

background:var(--primary); position: relative; top:6px;}

.trns-solu-contArea h2{font-size:45px; color:var(--black); font-weight:700; 

line-height:55px; padding-right: 13%;}

.trns-solu-contArea p{font-size:16px; color:var(--grey); line-height:30px;}

.trns-solu-contArea a{background:transparent; border:solid 2px var(--primary);

border-radius:50px; width:fit-content!important; font-size:17px; color:var(--black);

font-weight:700; padding:8px 25px;}

.logistic-bg{background: linear-gradient(188deg, rgba(3,1,63,1) 0%, 

rgba(42,39,178,1) 100%); width:80%; border-radius:7px; padding:20px 20px 10px;}

.logistic-bg ul{padding:0; margin:0;}

.logistic-bg ul li{ display:block; padding-left:60px; position:relative; margin-bottom:20px;}

.logistic-bg ul li span{width:30px; height:30px; border-radius:5px; background:var(--white);

display:flex; align-items:center; justify-content:center; position:absolute; left:10px;

top:5px;}

.logistic-bg ul li span i{font-size:15px; color:var(--blue);}

.logistic-bg ul li strong{font-size:18px; color:var(--white); font-weight:600; 

padding-top:5px;}





.our-solu{ padding: 0 10%; }

.our-solu h5{font-size:20px; color:var(--primary); text-transform:uppercase;

font-weight:600;}

.our-solu h5 dd{display:inline-block; width:9px; height:9px; border-radius:100%;

background:var(--primary); position:relative; top:6px;}

.our-solu h2{font-size:40px; color:var(--black); font-weight:700;}

.our-solu p{font-size:16px; color:var(--grey); line-height:30px; text-align:center;}



.tabset > input[type="radio"] {position: absolute;left: -200vw;}

.tabset .tab-panel {display: none;}

.tabset > input:first-child:checked ~ .tab-panels > .tab-panel:first-child,

.tabset > input:nth-child(3):checked ~ .tab-panels > .tab-panel:nth-child(2),

.tabset > input:nth-child(5):checked ~ .tab-panels > .tab-panel:nth-child(3),

.tabset > input:nth-child(7):checked ~ .tab-panels > .tab-panel:nth-child(4),

.tabset > input:nth-child(9):checked ~ .tab-panels > .tab-panel:nth-child(5),

.tabset > input:nth-child(11):checked ~ .tab-panels > .tab-panel:nth-child(6) {

display: block;}

.tabset > label {position: relative;display: inline-block;padding:7px 25px;

border:1px solid var(--grey); cursor: pointer; background:var(--white);

font-size:16px; color:var(--grey); border-radius:4px; margin:0 5px;}

input:focus-visible + label {outline: 2px solid rgba(0,102,204,1); border-radius: 3px;}



.tabset > label:hover,

.tabset > input:focus + label,

.tabset > input:checked + label {border:solid 1px var(--primary); padding:7px 25px; 

background:var(--white); color:var(--black);}



.tabset > label:hover::after,

.tabset > input:focus + label::after,

.tabset > input:checked + label::after {border:solid 1px var(--primary); padding:7px 25px; 

background:var(--white); color:var(--black);}

.tabset > input:checked + label {border:solid 1px var(--primary); padding:7px 25px; 

background:var(--white); color:var(--black);}

.tab-panel {padding: 30px 0;}

.tabset {max-width:100%; text-align:center;}



.our-solution-bg{background:url(../images/our-solution-bg.webp) no-repeat 100% 0;

background-size:75% 100%; width:100%; height:100%; display:block;}

.our-solu-box{background:var(--white); width:100%;  border-radius:15px;

display:block; padding:40px 40px 0; height:360px;}

.our-solu-box img{width:50px!important; display:block;}

.our-solu-box img:nth-child(2){display:none; }

.our-solu-box h4{font-size:22px; color:var(--black); font-weight:700; text-align:left;}

.our-solu-box h6{font-size:16px; color:var(--grey); text-align:left; line-height:30px;}

.our-solu-box p{font-size:16px; color:#000; text-align: left;}

.our-solu-box a{width:fit-content; background:var(--light-grey); border-radius:50px;

padding:6px 15px; color:var(--black); font-weight:600; display:block; position:absolute;

bottom:30px; left:35px;}

.our-solu-box:hover{background:var(--secondary);}

.our-solu-box:hover img:nth-child(1){display:none;}

.our-solu-box:hover img:nth-child(2){display:block;}

.our-solu-box:hover h4{color:var(--white);}

.our-solu-box:hover h6{color:var(--white);}
.our-solu-box:hover p{color:#fff;}



.ur-solu .owl-theme .owl-nav{display:block; width:100px; height:48px; 

background:url(../images/solution-nav-bg.webp) no-repeat; background-size:100% 100%;

position: absolute; left:0; right:0; bottom:-80px; margin:0 auto; padding:10px;}

.ur-solu .owl-carousel .owl-item{height:auto;}

.ur-solu .owl-carousel .owl-nav.disabled {display:block;}

.ur-solu .owl-carousel .owl-nav .owl-prev{display:block; width:12px; height:19px; 

background:url(../images/solu-prev.png) no-repeat 0 0; position:relative; top:-1px;

background-size:100% 100%; display:block; text-indent:-9999px;}

.ur-solu .owl-carousel .owl-nav .owl-prev:hover{background:url(../images/solu-prev.png) 

no-repeat 0 0; background-size:100% 100%;}

.ur-solu .owl-carousel .owl-nav .owl-next{display:block; width:12px; height:19px; 

background:url(../images/solu-next.png) no-repeat 0 0; position:relative; top:-25px;

background-size:100% 100%; display:block; text-indent:-9999px; left:73%;}

.ur-solu .owl-carousel .owl-nav .owl-next:hover{background:url(../images/solu-next.png) 

no-repeat 0 0; background-size:100% 100%;}

.ur-solu .owl-theme .owl-dots{display:none;}





.get-touch-bg{background:url(../images/get-touch-bg.webp) no-repeat 0 0; width:100%;

 background-size:100% 100%!important; display: block; height:450px;}

.get-touch-bg-overlay{background:rgba(0, 0, 0, 0.5); width:100%; height:100%; 

display:block; position:relative; top:0; z-index:10;}

.get-touch-bg-overlay h3{font-size:45px; color:var(--white); font-weight:800;

text-transform:uppercase;}

.get-touch-bg-overlay h3 span{display:inline-block; color:var(--primary);}

.get-touch-bg-overlay h4{font-size:22px; color:var(--white); padding-right:30%;}

.get-touch-form-bg{background:url(../images/get-touch-form-bg.webp) no-repeat 0 0;

background-size:100% 100%; width:100%; display:block;}

.form-field{background:transparent!important; border:solid 1px var(--white);

border-radius:5px; width:100%; height:35px; padding:0 10px; font-size:14px;

color:var(--white);}

.form-field:focus{box-shadow:none;}

.form-field::placeholder{font-size:14px; color:var(--white);}

.txtArea-field{background:transparent!important; border:solid 1px var(--white);

border-radius:5px; width:100%; height:70px; padding:10px; font-size:14px;

color:var(--white); overflow:auto;}

.txtArea-field:focus{box-shadow:none;}

.txtArea-field::placeholder{font-size:14px; color:var(--white);}

.enqury-nw-Btn{background:var(--primary); width:100%; height:40px; text-align:center;

font-size:17px; color:var(--white); font-weight:600; line-height:20px;}





.get-touch-bg img {  

  animation: bounce 6s, flying 5s 5s linear , flyingOut 5s 10s;

  width: 256px;

  margin: 0 auto;

  display: block;

}



@keyframes bounce {

  0% {

    width: 0px;

    transform: rotate(0deg);

  }

  100% {

    transform: rotate(0deg);

  }

}

@keyframes flying {

  0%, 100% {

    -webkit-transform: translate(0, 0);

            transform: translate(0, 0);

  }

  50% {

    -webkit-transform: translate(5px, 0);

            transform: translate(5px, 0);

  }

  80% {

    -webkit-transform: translate(-5px, 0);

            transform: translate(-5px, 0);

  }

}



@keyframes flyingOut {

  0% {

    width: 256px;

    transform: rotate(0deg);

  }

  100% {

    width: 1000px;

    transform: rotate(10deg);

    opacity: 0;

  }

}















.logistic-capa--bg{background:var(--primary);}

.logistic-capa-bg-overlay{background:url(../images/logistic-bg-overlay.webp) no-repeat 0 0;

background-size:100% 100%; width:100%; height:100%; display:block; position:relative;

z-index:10; top:0;}

.logistic-capa-bg-overlay h6{font-size:18px; color:var(--white); text-transform:uppercase;

text-transform:uppercase;}

.logistic-capa-bg-overlay h6 dd{display:inline-block; width:9px; height:9px; border-radius:100%;

background:var(--white); position:relative; top:6px;}

.logistic-capa-bg-overlay h2{font-size:40px; color:var(--white); font-weight:800;}

.logistic-capa-bg-overlay h5{font-size:18px; color:var(--white); line-height:30px;

font-weight:300;}



.counter {width:100%; padding:30px 0; text-align:center;

border-bottom:solid 1px #FFCCCE; border-left:solid 1px #FFCCCE;

border-right:solid 1px #FFCCCE;}

.counter h4{-webkit-text-stroke:1px #fff;color:var(--primary);

text-shadow:0px  0px 0 #fff, 0px 0px 0 #fff,  0px 0px 0 #fff, 0px  0px 0 #fff,

0px  0px 0 #fff; font-size:64px; font-weight:300; display:inline-block;}

.counter h5{-webkit-text-stroke:1px #fff;color:var(--primary);

text-shadow:0px  0px 0 #fff, 0px 0px 0 #fff,  0px 0px 0 #fff, 0px  0px 0 #fff,

0px  0px 0 #fff; font-size:64px; font-weight:300; display:inline-block;}

.counter h3{font-size:20px; color:var(--white);}

.explr-al{width:200px; height:200px; border: solid 1px var(--light-pink);

display:block; position:relative; border-radius:100%; padding-top:35%;

 -webkit-animation: spin 5s linear infinite; animation: spin 5s linear infinite;}

.explr-al img{width:17px; display:block; position:absolute; left:0; right:0;

top:36%; margin:0 auto;}

.explr-al h5{font-size:20px; color:var(--light-pink);}

@-webkit-keyframes spin {

  0% { -webkit-transform: rotate(0deg); }

  100% { -webkit-transform: rotate(360deg); }

}



@keyframes spin {

  0% { transform: rotate(0deg); }

  100% { transform: rotate(360deg); }

}



#div {text-align:center; width:100%; height:350px; padding-top:20px;}







@keyframes fake {

    from {

        opacity: 1;

    }

    to {

        opactity: 1

    }

}

body {        

    animation: fake 1s infinite;

}



.pricing-tabs .tabs {

  display: flex;

  flex-flow: column;

  justify-content: space-around;

  flex: 30%;

  position:relative; 

  background:url(../images/tab-line.png) no-repeat 7px 100%;

  background-size:3px 420px;

}



.pricing-tabs .radio-tabs .tab{text-align:left!important; align-items:start!important;

height:auto!important;}



.pricing-tabs .radio-tabs {

  display: flex;

  flex-flow: row;

  height: auto;

}



.pricing-tabs .radio-tabs .state {

    position: absolute;

    left: -10000px;

}

.pricing-tabs #radio1:focus ~ .tabs #tab-1,

.pricing-tabs #radio2:focus ~ .tabs #tab-2,

.pricing-tabs #radio3:focus ~ .tabs #tab-3,

.pricing-tabs #radio4:focus ~ .tabs #tab-4, 

.pricing-tabs #radio5:focus ~ .tabs #tab-5,

.pricing-tabs #radio6:focus ~ .tabs #tab-6,

.pricing-tabs #radio7:focus ~ .tabs #tab-7,

.pricing-tabs #radio8:focus ~ .tabs #tab-8,

.pricing-tabs #radio9:focus ~ .tabs #tab-9,

.pricing-tabs #radio10:focus ~ .tabs #tab-10,

.pricing-tabs #radio11:focus ~ .tabs #tab-11,

.pricing-tabs #radio12:focus ~ .tabs #tab-12,

.pricing-tabs #radio12:focus ~ .tabs #tab-13,

.pricing-tabs #radio12:focus ~ .tabs #tab-14,

.pricing-tabs #radio12:focus ~ .tabs #tab-15

{box-shadow: none;}



.pricing-tabs .tabs {

  display: block;

  width:30%;

  height: auto;

  float:left;

}



.pricing-tabs .tabs h2{font-size:35px; color:var(--black); font-weight:800;

text-transform:uppercase;}

.pricing-tabs .tabs h2 span{display:inline-block; color:var(--primary);}

.pricing-tabs .tabs h4{font-size:20px; color:var(--black); line-height:30px;

font-weight:300;}



.pricing-tabs .radio-tabs .tab {

flex: none;

display: flex;

flex-flow: column;

text-align:start!important;

padding:6px 10px;

color:var(--black);

cursor: pointer;



}



.pricing-tabs #radio1:checked ~ .tabs #tab-1,

.pricing-tabs #radio2:checked ~ .tabs #tab-2,

.pricing-tabs #radio3:checked ~ .tabs #tab-3,

.pricing-tabs #radio4:checked ~ .tabs #tab-4,

.pricing-tabs #radio5:checked ~ .tabs #tab-5,

.pricing-tabs #radio6:checked ~ .tabs #tab-6,

.pricing-tabs #radio7:checked ~ .tabs #tab-7,

.pricing-tabs #radio8:checked ~ .tabs #tab-8,

.pricing-tabs #radio9:checked ~ .tabs #tab-9,

.pricing-tabs #radio10:checked ~ .tabs #tab-10,

.pricing-tabs #radio11:checked ~ .tabs #tab-11,

.pricing-tabs #radio12:checked ~ .tabs #tab-12,

.pricing-tabs #radio13:checked ~ .tabs #tab-13,

.pricing-tabs #radio14:checked ~ .tabs #tab-14,

.pricing-tabs #radio15:checked ~ .tabs #tab-15

{background-size:16px 16px!important; width:100%; display:block;  

 background:url(../images/tab-hover-ball.png) no-repeat 0 9px; font-weight:800;}





.pricing-tabs .tab-label {

font-size: 18px; 

color:var(--black); 

font-weight:400;

padding-left:25px;

line-height:22px;

}



.pricing-tabs .radio-tabs .panels {

width:70%;

display:block;

margin-left: 30px;

float:left;

}

.pricing-tabs #radio1:checked ~ .panels #panel-1,

.pricing-tabs #radio2:checked ~ .panels #panel-2,

.pricing-tabs #radio3:checked ~ .panels #panel-3,

.pricing-tabs #radio4:checked ~ .panels #panel-4,

.pricing-tabs #radio5:checked ~ .panels #panel-5,

.pricing-tabs #radio6:checked ~ .panels #panel-6,

.pricing-tabs #radio7:checked ~ .panels #panel-7,

.pricing-tabs #radio8:checked ~ .panels #panel-8,

.pricing-tabs #radio9:checked ~ .panels #panel-9,

.pricing-tabs #radio10:checked ~ .panels #panel-10,

.pricing-tabs #radio11:checked ~ .panels #panel-11,

.pricing-tabs #radio12:checked ~ .panels #panel-12,

.pricing-tabs #radio13:checked ~ .panels #panel-13,

.pricing-tabs #radio14:checked ~ .panels #panel-14,

.pricing-tabs #radio15:checked ~ .panels #panel-15

{display: block;}



.pricing-tabs .radio-tabs .panel {display: none;}

.pricing-tabs .radio-tabs .panel img{width:100%; height:460px; display:block;}

.pricing-tabs .radio-tabs .panel .panel-overlay{width:40%; height:100%; display:flex;

background:url(../images/tab-overlay.png) no-repeat 0 0; position:absolute; top:0;

left:0; background-size:100% 100%!important; align-items:center; padding:0 25px;}

.pricing-tabs .radio-tabs .panel .panel-overlay h5{font-size:16px; color:var(--white);

line-height:27px; font-weight:300;}

.pricing-tabs .radio-tabs .panel .panel-overlay a{border:solid 1px var(--primary);

border-radius:50px; padding:10px 25px; font-size:16px; color:var(--white);

font-weight:800;}

.pricing-tabs .left {

  text-align: left;

}



.pricing-tabs .slide-item {

  font-size: 1.4rem;

}









@keyframes depth-animation {

  from {

    transform: translate3d(0, 0, 100px);

  }

  to {

    transform: translate3d(0, 0, -200px);

  }

}



@keyframes horizontal-animation {

  from {

    transform: translate3d(70px, 0, 0);

  }

  to {

    transform: translate3d(-70px, 0, 0);

  }

}



@keyframes vertical-animation {

  from {

    transform: translate3d(0, 20px, 0);

  }

  to {

    transform: translate3d(0, -20px, 0);

  }

}





.working-process-bg{background:url(../images/world-map-bg.webp) no-repeat 0 0;

background-size:100% 100%!important; width:100%; display:block;}

.working-process-bg h5{font-size:20px; color:var(--primary); text-transform:uppercase;

font-weight:600;}

.working-process-bg h5 dd{display:inline-block; width:9px; height:9px; border-radius:100%;

background:var(--primary); position:relative; top:6px;}

.working-process-bg h2{font-size:40px; color:var(--black); font-weight:700;}



.working-process{}

.working-process h4{font-size:20px; color:var(--black); font-weight:600;}

.working-process p{font-size:17px; color:var(--black); line-height:30px; padding:0 5%;}

.work-procs-box{background:url(../images/circle-arrow.webp) no-repeat 0 0;

background-size:100% 100%!important; width:100%; height:350px; display:block;

position:relative;}

.work-procs-box img{width:80%; height:80%; display:block; border-radius:100%;

position:absolute; left:0; top:28px; right:0; margin:0 auto;}

.procesing-number{background:var(--primary); border:solid 5px var(--white);

width:70px; height:70px; border-radius:100%; position:absolute; z-index:10;

left:50px; bottom:10px; display:flex; align-items:center; justify-content:center;

font-size:25px; color:var(--white); font-weight:800;}





.testmnl-bg{background:url(../images/testimonial-bg.webp) no-repeat 0 0; width:100%;

background-size:100% 100%!important; display:block; position:relative;}

.testmnl-bg-overlay{background:url(../images/testimonial-bg-overlay.webp) no-repeat 0 0;

background-size:100% 100%!important; width:100%; height:70%; display:block; 

position:absolute; top:0;}

.testmnl-bg h2{font-size:50px; color:var(--white); font-weight:800;}

.testmnl-bg h5{font-size:20px; color:var(--white); text-transform:uppercase;

font-weight:600;}

.testmnl-bg h5 dd{display:inline-block; width:9px; height:9px; border-radius:100%;

background:var(--white); position:relative; top:6px;}

.clnt-sys .owl-carousel .owl-item{height:auto;}

.clnt-sys .owl-carousel .owl-nav.disabled{display:block;}

.clnt-sys .owl-carousel .owl-nav .owl-prev{display:block; width:35px; 

height:35px; background:url(../images/prev-02.png) no-repeat 0 0;

background-size:100% 100%; display:block; text-indent:-9999px;

position:absolute; top:60%; left:83%;}

.clnt-sys .owl-carousel .owl-nav .owl-prev:hover{background:url(../images/prev-02.png) 

no-repeat 0 0; background-size:100% 100%;}

.clnt-sys .owl-carousel .owl-nav .owl-next{display:block; width:35px; 

  height:35px; background:url(../images/next-02.png) no-repeat 0 0;

background-size:100% 100%; display:block; text-indent:-9999px;

position:absolute; top:60%; right:8%;}

.clnt-sys .owl-carousel .owl-nav .owl-next:hover{background:url(../images/next-02.png) no-repeat 0 0;

background-size:100% 100%;}

.clnt-sys .owl-theme .owl-dots{display:none;}

.testimonial-box{background:url(../images/testimonial-box-bg.webp) no-repeat 0 0;

background-size:100% 100%!important; width:100%; display:block;

padding:20px;}

.clientImg{border:solid 2px #20264b; width:100%; height:200px; position:relative;

background:transparent;}

.clientImg img{width:100%; height:100%; display:block; position:absolute; top:20px;

left:20px;}

.qutation{width:85%; height:200px; margin:0 auto;}

.qutation img{width:100%; height:100%; display:block;}

.testimonial-box p{font-size:17px; color:var(--white); line-height:25px;}

.star{}

.star i{font-size:18px; color:#ffbb00; display:inline-block;}









.menu-bg{background:var(--white);}

.menu-bg h2{font-size:45px; color:var(--black);}

.menu-bg p{font-size:20px; color:var(--black); padding:0 20%;}



.tabs {

display: flex;

flex-wrap: wrap; 

justify-content:center;

}

.tabs label {

  order: 1; 

  display: block;

  margin-right:15px;

  cursor: pointer;

  font-weight: 600;

  transition: background ease 0.2s;

  position:relative;

  font-size:20px;

  color:var(--grey);

  width:15%;

  height:45px;

  text-align:center;

  line-height:45px;

}

.tabs .tab {

  order: 99;

  flex-grow: 1;

  width: 100%;

  display: none;

  padding: 1rem;

}

.tabs input[type="radio"] {

  display: none;

}

.tabs input[type="radio"]:checked + label {background:transparent;}

.tabs input[type="radio"]:checked + label dd{border:solid 1px var(--primary);

width:100%; height:45px; line-height:45px; margin-bottom:0px; text-align:center;

color: var(--primary);}

.tabs input[type="radio"]:checked + label + .tab {

  display: block;

}

.tab-bdr{border:solid 1px var(--grey);}



.glary .owl-carousel .owl-item{height:auto;}

.glary .owl-carousel .owl-nav.disabled {display:block;}

.glary .owl-carousel .owl-nav .owl-prev{display:block; width:40px; 

  height:40px; background:url(../images/galry-prev.png) no-repeat 0 0;

background-size:100% 100%; display:block; text-indent:-9999px;

position:absolute; bottom:-60px; left:46%;}

.glary .owl-carousel .owl-nav .owl-prev:hover{background:url(../images/galry-prev.png) 

no-repeat 0 0; background-size:100% 100%;}

.glary .owl-carousel .owl-nav .owl-next{display:block; width:40px; 

  height:40px; background:url(../images/glary-next.png) no-repeat 0 0;

background-size:100% 100%; display:block; text-indent:-9999px;

position:absolute; bottom:-60px; right:44.50%;}

.glary .owl-carousel .owl-nav .owl-next:hover{background:url(../images/glary-next.png) 

no-repeat 0 0; background-size:100% 100%;}

.glary .owl-theme .owl-dots{display:none;}



.fd-mnu-box{width:100%; position:relative;}

.fd-mnu-box img{width:100%; height:290px; display:block; border-radius:5px;}

.fd-mnu-box-bg{background:url(../images/member-box-bg.webp) no-repeat 0 0; width:100%;

background-size:100% 100%!important; height:70px; position:absolute; bottom:0;

display:block; padding-top:7px;}

.fd-mnu-box-bg strong{font-size:18px; color:var(--white); text-transform:uppercase;

font-weight:300;}

.fd-mnu-box-bg dd{width:30%; height:1px; background:var(--white); margin:0 auto;}

.fd-mnu-box-bg p{font-size:16px; color:var(--white);}





.clnt-logo-box{border:solid 1px var(--light-grey); width:fit-content; padding:20px 30px;

background:var(--white);}

.clnt-logo-box img{width:100%; display:block;}



.line1{width:100%;}

.line1 img{width:100%; height:4px; display:block;}



.line2{width:100%;}

.line2 img{width:100%; height:2px; display:block;}





.event{padding-bottom: 100px;}

.event h5{font-size:17px; color:var(--primary); text-transform:uppercase;

font-weight:600;}

.event h5 dd{display:inline-block; width:9px; height:9px; border-radius:100%;

background:var(--primary); position:relative; top:6px;}

.event h2{font-size:40px; color:var(--black); font-weight:700;}

.event p{font-size:17px; color:var(--grey); line-height:35px;}

.eventImg-01{width:100%; position:relative;}

.eventImg-01 img{width:100%; height:350px; display:block;}

.eventImg-02{width:100%;}

.eventImg-02 img{width:100%; height:110px; display:block;}

.event-arrow{width:60px; height:60px; background:var(--primary); border-radius:100%;

border:solid 5px var(--white); position:absolute; left:0; right:0; bottom:-30px; 

margin:0 auto; padding:15px;}

.event-arrow i{font-size:20px; color:var(--white);}

.event-text-box{background:#5553CD; width:100%; border-radius:10px;

padding:30px; position:absolute; right:55px; bottom: -90px;}

.event-text-box h5{font-size:20px; color:var(--white); font-weight:600; padding-right:20%;}

.event-text-box h6{font-size:16px; color:var(--white); line-height:30px;}

.event-text-box a{width:fit-content; border:solid 2px var(--primary); border-radius:50px;

padding:10px 25px; font-size:16px; color:var(--white); font-weight:800; display:block;}





.nw-hghly h2{font-size:45px; color:var(--black); font-weight:800; padding-right:20%;}

.nw-hghly a{width:fit-content; border:solid 1px var(--primary); border-radius:50px;

padding:10px 25px; font-size:17px; color:var(--black); font-weight:600;}

.hilt-slide-line{width: 67%; height:2px; display:block; background:#a2a1a1;

position:relative; fl}

.hilt-slide-line:before{content:""; width:15%; height:2px; background:var(--primary);

position:absolute; z-index:10; left:0; top:0;}





footer{background:#2B333C;}

.ftr-bg-overlay{background:url(../images/footer-bg-overlay.webp) no-repeat 50% 20%;

background-size:50% 60%; width:100%; height:100%; display:block; position:relative;

top:0; z-index:10;}

.ftr-logo{width:45%;}

.ftr-logo img{width:100%; display:block;}

footer h3{font-size:20px; color:var(--white); font-weight:600;}

footer p{font-size:17px; color:var(--white); line-height:30px;}

ul.query{}

ul.query li{display:block; font-size:16px; color:var(--white);}

ul.query li a{font-size:16px; color:var(--white); display:block;}

ul.query li a:hover{color:var(--primary);}

ul.locate{}

ul.locate li{display:block; font-size:16px; color:var(--white); padding-left:30px; 

position:relative;}

ul.locate li img{width:15px; display:block; position: absolute; left:0; top:5px;}

ul.locate li a{font-size:16px; color:var(--white); display:block;}

ul.locate li a:hover{color:var(--primary);}

.Smedia{}

.Smedia h4{font-size:20px; color:var(--white); font-weight:600;}

.Smedia a{display:inline-block; width:30px; height:30px; background:var(--primary);

border-radius:5px; padding:5px; text-align: center;}

.Smedia a i{font-size:14px; color:var(--white);}

.Smedia a:hover{background:var(--secondary);}

.Smedia a:hover i{color:var(--white);}



.ftr-btm-bg{background:#050246;}

.ftr-btm-bg span{font-size:15px; color: var(--white); display:inline-block;}

.ftr-btm-bg span a{font-size:15px; color: var(--white); text-transform:uppercase;

font-weight:600;}

.ftr-btm-bg span a:hover{color:var(--primary);}





/*------start video css-----*/

.video-container {

  width: 100%;

  border-radius: 10px;

  margin: 0 auto;

  position: relative;

  display: flex;

  flex-direction: column;

  justify-content: center;

}

.video-container .video-wrapper {

  width: 100%;

  height: 100%;

  display: flex;

  justify-content: center;

  align-items: center;

}

.video-container video {

  width: 100%;

  height: 100%;

  border-radius: 10px;

}



.play-button-wrapper {

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  display: flex;

  align-items: center;

  justify-content: center;

  width: 100%;

  height: auto;

  pointer-events: none;

}

.play-button-wrapper #circle-play-b {

  cursor: pointer;

  pointer-events: auto;

}

.play-button-wrapper #circle-play-b svg {

  width: 100px;

  height: 100px;

  fill: #fff;

  stroke: #fff;

  cursor: pointer;

  background-color: rgba(0, 0, 0, 0.2);

  border-radius: 50%;

  opacity: 0.9;

}



/*------end video css-----*/ 









/*start inside css*/



.inside-banner-bg{background:url(../images/inside-banner-bg.webp) no-repeat 0 0;

background-size:100% 100%!important; width:100%; height:90vh; display:block; }

.inside-banner{background-size:100% 100%; width:100%; height:100%; position:relative;

z-index:10; top:0; background-repeat:no-repeat; background-position:center top;

display:block; padding:12% 20% 0;}

ul.breadcum{}

ul.breadcum li{width:fit-content; display:inline-block; font-size:18px;

color:var(--white); text-transform:uppercase;}

ul.breadcum li a{font-size:18px; color:var(--white); text-transform:uppercase;}

ul.breadcum li a:hover{color:var(--primary);}

.inside-banner h1{font-size:45px; color:var(--white); font-weight:600;}

.inside-banner p{font-size:18px; color:var(--white); padding:0 10%; text-align: center;}

a.enqury-now{width:fit-content; display:block; border:solid 1px var(--primary);

border-radius:50px; font-size:20px; color:var(--white); font-weight:800;

padding:12px 35px;}



.msn-vsnImg{background:url(../images/msn-vsn-bg.webp) no-repeat 0 0; width:100%; 

height:400px; background-size:100% 100%; display:block;}

.msn-vsnImg img{width:85%; height:350px; display:block; margin:0 auto;

border-radius:20px; position:relative; top:30px; transform-origin: center -20px; 

animation: swing ease-in-out 7s infinite alternate;}

.msn-vsn-contArea{}

.msn-vsn-contArea h2{font-size:45px; color:var(--black); font-weight:800;}

.msn-vsn-contArea p{font-size:17px; color:var(--black); line-height:30px;}

@-webkit-keyframes swing {

  0% {

    transform: rotate(8deg);

  }

  50% {

    transform: rotate(-8deg);

  }

  100% {

    transform: rotate(8deg);

  }

}

@keyframes swing {

  0% {

    transform: rotate(8deg);

  }

  50% {

    transform: rotate(-8deg);

  }

  100% {

    transform: rotate(8deg);

  }

}



.page-hdr-txt{font-size:45px; color:var(--black); font-weight:600;}

.page-hdr-sub-txt{font-size:17px; color:var(--black); line-height:30px; padding:0 15%;}





.boxes{

    width:100%;

    background-color:var(--white);

    cursor: pointer; 

    transition: all 1s;  

    display:block;

    font-size: 20px;

    color:var(--black);

    padding: 20px;

    border-radius:15px; 

    border:solid 2px #d0d0d0;

}



.boxesImg{width:40px; display:block;}

.boxesImg img{width:100%; display:block;}

.boxesImg img:nth-child(2){display:none; }

.boxes strong{font-size: 18px; color:var(--black); font-weight:800; padding-right:20%;}

.boxes span{font-size:16px; color:var(--black); line-height:30px;}

.boxes a{font-size:16px; color:var(--black); font-weight:800;}

.boxes a img{display:inline-block; width:15px;}

.boxes a img:nth-child(2){display:none; }



.rotate-anti-clockwise:hover{

background-color:var(--primary);

color:var(--white);

transition: all 1s;

-webkit-transform: rotateZ(-10deg);

-ms-transform: rotateZ(-10deg);

transform: rotateZ(-10deg);}

.rotate-anti-clockwise:hover strong{color:var(--white);}

.rotate-anti-clockwise:hover span{color:var(--white);}

.rotate-anti-clockwise:hover a{color:var(--white);}

.rotate-anti-clockwise:hover img:nth-child(1){display:none;}

.rotate-anti-clockwise:hover img:nth-child(2){display:block;}

.rotate-anti-clockwise:hover a img:nth-child(1){display:none;}

.rotate-anti-clockwise:hover a img:nth-child(2){display:inline-block;}

a.nqry-nw{border:solid 1px var(--primary); width:fit-content; display:block;

border-radius:50px; padding:10px 30px; font-size:17px; color:var(--black);

font-weight:600;}





.logist{width:90%; position:absolute; left:0; right:0; top:135px; margin:0 auto;}

.logist .owl-carousel .owl-item{height:auto; padding-bottom:90px;}

.logist .owl-carousel .owl-nav.disabled{display:block;}

.logist .owl-carousel .owl-nav .owl-prev{display:block; width:40px; 

height:40px; background:url(../images/prev.png) no-repeat 0 0;

background-size:100% 100%; display:block; text-indent:-9999px;

position:absolute; top:85%; left:40%;}

.logist .owl-carousel .owl-nav .owl-prev:before{content:""; width:300px; height:1px;

background:var(--white); position:absolute; right:56px; top:19px; z-index:50;}

.logist .owl-carousel .owl-nav .owl-prev:hover{background:url(../images/prev.png) 

no-repeat 0 0; background-size:100% 100%;}

.logist .owl-carousel .owl-nav .owl-next{display:block; width:40px; 

height:40px; background:url(../images/next.png) no-repeat 0 0;

background-size:100% 100%; display:block; text-indent:-9999px;

position:absolute; top:85%; right:45%;}

.logist .owl-carousel .owl-nav .owl-next:after{content:""; width:200px; height:1px;

background:var(--white); position:absolute; left:56px; top:19px; z-index:50;}

.logist .owl-carousel .owl-nav .owl-next:hover{background:url(../images/next.png) no-repeat 0 0;

background-size:100% 100%;}

.logist .owl-theme .owl-dots{display:none;}

.hlp-busi-box{background:var(--sky-blue); width:40%; border-radius:10px; padding:20px;

height:170px; font-size:34px; color:var(--white); font-weight:600; line-height:50px;}

.logistic-map-bg{background:var(--sky-blue); width:70%; height:200px; margin-top:200px; 

border-radius:0 0 30px 0;}

.logistic-map-bg-overlay{background:url(../images/logistic-map.webp) no-repeat 0 0;

background-size:100% 100%!important; width:100%; height:100%; 

border-radius:0 0 30px 0;}



.transport-box{position:relative;}

.transport-box img{width:100%; height:350px; display:block; border-radius:10px;}

.transport-box .air-flght{position:absolute; width:90%; left:0; right:0; bottom:20px;

margin:0 auto; border-radius:5px; background:var(--white); padding:20px 0;} 

.transport-box .air-flght dd{background:var(--primary); width:fit-content; margin:0 auto;

display:block; border-radius:50px; padding:5px 25px; font-size:14px; color:var(--white);}

.transport-box .air-flght span{font-size:18px; color:var(--black); font-weight:600;}

.transport-box .air-flght:hover{background:var(--primary); display:block;}

.transport-box .air-flght:hover dd{background:var(--white); display:block; 

color:var(--black);}

.transport-box .air-flght:hover span{color:var(--white);}



.drivn-integrty{}

.drivn-integrty h2{font-size:40px; color:var(--black); font-weight:800; padding:0 15%;}

.drivn-integrty p{font-size:17px; color:var(--black); line-height:30px; padding:0 20%;

text-align:center;}

.driven-box{width:90%; background:var(--white); padding:30px; border-radius:20px;

margin:0 auto;}

.driven-box img{width:100%; height:210px; display:block; border-radius:30px;}

.driven-box h5{font-size:22px; color:var(--black); font-weight:800;}

.driven-box h6{font-size:16px; color:var(--grey); line-height:25px;}

.driven-box p{padding:0!important; text-align:left!important;}



.diven-bns{animation:bounce 2s infinite;}

@keyframes bounce {

 0% {

  transform: translateY(0);

 }

 50% {

  transform: translateY(-50px);

 }

 100% {

  transform: translateY(0);

 }

}



.shipping-bg{background:#F4F4F4;}

.shipping-bg-overlay{background:url(../images/shipping-overlay-bg.webp) no-repeat 0 0;

background-size:100% 40%; width:100%; height:100%; display:block; position:relative;

z-index:10; top:0;}

.shipping-bg-overlay h2{font-size:40px;color: var(--black);font-weight: 800;padding: 0 15%;}

.shipping-bg-overlay p{font-size: 17px;color: var(--black);line-height: 30px;padding: 0 20%;}





.global{}

.global h2{font-size:45px; color:var(--black); font-weight:800;}

.global p{font-size:17px; color:var(--black);}

.global ul{padding:0; margin:0;}

.global ul li{background:var(--sky-blue); width:47%; float:left; height:90px;

border-radius:5px; display:block; padding-left:120px; padding-top:35px; position:relative;}

.global ul li dd{background:var(--blue); width:35%; height:90px; border-radius:5px 0 0 5px;

display:flex; justify-content:center; align-items:center; position:absolute; left:0;

top:0;}

.global ul li dd img{width:60px; height:60px; display:block; border-radius:100%;

border:solid 4px var(--white);}

.global ul li span{font-size:17px; color:var(--white); text-transform:uppercase;}



.global-box{background:var(--sky-blue); width:100%; height:420px; border-radius:10px;

display:block;}

.global-box-overlay{background:url(../images/global-map.webp) no-repeat 0 0; width:100%;

background-size:100% 100%; height:100%; display:block; position:relative; top:0;

z-index:10;}





.gbl .owl-carousel .owl-item{height:500px;}

.gbl .owl-carousel .owl-nav .owl-prev{display:block; width:40px; 

  height:40px; background:url(../images/prev-03.png) no-repeat 0 0;

background-size:100% 100%; display:block; text-indent:-9999px;

position:absolute; top:70%; left:75%;}

.gbl .owl-carousel .owl-nav .owl-prev:hover{background:url(../images/prev-03.png) 

no-repeat 0 0; background-size:100% 100%;}

.gbl .owl-carousel .owl-nav .owl-next{display:block; width:40px; 

  height:40px; background:url(../images/next-03.png) no-repeat 0 0;

background-size:100% 100%; display:block; text-indent:-9999px;

position:absolute; top:70%; right:7%;}

.gbl .owl-carousel .owl-nav .owl-next:hover{background:url(../images/next-03.png) 

no-repeat 0 0; background-size:100% 100%;}

.gbl .owl-theme .owl-dots{display:none;}

 .gbl-slide-box{padding:30px 40px;}

 .gbl-slide-box h4{font-size:35px; color:var(--white); font-weight:600;}

 .gbl-slide-box h5{font-size:20px; color:var(--white); line-height:32px;}





 .logis-solu-overlay{background-size:100% 100%!important; width:100%; height:100%; 

background:url(../images/logistic-solution-overlay.webp) no-repeat 0 0;

position:relative; z-index:10; top:0; display:block;}

.logistic-solutionImg{width:100%;}

.logistic-solutionImg img{width:100%; height:470px; display:block;}

.logistic-solution-contArea{}

.logistic-solution-contArea h2{font-size:40px; color:var(--black); font-weight:800;

padding-right: 20%;}

.lgs-year{background: var(--sky-blue); width:100%; height:150px; display:flex;

align-items:center; padding:0 25px;}

.lgs-year h6{font-size:45px; color:var(--white); font-weight:800;}

.lgs-year span{font-size:18px; color:var(--white);}

.logistic-solution-contArea p{font-size:18px; color:var(--black); line-height:30px;}

.ur-odr{background:var(--white); box-shadow: 0px 0px 5px 0px rgba(168,168,168,1);

padding:10px 0; width:80%; position:absolute; z-index:10; bottom:-146px;

right:-100px;}

.ur-odr ul{padding:0; margin:0;}

.ur-odr ul li{display:inline-block; width:48%; height:100%; border-right:solid 1px #A2A2A2;

padding-right:15px; padding-left:15px;}

.ur-odr ul li:last-child{border-right:none; padding-right:0;}

.ur-odr ul li h4{display:inline-block; -webkit-text-stroke: 1px #000; color:var(--white); font-size:64px; font-weight:300;

text-shadow: 0px 0px 0 #000, 0px 0px 0 #000, 0px 0px 0 #000, 0px 0px 0 #000, 0px 0px 0 #000;}

.ur-odr ul li h5{font-size:22px; color:var(--black); font-weight:800;}

.ur-odr ul li h6{display:inline-block; -webkit-text-stroke: 1px #000; color:var(--white); 

font-size:64px; font-weight:300; text-shadow: 0px 0px 0 #000, 0px 0px 0 #000, 

0px 0px 0 #000, 0px 0px 0 #000, 0px 0px 0 #000; }

.count-bdr{padding:0!important; border:none!important;}



.transprt-cargo{}

.transprt-cargo strong{font-size:18px; color:var(--black); font-weight:800;

text-transform:uppercase;}

.transprt-cargoImg{width:95%; height:235px; box-shadow: 10px 11px 0px 0px rgba(228,228,228,0.75);

display:block; margin:0 auto; overflow:hidden;}

.transprt-cargoImg img{width:100%; height:100%; display:block;}



.tips-tricks-overlay{background:url(../images/tip-tricks-overlay.webp) no-repeat 0 0;

background:100% 50%; width:100%; height:100%; display:block; position:relative;

z-index:10; top:0;}

.tips-tricks-overlay h2{font-size:40px; color:var(--black); font-weight:800;

padding:0 20%;}

.tips-tricks-overlay h4{font-size:22px; color: var(--black); font-weight:600;}

.tips-tricks-overlay h6{font-size:16px; color: var(--blue); text-decoration:underline;}

.tips-tricks-overlay p{font-size:17px; color:var(--black); line-height:30px;}

.tips-tricks-overlay img{width:100%; height:250px; display:block; border-radius:5px;}



.clnt-logo2 .owl-theme .owl-nav{display:none;}

.clnt-logo2 .owl-theme .owl-dots{display:none;}





.enquiry-bg{background:url(../images/enquiry-bg.webp) no-repeat 0 0;

background-size:100% 100%!important; display:block;

width:100%; height:336px; padding:45% 20px 0; position:relative; 

border:solid 1px var(--black); border-radius:25px 25px 0 0; word-break: break-all;}

.enquiry-bg h4{font-size:20px; color:var(--blue); font-weight:700;}

.enquiry-bg a{font-size:15px; color:var(--black); font-weight:800;}

.enquiry-bg a:hover{color:var(--secondary);}

.enquiry-bg dd{width:55px; height:55px; background:var(--primary);

border-radius:100%; display:flex; align-items:center; 

justify-content:center; position:absolute; left:20px; bottom:10px;}

.enquiry-bg dd img{width:40%; display:block;}

.enquiry-bg span{font-size:15px; color:var(--black); font-weight:800;}





.blog-box{width:100%; height:790px;}

.blog-box img{width:100%; height:370px; display:block; object-fit:cover;}

.blog-box ul{padding:0; margin:0;}

.blog-box ul li{display:block; background:#e5eaeb; padding:5px;}

.blog-box ul li span{display:inline-block; width:fit-content; padding-right:10px;

font-size:15px; color:#616568; font-weight:600;}

.blog-box ul li span i{font-size:17px; color:#616568; display:inline-block;}

.blog-box h4{font-size:22px; color:var(--black); font-weight:700;}

.blog-box p{font-size:17px; color:var(--grey); line-height:25px;}

.blog-box a{background:var(--primary); width:160px; height:45px; border-radius:50px;

text-align:center; line-height:45px; font-size:14px; color:var(--white);

text-transform:uppercase; display:block; position:absolute; left:0; bottom:20px;}

.blog-box a:hover{background:var(--secondary);}



.blog-author{width:100%; background:var(--white);}

.blog-author img{width:100%; height:290px; display:block; border-radius:20px;}

.blog-author h3{font-size:25px; color:var(--black); font-weight:800;}

.blog-author h5{font-size:20px; color:var(--black);}

.blog-author h6{font-size:16px; color:var(--grey); line-height:25px;}



.blog-Smedia{}

.blog-Smedia a{display:inline-block; width:fit-content; padding:0 5px;}

.blog-Smedia a i{font-size:18px; color:#6c757d;}



.lst-post{background:var(--white); padding:20px 15px 5px;}

.lst-post h4{font-size:20px; color:var(--black); font-weight:800;}

.lst-post ul{padding:0; margin:0; float:left; padding-top:20px;}

.lst-post ul li{display:block; border-bottom:solid 1px #dadada; padding-bottom:12px;

margin-bottom:15px; float:left;}

.lst-post ul li img{width:30%; height:50px; display:block; object-fit:scale-down;

border-radius:3px; float:left;}

.lst-post ul li strong{ display:block; font-size:12px;  color:var(--black); font-weight:600;

float:right; width:65%;}

.lst-post ul li strong a{color:var(--primary);}

.lst-post ul li span{font-size:11px; color:var(--grey); display:block; float:right; 

width:65%;}



.blog-single{width:100%; background:var(--white); padding-bottom: 30px;}

.blog-single img{width:100%; height:450px; display:block; border-radius:3px;

aspect-ratio: auto 550 / 550; overflow-clip-margin: content-box; overflow: clip;}

.blog-single ul{padding:0; margin:0;}

.blog-single ul li{display:block; background:#e5eaeb; padding:7px 20px;}

.blog-single ul li span{display:inline-block; width:fit-content; padding-right:20px;

font-size:18px; color:#616568; font-weight:600;}

.blog-single ul li span i{font-size:17px; color:#616568; display:inline-block;}

.blog-single h3{font-size:30px; color:var(--black); font-weight:700;}

.blog-single h4{font-size:25px; color:var(--black); font-weight:600;}

.blog-single p{font-size:17px; color:var(--grey); line-height:35px;}

ul.blog-txt{padding:0; margin:0;}

ul.blog-txt li{display:block; position:relative; padding-left:17px; font-size:17px;

color:var(--black); background:transparent!important; margin-bottom: 10px;}

ul.blog-txt li dd{width:9px; height:9px; border:solid 1px var(--black); border-radius:100%;

position:absolute; left:0; top:14px;}



.blg-frm-fld{border:solid 1px #d8d7d7!important; width:100%; height:50px; 

display:block; border-radius:7px!important; font-size:16px; color:var(--black);}

.blg-frm-fld:focus{box-shadow:none;}

.blg-frm-fld::placeholder{font-size:16px; color:var(--black);}

.blg-txt-area{border:solid 1px #d8d7d7!important; width:100%; height:130px; 

display:block; border-radius:7px!important; font-size:16px; color:var(--black);

overflow:auto; padding:20px;}

.blg-txt-area:focus{box-shadow:none;}

.blg-txt-area::placeholder{font-size:16px; color:var(--black);}



.blog-submitBtn{background:var(--blue); width:fit-content; height:45px; border-radius:50px;

line-height:45px; font-size:14px; color:var(--white);text-transform:uppercase; 

display:block; padding:0 35px;}

.blog-submitBtn:hover{background:var(--green);}



.pst-cmnt ul{padding:0; margin:0;}

.pst-cmnt ul li{display:block; padding-left:65px; position:relative;}

.pst-cmnt ul li img{width:50px!important; height:50px!important; display:block;

position:absolute; top:5px; left:0;}

.pst-cmnt ul li strong{display:block; font-size:20px; color:var(--black);

font-weight:600;}

.pst-cmnt ul li span{font-size:18px; color:var(--black); display:block;

font-weight:300;}

.pst-cmnt p{font-size:17px; color:var(--grey);}



.delivery-man{width:60%; position:absolute; left:0; right:0; top:-60px; margin:0 auto;}

.delivery-man img{width:100%; display:block; height:300px;}

.export-box{background:var(--primary); width:100%; height:250px; display:flex; 

align-items:center; padding:0 20px;}

.export-box img{width:35px; height:35px; display:block;}

.export-box h5{font-size:20px; color:var(--white); font-weight:700;}

.export-box h6{font-size:16px; color:var(--white); line-height:30px;}



.fast-box{background:url(../images/fast-box.webp) no-repeat 0 0; width:100%; height:250px; 

display:flex; background-size:100% 100%; align-items:center; padding:0 20px;}

.fast-box img{width:35px; height:35px; display:block;}

.fast-box h5{font-size:20px; color:var(--white); font-weight:700;}

.fast-box h6{font-size:16px; color:var(--white); line-height:30px;}





/*.get-in-touch-bg{background-color:#ecebff; width:100%; display:block; padding:20px 30px 0;

position: -webkit-sticky; z-index:10; position: sticky; top:0px;}*/

.get-in-touch-bg{background-color:#ecebff; width:100%; display:block; 

padding:20px 30px 0;}

.get-in-touch-bg h3{font-size:24px; color:var(--black); font-weight:600;}

.get-touch-field{background:transparent; width:100%; height:35px; display:block;

border-radius:4px; padding:0 15px; font-size:15px; color:var(--grey);

border:solid 1px #cdcbec;}

.get-touch-field:focus{box-shadow:none;}

.get-touch-field::placeholder{font-size:15px; color:var(--grey);}



.get-touch-txtArea{background:transparent; width:100%; height:70px; display:block;

border-radius:4px; padding:15px; font-size:15px; color:var(--grey);

border:solid 1px #cdcbec; overflow:auto;}

.get-touch-txtArea:focus{box-shadow:none;}

.get-touch-txtArea::placeholder{font-size:15px; color:var(--grey);}



.get-in-touch-bg label{font-size:15px; color:var(--grey);}

.get-in-touch-bg label a{font-size:15px; color:var(--grey); font-weight:600;}

.get-in-touch-bg label a:hover{color:var(--primary);}



.get-touch-Btn{background:var(--primary); border-radius:5px; font-size:16px; color:var(--white);}

.get-touch-Btn:hover{color:var(--white);}



.get-in-touch-bg ul{margin:0; padding:0;}

.get-in-touch-bg ul li{display:block; position:relative; padding-left:30px;}

.get-in-touch-bg ul li img{width:20px; display:block; position:absolute; left:0;

top:5px;}

.get-in-touch-bg ul li span{font-size:15px; color:var(--grey);}

.get-in-touch-bg ul li a{font-size:15px; color:var(--grey);}

.get-in-touch-bg ul li a:hover{color:var(--primary);}





.solution-contArea{height:640px;}

.solutionImg{width:100%;}

.solutionImg img{width:100%; display:block; height:400px;}

.solution-contArea p{font-size:16px; color:var(--black); line-height:27px; 

text-align: justify;}

.solution-contArea h4{font-size:22px; color:var(--black); font-weight:700;}

.solutionImg-02{width:100%;}

.solutionImg-02 img{width:100%; display:block; height:250px;}



.video-container {

  width:100%;

  border-radius: 4px;

  margin: 0 auto;

  position: relative;

  display: flex;

  flex-direction: column;

  justify-content: center;

  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.4);

}

.video-container .video-wrapper {

  width: 100%;

  height: 100%;

  display: flex;

  justify-content: center;

  align-items: center;

}

.video-container video {

  width: 100%;

  height: 100%;

  border-radius: 4px;

}



.play-button-wrapper {

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  display: flex;

  align-items: center;

  justify-content: center;

  width: 100%;

  height: auto;

  pointer-events: none;

  z-index: 10;

}

.play-button-wrapper #circle-play-b {

  cursor: pointer;

  pointer-events: auto;

}

.play-button-wrapper #circle-play-b img {

  width: 100px;

  height: 100px;

  fill: #fff;

  stroke: #fff;

  cursor: pointer;

  background-color: rgba(0, 0, 0, 0.2);

  border-radius: 50%;

  opacity: 0.9;

}





.scrollbar{width:100%; overflow-y:auto; overflow-x:hidden; height:100%; display: block;

padding-right:5px;}

.force-overflow{height:100%; display: block; display:flex; flex-flow:wrap;

padding-right:5px;}

#style-1::-webkit-scrollbar-track{

border-radius: 10px;

background-color:var(--white);}

#style-1::-webkit-scrollbar{

width: 3px;

background-color:var(--white);}

#style-1::-webkit-scrollbar-thumb{

border-radius: 10px;

background-color:#e9e8ef;}



.dynamic-text {

  overflow: hidden;

  height: 120px;

  font-size:45px;

  font-weight:600;

  display: block;

  width:100%;

  text-align: center;

  padding-top: 5px;

}



.item {

  position: relative;

  top: 0;

  animation: move 6s infinite 1s;

}

.item:first-child {

  color:var(--white);

}

.item:nth-child(2) {

  color:var(--white);

}

.item:nth-child(3) {

  color:var(--white);

}

.item:nth-child(4) {

  color: var(--white);

}

.item:nth-child(5) {

  color: var(--white);

}



@keyframes move {

  0% {

    top: 0px;

  }

  20% {

    top: -50px;

  }

  40% {

    top: -96px;

  }

  80% {

    top: -196px;

  }

  60% {

    top: -146px;

  }

}







.frame{

   -webkit-animation: zoomeffect 10s infinite;

   -moz-animation: zoomeffect 10s infinite;

   animation: zoomeffect 10s infinite;

}

@-webkit-keyframes zoomeffect{

    0%{

      background-position:center;

      transform:scale(1,1);

    }

    50%{

      background-position:center;

      transform:scale(2,2);

    }

    100%{

      background-position:center;

      transform:scale(1,1);

    }

}

@keyframes zoomeffect{

    0%{

      background-position:center;

      transform:scale(0,0);

    }

    50%{

      background-position:center;

      transform:scale(2,2);

    }

    100%{

      background-position:center;

      transform:scale(1,1);

    }

}





.box-01{-webkit-transition: margin-left 4s ease; transition: margin-left 4s ease;

position:absolute; z-index:10; width:93%;}

.box-01:hover{margin-left: 100%;}

/*end inside css*/



@media only screen and (max-width:1280px){

.trns-solu-contArea h2{font-size:35px; line-height:45px;}

.trns-solu-contArea h5{font-size:17px;}

.trns-soluImg-01{width:65%;}

.trns-soluImg-01 img{height:370px;}

.trns-soluImg-02{width:55%; right:-25px;}

.trns-soluImg-02 img{height:370px;}

.years h4{font-size:14px;}

.years h3{font-size:30px;}

.our-solu h5{font-size:17px;}

.our-solu h2{font-size:35px;}

.pricing-tabs .tabs{background-position:7px 60%;}

.pricing-tabs .tabs h4{font-size:17px; line-height:25px;}

.pricing-tabs .radio-tabs .panel .panel-overlay{width:50%;}

.inside-banner-bg{height: 110vh;}

.inside-banner{padding: 12% 10% 0;}

.boxes{height:370px;}

.boxes strong{font-size:16px; padding-right:10%;}

a.nqry-nw{margin-top:25px;}

.global ul li{padding-left:103px;}

.tips-tricks-overlay img{height:280px;}

.our-solu-box h4{font-size:20px;}

.pricing-tabs .tabs{background-position:7px 98%; background-size:3px 320px;}

.pricing-tabs .tab-label{font-size:16px;}

}





@media only screen and (max-width:1200px){

a.bk-now{font-size:16px; padding:7px 20px;}

.trns-solu-contArea h2{font-size:30px; line-height:40px;}

.banner-contArea h1{font-size:35px;}

.logistic-bg{width:100%;}

.trns-soluImg-01 img{height:340px;}

.trns-soluImg-02 img{height:340px;}

.years h4{font-size:12px;}

.years h3{font-size:25px;}

.pricing-tabs .tabs h2{font-size:30px;}

.pricing-tabs .tabs{background-position: 7px 70%;}

.work-procs-box{height:320px;}

.clnt-sys .owl-carousel .owl-nav .owl-prev{top:65%; left:80%;}

.clnt-sys .owl-carousel .owl-nav .owl-next{top:65%;}

.tabs label{width:20%;}

.fd-mnu-box img{height:250px;}

.fd-mnu-box-bg strong{font-size:16px;}

.fd-mnu-box-bg p{font-size:14px;}

.fd-mnu-box-bg{height:60px; padding-top:4px;}

.glary .owl-carousel .owl-nav .owl-prev{left:44%;}

.boxes span{line-height:25px;}

.hlp-busi-box{font-size:25px; line-height:40px; height:140px;}

.logist{top:110px;}

.drivn-integrty h2{padding: 0 10%;}

.drivn-integrty p{padding: 0 10%;}

.global ul li{padding-left:91px;}

.global ul li span{font-size:14px;}

.gbl-slide-box h4{font-size:30px;}

.ur-odr ul li h4{font-size:50px;}

.ur-odr ul li h6{font-size:50px;}

.ur-odr ul li h5{font-size:18px;}

.logistic-solution-contArea h2{font-size:30px;}

.logistic-solution-contArea p{font-size:16px; line-height:28px;}

.ur-odr{bottom:-122px;}

.logistic-solutionImg img{height:409px;}

.transprt-cargoImg{height:200px;}

.blog-box img{height:280px;}

.lst-post ul li img{height:60px;}

.blog-author img{height:230px;}

.blog-single img{height:300px;}

.blog-author h3{font-size:20px;}

.blog-author h5{font-size:16px;}

.blog-author h6{font-size:14px;}



.export-box{height:210px;}

.fast-box{height:210px;}

.export-box h6{font-size:15px; line-height:inherit;}

.fast-box h6{font-size:15px; line-height:inherit;}

.delivery-man{top:-50px;}

.delivery-man img{height:260px;}

.solutionImg img{height:320px;}

.solutionImg-02 img{height:200px;}

.play-button-wrapper #circle-play-b img{width:70px; height:70px;}

.our-solu-box h4{font-size:18px;}

.our-solu-box h6{font-size:15px; line-height:24px;}

.our-solu-box{padding:25px 25px 0;}



.pricing-tabs .tabs{background-position: 7px 105%;}

.pricing-tabs .tabs h2{font-size:28px;}

.pricing-tabs .tabs h4{font-size:17px; line-height:25px;}

.enquiry-bg{padding:55% 20px 0;}

.dynamic-text{font-size:40px;}

.global ul li{width:46%;}

.banner-contArea{padding:20px 23% 0 5%;}

}





@media only screen and (max-width:1024px){

a.bk-now{font-size:14px;}

.trns-solu-contArea h2{font-size:25px; line-height:30px; padding-right:0%;}

.trns-soluImg-01 img{height:300px;}

.trns-soluImg-02 img{height:300px; border:solid 4px var(--white);}

.years{height:80px; right:47px;}

.trns-soluImg-02{top:10%;}

.logistic-bg ul li{margin-bottom: 10px;}

.pricing-tabs .tabs h2{font-size:25px;}

.work-procs-box img{width:75%; height:75%;}

.fd-mnu-box img{height:230px;}

.inside-banner{padding:15% 10% 0;}

.msn-vsnImg{height:350px;}

.msn-vsnImg img{height:300px;}

.boxes span{font-size:15px; line-height:23px;}

.global ul li{padding-left:80px;}

.global ul li dd{height:81px;}

.global ul li{height:81px;}

.global-box{height: 398px;}

.gbl .owl-carousel .owl-item{height:450px;}

.gbl .owl-carousel .owl-nav .owl-prev{left:68%;}

.transprt-cargoImg{height: 190px;}

.event-text-box{right:47px; bottom:-57px;}

.blog-box img{height:250px;}

.blog-box h4{font-size:18px;}

.blog-box p{font-size:15px;}

.lst-post ul li img{ height:50px;}

.lst-post ul li{ padding-bottom:10px;}

.blog-single img{height:400px;}

.blog-single h4{font-size:22px;}

.blog-single p{font-size:18px;}

.blog-single img{height:320px;}

.blog-single ul li span{font-size:16px;}

.blog-single h3{font-size:25px;}

.blog-single p{font-size:16px; line-height:30px;}

ul.blog-txt li{font-size:16px;}



.delivery-man img{height:240px;}

.solutionImg img{height:270px;}

.solutionImg-02 img{height:175px;}

.banner-contArea{height:40%;}

}



@media only screen and (max-width:993px){

.nav{height:60px;}

.nav .logo {width: 42%;}

.get-quors{background:var(--primary); width:fit-content; padding:0px 20px;

border-radius:10px; color:var(--white); font-size:15px; font-weight:600; height:35px;

line-height:35px; border:none; float:right; border:solid 1px var(--white);

margin-top:5px;}

#target {

background:var(--primary);

width: 100%;

height: auto;

padding: 10px;

display: none;

position: absolute;

z-index: 9999;

top:60px;

left:0px;}

ul.enquiry{}

ul.enquiry li{width:fit-content; font-size:15px; color:var(--white);

font-weight:600; display:inline-block;}

ul.enquiry li a{font-size:15px; color:var(--white); font-weight:600;}

ul.enquiry li a:hover{color:#fd7d0b;}

ul.enquiry li img{display:inline-block; background:var(--sky-blue); width:30px; 

height:30px; border-radius:100%; padding:6px; margin-right: 6px;}

ul.call-us{}

ul.call-us li{display:block;}

ul.call-us li a{font-size:15px; color:var(--primary); font-weight:700;}

ul.call-us li a i{display:inline-block; font-size:15px; color:var(--primary);}

.mobile-menu-bg {

background: #000;

position: fixed;

left: 0px;

right: 0px;

bottom: 0px;

margin: 0 auto;

z-index: 9999;

width: 100%;

height: 40px;}

a.ftr-sm-menu {

width: 100%;

height: 45px;

display:block;

line-height:45px;

position:absolute;

z-index:10000;

padding-left:9%;}

a.ftr-sm-menu i{color:var(--white)!important; font-size:18px; margin:0 auto;}

.ftr-mb-mnu nav.black{background:#000;}

.top-bar-sMedia a i{font-size:15px;}

a.bk-now{float:right; margin-top:14px;}

.banner-contArea{padding-right:10%; height:42%;}

.banner-contArea h1{font-size:30px;}

.trns-soluImg-01{width:50%; margin-left:10%;}

.trns-soluImg-01 img{height:420px;}

.trns-soluImg-02{width:45%; top:15%; right:50px;}

.trns-soluImg-02 img{height:420px;}

.years h3{font-size:35px;}

.years h4{font-size:16px;}

.years{right:57px;}

.trns-solu-contArea{padding-top:80px;}

.trns-solu-contArea h5{text-align:center;}

.trns-solu-contArea h2{text-align:center; padding: 0 10%;}

.trns-solu-contArea p{text-align:center; padding: 0 10%;}

.get-touch-bg-overlay h3{font-size:30px;}

.get-touch-bg-overlay h4{font-size:19px; padding-right:20%; line-height:30px;}

.logistic-capa-bg-overlay h2{font-size:30px;}

.counter h4{font-size:45px;}

.counter h5{font-size:45px;}

.counter h3{font-size:17px;}

.explr-al{height:160px; padding-top:47%;}

.pricing-tabs .tabs h2{font-size:20px;}

.pricing-tabs .tabs h4{font-size:15px; line-height:23px;}

.pricing-tabs .tab-label{font-size:15px; padding-left:14px;}

.pricing-tabs .tabs{background-size:3px 350px;}

.pricing-tabs .radio-tabs .panel .panel-overlay{width:60%;}

.work-procs-box{height:225px;}

.work-procs-box img{width:85%; height:85%; top:13px;}

.procesing-number{width:50px; height:50px; border:solid 3px var(--white);

font-size:20px; bottom:0; left:34px;}

.working-process p{font-size:15px; padding:0; line-height:25px;}

.working-process h4{font-size:17px;}

.event h2{font-size:30px;}

.event p{line-height:inherit;}

.eventImg-01 img{height:300px;}

.eventImg-02 img{height:80px;}

.event-text-box h5{font-size:17px; padding-right:10%;}

.event-text-box{padding:20px;}

.event-text-box h6{line-height:25px;}

.event-text-box a{font-size:14px; padding:8px 20px;}

.event-text-box{right:68px; bottom:-50px;}

.nw-hghly h2{font-size:35px;}

.image-container img{height:160px;}

.right-preview img{height:160px;}

.nw-hghly{text-align:center; padding-bottom:20px;}

.nw-hghly h2{padding-right:0%;}

.clientImg{height:150px;}

.qutation{height:150px;}

.clnt-sys .owl-carousel .owl-nav .owl-next{right:5%;}

.swiper-button-prev{left:89%;}

.testimonial-box p{font-size:15px; line-height:20px;}

.menu-bg h2{font-size:40px;}

.menu-bg p{font-size:17px; padding:0 10%;}

.tabs label{width:27%;}

.glary .owl-carousel .owl-nav .owl-prev{left:39%;}

.mb-logo{width:85%;}

.mb-logo img{width:100%; display:block;}

a.bk-now2 {

background: var(--white);

width: 130px !important;

height: 35px !important;

text-align: center;

line-height: 35px !important;

font-size: 16px;

color: var(--primary) !important;

font-weight: 600;

border-radius:50px !important;

margin-left: 20px !important;

padding: 0px !important;

border:solid 1px var(--sky-blue)!important;}

.ftr-btm-bg{margin-bottom:40px;}

.swiper-button-prev{left:89%;}

.msn-vsn-contArea h2{font-size:35px;}

.msn-vsn-contArea p{font-size:16px; line-height:25px;}

.msn-vsnImg{height:320px;}

.msn-vsnImg img{height:270px; top:24px;}

.page-hdr-txt{font-size:35px;}

.page-hdr-sub-txt{padding: 0 5%;}

.boxes strong{font-size:22px;}

.boxes span{font-size:18px; line-height:30px;}

.boxes{height:325px;}

.hlp-busi-box{width:48%; font-size:23px; line-height:37px;}

.logist .owl-carousel .owl-nav .owl-prev{left:37%;}

.drivn-integrty h2{font-size:30px; padding:0 5%;}

.driven-box{width:100%; padding:20px;}

.driven-box img{height:170px;}

.driven-box h5{font-size:18px;}

.global h2{font-size:35px; text-align:center;}

.global p{font-size:16px; text-align:center;}

.global ul li{height:95px; padding-left:131px;}

.global ul li dd{height:95px;}

.gbl-slide-box h4{text-align:center;}

.gbl-slide-box h5{text-align:center;}

.gbl .owl-carousel .owl-nav .owl-prev{left:77%;}

.global-box{height:auto;}

.gbl .owl-carousel .owl-item{height:auto; padding-bottom:60px;}

.logistic-solution-contArea h2{text-align:center; padding-right:0;}

.ur-odr{position:inherit; bottom:0; right:0; width:100%; margin-top:10px;}

.ur-odr ul li h5{font-size:22px;}

.ur-odr ul li h4{font-size:60px;}

.ur-odr ul li h6{font-size:60px;}

.logis-solu-overlay{background-size:100% 60%!important; background-position:0 100%;}

.transprt-cargoImg{height:155px;}

.transprt-cargo strong{font-size:16px;}

.tips-tricks-overlay h2{font-size:30px; padding:0;}

.tips-tricks-overlay h6{text-align: center;}

.tips-tricks-overlay h4{text-align: center;}

.tips-tricks-overlay p{text-align:center;}

.enquiry-bg{padding-top:127px;}



.blog-box img{height:300px;}

.blog-banner{height:400px;}

.lst-post ul li img{width:19%;}

.lst-post ul li strong{width:77%;}

.lst-post ul li span{width:77%;}

.lst-post ul li{margin-right:30px;}

.blog-box{height:720px;}

.blog-author img{width:60%; height:400px; margin:0 auto;}

.blog-single h4{text-align:center;}

.blog-single h3{text-align:center;}

.blog-single p{text-align:center;}



.export-box img{width:30px; height:30px;}

.export-box h5{font-size:17px;}

.export-box h6{font-size:14px;}

.fast-box img{width:30px; height:30px;}

.fast-box h5{font-size:17px;}

.fast-box h6{font-size:14px;}

.export-box{height:190px;}

.fast-box{height:190px;}

.delivery-man img{height:220px;}

.get-in-touch-bg{padding:15px 15px 0;}

.get-touch-field{height:40px;}

.get-touch-txtArea{height:70px;}

.get-in-touch-bg h3{font-size:20px;}

.get-in-touch-bg{height:670px;}

.solutionImg img{height: 230px;}

.solution-contArea h4{font-size:18px;}

.solution-contArea p{font-size:15px; line-height:24px;}

.solution-contArea{height:640px;}

.our-solution-bg{background-position:100% 70%; background-size:85% 90%;}

.dynamic-text{font-size:35px;}

}





@media only screen and (max-width:767px){

.nav{top:0px; height:52px;}

.nav .logo{width:50%; margin-top:6px;}

.get-quors{margin-top:1px;}

.trns-soluImg-01{margin-left:4%;}

.trns-soluImg-02{right:28px; top:10%;}

.years{width:71%; right:15px;}

.get-touch-bg-overlay h3{text-align:center;}

.get-touch-bg-overlay h4{text-align:center; padding-right:0%;}

.logistic-capa-bg-overlay{padding:30px 0;}

.logistic-capa-bg-overlay h6{text-align:center;}

.logistic-capa-bg-overlay h2{text-align:center;}

.logistic-capa-bg-overlay h5{text-align:center;}

.counter{width:33.30%; float:left; height:155px; border-top:solid 1px var(--white);}

.explr-al{height:190px; padding-top:17%;}

.pricing-tabs .tabs{width:100%; display:block; margin-bottom:20px; 

  background-size: 3px 240px;}

.pricing-tabs .radio-tabs .panels{width:100%; display:block;}

.pricing-tabs .radio-tabs{flex-flow:row wrap;}

.pricing-tabs .tabs h2{text-align:center;}

.pricing-tabs .tabs h4{text-align:center;}

.pricing-tabs .radio-tabs .panels{margin-left:0px;}

.work-procs-box{width:70%; height:350px; margin:0 auto;}

.procesing-number{left:85px; bottom:10px;}

.event-text-box{position:inherit; right:0px; bottom:0px; margin-top:15px;}

.eventImg-02 img{height:130px;}

.event h5{text-align:center;}

.event h2{text-align:center;}

.event{padding-bottom:0px;}



.clnt-sys .owl-carousel .owl-nav .owl-prev{left:80%; top:85%;}

.clnt-sys .owl-carousel .owl-nav .owl-next{right:0%; top:85%;}

.testimonial-box p{font-size:15px; text-align:center;}

.star{text-align:center;}

.testmnl-bg h2{font-size:30px;}

.testmnl-bg h4{font-size:25px;}

.testmnl-bg h4 dd{width:130px;}

.tabs label{width:35%;}

.fd-mnu-box img{height:190px;}

.glary .owl-carousel .owl-nav .owl-next{right:38.5%;}

.fd-mnu-box-bg strong{font-size:13px;}

.menu-bg p{font-size:12px;}

.ftr-logo{width:25%; margin:0 auto;}

footer p{text-align:center;}

ul.query{text-align:center;}

ul.query li{width:fit-content; display:inline-block; padding:0 10px;}

ul.locate{text-align:center;}

ul.locate li{width:fit-content; display:inline-block; padding:0 20px 0 25px;}



.transport-box img{height:300px;}

.logist{width:100%;}

.hlp-busi-box{width:64%; position:relative; left:-20px;}

.transport-box .air-flght span{font-size:16px;}

.logistic-map-bg{width:80%; height:150px;}

.logist .owl-carousel .owl-nav .owl-prev{top:80%; left:34%;}

.logist .owl-carousel .owl-nav .owl-next{top:80%;}

.drivn-integrty h2{font-size:25px; padding:0;}

.drivn-integrty p{padding:0;}

.driven-box img{height:300px;}

.driven-box h5{font-size:25px; text-align: center;}

.driven-box h6{text-align:center;}

.inside-banner h1{font-size:30px;}

.inside-banner{height:100%; padding:15% 5% 0;}

.inside-banner-bg{height: 95vh;}

.inside-banner p{padding:0;}

.msn-vsn-contArea h2{font-size:30px; text-align:center;}

.msn-vsn-contArea p{text-align: center;}

.msn-vsnImg img{height:320px;}

.msn-vsnImg{height:370px;}

.boxesImg{width:50px; margin:0 auto;}

.boxes strong{text-align: center; padding-right:0;}

.boxes span{text-align: center;}

.boxes a{width:fit-content; display:block; margin: 0 auto;}

.boxes{height:auto;}

.global ul li{height:80px; padding-left:84px;}

.global ul li dd{height:80px;}

.global ul li dd img{ border:solid 2px var(--white);}

.gbl-slide-box{padding:25px;}

.gbl .owl-carousel .owl-nav .owl-prev{left:69%;}

.logistic-solutionImg img{height:350px;}

.lgs-year{height:auto; padding:25px 0; text-align:center;}

.logistic-solution-contArea p{text-align:center;}

.ur-odr ul li h5{font-size:18px; text-align:center;}

.ur-odr ul li h4{font-size:50px; text-align:center;}

.ur-odr ul li h6{font-size:50px; text-align:center;}

.transprt-cargoImg{height:220px;}

.tips-tricks-overlay h2{font-size:25px;}

.event p{text-align: center;}



.enquiry-bg h4{text-align: center;}

.enquiry-bg span{text-align: center;}

.enquiry-bg dd{margin:0 auto;}

.enquiry-bg a{text-align:center;}

.enquiry-bg{height:350px; }

.enquiry-bg dd{left:0; right: 0; bottom:30px;}



.blog-box{height:620px;}

.blog-box h4{text-align:center;}

.blog-box p{text-align:center;}

.blog-box a{right:0; margin:0 auto;}

.blog-box ul li{text-align:center;}

.lst-post ul li{width:100%; display:block; margin-right:0px;}



.get-in-touch-bg{padding:20px 20px 40px;}

.our-solu h2{font-size:30px;}

.our-solu h5{font-size:15px;}

.our-solution-bg{background-position:100% 100%; background-size:100% 100%;}

.our-solu-box img{width:40px!important;}

.our-solu-box{padding:15px 15px 0; height:300px;}

.our-solu-box h4{font-size:16px;}

.ur-solu .owl-theme .owl-nav{width:80px; height:35px; bottom:-40px;}

.ur-solu .owl-carousel .owl-nav .owl-prev{width:10px; height:17px; top:-6px;}

.ur-solu .owl-carousel .owl-nav .owl-next{width:10px; height:17px; top:-28px;

left:65%;}

.our-solu-box a{left:15px;}

.pricing-tabs .radio-tabs .panel img{height:370px;}

.box-01{position:inherit; width:100%; z-index:0;}

.banner-contArea h1{font-size:22px;}

.banner-contArea{padding-right:5%;}

.banner-contArea h6{font-size:15px; line-height:25px;}

.home-video{margin-top:50px;}

}





#hamburger {

  width: 30px;

  position: relative;

  margin: auto;

  -webkit-transform: rotate(0deg);

  -moz-transform: rotate(0deg);

  -o-transform: rotate(0deg);

  transform: rotate(0deg);

  -webkit-transition: .5s ease-in-out;

  -moz-transition: .5s ease-in-out;

  -o-transition: .5s ease-in-out;

  transition: .5s ease-in-out;

  cursor: pointer;

}



#hamburger span {

  display: block;

  position: absolute;

  height: 5px;

  width: 100%;

  background: #fff;

  border-radius: 9px;

  opacity: 1;

  left: 7px;

  -webkit-transform: rotate(0deg);

  -moz-transform: rotate(0deg);

  -o-transform: rotate(0deg);

  transform: rotate(0deg);

  -webkit-transition: .25s ease-in-out;

  -moz-transition: .25s ease-in-out;

  -o-transition: .25s ease-in-out;

  transition: .25s ease-in-out;

}



#hamburger span:nth-child(1) {

  top: 0px;

}



#hamburger span:nth-child(2) {

  top: 11px;

}



#hamburger span:nth-child(3) {

  top: 22px;

}



#hamburger.open span:nth-child(1) {

  top: 11px;

  -webkit-transform: rotate(135deg);

  -moz-transform: rotate(135deg);

  -o-transform: rotate(135deg);

  transform: rotate(135deg);

}



#hamburger.open span:nth-child(2) {

  opacity: 0;

  left: -30px;

}



#hamburger.open span:nth-child(3) {

  top: 11px;

  -webkit-transform: rotate(-135deg);

  -moz-transform: rotate(-135deg);

  -o-transform: rotate(-135deg);

  transform: rotate(-135deg);

}



.sitenavigation ul {

  margin: 0;

  padding: 0;

  float: right;

}

.sitenavigation li {

  list-style-type: none;

  padding: 0;

  margin: 0;

  display: inline-block;

  margin-left: -4px;

  line-height: 20px;

}

.sitenavigation li.nav-dropdown:hover > a {

  color:var(--secondary);

}

.sitenavigation li a {

  color: #758283;

  text-decoration: none;

  display: block;

  padding: 11px 14px;

  font-size: 0.9375em;

  -webkit-tap-highlight-color: transparent;

}

.sitenavigation li a.nav-path-selected, .sitenavigation li a.linkclicked {

  color: white;

  background-color: #ECECEC;

}

.sitenavigation li a.nav-selected {

  background-color: #777;

  color: #000;

}

.sitenavigation li a:hover {

  color:var(--secondary);

}

.sitenavigation li.clicked > ul {

  display: block;

}

.sitenavigation li ul {

  display: none;

  position: absolute;

  min-width: 200px;

  max-width: 300px;

  padding: 0;

  margin: 0;

}

.sitenavigation li ul a {

  background-color: #dfdfdf;

  font-size: 0.8125em;

}

.sitenavigation li ul li {

  float: none;

  display: block;

  margin: 0;

}

.sitenavigation li ul ul {

  left: 100%;

  margin-top: -40px;

}

.sitenavigation li ul ul a {

  background-color: lightgray;

}

.sitenavigation .nav-dropdown:hover > a, .sitenavigation .nav-dropdown.clicked > a {

}



.no-js .sitenavigation li:hover > ul {

  display: block !important;

}



.menu-icon {

  display: none;

}



@media (max-width: 993px) {

  .navbar {

    width:50%;

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    max-width: 100%;

    z-index: 1;

  }

  .navbar .logo {

    float: right;

    font-weight: 800;

    padding: 5px;

    margin: 10px;

  }

  .navbar .menu-icon {

    width: 30px;

    height: 25px;

    display: block;

    -webkit-tap-highlight-color: transparent;

    padding-left:15px;

    cursor: pointer;

  }

  .navbar .sitenavigation ul {

    display: none;

    max-width: none !important;

  }

  .navbar .sitenavigation li {

    float: none;

    display: block;

    margin: 0;

    padding: 0;

  }

  .navbar .sitenavigation.is-tapped > ul {

    display: block;

    position: absolute;

    margin: 0;

    background-color:var(--primary);

    bottom:41px;

    right: 0;

    left: 0;

    z-index: 100;

    padding: 0;

    height: 100vh;

    padding-top:80px;

    overflow:auto;

    width:220px;

  }

  .navbar .sitenavigation.is-tapped > ul a {

    width: 100%;

    margin: 0;

    display: block;

    font-size:16px;

    padding-top: 10px;

    padding-bottom: 10px;

    padding-left: 20px;

    padding-right: 20px;

    height: auto;

    color:var(--white);

    float: none;

    border: none !important;

    -webkit-font-smoothing: antialiased;

    -webkit-tap-highlight-color: transparent;

  }

  .navbar .sitenavigation.is-tapped > ul a:hover {

    color:var(--secondary);

  }

  .navbar .sitenavigation.is-tapped > ul li {

    width: 100%;

    -webkit-tap-highlight-color: transparent;

  }

  .navbar .sitenavigation.is-tapped > ul li li {

    background-color: transparent!important;

  }

  .navbar .sitenavigation.is-tapped > ul ul {

    display: none;

    width: 100%;

    z-index: 200;

    border: none;

    margin-left: 0;

    padding: 0;

    position: relative !important;

  }

  .navbar .sitenavigation.is-tapped > ul ul ul {

    clear: both;

    left: 0;

    margin-top: 0;

    padding-bottom:15px;

  }

  .navbar .sitenavigation.is-tapped > ul ul li {

  }

  .navbar .sitenavigation.is-tapped > ul ul li li a {

    background-color:transparent!important;

    padding-left:40px;

    line-height:6px;

    color:var(--secondary);

    font-weight:600;

  }

  .navbar .sitenavigation.is-tapped > ul ul a {

    background-color:transparent!important;

    font-size: 1em;

    padding-left: 20px;

  }

  

  .navbar .sitenavigation.is-tapped > ul li.nav-dropdown {

    cursor: pointer;

  }

  .navbar .sitenavigation.is-tapped > ul li.nav-dropdown > a {

    width: 80%;

  }

  .navbar .sitenavigation.is-tapped > ul li.nav-dropdown:after {

    content: "";

    position: absolute;

    padding: 0;

    display: block;

    width: 20%;

    right: 0;

    margin-top: -35px;

    text-align: center;

    font-size: 16px;

    font-weight: 700;

    padding-top: 10px;

    padding-bottom: 10px;

    background:url(../images/chevron-icon.png) no-repeat 60% 100%;

    background-size:12px 7px;}

  .navbar .sitenavigation.is-tapped > ul li.expanded:after {

    content: "";

    position: absolute;

    padding: 0;

    display: block;

    width: 20%;

    right: 0;

    margin-top: -35px;

    text-align: center;

    font-size: 16px;

    font-weight: 700;

    padding-top: 10px;

    padding-bottom: 10px;

    background:url(../images/chevron-icon.png) no-repeat 60% 100%;

    background-size:12px 7px;}

   

  .workImg-01 img{height:140px;}

  .workImg-02 img{height:220px;}

   .inside-banner{height:100%;}

   .inside-banner-overlay{padding:50px 0px;}

   #content > div{padding-left:20px;}

   .ur-serv ul li{width:49%;}

   .ur-serv ul li label dd{font-size:13px;}

   .ur-serv ul li label span{font-size:13px;}

  

}





@media only screen and (max-width:480px){

.nav{height:51px;}

.nav .logo{width:73%; margin-top:12px;}

.banner-contArea h1{font-size:20px; text-align: center;}

.banner-contArea h3{font-size:17px; text-align: center;}

.banner-contArea h6{font-size:14px; line-height:20px; text-align: center;}

.videoembed{height:64vh;}

#target{top:50px;}

.trns-soluImg-01 img{height:220px; border-radius:20px;}

.trns-soluImg-02{width:49%; right:21px; top:0%;}

.trns-soluImg-02 img{height:230px; border-radius:20px;}

.years{width:100%; right:-4px; bottom:-56px; height:59px; padding:10px;}

.years h3{font-size:25px;}

.years h4{font-size:11px;}

.trns-solu-contArea h2{font-size:20px; padding: 0 5%;}

.logistic-bg{padding:10px;}

.logistic-bg ul li strong{font-size:17px; padding-top:1px;}

.logistic-bg ul li{padding-left:54px;}

.our-solu{padding:0;}

.our-solu h5{font-size:15px;}

.our-solu h2{font-size:20px;}

.our-solu p{line-height:22px;}

.tabset > input:checked + label{margin-bottom:10px;}

.our-solu-box{padding:20px; box-shadow: 0px 0px 5px 0px rgba(186,184,186,1);}

.get-touch-bg-overlay h3{font-size:25px;}

.logistic-capa-bg-overlay h2{font-size:27px;}

.counter h4{font-size:35px;}

.counter h5{font-size:35px;}

.counter h3{font-size:15px;}

.explr-al{width:150px; height:150px; padding-top: 23%;}

.pricing-tabs .radio-tabs .panel .panel-overlay{width:100%;}

.pricing-tabs .radio-tabs .panel .panel-overlay h5{font-size:15px; text-align:center;}

.pricing-tabs .radio-tabs .panel .panel-overlay a{width:fit-content; display:block;

margin:0 auto;}

.ftr-logo{width:45%;}

.testmnl-bg h2{font-size:22px;}

.testmnl-bg h5{font-size:15px;}

.clientImg{height:120px;}

.clientImg img{top:12px; left:11px;}

.qutation{height:120px;}

.clnt-sys .owl-carousel .owl-nav .owl-prev{width:30px; height:30px; left:73%;}

.clnt-sys .owl-carousel .owl-nav .owl-next{width:30px; height:30px;}

.star i{font-size:15px;}

.tabs label{width:43%; height:35px; line-height:32px; font-size: 15px;}

.tabs input[type="radio"]:checked + label dd{width:100%; height:35px; line-height:32px;}

.fd-mnu-box img{height:270px;}

.glary .owl-carousel .owl-nav .owl-prev{left:32%;}

.glary .owl-carousel .owl-nav .owl-next{right:30%;}

.fd-mnu-box-bg strong{font-size:17px;}

.menu-bg p{font-size:15px;}

.inside-banner h1{font-size:22px;}

a.enqury-now{font-size:17px; padding:8px 25px;}

ul.breadcum li{font-size:14px;}

ul.breadcum li a{font-size:14px;}

.inside-banner{height:100%; padding:25% 5% 0;}

.msn-vsnImg img{height:250px; top:18px;}

.msn-vsnImg{height: 289px;}

.page-hdr-txt{font-size:25px;}

.page-hdr-sub-txt{font-size:15px; line-height:25px; padding: 0;}

.boxes strong{font-size:18px;}

.boxes span{font-size:16px; line-height:25px;}

.logistic-map-bg{width:90%;}

.logist .owl-carousel .owl-nav .owl-prev{left:30%;}

.logist .owl-carousel .owl-nav .owl-next{right:34%;}

.hlp-busi-box{width:85%; font-size:18px; line-height:30px;}

.logist{width:90%; top:100px;}

.driven-box img{height:220px;}

.drivn-integrty h2{font-size:20px;}

.driven-box h5{font-size:20px;}

.driven-box{box-shadow: 0px 0px 5px 0px rgba(173,173,173,1);}

.inside-banner-bg{height:auto;}

.inside-banner{padding-bottom:25px;}

.shipping-bg-overlay h2{font-size:25px; padding:0;}

.shipping-bg-overlay p{line-height:25px; padding: 0;}

.our-solu-box img{width:45px; margin:0 auto;}

.our-solu-box h4{font-size:18px; text-align:center;}

.our-solu-box h6{line-height:25px; text-align:center;}

.our-solu-box a{margin:0 auto; left:0; right:0;}

.global h2{font-size:25px;}

.global ul li{width:100%; padding-top: 29px;}

.global ul li dd{width:28%;}

.global ul li{padding-left:95px;}

.gbl-slide-box h4{font-size:25px;}

.gbl-slide-box h5{font-size:17px; line-height:28px;}

.gbl .owl-carousel .owl-nav .owl-prev{left:56%;}

.gbl .owl-carousel .owl-item{padding-bottom:30px;}

.gbl .owl-carousel .owl-nav .owl-prev{width:35px; height:35px; top:81%; left:60%;}

.gbl .owl-carousel .owl-nav .owl-next{width:35px; height:35px; top:81%;}

.logistic-solutionImg img{height:300px;}

.logistic-solution-contArea h2{font-size:20px;}

.lgs-year h6{font-size:35px;}

.ur-odr ul li h4{font-size:30px;}

.ur-odr ul li h6{font-size:30px;}

.ur-odr ul li h5{font-size:15px;}

.ur-odr ul li{padding:0 5px;}

.event-text-box h6{text-align:center;}

.event-text-box a{margin:0 auto;}

.enquiry-bg{height:300px;}



.blog-box img{height:250px;}

.blog-box h4{text-align:center;}

.blog-box p{text-align:center;}

.blog-box ul li{text-align:center;}

.blog-box a{width:130px; height:40px; line-height:40px; left:0; right:0;

margin:0 auto;}

.lst-post ul li{width:100%; display:block; margin-right: 0px;}

.blog-single ul li span{font-size:16px;}

.blog-box ul li span{font-size:13px;}

.blog-box ul li span i{font-size:14px;}

.blog-single img{height:200px;}

.blog-single ul li span{font-size:13px; padding-right:10px;}

.blog-single ul li span i{font-size:14px;}

.blog-single h4{font-size:17px;}

.blog-single h3{font-size:20px;}

.blog-single p{font-size:14px; line-height:25px;}

ul.blog-txt li{font-size:14px;}

.pst-cmnt p{font-size:13px;}

.pst-cmnt ul li strong{font-size:15px;}

.blog-author img{height:192px;}

.blg-frm-fld{font-size:14px; height:40px;}

.blg-frm-fld::placeholder{font-size:14px;}

.blg-txt-area{height:100px; padding:10px; font-size:14px;}

.blg-txt-area::placeholder{font-size:14px;}



.pricing-tabs #radio1:checked ~ .tabs #first-tab,

.pricing-tabs #radio2:checked ~ .tabs #second-tab,

.pricing-tabs #radio3:checked ~ .tabs #third-tab,

.pricing-tabs #radio4:checked ~ .tabs #fourth-tab,

.pricing-tabs #radio5:checked ~ .tabs #fifth-tab,

.pricing-tabs #radio6:checked ~ .tabs #six-tab,

.pricing-tabs #radio7:checked ~ .tabs #seven-tab,

.pricing-tabs #radio8:checked ~ .tabs #eight-tab,

.pricing-tabs #radio9:checked ~ .tabs #nine-tab,

.pricing-tabs #radio10:checked ~ .tabs #ten-tab,

.pricing-tabs #radio11:checked ~ .tabs #eleven-tab,

.pricing-tabs #radio12:checked ~ .tabs #twelve-tab,

.pricing-tabs #radio13:checked ~ .tabs #thirteen-tab,

.pricing-tabs #radio14:checked ~ .tabs #fourteen-tab,

.pricing-tabs #radio15:checked ~ .tabs #fifteen-tab

{background-position:0 9px;}

.pricing-tabs .tabs{background-size:3px 265px; background-position:7px 100%;}

.work-procs-box{height:250px;}

.procesing-number{left:49px; bottom:2px;}

.working-process p{text-align:center;}

.get-quors{padding:0 10px;}

.working-process-bg h2{font-size:25px;}

.working-process-bg h5{font-size:17px;}

.menu-bg p{padding:0;}

.menu-bg h2{font-size:30px;}

.inside-banner p{text-align:center;}



.delivery-man{top:5px;}

.delivery-man img{height:175px;}

.export-box{padding:0 10px;}

.export-box img{width:25px; height:25px;}

.export-box h5{margin-bottom:5px!important;}

.fast-box{padding:0 10px;}

.fast-box img{width:25px; height:25px;}

.fast-box h5{margin-bottom:5px!important;}

.get-in-touch-bg{height:auto;}

.solutionImg-02 img{height:150px;}

.tabset > label{margin-bottom:8px;}

.tab-panel{padding:0px 0 60px;}

.ur-solu .owl-theme .owl-nav{bottom:-60px;}

.dynamic-text{font-size:30px;}

.home-video{height:65vh; margin-top:0px; wi}

.banner-contArea{height:50%; padding:10px 0 0;}

.banner-contArea h3{font-size:14px;}

.banner-contArea h1{font-size:17px;}

}



@media only screen and (max-width:375px){

.nav .logo{margin-top:15px;}

#target{top:50px;}

.blog-box a{position:inherit; margin-top:20px;}

.blog-box{height:auto;}

.work-procs-box{height:210px;}

.procesing-number{left:29px; bottom:2px;}



.export-box h5{font-size:15px;}

.export-box h6{font-size:13px; line-height:18px;}

.export-box img{width:22px; height:22px;}

.fast-box h5{font-size:15px;}

.fast-box h6{font-size:13px; line-height:18px;}

.fast-box img{width:22px; height:22px;}

.delivery-man{top:10px;}

.delivery-man img{height:165px;}

.solutionImg img{height:200px;}

.solution-contArea h4{font-size:16px;}

.solutionImg-02 img{height:130px;}

.play-button-wrapper #circle-play-b img{width:50px; height:50px;}

.our-solu-box img{width:60!important;}

.pricing-tabs .tabs{background-size: 3px 310px;}

.pricing-tabs .radio-tabs .panel img{height:410px;}

.dynamic-text{font-size:22px;}

.home-video{height:58vh;}

.banner-contArea h6{font-size:12px; line-height:15px;}

.banner-contArea{height:57%;}

}









