@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

*{
    font-family: "Roboto", sans-serif;
    padding: 0;
    margin: 0;
    list-style: none;
    text-decoration: none !important;
}

:root{
    /* --primary-color: #f35525; */
    --primary-color: #ff0000;
    --secodary-color: #00003a;
    --linear-color: linear-gradient(90deg, #ff0000 10%, #1a1a37 90%);
}

h1{
    font-family: "Roboto", sans-serif;
    font-size: 35px;
    font-weight: 600;
}

@media(max-width:768px){
    h1{
        font-size: 26px;
    }
}

h1, h2, h3{
    color: var(--secodary-color);
}

p, span, small{
    font-family: "Outfit", sans-serif;
}

.border-radius{
    border-radius: 13px;
}

.hover-shadow{
    transition: 0.3s ease;
}

.hover-shadow:hover{
    box-shadow: 0px 4px 25px 0px rgba(27, 39, 71, 0.15);
}



/* 
---------------------------------------------
Button Style
--------------------------------------------- 
*/

.rr-btn {
    color: white;
    /* font-family: 'Yantramanav', sans-serif !important; 
    font-size: 16px !important;
    line-height: 26px !important; */
    font-style: normal;
    font-weight: 400;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-transform: capitalize;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 0px;
    position: relative;
    overflow: hidden;
    background: var(--linear-color);
    /* border-radius: 15px; */
    z-index: 5;
    padding: 12.5px 30.099px;
  }
  .rr-btn:before {
    -webkit-transition-duration: 800ms;
    transition-duration: 800ms;
    position: absolute;
    width: 200%;
    height: 200%;
    content: "";
    top: -200%;
    left: 50%;
    -webkit-transform: translateX(-50%) !important;
    transform: translateX(-50%) !important;
    border-radius: 50%;
    z-index: 1;
    background: -webkit-gradient(linear, left top, right top, from(#1a1a37), to(#ff0000)) !important;
    background: linear-gradient(90deg, #1a1a37 10%, #ff0000 90%);
  }
  .rr-btn:after {
    display: block;
    clear: both;
    content: "";
  }
  .rr-btn .btn-wrap {
    position: relative;
    z-index: 1;
    float: left;
    overflow: hidden;
    display: inline-block;
  }
  .rr-btn .btn-wrap .text-one {
    position: relative;
    display: block;
    color: white;
  }
  .rr-btn .btn-wrap .text-one svg, .rr-btn .btn-wrap .text-two svg {
    max-width: 10px;
    margin-left: 3px;
  }
  .rr-btn .btn-wrap .text-two {
    position: absolute;
    top: 100%;
    display: block;
    color: white;
  }
  .rr-btn__primary-color {
    background: var(--rr-theme-primary);
  }
  .rr-btn__white {
    color: white;
    background: var(--rr-common-white);
  }
  .rr-btn__white .text-two {
    color: white !important;
  }
  .rr-btn__background-transparent {
    padding: 11.5px 29.099px;
    background: transparent;
    border: 1px solid rgba(0, 15, 32, 0.1);
  }
  .rr-btn__background-transparent .text-one {
    color: white !important;
  }
  .rr-btn__background-transparent:hover, .rr-btn__background-transparent:focus {
    border-color: transparent !important;
  }
  .rr-btn__text-primary .text-one {
    color: white !important;
  }
  .rr-btn__big-space {
    padding: 12.5px 53px;
  }
  .rr-btn:hover, .rr-btn:focus {
    color: white;
  }
  .rr-btn:hover:before, .rr-btn:focus:before {
    top: -40%;
  }
  .rr-btn:hover .text-one, .rr-btn:focus .text-one {
    -webkit-transform: translateY(-150%);
    transform: translateY(-150%);
  }
  .rr-btn:hover .text-two, .rr-btn:focus .text-two {
    top: 50% !important;
    -webkit-transform: translateY(-50%) !important;
    transform: translateY(-50%) !important;
  }




/* 
---------------------------------------------
Sub Header Style
--------------------------------------------- 
*/

.sub-header {
    background-color: #fff;
    padding: 10px 0px;
    border-bottom: 1px solid #eee;
}
  
.sub-header ul li {
    display: inline-block;
}

.sub-header dl, ol, ul {
    margin-top: 0;
    margin-bottom: 0 !important;
}
  
.sub-header ul.social-links {
    text-align: right;
}
  
.sub-header ul.social-links li {
    margin-left: 8px;
}
  
.sub-header ul.social-links li a {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-color: #cdcdcd;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    color: #fff;
    font-size: 14px;
    transition: all .3s;
}
  
.sub-header ul.social-links li a:hover {
    background-color: #f35525;
}
  
.sub-header ul.info li {
    font-size: 14px;
    color: #7a7a7a;
    border-right: 1px solid #eee;
    margin-right: 25px;
    padding-right: 25px;
}
  
.sub-header ul.info li:last-child {
    margin-right: 0px;
    padding-right: 0px;
    border-right: none;
}
  
.sub-header ul.info li i {
    font-size: 20px;
    color: #f35525;
    margin-right: 8px;
}

@media (max-width: 992px) {
    .sub-header {
      display: none;
    }
}    



/* 
---------------------------------------------
Navbar Style
--------------------------------------------- 
*/

.navbar{
    background-color: white;
}

.navbar-brand h4{
    font-size: 24px;
    color: #131313;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.navbar .nav-link{
    color: rgb(0, 0, 0);
    font-size: 17px !important;
    font-weight: 500 !important;
    transition: .5s all ease-in-out;
} 

.navbar .nav-link:hover{
    color: var(--primary-color) !important;
}

.navbar .nav-item .active{
    color: var(--primary-color) !important;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 17px !important;
    text-transform: none;
    color: black;
    font-weight: 500 !important;
}

@media(min-width:768px){

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
    visibility: visible;
    width: 100%;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 17px;
    text-transform: none;
    color: black;
    font-weight: 500;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: white;
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (min-width: 1280px) and (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
      left: -90%;
    }
  
    .navbar .dropdown .dropdown:hover>ul {
      left: -100%;
    }
}
}

.dropdown .dropdown-menu{
    border-radius: 0px !important;
    border: 1px solid #ffffff !important;
}

.dropdown .dropdown-menu .dropdown-item{
    font-size: 17px;
    font-weight: 400;
    transition: .5s all ease-in;
}

.dropdown .dropdown-menu .dropdown-item:hover{
    color: white !important;
    background-color: var(--secodary-color);
}

.dropdown .dropdown-menu .dropdown-item.active{
    background-color: var(--secodary-color);
    color: white !important;
}

@media(max-width:768px){
    .navbar{
        background-color: rgb(255, 255, 255);
    }
    .dropdown .dropdown-menu{
        border-radius: 0px !important;
        border: 1px solid #e9e8e8 !important;
    }
    .dropdown .dropdown-menu .dropdown-item{
        font-size: 17px;
        font-weight: 400;
    }
    .dropdown .dropdown-menu .dropdown-item:hover{
        color: white;
    }
}

.navbar-toggler{
    border: 0px !important;
    box-shadow: none !important;
    border-radius: 0px !important;
}





#nav-icon1, #nav-icon2, #nav-icon3, #nav-icon4 {
    width: 33px;
    height: 30px;
    position: relative;
    margin: 0px;
    -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;
  }
  
  #nav-icon1 span, #nav-icon3 span, #nav-icon4 span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #131313;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -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;
  }

#nav-icon4 {
}

#nav-icon4 span:nth-child(1) {
  top: 0px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#nav-icon4 span:nth-child(2) {
  top: 12px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#nav-icon4 span:nth-child(3) {
  top: 25px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#nav-icon4.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: -3px;
  left: 9px;
}

#nav-icon4.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

#nav-icon4.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 22px;
  left: 8px;
}



/* 
---------------------------------------------
Page Header Style
--------------------------------------------- 
*/

.bg-breadcrumb {
    background: linear-gradient(#000000d0, #000000a1), url(../imgs/pageheader.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    /* background-attachment: fixed; */
    padding: 200px 0 50px 0;
}

.bg-breadcrumb h3{
    font-size: 55px;
}

@media(max-width:768px){
    .bg-breadcrumb{
        padding: 120px 0 50px 0 !important;
    }
}

.bg-breadcrumb .breadcrumb-item a {
    color: var(--primary-color) !important;
}







/* 
---------------------------------------------
Header Slider Style
--------------------------------------------- 
*/

.main-banner .item {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 220px 20% 320px 20%;
    /* margin-top: 0px; */
}
  
@media(max-width:768px){
    .main-banner .item{
      padding: 160px 20% 250px 20%;
    }
  
    .main-banner .item h2{
      margin-top: 40%;
      width: 100% !important;
      font-size: 25px !important;
      line-height: 35px !important;
    }
    .main-banner .owl-nav .owl-prev i {
        position: absolute;
        left: 15px !important;
    }
      
    .main-banner .owl-nav .owl-next i {
        position: absolute;
        right: 15px !important;
    }
}
  
.main-banner .item-1 {
    background-image: url(../imgs/slider1.jpg);
    background-color: #0000009d;
    background-blend-mode: multiply;
    height: 80vh;
    width: 100%;
}
  
.main-banner .item-2 {
    background-image: url(../imgs/slider2.jpg);
    background-color: #0000009d;
    background-blend-mode: multiply;
    height: 80vh;
    width: 100%;
}
  
.main-banner .item-3 {
    background-image: url(../imgs/slider3.jpg);
    background-color: #0000009d;
    background-blend-mode: multiply;
    height: 80vh;
    width: 100%;
}
  
.main-banner .item span.category {
    background-color: #fff;
    color: #1e1e1e;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    padding: 6px 15px;
    display: inline-block;
    margin-bottom: 30px;
}
  
.main-banner .item span.category em {
    font-style: normal;
    color: #f35525;
}
  
.main-banner .item h2 {
    font-size: 42px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    line-height: 72px;
    width: 50%;
    margin-bottom: 0px;
}
  
.main-banner .owl-dots {
    position: absolute;
    bottom: 60px;
    left: 20%;
}
  
.main-banner .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    background-color: #fff;
    border-radius: 50%;
    margin-right: 10px;
    margin-bottom: 10px;
    transition: all .5s;
}
  
.main-banner .owl-dots .active {
    background-color: #f35525;
}
  
.main-banner .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50px);
}
  
.main-banner .owl-nav .owl-prev i,
.main-banner .owl-nav .owl-next i {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 24px;
    display: inline-block;
    text-align: center !important;
    color: #fff;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    opacity: 1;
    transition: all .3s;
}
  
.main-banner .owl-nav .owl-prev i {
    position: absolute;
    left: 45px;
}
  
  .main-banner .owl-nav .owl-next i {
    position: absolute;
    right: 45px;
}
  
.main-banner .owl-nav .owl-prev i:hover,
.main-banner .owl-nav .owl-next i:hover {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.5);
}



.top-content h5{
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
}




/* 
---------------------------------------------
About Style
--------------------------------------------- 
*/

.about-background{
    background-image: url(../imgs/about-background.jpg);
    height: 100%;
    width: 100%;
    object-fit: cover;
    background-size: cover;
}  

.about-style2-area{
    position: relative;
    display: block;
    /* padding:  ; */
}

.about-style2-text{
    position: relative;
    display: block;
}
.about-style2-text .sec-title {
    padding-bottom: 30px;
}
.about-style2-text .sec-title p{
    margin: 0 0 27px;
}
.about-style2-text .text {
    position: relative;
    display: block;
    border-top: 1px dashed #cccccc;
    padding-top: 24px;
    /* padding-bottom: 35px; */
}
.about-style2-text .text p{
    margin: 0;
}
.about-style2-text .authorised-info{
    position: relative;
    display: block;
}
.about-style2-text .authorised-info .name{
    border-left: 1px solid #ededed;
    padding-left: 20px;
}
.about-style2-text .authorised-info .name h3{
    color: #27282c;
    font-weight: 600;
    margin: 0 0 5px;
}
.about-style2-text  p{
    line-height: 30px;
    margin: 0;
}
.about-style2-text .button{
    position: relative;
    display: block;
    padding-top: 50px;
}

.about-style2-image-box{
    position: relative;
    display: block;
}
.about-style2-image-box .pattern{
    position: absolute;
    top: -110px;
    left: 35px;
    right: 0;
    bottom: -110px;
    background: #ebebeb;
    background-repeat: no-repeat;
    width: 664px;
    height: 765px;
    content: "";
    z-index: -1;
}
@media(max-width:767px){
    .about-style2-image-box .pattern {
        top: -80px !important;
        left: 0;
        right: 0;
        bottom: -80px !important;
        width: 100%;
        height: auto;
    }
}
.about-style2-image-box .image{
    position: relative;
    display: block;
    max-width: 470px;
    width: 100%;
    margin: 0 auto;
    z-index: 3;
}
.about-img{
    height: 600px !important;
    width: 100%;
    object-fit: cover;
}
.about-style2-image-box img{
    width: 100%;
}
.about-style2-image-box .overlay-box{
    position: absolute;
    left: 40px;
    bottom: 30px;
    right: 40px;
    background: #ffffff;
}
.about-style2-image-box .overlay-box:before {
    font-family: FontAwesome;
    position: absolute;
    top: -20px;
    left: 30px;
    content: "\f0d8";
    color: #ffffff;
    font-size: 50px;
}

.about-style2-image-box .overlay-box .title {
    position: relative;
    display: block;
    float: left;
    padding: 23px 0 23px;
    padding-left: 70px;
}
.about-style2-image-box .overlay-box .title h1{
    color: #555555;
    font-size: 48px;
    font-weight: 500;
    filter: alpha(opacity=50);
    font-family: 'Rubik', sans-serif;
}
.about-style2-image-box .overlay-box .title h1 span{
    position: relative;
    display: inline-block;
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

@media(max-width:768px){
    .about-style2-image-box {
        margin-top: 120px !important;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1880px) {  
    .about-style2-image-box {
        margin-top: 170px;
    }    
    .about-style2-image-box .pattern {
        top: -110px;
        left: 0;
        right: 0;
        bottom: -110px;
        width: 100%;
        height: auto;
    }  
}

@media only screen and (min-width: 768px) and (max-width: 991px) { 
    .about-style2-image-box {
        margin-top: 170px;
    }    
    .about-style2-image-box .pattern {
        top: -110px;
        left: 0;
        right: 0;
        bottom: -110px;
        width: 100%;
        height: auto;
    }  
}    

@media only screen and (max-width: 767px) { 
    .about-style2-image-box {
        margin-top: 170px;
    }    
    .about-style2-image-box .pattern {
        top: -110px;
        left: 0;
        right: 0;
        bottom: -110px;
        width: 100%;
        height: auto;
    }    
    .about-style2-image-box .overlay-box {
        left: 40px;
        bottom: 30px;
        right: 40px;
        max-width: 300px;
        margin: 0 auto;
    }       
    .about-style2-image-box .overlay-box .title {
        float: none;
        padding: 23px 0 20px;
        padding-left: 20px;
    }     
}    

.abt-icon{
    font-size: 25px;
    color: var(--primary-color);
}




/* 
---------------------------------------------
Service Style
--------------------------------------------- 
*/

.service-card{
    background-color: #f9f9f9;
}

.serv-icon{
    font-size: 60px;
    /* color: var(--secodary-color); */
}



/* 
---------------------------------------------
Logstics Style
--------------------------------------------- 
*/

.logi-card img{
    height: 250px;
    width: 100%;
    object-fit: cover;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.logi-text{
    border-bottom: 1px solid #00000021;
    border-left: 1px solid #00000021;
    border-right: 1px solid #00000021;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
}

.logi-card:hover .logi-text{
    border-color: transparent;
}


.logistics h5{
    color: var(--secodary-color);
}






/* 
---------------------------------------------
Gallery Style
--------------------------------------------- 
*/


.gallery .gallery-item {
    overflow: hidden;
    border-right: 4px solid white;
    border-bottom: 4px solid white;
}
  
.gallery .gallery-item img {
    transition: all ease-in-out 0.4s;
}
  
.gallery .gallery-item:hover img {
    transform: scale(1.1);
}
  
.gallery-img{
    height: 450px;
    width: 100%;
    object-fit: cover;
    background-size: cover;
}
  
@media(max-width:768px){
    .gallery-img{
        height: 600px !important;
    }
}



/* 
---------------------------------------------
Contact Style
--------------------------------------------- 
*/

.contact .info-box{
    background-color: #f5f5f5;
    padding: 30px 20px;
}

.contact .ctn-icon{
    font-size: 20px;
    color: white;
    background-color: var(--secodary-color);
}

input,textarea{
    border-radius: 0px !important;
    box-shadow: none !important;

}
input:focus{
    border-color: var(--primary) !important;
}

textarea:focus{
    border-color: var(--primary) !important;
}





.form-bg{
    background-image: url(../imgs/formbg.jpg);
    height: 100%;
    width: 100%;
    object-fit: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #00080ec0;
    background-blend-mode: multiply;
    background-attachment: fixed;
}




/* 
---------------------------------------------
Footer Style
--------------------------------------------- 
*/

.footer{
    background-color: #000e18;
    position: relative;
}

.footer .imgs{
    position: absolute;
    content: "";
    right: 0%;
    top: 0%;
}

.footer h4{
    font-size: 24px;
    font-weight: 500;
}

.footer .quick-links a i{
    color: white;
    font-size: 13px;
}

.footer .quick-links a{
    color: white;
    transition: .5s all ease-in-out;
}

.footer .quick-links a:hover{
    color: var(--primary-color) !important;
    margin-left: 7px;
}

.footer .contact-details i{
    color: white;
    font-size: 13px;
}

.footer .contact-details span{
    color: white;
}

.footer .social-media{
    font-size: 19px;
    color: white;
    border: 1px solid white;
    padding: 10px;
    border-radius: 30px;
    transition: .5s all ease-in-out;
}

.footer .social-media:hover{
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: rgb(255, 255, 255);
}

.footer .copyright a{
    transition: .5s all ease-in-out;
}

.footer .copyright a:hover{
    color: var(--primary-color) !important;
}


.whats a{
    transition: .5s ;
    
  }
  
  .whats span{
    font-size: 0px;
     word-spacing: -40px;
    transition: .5s ;
   
  }
  
  .whats:hover span{
   font-size: 13px;
   word-spacing:  0px;
    transition: .5s all;
    /* margin-right: 50px; */
  }