@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300..800&display=swap');

:root {
    /* --primary: #60A9A6; */
    --primary: #ea441f;
    --secondary: #c53c1e;
    --bg-black: #282828;
    --light-bg: #f0f0f0;
    --shadow: rgba(0, 0, 0, 0.05) 0px 15px 64px 0px;
}

.primary-text {
    color: var(--primary) !important;
}

.secondary-text {
    color: var(--secondary) !important;
}

.primary-bg {
    background-color: var(--primary) !important;
}

.secondary-bg {
    background-color: var(--secondary) !important;
}

.light-bg {
    background-color: var(--light-bg) !important;
}

html,
body {
    scroll-behavior: smooth;
}

body {
    line-height: 1.66;
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    color: #000000;
    overflow-x: hidden !important;
    position: relative;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
    body.boxed {
        max-width: 1200px;
    }
}

::-webkit-scrollbar {
    width: 0.5rem;
}

::-webkit-scrollbar-track {
    background: #bdbdbd;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
}

.box_shadow {
    box-shadow: var(--shadow);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #222;
    font-weight: 700;
    margin-top: 0;
    line-height: 1.23;
}

.br-12 {
    border-radius: 12px;
}

p:last-child {
    margin-bottom: 0;
}

a,
button {
    color: inherit;
    display: inline-block;
    line-height: inherit;
    text-decoration: none;
    cursor: pointer;
}



a,
button,
img,
input,
span {
    -webkit-transition: all 0.1s ease 0s;
    transition: all 0.1s ease 0s;
}

*:focus {
    outline: none !important;
}


a:focus {
    color: inherit;
    outline: none;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    color: var(--primary);
}

p,
li {
    color: #555;
    font-weight: 500;
}

button,
input[type=submit] {
    cursor: pointer;
}

.form-control:focus,
.form-select:focus {
    box-shadow: none;
    border-color: var(--primary) !important;
}

section {
    padding: 60px 0;
}

.mybtn {
    padding: 8px 20px;
    border-radius: 12px;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    background-color: var(--primary);
    background-size: 400% 400%;
    color: rgb(41, 43, 46);
    border: 0;
}

.mybtn:hover {
    background-color: var(--secondary) !important;
    color: #fff !important;
}

.cta_hover {
    font-size: 14px;
    color: #222;
    padding: 8px 10px;
    border-radius: 12px;
    transition: .3s ease-in;
}

.cta_hover:hover {
    background-color: #e9e9e9;
    color: #000;
}

.nav-link {
    font-weight: 500;
    color: #000000 !important;
    padding: 30px 5px;
    border-bottom: 2px solid transparent;
    position: relative;
}

.top_bar {
    background: var(--gradient);
}

.nav-link:hover {
    border-bottom: 2px solid var(--primary);
}

/* ------------------header------------------ */
.fixed {
    -webkit-animation: fadeup .3s ease-out;
    animation: fadeup .3s ease-out;
    -webkit-backdrop-filter: blur(7px);
    backdrop-filter: blur(7px);
    background: hsl(0, 0%, 100%) !important;
    border: 0 !important;
    padding: 0;
    position: fixed !important;
    top: 0;
    width: 100%;
    z-index: 999;
    transition: all .3s ease-in;
}

.navbar {
    position: absolute;
    z-index: 999;
    width: 100%;
    padding: 0;
    background-color: #ffffff;
    backdrop-filter: blur(4px);
    border-bottom: 1px solid #e3e3e3;
}

.navbar-brand img {
    width: 220px;
    mix-blend-mode: multiply;
}

.dropdown_item {
    width: 260px;
    background-color: #fff;
    border-top: 2px solid var(--primary);
    position: absolute;
    z-index: 99;
    top: 83px;
    display: none;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}


.dropdown_item.show {
    display: block;
}

.dropdown_item .nav-pills .nav-link {
    border-radius: 12px;
    font-size: 12px;
    margin-right: 12px;
    border: 1px solid var(--secondary);
    padding: 5px 10px;
}

.nav-link:hover .dropdown_item {
    display: block !important;
}

.dropdown_item .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: #fff !important;
    background-color: var(--secondary);
}

/* -------------home page------------------ */
.banner {
    width: 100%;
    height: 100%;
    padding: 100px 0 120px;
    position: sticky;
    /* background-image: linear-gradient(to top, #fbc2eb33 0%, #cadcfa 100%); */
    /* background-image: repeating-linear-gradient(to right, transparent 0 100px, #25283b22 100px 101px), repeating-linear-gradient(to bottom, transparent 0 100px, #25283b22 100px 101px); */
}

.hero-img {
    position: absolute;
    top: 15%;
    right: 0;
    width: 800px;
    z-index: 0;
}

.hero-img img {
    width: 100%;
}

@media screen and (max-width: 1023px) {
    .banner .slider {
        width: 160px;
        height: 200px;
        left: calc(50% - 80px);
    }

    .banner .slider .item {
        transform:
            rotateY(calc((var(--position) - 1) * (360 / var(--quantity)) * 1deg)) translateZ(300px);
    }

    .banner .content h1 {
        text-align: center;
        width: 100%;
        text-shadow: 0 10px 20px #000;
        font-size: 7em;
    }

    .banner .content .author {
        color: #fff;
        padding: 20px;
        text-shadow: 0 10px 20px #000;
        z-index: 2;
        max-width: unset;
        width: 100%;
        text-align: center;
        padding: 0 30px;
    }
}

@media screen and (max-width: 767px) {
    .banner .slider {
        width: 100px;
        height: 150px;
        left: calc(50% - 50px);
    }

    .banner .slider .item {
        transform:
            rotateY(calc((var(--position) - 1) * (360 / var(--quantity)) * 1deg)) translateZ(180px);
    }

    .banner .content h1 {
        font-size: 5em;
    }
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: hsl(10, 100%, 94%);
    animation: ripple 15s infinite;
    box-shadow: 0px 0px 1px 0px #508fb9;
    z-index: -1;
}

.small {
    width: 200px;
    height: 200px;
    left: -100px;
    top: -100px;
}

.medium {
    width: 400px;
    height: 400px;
    left: -200px;
    top: -200px;
}

.large {
    width: 600px;
    height: 600px;
    left: -300px;
    top: -300px;
}

.xlarge {
    width: 800px;
    height: 800px;
    left: -400px;
    top: -400px;
}

.xxlarge {
    width: 1000px;
    height: 1000px;
    left: -500px;
    top: -500px;
}

.shade1 {
    opacity: 0.2;
}

.shade2 {
    opacity: 0.5;
}

.shade3 {
    opacity: 0.7;
}

.shade4 {
    opacity: 0.8;
}

.shade5 {
    opacity: 0.9;
}

@keyframes ripple {
    0% {
        transform: scale(0.8);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(0.8);
    }
}

.bann_cntnt {
    padding-top: 60px;
    position: relative;
    z-index: 3;
}

.bann_cntnt h1 {
    font-size: 52px;
}

.location_search {
    padding: 15px 10px;
    background-color: #ffffff;
    border-radius: 12px;
    /* border: 3px solid #154ace47; */
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.location_search .form-control {
    border: 1px solid var(--primary);
    font-size: 13px;
}

.location_search .form-select {
    font-size: 14px;
    background-color: transparent;
    border: 0;
}

.clients_logo {
    margin-top: -50px;
}

.clients_logo .slider {
    position: relative;
    width: 100%;

    display: grid;
    place-items: center;
    overflow: hidden;
}

.clients_logo .slider::before,
.clients_logo .slider::after {
    position: absolute;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    content: '';
    height: 100%;
    width: 25%;
    z-index: 2;
    pointer-events: none;
}

.clients_logo .slider::before {
    left: 0;
    top: 0;
}

.clients_logo .slider::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
}

.clients_logo .slide-track {
    width: calc(150px* 20);
    display: flex;
    animation: scroll 20s linear infinite;
    justify-content: space-between;
}

.clients_logo .slide {
    width: 120px;
    display: grid;
    place-items: center;
    transition: 0.5s;
    cursor: pointer;
}

.clients_logo .slide img {
    width: 100%;
    object-fit: contain;
}

@keyframes scroll {
    0% {
        transform: translateX(0px);
    }

    100% {
        transform: translateX(calc(-150px * 10));
    }
}

@media (min-width:1000px) and (max-width: 1600px) {
    .banner .slider .item {
        transform: rotateY(calc((var(--position) - 1)*(360 / var(--quantity))* 1deg)) translateZ(315px);
    }

    .bann_cntnt h1 {
        font-size: 40px;
    }

    .banner #earth {
        width: 100% !important;
        height: 450px !important;
        transform: translate(-50%, -8%);
    }
}

.rate_wrap .solid_cards {
    padding: 20px 20px;
    border-radius: 16px;
    box-shadow: 0 8px 30px #11285714;
    color: #fff;
    z-index: 2;
    position: relative;
    background-position: center;
    background-size: 120%;
    transition: .2s ease-in;
}

.rate_wrap .col-md-3:nth-child(1) .solid_cards {
    background-image: linear-gradient(#000000b3, #000000b3), url(../images/company.webp);
}

.rate_wrap .col-md-3:nth-child(2) .solid_cards {
    background-image: linear-gradient(#000000b3, #000000b3), url(../images/experince.webp);
}

.rate_wrap .col-md-3:nth-child(3) .solid_cards {
    background-image: linear-gradient(#000000b3, #000000b3), url(../images/successful-shipment.webp);
}

.rate_wrap .col-md-3:nth-child(4) .solid_cards {
    background-image: linear-gradient(#000000b3, #000000b3), url(../images/shipment-track.webp);
}

.rate_wrap .solid_cards:hover {
    background-size: 140%;
}

.rate_crd_icon {
    width: 55px;
    height: 55px;
    border-radius: 8px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px
}

.rate_wrap .solid_cards svg,
.rate_wrap .solid_cards p,
.rate_wrap .solid_cards h3 {
    color: #fff;
}

.solid_cards svg {
    fill: #fff;
    width: 40px;
}

.rate_wrap::after {
    content: '';
    position: absolute;
    background-color: #f4f4f4;
    width: 100%;
    height: 70%;
    top: 50%;
    left: 0;
    z-index: 0;
}

.services .card {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border: 0;
}

.services .card p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.plan {
    right: 0px;
    top: -45%;
    z-index: 0;
}

.plan img {
    width: 100%;
}

.wing1 {
    top: 341px;
    right: 164px;
}

.wing1 img {
    width: 52px;
    -webkit-animation: round 3s normal linear infinite;
    animation: round 3s normal linear infinite;
}

.wing2 {
    top: 331px;
    right: 266px;
}

.wing2 img {
    width: 35px;
    -webkit-animation: round 3s normal linear infinite;
    animation: round 3s normal linear infinite;
}

@keyframes round {
    0% {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg);
    }

    25% {
        -webkit-transform: rotate3d(0, 0, 1, 90deg);
        transform: rotate3d(0, 0, 1, 90deg);
    }

    50% {
        -webkit-transform: rotate3d(0, 0, 1, 180deg);
        transform: rotate3d(0, 0, 1, 180deg);
    }

    75% {
        -webkit-transform: rotate3d(0, 0, 1, 270deg);
        transform: rotate3d(0, 0, 1, 270deg);
    }

    100% {
        -webkit-transform: rotate3d(0, 0, 1, 360deg);
        transform: rotate3d(0, 0, 1, 360deg);
    }
}

.chooseus{
    background-position: center;
    background-size: cover;
    background-color: var(--bg-black);
 }
 .chooseus .card{
    box-shadow: 0 2px 5px -1px #32325d40,0 1px 3px -1px #0000004d;
    border: 0;
    background-color: #fff;
 }
 .chooseus .card h6{
    font-weight: 500;
 }  

  .slide_wrapper {
    height: 40vh;
    padding:0 20px ;
    overflow: hidden;
    position: relative;
}
.slide_wrapper:after, .slide_wrapper:before {
    content: "";
    height: 60px;
    left: 0;
    position: absolute;
    width: 100%;
    z-index: 99;
}
.slide_wrapper:before {
    background: linear-gradient(to bottom, #ffffff, transparent);
    top: 0;
}
.slide_wrapper:after {
    background: linear-gradient(to top, #ffffff, transparent);
    bottom: 0;
}
.slide_inner{
    animation: toptobottom 40s linear infinite;
}
.slide_inner:hover ,.slide_inner2:hover{
    animation-play-state: paused;
}
.slide_inner2{
    animation: toptobottom 30s linear infinite;
}
@keyframes toptobottom {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    
    50% {
        -webkit-transform: translateY(-80%);
        transform: translateY(-80%);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
.testimonials{
    background-image:linear-gradient(#fffffff2, #fffffff5), url(../images/map_line.jpg);
    background-position: center;
    background-size: cover;
}
.client_card{
    padding: 15px;
    background-image: linear-gradient(To right, #ffffffe0, #ffffff96), url(../images/dots.svg);
    background-repeat: no-repeat;
    background-position: right;
    background-size: 150%;
    border-radius: 12px;
    background-color: #fff;
    margin-bottom: 20px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
 }
 .client_card i{
    color: var(--primary);
    font-size: 32px;
 }
footer{
    position: relative;
    background:var(--bg-black);
    background-image: url(../images/footer.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 20px 50px 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 1;
}
  .useful-lnk li a,  footer p,  footer a{
    color: #aab3c3;
    transition: all .3s ease;
  }
  .useful-lnk li a:hover ,footer a:hover{
    color: #fff;
    padding-left: 5px;
  }
  .dot_2{
    top: 0;
    left: 0;
    z-index: 0;
    animation: spinZ 20s linear infinite;
    opacity: .3;
  }
  .dash_img{
    z-index: 2;
  }
  .dot_2 img{
    width: 200px;
  }
  .footer-cta {
  place-content: center;
color: white;
text-shadow: 0 1px 0 #000;
--border-angle: 0turn;
--main-bg: conic-gradient(from var(--border-angle), #000, #000 5%, #000 60%,  var(--bg-black) 95%);
border: solid 5px transparent;
border-radius: 12px;
--gradient-border: conic-gradient(from var(--border-angle), transparent 25%, var(--secondary), var(--primary) 99%, transparent);
background: var(--main-bg) padding-box, var(--gradient-border) border-box, var(--main-bg) border-box;
background-position: center center;
animation: bg-spin 5s linear infinite;
}
@keyframes bg-spin {
  to {
    --border-angle: 1turn;
  } 
}
@property --border-angle {
  syntax: "<angle>";
  inherits: true;
  initial-value: 0turn;
}
.footer-logo img{
    width: 200px;
    border-radius: 12px;
    margin-bottom: 10px;
}
.form-control{
    background-color: #fff7f6;
    border-radius: 12px;
    border-color: transparent;
    padding: 10px 15px;
}
.form-control:focus{
    border: 1px solid var(--primary);
}
.breadcrumb-section {
    position: relative;
    background-image: linear-gradient(#00000080, #00000077), url(../images/breadcrump.webp);
    background-size: cover;
    background-position: center;
    padding:150px 0px 70px;
    text-align: center;
    z-index: 1;
}
.experiance-wrap {
  align-items: flex-start;
  display: flex;
}

.experiance-number {
  color: var(--primary);
  font-size: 100px;
}
.about-stat {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--primary);
  grid-template-rows: auto;
  grid-template-columns: 2fr 2fr 2fr;
  grid-auto-columns: 1fr;
  margin-top: 40px;
  margin-left: 100px;
  margin-right: -400px;
  padding: 40px;
  display: grid;
  position: absolute;
  width: 730px;
}

.grid-about-experience {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 0.5fr .5fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.about-left {
  z-index: 1;
  position: relative;
}

.experiance-box {
  z-index: -1;
  height: 100%;
  background-color: var(--bg-black);
  display: inline-block;
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: contain;
  margin-top: 68px;
  margin-left: -54px;
  padding: 20px 20px 10px 20px;
  position: relative;
}
.about-stat-item {
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
}

.about-stat-item.about-stat-border {
  border-right: 1px solid #ffffff;
}
.service-stat-number {
  padding-right: 20px;
  font-size: 42px;
  color: #fff;
}

.awards {
    background: #fff;
    padding: 40px 0;
    --dot-bg: white;
    --dot-color: #7d7d7d;
    --dot-size: 1px;
    --dot-space: 22px;
    background: linear-gradient(90deg, var(--dot-bg) calc(var(--dot-space) - var(--dot-size)), transparent 1%) center / var(--dot-space) var(--dot-space), linear-gradient(var(--dot-bg) calc(var(--dot-space) - var(--dot-size)), transparent 1%) center / var(--dot-space) var(--dot-space), var(--dot-color);
}
.awards .award-year{
    font-size: 4rem;
    color: var(--primary);
}
.awards img{
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 12px;
    border: .5px solid var(--primary);
    width: 180px;
}
.team span{
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 500;
}
.team-img .linkedin{
    position: absolute;
    bottom: 1.4rem;
    left: 1.4rem;
    width:calc(60px - -2%);
    height: 70px;
    background-color: #fff;
    border-radius: 12px;
    display: flex;
    column-gap: 10px;
    align-items: center;
    padding: 10px;
    transition: .3s ease-in-out;
}
.team-img .linkedin h6{
    white-space: nowrap;
    transition: .3s ease-in-out;
    opacity: 0;
}
.team-img .linkedin img{
    width: 50px;
}
.team_card:hover .team-img .linkedin{
    width: 90%;
}
.team_card:hover .team-img .linkedin h6{
    opacity: 1;
}
.grid-action-box {
  z-index: 1;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--primary);
  grid-template-rows: auto;
  grid-template-columns: 2fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  padding: 50px;
  display: grid;
  position: relative;
}

.button-rounded {
  width: 180px;
  height: 180px;
  background-color: var(--bg-black);
  color: var(--primary);
  text-align: center;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  font-family: Syne, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3em;
  transition: all .3s ease-in-out;
  display: flex;
}

.button-rounded:hover {
  background-color: #fff;
  color: var(--primary);
  mix-blend-mode: normal;
}
.decoration.shape-1 {
  z-index: -1;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: auto;
}
.decoration {
  position: absolute;
}
.grid-action-box  h3{
    font-size: 3rem;
}

.contact-us .card i {
    font-size: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    background: var(--primary);
    color: #fff;
    border-radius: 30px;
    justify-content: center;
    align-items: center;
    margin-right: 18px;
}

.contact-us .card {
    border-radius: 1rem;
    border: 0;
    background-color: #f4f4f4;
}
.form-select{
    background-color: #fff7f6;
    border-radius: 12px;
    border-color: transparent;
}
.form-select:focus{
    background-color: #fff;
}
.sec-title span{
    color: var(--primary);
    font-size: 1.2rem;
}
.pointers {
    margin-bottom: 15px;
    background-color: #ececec;
    width: 100%;
    border-radius: 15px;
    color: #000000;
    padding: 1rem 0.8rem;
}
.pointer-img
 {
    width: 30px;
}