@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap');

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: sans-serif;

}
::-moz-selection {
  background: #000;
  color: #fff;
  text-shadow: none;
}
::selection {
  background: #000;
  color: #fff;
  text-shadow: none;
}
.ptb-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

:root {
    --bg-color: #00a9a4;
    --link-color: #030734;
    --p-color: #666666;
}

.container:before {
    content: "";
    position: absolute;
    display: table;
    clear: both;
}

.row:before {
    content: "";
    position: absolute;
    display: table;
    clear: both;
}
.preloader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background-color: #ffffff;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(../images/preloader.gif);
    background-size: 179px;
}
input,
select,
textarea {
    outline: none;
    width: 100%;
}


a {
    text-decoration: none;

}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

p {
    font-size: 15px !important;
    line-height: 1.7;
    color: #666;

}

.ptb-50 {
    padding-top: 50px;
    padding-bottom: 50px;
}

html {
    height: 100%;

}

html,
body {

    width: 100%;
    overflow-x: hidden;
}

._____wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    position: relative;
    height: 100%;

}

::-webkit-scrollbar {
    width: 9px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--bg-color);

    border-radius: 1px;
}

/*BACK TO TOP BUTTON CSS START*/

#button {
    display: inline-block;
    background-color: var(--bg-color);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    text-align: center;
    border-radius: 34px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    -webkit-transition: background-color .3s, opacity .5s, visibility .5s;
    -o-transition: background-color .3s, opacity .5s, visibility .5s;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
    z-index: 1000;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

#button::after {
    content: "\f077";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 22px;
    line-height: 43px;
    color: #fff;
}

#button.show {
    opacity: 1;
    visibility: visible;
}

#button.bounce {
    -webkit-animation: float 1500ms infinite ease-in-out;
            animation: float 1500ms infinite ease-in-out;
}

#button.open {
    bottom: 30px;
}

@-webkit-keyframes float {
    0% {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }

    50% {
        -webkit-transform: translateY(-5px);
                transform: translateY(-5px);
    }

    100% {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }
}

@keyframes float {
    0% {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }

    50% {
        -webkit-transform: translateY(-5px);
                transform: translateY(-5px);
    }

    100% {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }
}

/*BACK TO TOP BUTTON CSS ENDS*/


/*HEADER CSS START*/
.header_wrapper {
    padding: 5px 0;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 3;
    border-bottom: 1px solid #ebebeb;
    border-top: none;
}

.header_wrapper.sticky {
    position: fixed !important;
    background: rgba(255, 255, 255, 0.8);
    -webkit-box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    top: 0;
    left: 0;
    -webkit-animation: 0.6s ease-in-out 0s normal none 1 running fadeInDown;
            animation: 0.6s ease-in-out 0s normal none 1 running fadeInDown;
    z-index: 99999;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

.menu_links_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.top_logo a img {
    width: 100px;
}

.right_menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.right_menu ul li {
    margin-right: 2em;
}

.right_menu ul li a.underline:after {
    -webkit-transform-origin: left center;
        -ms-transform-origin: left center;
            transform-origin: left center;
    -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
            transform: scale(1, 1);
}

.right_menu ul li:last-child {
    margin-right: 0;
}

.right_menu ul li a.itemActive {
    color: var(--bg-color);
}

.right_menu ul li a {
    font-size: 17px;
    font-family: arial;
    color: var(--link-color);
    position: relative;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.right_menu ul li a:hover {
    color: var(--bg-color);
}

.right_menu ul li .underLink:after {
    content: '';
    width: 50%;
    height: 2px;
    position: absolute;
    bottom: -7px;
    left: 0;
    border-radius: 4px;
    background-color: var(--bg-color);
    -webkit-transform: scale(0, 1);
        -ms-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: left center;
        -ms-transform-origin: left center;
            transform-origin: left center;
    -webkit-transition: -webkit-transform 500ms ease;
    transition: -webkit-transform 500ms ease;
    -o-transition: transform 500ms ease;
    transition: transform 500ms ease;
    transition: transform 500ms ease, -webkit-transform 500ms ease;
}

.right_menu ul li:hover .underLink:after {
    -webkit-transform-origin: left center;
        -ms-transform-origin: left center;
            transform-origin: left center;
    -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
            transform: scale(1, 1);
}

.menu_items {
    position: relative;
}

.sub_menu {
    position: absolute;
    display: block !important;

    top: 48px;
    z-index: 99999;
    width: 136px;
    background: white;
    /* left: 298px; */
    /* box-shadow: 5.66px 0px 12.44px 0px #00000014; */
    -webkit-box-shadow: -4px 0px 10px 4px #00000014;
            box-shadow: -4px 0px 10px 4px #00000014;
    left: -23px;
    -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(1, 0, 0, 1);
    transition: -webkit-transform 0.4s cubic-bezier(1, 0, 0, 1);
    -o-transition: transform 0.4s cubic-bezier(1, 0, 0, 1);
    transition: transform 0.4s cubic-bezier(1, 0, 0, 1);
    transition: transform 0.4s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.4s cubic-bezier(1, 0, 0, 1);
    -webkit-transform-origin: right top;
        -ms-transform-origin: right top;
            transform-origin: right top;
}

.sub_menu {
/*    padding: 10px;*/

}

.sub_menu li {
/*    margin-bottom: 9px;*/
padding: 8px 9px;
    margin-right: 0 !important;
    border-bottom: 1px dashed #80808073;
}

.sub_menu li a {
    font-size: 15px !important;
    width: 100% !important;
    display: block;
    position: relative;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.sub_menu li a:hover {
    padding-left: 15px;

}

.sub_menu li a:after {
    position: absolute;
    content: "";
    background: var(--bg-color);
    width: 0px;
    height: 2px;
    top: 10px;
    opacity: 0;
    left: 0;
    visibility: hidden;


}

.sub_menu li a:hover:after {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    width: 15px;


}

.sub_menu li a.submenu_underline:after {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    width: 15px;


}

.sub_menu li a.sumenu_active {
    color: var(--bg-color);
    padding-left: 15px;

}

.menu_items:hover ul {
    /* opacity: 1; */
    visibility: visible;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
            transform: scale(1, 1);
}

/*toggle light and dark*/
.switch-theme-mode {
    position: absolute;
    top: 21px;
    right: 30px;
    /*z-index: 99;*/
}

.switch {
    position: relative;
    display: inline-block;
    width: 49px;
    height: 23px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

input:checked+.slider {
    background-color: #000;
}

.slider.round {
    border-radius: 34px;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

input:checked+.slider:before {
    -webkit-transform: translateX(24px);
        -ms-transform: translateX(24px);
            transform: translateX(24px);
    background: white url(../images/sunny.png);
    background-repeat: no-repeat;
    background-position: center;
}

.slider.round:before {
    border-radius: 50%;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 0px;
    bottom: 4px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    -webkit-box-shadow: 0 0px 15px rgba(32, 32, 32, 0.2392156863);
            box-shadow: 0 0px 15px rgba(32, 32, 32, 0.2392156863);
    background: white url(../images/night.png);
    background-repeat: no-repeat;
    background-position: center;
}

#openBars {
    position: absolute;
    top: 23px;
    right: 14px;
    font-size: 20px;
    color: var(--link-color);
    cursor: pointer;
    display: none;
}

/*HEADER CSS ENDS*/
/*MOBILE CSS START*/    
.mobile_wrapper {
    position: fixed;
    max-width: 291px;
    height: 100vh;
    background: white;
    -webkit-box-shadow: 0 0 4px 3px #80808063;
            box-shadow: 0 0 4px 3px #80808063;
    top: 0;
    left: 0;
    overflow-y: auto;
    right: 0;
    -webkit-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    transition: all .3s ease-in;
    -webkit-transform: translateX(-110%);
        -ms-transform: translateX(-110%);
            transform: translateX(-110%);
    z-index: 200;
}

.overlay {
    position: fixed;
    top: 0;
    left: -110%;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 100;
    -webkit-transition: all .6s ease-in-out;
    -o-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out;

}

.overlay.show_overly {
    left: 0%;
}

#closeIcon {
    position: absolute;
    right: 22px;
    top: 12px;
    font-size: 20px;
    border: 1px solid black;
    width: 22px;
    height: 22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    cursor: pointer;
}

.mobile_links {
    padding-top: 4em;
}

.mobile_links ul li a {
    border-bottom: 1px solid #dfdfdf;
    color: var(--link-color);
    width: 100%;
    display: block;
    padding: 12px 12px;

}

.mobile_links ul li a:hover {
    background: #dfdfdf;
    -webkit-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    transition: all .3s ease-in;
}

.mobile_serviceBtn {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.mobile_serviceBtn i.fa-solid.fa-angle-right {
    background: #dad2d2;
    width: 23px;
    height: 23px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

ul.mobile_sub_menu_ul {
    background: #eeeeee;
}

.rotatedIcon {
    -webkit-transform: rotate(90deg) !important;
        -ms-transform: rotate(90deg) !important;
            transform: rotate(90deg) !important;
}

.opensidebar {
    -webkit-transform: translateX(0%) !important;
        -ms-transform: translateX(0%) !important;
            transform: translateX(0%) !important;
    -webkit-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    transition: all .3s ease-in;
}

.layer {
    opacity: 1;
}
.arrow {
    padding: 12px;
    border-left: 1px solid #dfdfdf;
    border-bottom: 1px solid #dfdfdf;
    
}
.arrow:hover{
   background: #dfdfdf; 
}
/*MOBILE CSS ENDS*/



/* Position the form over the image but fixed to the slider */
.form-overlay {
  position: absolute;
  top: 20%; /* Adjust this value to position the form */
 right: -11%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.8); /* Semi-transparent background */
  padding: 20px;
  border-radius: 10px;
  z-index: 10;
  width: 80%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.slider-form {
  width: 100%;
}

.slider-form h3 {
  margin-bottom: 15px;
  text-align: center;
}

.form-group {
  margin-bottom: 10px;
  width: 100%;
}

.form-group label {
  display: block;
  font-weight: bold;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.submit-btn {
  width: 100%;
  padding: 12px;
  background-color: var(--bg-color);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.submit-btn:hover {
  background-color: #218838;
}

/* When scrolling, the form will scroll with the image */

/*home about css start from here*/
.about-section{
        background: #efefef;
    padding: 4em 0;
}

 .sub-title{
    position: relative;
        padding-top: 18px;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
 }
 .sub-title:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 48px;
    height: 8px;
    background-image: url(../images/icon-sub.png);
    content: "";
}
.about-section .image-column {
    margin-bottom: 50px;
}
.about-section .image-column .inner-column {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.about-section .image-column .inner-column .icon-shape-2 {
    position: absolute;
    top: 208px;
    left: -67px;
}



.about-section .image-column .inner-column .image, .about-section .image-column .inner-column .image-2 {
    position: relative;
    display: block;
    margin-bottom: 0;
    height: 100%;
}
.about-section .image-column .inner-column .image img, .about-section .image-column .inner-column .image-2 img {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.reveal img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}
.overlay-anim:after {
    background: rgba(255, 255, 255, 0.3);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    opacity: 1;
    z-index: 9;
    pointer-events: none;
}
.about-section .image-column .inner-column .image-2 {
    margin-left: 20px;
}
.about-section .image-column .inner-column .exp-box {
    position: absolute;
    left: 0;
    bottom: 40px;
    padding-left: 40px;
    text-align: center;
}
.about-section .image-column .inner-column .exp-box .icon-map {
    position: absolute;
    top: -10px;
   
}
.icon-map {
    width: 307px;
    height: 151px;
    background-image: url(../images/icon-map.png);
}
.about-section .image-column .inner-column .exp-box .count {
    position: relative;
    display: block;
    font-size: 90px;
    line-height: 1em;
    color: #fb7405;
    margin-bottom: 0;
}
.about-section .image-column .inner-column .exp-box .count sup {
    position: relative;
    top: -40px;
    font-size: 40px;
    color: #000000;
}
.about-section .image-column .inner-column .exp-box .title {
    position: relative;
    font-weight: 500;
    color: #72727c;
    margin-bottom: 0;
}
.overlay-anim:hover:after {
    height: 100%;
    opacity: 0;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
}

.content_column h2 {
    font-size: 55px;
    color: #000;
    font-weight: 600;
    padding: 15px 0;
}
.content_column p{
  font-size: 16px !important;
}
.list_outer_box {
    display: flex
;
    justify-content: space-between;
    margin-top: 39px;
}
.list_box ul li{
    margin-bottom: 1em;
    font-weight: 600;
    color: #000;
}
.list_box ul li i{
    margin-right: 7px;
    color: orange;
}
.about-section .content_column  .exp-box {
    position: relative;
    display: inline-block;
    padding: 30px 35px 20px;
    margin-left: 30px;
    background: -webkit-gradient(linear, left top, left bottom, from(var(--theme-color2)), to(var(--theme-color1)));
    background: linear-gradient(to bottom, var(--theme-color2), var(--theme-color1));
    text-align: center;
    border: 10px solid #f1f1f6;
}
.about-section .content_column  .exp-box:before {
    content: "";
    position: absolute;
    top: 1px;
    right: 1px;
    left: 1px;
    bottom: 1px;
    background-color: #ffffff;
}
.about-section .content_column  .exp-box .title {
    position: relative;
    color: #0d0d23;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.2em;
    letter-spacing: -0.04em;
    margin-bottom: 0;
    margin-top: 12px;
}
.about-section .content_column  .exp-box i {
    position: relative;
    display: inline-block;
    font-size: 65px;
    line-height: 1em;
    color: #da0b06;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.DiscoverBtn {
    background: var(--bg-color);
    padding: 15px;
    color: white;
    border-radius: 7px;
    margin-top: 17px;
}
/*home about css ends fromm here*/





/*REACH CSS START FROM HERE*/
.reach_wrapper{
    background-image: url(../images/reach_banner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 12em 0;
}
.reacth_content{
    display: flex;
    flex-direction: column;
    color: #fff;
}
.reacth_content h3{
    font-size: 34px;
    font-weight: 600;
}
.reacth_content p{
    color: #fff;
}

/*REACH CSS ENDS FROM HERE*/

/*HOW WE WORK CSS START FROM HERE*/
.work-section {
    position: relative;
    padding: 120px 0 70px;
}
.auto-container {
    position: static;
    max-width: 1200px;
    padding: 0px 15px;
    margin: 0 auto;
}
.sec-title {
    position: relative;
    margin-bottom: 50px;
}
.sec-title .sub-title {
    position: relative;
    display: block;
    font-size: 14px;
    color: #7c858c;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
    margin-bottom: 10px;
    padding-top: 10px;
}

.sec-title.text-center .sub-title:before {
    left: 50%;
    margin-left: -21px;
}
.sec-title .sub-title:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 2px;
    width: 42px;
    background: #ff6d2e;
    content: "";
}
.sec-title h2 {
    position: relative;
    line-height: 1.2em;
    color: #0b3b5e;
    font-size: 46px;
    font-weight: 700;
}

.work-block {
    position: relative;
    margin-bottom: 50px;
    margin-top: 50px;
    z-index: 1;
    text-align: center;
}
.work-block .content-box {
    position: relative;
    background: #ebf1f5;
    padding: 85px 30px 30px;
    margin-bottom: 40px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.work-block .inner-box .icon {
    position: absolute;
    left: 50%;
    top: -50px;
    margin-left: -50px;
    height: 100px;
    width: 100px;
    background: #ffffff;
    color: #ff6d2e;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 54px;
    -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
i[class^="flaticon-"]:before, i[class*=" flaticon-"]:before {
    font-family: flaticon !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.flaticon-delivery-2:before {
    content: "\f162";
}
.work-block .inner-box .icon:after {
    position: absolute;
    left: 50%;
    margin-left: -10px;
    bottom: -10px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #ffffff;
    content: "";
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.work-block h4 {
    position: relative;
    color: #0b3b5e;
    font-size: 24px;
    line-height: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}
.work-block h4 a {
    color: #0b3b5e;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.work-block .text {
    font-weight: 400;
    margin-bottom: 0;
}
.work-block .content-box:after {
    position: absolute;
    left: 50%;
    margin-left: -20px;
    bottom: -20px;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #ebf1f5;
    content: "";
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.work-block .process-btn {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex
;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 14px;
    line-height: 25px;
    color: #ffffff;
    font-weight: 600;
    background: #0b3b5e;
    letter-spacing: 0.05em;
    overflow: hidden;
    text-transform: uppercase;
}
.work-block .process-btn .count {
    position: relative;
    padding: 15px 10px;
    width: 55px;
}
.work-block .process-btn .count span {
    position: relative;
    color: #ffffff;
    z-index: 1;
}
.work-block .process-btn .count:after {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #ff6d2e;
    content: "";
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.work-block .process-btn .btn-title {
    display: inline-block;
    padding: 15px 35px;
    position: relative;
    z-index: 2;
}
.work-block .inner-box:hover .content-box {
    background: #0b3b5e;
}
.work-block .inner-box:hover .icon {
    background: #ff6d2e;
    color: #ffffff;
}
.work-block .inner-box:hover .icon:after {
    border-top: 10px solid #ff6d2e;
}
.work-block .inner-box:hover h4 a {
    color: #ffffff;
}
.work-block .inner-box:hover .text {
    color: #8fa1ae;
}
.work-block .inner-box:hover .content-box:after {
    border-top: 20px solid #ebf1f5;
}
.work-block .inner-box:hover .process-btn .count:after {
    left: 100%;
    width: 500%;
}
/*HOW WE WORK CSS ENDS FROM HERE*/


/*TOP CATEGORY CSS START FROM HERE*/

.categories-block {
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.categories-block .inner-box {
    position: relative;
    text-align: center;
    height: 100%;
    background: linear-gradient(to bottom, transparent, #d70006);
    min-height: 184px;
    -webkit-box-shadow: 0 10px 60px rgba(0, 0, 0, 0.07);
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.07);
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear;
}
.categories-block .inner-box:before {
    background-color: #f5f5f6;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 0;
    width: 100%;
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear;
    z-index: 1;
}
.categories-block .image-box .image {
    margin-bottom: 0;
}
.categories-block .content {
    padding: 30px;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 13px;
}
.categories-block .icon-box {
    position: relative;
    display: inline-block;
    margin-bottom: 0px;
    z-index: 3;
}
.categories-block .icon-box .icon {
    position: relative;
    display: block;
    font-size: 58px;
    color: #ff6d2e;
    line-height: 1em;
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear;
}
.categories-block .title {
    color: #ffffff;
    margin-bottom: 0;
    z-index: 3;
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear;
}
.categories-block .title a {
    color: inherit;
}
.categories-block .inner-box:after {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    top: auto;
    bottom: 0;
    background-position: right bottom;
    background-repeat: no-repeat;
    background-image: url(../images/shape2.png);
    content: "";
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear;
    pointer-events: none;
    z-index: 2;
}
.categories-block .inner-box:hover:before {
    height: 100%;
}
.categories-block .inner-box:hover .title {
    color: #152028;
}
.categories-block .title a:hover {
    color: #d70006;
}
.top_category_wrapper{
    background: white;
}
.bg_category{
    box-shadow: 0 0 4px 4px #eee;
    border-radius: 9px;
    padding-bottom: 19px;
}
/*TOP CATEGORY CSS ENDS FROM HERE*/

/*resent artical css start*/
#blogGrid{
    padding: 4em 0;
    padding-bottom: 1em !important;
    background: #8080801f;
}
.heading__subtitle {
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    color: #ff5e14;
    display: inline-block;
    margin-bottom: 13px;
}

.heading__title {
    font-size: 33px;
    margin-bottom: 15px;
}
.heading__desc {
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 0;
}
.blog-item {
    position: relative;
    margin-bottom: 50px;
        background: white;
    padding: 22px;
    border-radius: 10px;
}
.blog-item .blog__img {
    position: relative;
    overflow: hidden;
    border-radius: 3px;
    margin-bottom: 28px;
}
.blog-item .blog__img img {
    -webkit-transition: all .9s ease;
    -moz-transition: all .9s ease;
    -ms-transition: all .9s ease;
    -o-transition: all .9s ease;
    transition: all .9s ease;
}
.blog-item:hover .blog__img img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}
.blog-item .blog__meta {
    display: flex
;
    display: -webkit-flex;
    align-items: center;
    flex-wrap: wrap;
    line-height: 1;
}
.blog-item .blog__meta-cat {
    display: inline-block;
    margin-bottom: 8px;
    line-height: 1;
}
.blog-item .blog__meta-cat a {
    position: relative;
    color: #ff5e14;
    padding-right: 7px;
}
.blog-item .blog__meta-cat a:after {
    content: ",";
    position: absolute;
    top: 0;
    right: 2px;
    color: #ff5e14;
}
.blog-item .blog__meta-cat a:last-child {
    padding: 0;
}
.blog-item .blog__title {
    font-size: 18px;
    line-height: 27px;
    font-weight: 600;
    margin-bottom: 3px;
}
.blog-item .blog__title a {
    color: #121c45;
}
.blog-item .blog__meta-date {
    font-size: 13px;
    line-height: 1;
    display: block;
    color: #616161;
}
.blog-item .blog__desc {
    margin-top: 18px;
    margin-bottom: 0;
}
.blog-item .btn__link {
    line-height: 1;
    width: auto;
    height: auto;
    border: none;
    padding-bottom: 5px;
    margin-top: 22px;
}

.btn__link.btn__secondary {
    color: #121c45;
}
/*resent artical css ends*/


/*FOOTER CSS STSRT FOM HERE*/

.footerWrapper {
    background: #00281f;
    position: relative;
    background-image: url(../images/icon-map.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 60% 50%;
}
#button.open {
    bottom: 30px;
}
#button.bounce {
    -webkit-animation: float 1500ms infinite ease-in-out;
    animation: float 1500ms infinite ease-in-out;
}
#button.show {
    opacity: 1;
    visibility: visible;
}
#button {
    display: inline-block;
    background-color: var(--bg-color);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    text-align: center;
    border-radius: 34px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    -webkit-transition: background-color .3s, opacity .5s, visibility .5s;
    -o-transition: background-color .3s, opacity .5s, visibility .5s;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
    z-index: 1000;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.bounce {
    -webkit-animation: float 1500ms infinite ease-in-out;
    animation: float 1500ms infinite ease-in-out;
}
@keyframes flot{
    0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
}
50% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
}
100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
}
}
.footer_logo_box img{
    width: 120px;
    background: white;
    margin-bottom: 15px;
}
.footer_logo_box p{
    color: #fff;
}
.links_footer h3 {
    font-weight: 600;
    color: #fff;
    font-family: arial;
    padding-bottom: 15px;
}
.footer_row .row .col-xl-3{
    margin-top: 2em;
}
.links_footer ul li{
    margin-bottom: 15px;
}
.links_footer ul li a i{
    margin-right: 7px;
}
.links_footer ul li a{
    color: #fff;
}
.links_footer ul li a:hover{
    color: var(--bg-color);
    transition: all 400ms;
}
.home_links_footer{
    padding-left: 4em;
}
.links_footer p{
    color: #fff;
}
.subscribe_input form input {
    width: 100%;
    border: none;
    padding: 0 7px;
    height: 37px;
    margin-bottom: 12px;
    border-radius: 7px;
}
.subscribe_input .button{
    background: var(--bg-color);
    color: #fff;
}
.bottom_footere {
    padding-top: 1.5em;

    border-top: 1px solid gray;
    display: flex;
    justify-content: space-between;
}
.bottom_footere p
{
    color: #fff;
    margin-bottom: 0;
}
.bottom_footere span{
    color: var(--bg-color);
    font-weight: 600;
}
.devName{
    position: absolute;
    bottom: 0;
    margin-bottom: 0 !important;
    right: 7px;
    font-size: 13px !important;
font-family: arial;
}

/*FOOTER CSS ENDS FROM HERE*/


/*FAQ CSS START FROM HERE*/
.faqs-section {
    position: relative;
    
    padding: 80px 0 70px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.faqs-section:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #ebf1f5;
    opacity: 0.95;
    content: "";
}
.faq-block {
    position: relative;
    margin-bottom: 40px;
}

.faq-block .inner-box {
    padding-left: 70px;
    position: relative;
}
.faq-block .icon {
    position: absolute;
    left: 0;
    top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    color: #fff;
    background-color: #ff6d2e;
    border-radius: 50%;
    font-size: 14px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.faq-block h4 {
    font-size: 18px;
    line-height: 1.2em;
    color: #0b3b5e;
    font-weight: 700;
/*    margin-bottom: 10px;*/
}


.faq-block .text {
    font-size: 16px;
    line-height: 30px;
    color: #7c858c;
}
.faq-block .inner-box:hover .icon {
    background-color: #0b3b5e;
}
ul.accordion-list {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding: 20px;
  margin: 0;
  list-style: none;
  background-color: #f9f9fA;
}
ul.accordion-list li {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  background-color: #FFF;
  padding: 20px;
  margin: 0 auto 15px auto;
  border: 1px solid #eee;
  border-radius: 5px;
  cursor: pointer;
}
ul.accordion-list li.active h3:after {
  transform: rotate(45deg);
}
ul.accordion-list li h3 {
  font-weight: 700;
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding: 0 0 0 0;
  margin: 0;
  font-size: 15px;
  letter-spacing: 0.01em;
  cursor: pointer;
}
ul.accordion-list li h3:after {
  content: "+";
  font-family: "material-design-iconic-font";
  position: absolute;
  right: 0;
  top: 0;
  color: #Fcc110;
  transition: all 0.3s ease-in-out;
  font-size: 18px;
}
ul.accordion-list li div.answer {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  cursor: pointer;
}
ul.accordion-list li div.answer p {
  position: relative;
  display: block;
  font-weight: 300;
  padding: 10px 0 0 0;
  cursor: pointer;
  line-height: 150%;
  margin: 0 0 15px 0;
  font-size: 14px;
}
/*FAQ CSS ENDS FROM HERE*/

/*ABOUT US CSS START FROM HERE*/
/*#########################################*/
/*###########################################*/
.page-title {
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 100px 0 110px;
    min-height: 430px;
}
.page-title:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #131313;
    opacity: 0.8;
    content: "";
}
.page-title .title {
    font-size: 64px;
    color: #ffffff;
    position: relative;
    font-weight: 600;
}
.page-breadcrumb {
    position: relative;
    margin-top: 5px;
}
.page-breadcrumb li {
    position: relative;
    display: inline-block;
    margin-right: 12px;
    padding-right: 13px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
}
.page-breadcrumb li a {
    color: #ff6d2e;
    font-weight: 500;
    text-transform: capitalize;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}


.page-breadcrumb li:last-child {
    padding-right: 0px;
    margin-right: 0px;
}
.title-outer{
    padding-top: 6em;
}


/*WHO WE ARE CSS START FROM HERE*/
.about_wrapper{
    padding: 4em 0;
}
.second_img_about {
    position: absolute;
    top: 68%;
    right: 40px;
}
.about_img {
    position: relative;
}
.about_flex_bottom{
    display: flex;
 
    gap: 23px;
    margin-top: 2em;
    width: 80%;
}
.abovt_main_conntent{
    display: flex;
    flex-flow: column;
}
.about_flex_bottom .img_div{
    flex:none;
}
/*WHO WE ARE CSS ENDS FROM HERE*/
/*MISSION VIIOSN CSS START FROM HERE*/
.mision_wrapper{
    
    position: relative;
}

.row_mission{
    display: flex;
}
.secondIMg{
    flex:auto;
}
.secondIMg img{
    object-fit: cover;
}
.left_img_bar{
    position: relative;
}
.first_div{
    position: relative;
}
.first_div:before{
  position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000000fc;
    content: "";
    width: 100%;
    height: 100%;
    opacity: .9;
}
.left_content_box{
    position: absolute;
}
.left_content_box {
    position: absolute;
    top: 22%;
    color: #fff;
    display: flex
;
    flex-direction: column;
    justify-content: center;
    width: 64%;
    margin-left: 17em;
}
.left_content_box h2{
    color: #fff;
    font-weight: 700;
    font-size: 50px;
}
.left_content_box .nav-pills .nav-link {
    border-radius: 0 !important;
    border: 1px solid white;
    color: #fff;
}
.left_content_box .nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: var(--bs-nav-pills-link-active-color);
    background-color: #ff6843;
}
 .left_content_box ul#pills-tab{
    gap: 12px;
 }
/*MISSION VIIOSN CSS ENDS FROM HERE*/

.mt-55 {
    margin-top: 55px !important;
}.pb-90 {
    padding-bottom: 90px !important;
}

.pt-90 {
    padding-top: 90px !important;
}
.btn.btn-tag {
    padding: 7px 10px 7px 11px;
    background: #fec201;
    border-radius: 0;
    color: #034460;
    font-size: 12px;
    line-height: 12px;
    font-weight: 400;
}
.mb-20 {
    margin-bottom: 20px !important;
}
.color-grey-900 {
    color: #041c2f !important;
}
.font-md {
    font-weight: 400 !important;
    font-family: epilogue, sans-serif !important;
    line-height: 28px !important;
    font-size: 16px !important;
}
.mb-30 {
    margin-bottom: 30px !important;
}
.chart-title, .feature-title {
    padding-left: 30px;
    margin-bottom: 7px;
}

.chart-title {
    background: url(../images/chart.png) no-repeat 0;
}
.feature-title {
    background: url(../images/feature.png) no-repeat 0;
}
.mt-20 {
    margin-top: 20px !important;
}
.btn.btn-brand-2 {
    font-size: 15px;
    line-height: 15px;
    font-weight: 500;
    color: #fff;
    padding: 17px 26px;
    background-color: #034460;
    border-radius: 0;
}
.btn.btn-link-medium {
    font-size: 15px;
    line-height: 15px;
    font-weight: 500;
    color: #041c2f;
    padding: 18px 26px 18px 0;
}
.btn.btn-link-medium svg {
    color: #034460;
    transition-duration: .2s;
}
.ml-5 {
    margin-left: 5px !important;
}

.icon-16 {
    height: 16px;
    color: #041c2f;
}
.box-image-touch {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    max-width: 50%;
    background: url(../images/port.png) no-repeat 0 0;
    background-size: cover;
}
.bg-1 {
    background-color: #ffe799 !important;
}
.box-image-touch:before {
    content: "";
    height: 100%;
    width: 265px;
    background: url(../images/bg-touch.png) no-repeat 100% 0;
    background-size: cover;
    position: absolute;
    left: -1px;
}
h3.color-grey-900.mt-3.mb-20.mt-15.wow.animate__.animate__fadeIn.animated.animated {
    font-size: 43px;
    font-weight: 600;
}

.contetn_and_para h3 ,strong{
     font-family: arial;
    color: #07155e;
    font-weight: 600;
}
.contetn_and_para p {
    color: #0e0e0e;
    font-size: 17px !important;
}
.contetn_and_para {
    display: flex
;
    flex-flow: column;
}
.Chhota_wrapper {
    background: #8080800f;
}
.right_chhota_content p{
     color: #0e0e0e;
    font-size: 17px !important;
}
.right_chhota_content h2{
    font-family: arial;
    margin-bottom: 12px;
    color: #07155e;
    font-weight: 600;
}
.our_customer_wrapper h2{
     font-family: arial;
    color: #07155e;
    font-weight: 600; 
}
.item_img {
    display: flex
;

    align-items: center;
    gap: 52px;
}
.imge_box img{
    object-fit: contain;
    filter: grayscale(1);
}
.imge_box:hover img{
filter: grayscale(0);
transition: all 400ms;
}
.booking_truck_wrapper{

}
.left_content_box strong{
    color: #fff;
}
.Truck_item_box {
    box-shadow: 0 0 4px 6px #80808024;
    border-radius: 7px;
        padding: 12px;
        height: 100%;
}
section.our_customer_wrapper.py-5 {
    background: #f9f9f9;
}
.flex_liter{
    justify-content: space-between;
    padding: 0 25px;
    display: flex;
}
.Bookign_top_heading h1{
    font-weight: 600;
}
.flex_liter > div img{
  
    width: 31px;
}
.bottom_RenBnt{
    display: flex;
}
.bottom_RenBnt {
    display: flex
;
    justify-content: space-between;
    padding: 0 25px;
    padding-bottom: 27px;
}
.bottom_RenBnt .price{
    font-weight: 600;
    font-size: 22px;
}
.bottom_RenBnt a{
    background: var(--bg-color);
    padding: 4px 10px;
    color: #fff;
    border-radius: 7px;
}
.Truck_boking_row{
    padding-top: 2em;
}
.allInputs input,textarea{
   padding: 14px 30px;
    outline: 0;
    background-color: #f4f5f8;
    border: 1px solid #f4f5f8;
    color: #686a6f;
    font-size: 1rem;
    width: 100%;
    border-radius: 5px;
}
.allInputs input:focus{
    border: 1px solid var(--link-color);
    background: transparent;
    transition: all 400ms ;

}
.allInputs textarea:focus{
    border: 1px solid var(--link-color);
    background: transparent;
    transition: all 400ms ;

}
 .button_in{
    background: var(--bg-color);
    padding: 9px;
    outline: none;
    border: none;
    color: #fff;
    width: 100%;
}
 .button_in:hover{
    background: var(--link-color);
    transition: all 400ms;
 }
.left_locatoin_box h1{
    font-weight: 600;
    padding-bottom: 1em;
     color: #003f74;
}
.right_lcoation_box li .text {
    margin-left: 30px;
}
.locatin_Icons ul{
    display: flex;
    flex-flow: column;
    gap: 20px;
}
.right_lcoation_box{
    padding-left: 2em;
}
.right_lcoation_box h1{
    font-weight: 600;
    color: #003f74;
}
.locatin_Icons ul li:hover .locatin_icon i {
    background: var(--link-color);
    transition: all 400ms;
    cursor: pointer;
}
.locatin_Icons ul{
    padding-top: 1em;
}
.locatin_Icons ul  li{
    display: flex;
    align-items: center;
}
.locatin_icon i{
    background: var(--bg-color);
    width: 65px;
    height:65px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 7px;
    font-size: 23px;
}
.locatin_Icons .text a{
    color: gray;
}
/*ABOUT US CSS ENDS FROM HERE*/
/*#########################################*/
/*###########################################*/