@font-face {
    font-family: 'emirates';
    src: url('../fonts/Emirates-Medium.ttf')  format('truetype')
}

*, h1, h2, h3, h4, h5, h6, p, ul, ol {
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6{
    font-family: 'emirates', sans-serif;
}

html {
    font-size: 15px;
}

body {
    font-size: 100%;
    box-sizing: border-box;
    font-family: 'emirates', sans-serif;
    color: #222;
    letter-spacing: .5px;
}
:root {
  --primary-color:#004464;
  --secondary-color:rgb(243, 205, 107);
}

section {
    padding: 70px 0;
}

.p-0 {
    padding: 0;
}

.pb-0 {
    padding-bottom: 0;
}

.pt-0 {
    padding-top: 0;
}


.text-yellow{
   color: #d7b576;
} 

.text-white{
    color:#fff;
}

.pb-20{
   padding-bottom: 20px;  
}

.pt-20{
   padding-top: 20px;  
}

a:hover,a:focus{
    text-decoration:none;
    outline:none;
}
 
 .section-title{
     text-transform:capitalize;
 }


/*top bar*/
.top-bar {
    color: var(--secondary-color);
    background: var(--primary-color);
}

.top-bar-list li {
    display: inline;
}
.top-bar-list img{
    width:35px;
}
.top-bar-list a {
    color: var(--secondary-color);
    margin-right: 10px;
    margin-left: 10px;
    /*font-weight:600;*/
}
.top-bar-list .fas, .top-bar-list .far {
    margin-right: 10px;
}

.top-bar-list {
    padding: 5px 0;
}

.sticky {
        position: fixed;
        top: 0;
        width: 100%;
        background:#fff;
        z-index: 4;
        border-bottom:1px solid #fff;
    }
    
   .sticky .navbar-nav > li a{
    line-height: 3;
    padding-top: 18px;
    padding-bottom: 18px;
}

.sticky  .navbar-brand > img {
    height: 100px;
    transform: translateY(-20px);
}


/* navbar */

.navbar {
    margin-bottom: 0;
    box-shadow: 0 15px 40px -20px rgba(40, 44, 63, .35);
    background-color: var(--primary-color);
    border-radius: 0;
    min-height: 80px;
    border:none;
}

.navbar-nav > li > a {
    color: var(--secondary-color);
    font-size: 100%;
    line-height: 3;
    text-transform: uppercase;
    font-weight: 700;
    font-family: 'emirates', sans-serif;
    padding-top: 30px;
    padding-bottom: 26px;
}

.navbar-nav > .active > a{
     background-color: transparent !important; 
     color:#fff !important; 
} 

/*.home-menu .home-active a,.about-menu .about-active a{ */
/*    background-color: #eee;*/
/*    color:var(--primary-color);*/
/*}*/
 

.nav > li > a:hover, .nav > li > a:focus,.nav .open > a, .nav .open > a:hover, .nav .open > a:focus  {
      background-color: transparent !important; 
     color:#fff !important; 
}

 
.navbar-toggle {
    border-color: transparent;
    background: #222;
}

.navbar-toggle .icon-bar {
    background-color: #fff;
}

.navbar-brand {
    padding: 0;
}

.navbar-brand > img {
    transform: translateY(-45px);
    height: 145px;
    padding:5px;
} 

.mega_menu .menu_box .icon img { 
    margin-right: 15px;
    margin: auto;
    margin-bottom: 15px;
}

.mega_menu .menu_box .icon {
        border: 1px solid #ddd;
        margin-bottom: 15px; 
     background: #fff;
    border-radius: 100%;
    padding: 10px 20px; 
    display: inline-block;
}

.mega_menu .menu_box .desc{
    text-align:left;
    padding-top:10px;
}
 

.mega_menu .menu_box {
 text-align:center;
    padding: 0px;
}
.mega_menu .content p.desc{
    text-align:justify;
    height:145px;
}
.mega_menu .menu_box .title {
    font-size: 100%;
    margin-bottom: 5px;
    font-weight: 600;
}
.boxMenu2 .title{
    height:45px;
}

.read_more {
    color: #222 !important;
    line-height:normal !important;
}
.read_more span{
    display:inline-block;
    margin-top:5px;
    font-weight:600;
}

 
 
/* //navbar */

/*banner*/
.btn {
  display: inline-block;
  padding: 13px 20px; 
  text-decoration: none;
  position: relative;  
  letter-spacing: 0.4em;
  text-align: center;
  text-indent: 2px;
  text-transform: uppercase;
  transition: color 0.1s linear 0.05s;
}

.btn::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  z-index: 1;
  opacity: 0;
  transition: height 0.2s ease, top 0.2s ease, opacity 0s linear 0.2s;
}

.btn::after {
  transition: border 0.1s linear 0.05s;
}

.trans-btn { 
  color: var(--secondary-color); 
  background: transparent;
  border: 1px solid var(--secondary-color); 
  letter-spacing: 0.4em; 
  transition: color 0.1s linear 0.05s;
}

.trans-btn .btn-inner {
  position: relative;
  z-index: 2;
}
.trans-btn:hover {
  border-color:var(--primary-color) !important;
  transition: color 0.1s linear 0s;
}
.trans-btn:hover::before {
  top: 0;
  height: 100%;
  opacity: 1;
  transition: height 0.2s ease, top 0.2s ease, opacity 0s linear 0s;
}
.trans-btn:hover::after {
  border-color:var(--primary-color);
  transition: border 0.1s linear 0s;
}

.blue-btn { 
  color: var(--primary-color); 
  background: transparent;
  border: 1px solid var(--primary-color); 
  letter-spacing: 0.4em; 
  transition: color 0.1s linear 0.05s;
}

.blue-btn .btn-inner {
  position: relative;
  z-index: 2;
}
.blue-btn:hover {
  color: var(--secondary-color);
  transition: color 0.1s linear 0s;
}
.blue-btn:hover::before {
  top: 0;
  height: 100%;
  opacity: 1;
  transition: height 0.2s ease, top 0.2s ease, opacity 0s linear 0s;
}
.blue-btn:hover::after {
  border-color: var(--primary-color);
  transition: border 0.1s linear 0s;
}

.blue-btn::before { 
  background: var(--primary-color);
}


.slideshow {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 75vh;
  z-index: 1;
}
.slideshow .slideshow-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.slideshow .slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.slideshow .slide {
  display: none;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.slideshow .slide.is-active {
  display: block;
}
.slideshow .slide.is-loaded {
  opacity: 1;
}
.slideshow .slide .caption {
  padding: 0 100px;
}
.slideshow .slide .image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  z-index: 1;
  background-size: cover;
  image-rendering: optimizeQuality;
}
.slideshow .slide .image-container::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.slideshow .slide .image {
  width: 100%;
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.slideshow .slide-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  color: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom:5%;
}
.slideshow .slide .title {
  margin: 0 auto 15px;
  max-width: 1000px;
  font-size: 200%;
  color:var(--secondary-color);
  letter-spacing: 0.35em;
  text-transform: uppercase;
}
.slideshow .slide .text {
  margin: 0 auto;
  max-width: 1000px;
  font-size: 18px;
  line-height: 1.4;
}
.slideshow .slide .btn {
  margin: 0px 0 0;
}
.slideshow .slide .btn:hover{
    border-color:var(--primar-color);
    color:var(--secondary-color);
}
.slideshow .slide .btn::before {
  background:var(--primary-color);
  border-radius:3px;
}
.slideshow .pagination {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  height: 12px;
  cursor: default;
  z-index: 2;
  text-align: center;
}
.slideshow .pagination .item {
  display: inline-block;
  padding: 15px 5px;
  position: relative;
  width: 46px;
  height: 32px;
  cursor: pointer;
  text-indent: -999em;
  z-index: 1;
}
.slideshow .pagination .item + .page {
  margin-left: -2px;
}
.slideshow .pagination .item::before {
  content: "";
  display: block;
  position: absolute;
  top: 15px;
  left: 5px;
  width: 36px;
  height: 2px;
  background: rgba(255, 255, 255, 0.5);
  transition: background 0.2s ease;
}
.slideshow .pagination .item::after {
  width: 0;
  background: #fff;
  z-index: 2;
  transition: width 0.2s ease;
}
.slideshow .pagination .item:hover::before, .slideshow .pagination .item.is-active::before {
  background-color: #fff;
}
.slideshow .arrows .arrow {
  margin: -33px 0 0;
  padding: 20px;
  position: absolute;
  top: 50%;
  cursor: pointer;
  z-index: 3;
}
.slideshow .arrows .prev {
  left: 30px;
}
.slideshow .arrows .prev:hover .svg {
  left: -10px;
}
.slideshow .arrows .next {
  right: 30px;
}
.slideshow .arrows .next:hover .svg {
  left: 10px;
}
.slideshow .arrows .svg {
  position: relative;
  left: 0;
  width: 14px;
  height: 26px;
  fill: var(--secondary-color);
  transition: left 0.2s ease;
}

.desc p{
    font-size:105%;
    padding-bottom:10px;
}

.desc  ul{
    margin-left:15px;
    font-size:105%;
}

.desc{
    padding-top:20px; 
}

.mt-15{
    margin-top:15px;
}

/**/

.about-us .section-title{
    margin-top:30px;
}

.about-us .desc{
    padding-top:30px;
    margin-bottom: 30px;
}

.about-us img{
    position: relative; 
  animation: myfirst 30s infinite;
/*   animation-direction: alternate; */
}

@keyframes myfirst {
  0% { left: 10px; top: 0px;} 
  100%  { left:  110%; top: 0px;}  
} 

.service-hm{
    color: #fff;
    background-color: rgb(243 205 107 / 90%);
    background-image: url(../images/dots-bg.png);
    background-position: center;
   text-align:center;
   padding-bottom:120px;
 }

.service-box{ 
    position:relative;
    color:#fff;
    text-align:center;
    height:400px;
    transition:all 0.8s;
    margin-bottom:20px;
    border:1px solid #fff;
}

.service-box h3{
    font-weight:700;
    margin-bottom:20px;
    color:var(--secondary-color);
    font-size: 130%;
}

.service-box img{
    height:60px;
    margin-bottom:15px;
}

.service-box .service-box-upper{
     color:#fff; 
    padding:20px; 
    position:absolute;
    bottom:0;
       left: 50%;
    transform: translateX(-50%);
    transition:all 0.8s;
}

.service-box:hover .service-box-upper{
     bottom:50%; 
}

.service-box .service-content p{
        margin-bottom: 20px; 
}

.service-box .service-content{ 
    color:#fff; 
    padding:20px; 
    position:absolute;
    bottom:0;
    left:0;
    opacity:0; 
    transition:all 0.8s; 
}

.service-box:hover .service-content{ 
     opacity:1;
}

.air{
    background: linear-gradient(rgba(0,0,0,0.4),rgba(0,0,0,0.4)),url('../images/hm-services/air.jpg');
}
 .air:hover{
    background: linear-gradient(rgb(0 68 100 / 88%) , rgb(0 68 100 / 88%)),url('../images/hm-services/air.jpg');
}

.sea{
    background: linear-gradient(rgba(0,0,0,0.4),rgba(0,0,0,0.4)),url('../images/hm-services/sea.jpg');
}
 .sea:hover{
    background: linear-gradient(rgb(0 68 100 / 88%),rgb(0 68 100 / 88%)),url('../images/hm-services/sea.jpg');
}
.consolidation{
    background: linear-gradient(rgba(0,0,0,0.4),rgba(0,0,0,0.4)),url('../images/hm-services/consolidation.jpg');
}
 .consolidation:hover{
    background: linear-gradient(rgb(0 68 100 / 88%),rgb(0 68 100 / 88%)),url('../images/hm-services/consolidation.jpg');
}
.warehouse{
    background: linear-gradient(rgba(0,0,0,0.4),rgba(0,0,0,0.4)),url('../images/hm-services/warehouse.jpg');
}
 .warehouse:hover{
    background: linear-gradient(rgb(0 68 100 / 88%),rgb(0 68 100 / 88%)),url('../images/hm-services/warehouse.jpg');
}
.value{
    background: linear-gradient(rgba(0,0,0,0.4),rgba(0,0,0,0.4)),url('../images/hm-services/value.jpg');
    background-position: center;
}
 .value:hover{
    background: linear-gradient(rgb(0 68 100 / 88%),rgb(0 68 100 / 88%)),url('../images/hm-services/value.jpg');
}
 .bulk{
    background: linear-gradient(rgba(0,0,0,0.4),rgba(0,0,0,0.4)),url('../images/hm-services/bulk.jpg');
    background-position: center;
}
 .bulk:hover{
    background: linear-gradient(rgb(0 68 100 / 88%),rgb(0 68 100 / 88%)),url('../images/hm-services/bulk.jpg');
}


/******************About Us*********************/

.main-text{ 
  font-size: 250%;
  color: #fff;
  text-align:center;
  margin-top:65px;
  text-transform:uppercase;
  font-weight:600;
}
.bubble{
  position: relative;
  border: 1.5px solid #fff;
  border-radius: 50%;
}

 
.page-header a:hover{
  transition: .3s;
  transform: scale(1.1);
}

.page-header{
    overflow:hidden;
    background:var(--secondary-color);
    margin:0;
    height:180px;
}

.sidebar1{
    margin-bottom:30px;
    border:1px solid #999;
}

.sidebar-title{
     background: var(--primary-color);
     color:var(--secondary-color);
     text-align:center;
     padding:15px;
}
 
.sidebar1 ul, .sidebar-box{
    padding: 20px;
    padding-top:0px;
}

.sidebar1 li{
    padding:10px 0px; 
    list-style:none;
    border-bottom:1px dashed #e0e0e0;
}

.sidebar1 li:last-child{
    border:none;
}

.sidebar1 li a{
     color:#000;
    font-weight: 600;
}

.sidebar-title{
    margin-bottom:15px;
}

 
 
.sidebar2{ 
    color:#222; 
    border:1px solid #999;
    border-top:none;
}


/*why section*/

.why-icon-box{
   margin: auto;
    margin-bottom: 15px;
    border-radius: 100%;
    border: 1px solid var(--secondary-color);
    display: inline-block;
    height: 80px;
    width: 80px;
}

.why-icon-box img{
        width: 50px;
    margin-top: 15px;
    margin-left: 5px;
}

.why-box:hover .why-icon-box{
     border: 1px dashed var(--secondary-color);
     background:var(--primary-color);
}

.why-box:hover img {
    transform: rotate(20deg);
    transition:all 0.8s;
    width: 45px;
}

.why-box:hover h3{
    letter-spacing:1px;
    transition:all 0.8s;
}

.why-box{
    text-align:center;
    padding:1em;
}

.why-box h3{
    font-weight: 700;
    margin-bottom:15px;
}

/****************About Page******************/

.website-list li {
    padding-bottom: 10px;
    font-size: 105%;
    list-style: none;
}

.website-list .fas {
    font-size: 70%;
    margin-right: 10px;
    background:var(--primary-color);
    color: #eee;
    padding: 5px; 
}


/**************Tools page*******************/

.title-bg{
    background:var(--primary-color);
    color:var(--secondary-color);
    text-align:center;
    padding:10px;
    margin-top:20px;
    margin-bottom:30px;
}

.tool-inner hr{
  border-bottom:1px solid #ddd;
  background:#ddd;
}

.tool-inner h5{
   font-weight: 700;
    margin-top:30px;
    font-size: 115%;
}


.tool-inner h4{
    margin-top:30px;
    color:var(--primary-color);
    font-size: 150%;
}

.tool-inner  ul{
    margin-left:20px;
}

.tool-table thead{
    background: #eee;
    color: #222;
}

.tool-class-box{
    text-align:center;
    margin-top:10px;
    padding-top:10px;
    border-top:1px dashed #ddd;
}

.tool-class-box h4{
    margin:10px 0px;
}


.tool-class-box p,.tool-class-box ul{
    text-align:justify;
}
 
/*career page*/

.career-row{
    color: #fff;
    background: url(../images/career-banner.jpg);
    background-position: right;
}

.career-desc{
    text-align:center;
    padding: 120px;
    color:var(--secondary-color);
}

.career-desc p{
    font-size:120%;
}


.career-desc h3{
   margin-top:25px;
}

 
/*contact Us*/

 input , textarea{
    margin-bottom: 15px;
        padding: 10px;
        border:1px solid #222; 
    width:100%;
}
 
 textarea{
    resize: none;
}

.travelo-box.contact-us-box {
    background: #eee; 
}

  
.travelo-box.contact-us-box h4{ 
    padding:15px; 
    background: var(--primary-color);
    text-align:center;
    color:var(--secondary-color);
    font-weight: 700;
    font-size: 150%;
}

.travelo-box.contact-us-box h5{
    color:var(--primary-color);
        font-size: 120%;
    font-weight: 600;
}
 
.contact-address{
    list-style:none;
    color:#222;
     padding: 20px;
}
 
.travelo-box {
    background: #222; 
    margin-bottom: 30px;
}
 
.travelo-box.contact-us-box .contact-address li { 
    padding: 10px; 
}

/*thank you page*/

.thank-you-box{
    border:1px solid #222;
    padding:2em;
    text-align:center;
}

.thank-you-box img {
    width:70px;
    margin-bottom:15px;
}
 

/* footer */

#copyright {
    background-color: #222;
}

#copyright p {
    text-align: center;
    padding: 20px 0;
    color: #fff;
}

#copyright a {
    color: #fff;
}

/* footer */

/* 04 dec 2023 */
.mt-2{
    margin-top:.8rem;
}

li.email p a, li.phone p a{
    color:#000;
    margin-top:10px;
}
.bgSecondary{
    background:var(--secondary-color);
}
.bgPrimary{
    background:var(--primary-color);
}
.service-content .trans-btn:hover{
    background:var(--secondary-color);
}
.service-box .service-content p{
    color:var(--secondary-color);
}
.divider{
    border-color:var(--secondary-color);
}
.textJustify{
    text-align:justify;
}
.career-desc .trans-btn:hover{
    background:var(--secondary-color);
}