@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");
@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=Outfit:wght@100..900&display=swap");

:root {
  /*** theme colors ***/
  --theme-color: #035bba;
  --theme-color-2: #41cbeb;
  --theme-color-3: #01b3fa;
}

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
  color: #222222;
}
select.form-control {
    border-radius: 0;
    border: 1px solid lightslategrey;
}
ul {
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Outfit";
}

a {
  color: #000;
  text-decoration: none;
  transition: 0.2s all;
}

a:hover {
  color: #000;
}

.autoRotate {
  animation: autoShowRotate;
  animation-timeline: view();
}

@keyframes autoShowRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.autoMoveY {
  animation: autoMover 3.5s linear infinite;
}

@keyframes autoMoverY {
  50% {
    transform: translateY(-20px);
  }
}

.autoMoveX {
  animation: autoMoverX 3.5s linear infinite;
}

@keyframes autoMoverX {
  50% {
    transform: translateX(-20px);
  }
}

.theme-btn {
  color: #fff;
  background-color: var(--theme-color-2);
  padding: 10px 15px 10px 25px;
  border-radius: 10px;
  font-size: 17px;
  display: inline-block;
}

.theme-btn i {
  margin-left: 30px;
  background-color: #fff;
  color: var(--theme-color);
  padding: 11px;
  border-radius: 6px;
  font-size: 18px;
  transition: 0.2s all;
}

.theme-btn:hover {
  background-color: var(--theme-color);
  color: var(--theme-color-2);
}

.theme-btn:hover i {
  background-color: var(--theme-color-2);
}

.theme-btn-2 {
  color: #fff;
  background-color: var(--theme-color);
  padding: 10px 4px 10px 20px;
  border-radius: 10px;
  font-size: 17px;
  display: inline-block;
}

.theme-btn-2 i {
  margin-left: 0px;
  background-color: #fff;
  color: var(--theme-color-2);
  padding: 10px;
  border-radius: 6px;
  font-size: 10px;
  transition: 0.2s all;
}

.theme-btn-2:hover {
  background-color: var(--theme-color-2);
  color: var(--theme-color);
}

.theme-btn-2:hover i {
  background-color: var(--theme-color);
}

/* Header CSS Start */

header {
  padding: 30px 0;
}

.head-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 105%;
    margin-left: -5%;
}

.navigation ul {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  gap: 30px;
}

.navigation ul li a {
  font-family: "Outfit";
  font-size: 17px;
}

.navigation ul li a:hover {
  color: var(--theme-color);
}

.quote-wrap {
  display: flex;
  align-items: center;
  gap: 40px;
}

.serv-a {
  position: relative;
  cursor: pointer;
}

.serv-a a {
  padding-bottom: 28px;
}

li.serv-a a i {
  padding-left: 5px;
}

.nav-dropdown {
  position: absolute;
  top: 50px;
  opacity: 0;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  transform-origin: 0 0 0;
  -webkit-transform-origin: 0 0 0;
  text-align: left;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 999;
}

.nav-dropdown ul {
  display: block;
  background-color: var(--theme-color);
}

.serv-a:hover .nav-dropdown {
  visibility: visible;
  opacity: 1;
  clip: inherit;
  -webkit-transform: scaleY(1);
  -khtml-transform: scaleY(1);
  transform: scaleY(1);
}

.nav-dropdown ul li {
  transition: 0.2s all;
}

.nav-dropdown ul li a {
  padding: 10px 20px;
  width: 200px;
  display: block;
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  color: #fff;
}

.nav-dropdown ul li:hover {
  background-color: var(--theme-color-2);
}

.nav-dropdown ul li:hover a {
  color: var(--theme-color);
}

#search {
  align-items: center;
  background: linear-gradient(
    178deg,
    rgb(3, 91, 186, 0.5) 0%,
    rgb(65 203 235 / 0.9) 100%
  );
  display: flex;
  height: 0;
  justify-content: center;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  transition: all 0.5s;
  width: 100vw;
  z-index: -1;
}

#search:target {
  height: 100%;
  opacity: 1;
  z-index: 2;
}

#searchbox {
  background: transparent;
  border: solid #000;
  border-width: 0 0 5px 0;
  color: #000;
  font-size: 2rem;
  outline: none;
  padding: 1rem;
  width: 50%;
}

#searchbox::placeholder {
  color: #000;
}

.close-btn {
  color: #fff;
  font-size: 2rem;
  position: absolute;
  right: 2rem;
  top: 1rem;
  text-decoration: none;
}

/* Header CSS End */

/* Banner CSS Start */

.banner-section {
  position: relative;
}
.banner-section .container-fluid {
    padding-left: 0px;
}

.banner-right-wrap {
  width: 35%;
  padding-left: 30px;
}

.banner-left-wrap {
  width: 52%;
}

.banner-flex {
  display: flex;
  flex-wrap: wrap;
}

.banner-left img {
  width: 100%;
}

.banner-right {
  margin-top: 50px;
}

.banner-right h6 {
  font-size: 19px;
  background-color: var(--theme-color-3);
  display: inline-block;
  padding: 10px 40px;
  border-radius: 50px;
  color: #fff;
  position: relative;
  margin-left: -60px;
  margin-bottom: 15px;
}

.banner-right h6::before {
  content: "";
  position: absolute;
  left: 15px;
  width: 15px;
  height: 15px;
  background-color: #fff;
  border-radius: 50%;
  top: 15px;
}

.banner-right h6::after {
  content: "";
  position: absolute;
  right: 15px;
  width: 15px;
  height: 15px;
  background-color: #fff;
  border-radius: 50%;
  top: 15px;
}

.banner-right h1 {
    font-size: 50px;
    color: #01323f;
    font-weight: 600;
    line-height: 55px;
    margin-bottom: 10px;
}

.banner-right h1 span {
  color: var(--theme-color-2);
}

.banner-right p {
  font-size: 16px;
}

.banner-right .theme-btn-2 {
  margin-bottom: 20px;
}

.banner-right form {
  border: 10px solid #f8f8f8;
  border-radius: 16px;
  padding: 25px 35px;
  background-image: url(../images/banner-form.png);
  background-size: cover;
  position: absolute;
  width: 100%;
}

.banner-right form input {
  width: 100%;
  margin-bottom: 25px;
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid #fff;
  color: #fff;
  font-size: 15px;
  padding-bottom: 12px;
  outline: none;
}

.banner-right form input::placeholder {
  color: #fff;
}

.banner-right form label {
  color: #fff;
}

.label-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}

.range-flex input {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  border: 0 !important;
}

.range-flex .form-range:focus::-webkit-slider-thumb {
  box-shadow: none;
}

.range-flex .form-range::-webkit-slider-runnable-track {
  background-color: #fff;
}

.range-flex .form-range::-webkit-slider-thumb {
  background-color: var(--theme-color-2);
}

.range-flex {
  margin-bottom: 20px;
}

.total-wrap h5 {
  width: 100%;
  margin-bottom: 0;
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
  font-size: 16px;
  padding: 10px 30px;
  border-radius: 7px;
  font-family: "Inter";
  font-weight: 400;
}

.total-wrap h4 {
  background-color: var(--theme-color-2);
  display: inline-block;
  position: absolute;
  top: 0;
  right: 12px;
  border-radius: 7px;
  padding: 8px 32px;
  font-size: 21px;
  color: #fff;
}

.total-wrap {
  position: relative;
}

.banner-img-right {
}

.banner-img-right img {
  width: auto;
  mix-blend-mode: luminosity;
  position: absolute;
  top: 62%;
  right: 0px;
}

.banner-img-inner-right img {
    top: -136px;
}

.cont-one {
    padding: 8px;
    border: 2px dotted #fff;
    border-radius: 50%;
    transition: .2s all;
}

.cont-one:hover {
    background-color: gray;
}

/* Banner CSS End */

/* Services CSS Start */

section.services-section {
  background-image: url(../images/services-bg.png);
  padding: 150px 0 80px;
  background-size: cover;
}

.service-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 70px;
}

.service-head p {
  width: 40%;
  color: #fff;
  font-size: 16px;
  font-weight: 300;
}

.service-head h6 {
  color: #fff;
  background-color: var(--theme-color-2);
  display: inline-block;
  font-size: 16px;
  padding: 7px;
  border-radius: 20px;
  margin-bottom: 25px;
  text-transform: uppercase;
  font-weight: 300;
}

.service-head h2 {
  color: #fff;
  font-size: 45px;
}

.service-box {
  padding: 30px 0 30px 50px;
  transition: 0.2s all;
  width: 100%;
  position: relative;
  z-index: 1;
}

.service-box:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../images/ser-box.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: -1;
  opacity: 0;
  transition: 0.2s all;
}

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

.service-box img {
  width: auto;
  margin-bottom: 40px;
}

.service-box h5 {
  color: #fff;
  margin-bottom: 50px;
}

.service-box a {
  display: block;
}

.service-box a i {
  color: #fff;
}

.ser-img {
  position: relative;
}

.ser-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 70px;
  height: 70px;
  background-color: rgb(255 255 255 / 20%);
  border-radius: 50%;
  transition: 0.2s all;
}

.service-box:hover .ser-img::before {
  content: unset;
}

.services-section .col-md-3 {
  border: 1px solid rgb(229 227 227 / 30%);
  border-width: 0 0 0 1px;
  padding: 0;
}

.services-section .col-md-3:last-child {
  border-right-width: 0;
}

.services-section .col-md-3:first-child {
  border-left-width: 1px;
}

/* Services CSS End */

/* Shipping CSS Start */

section.shipping-section {
  padding: 100px 0;
  position: relative;
}

.shipping-left .service-head h2 {
  color: #000;
}

.shipping-left .service-head {
  margin-bottom: 30px;
}

.ser-icon-flex {
  display: flex;
  align-items: start;
  margin-bottom: 30px;
  flex-direction: column;
  gap: 20px;
}

.ser-icon-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ser-icon-txt p {
  margin-bottom: 0 !important;
  font-size: 15px !important;
}

.ser-icon-img img {
  width: 66px;
  height: 66px;
  object-fit: none;
}

.ser-icon-img {
  border: 2px dotted var(--theme-color-2);
  border-radius: 50%;
  background-color: rgb(65 203 235/ 10%);
}

.shipping-left p {
  margin-bottom: 60px;
  font-size: 16px;
}

.counter-wrap {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 50px;
}

.counter-1 h3 {
  font-size: 66px;
}

.counter-1 h6 {
  font-size: 19px;
}

.shipping-right {
  position: relative;
}

.shipping-right::before {
  content: "";
  background-image: url(../images/patterns.png);
  background-size: 60%;
  position: absolute;
  top: 11%;
  left: 0%;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  z-index: -1;
}

.shipping-right::after {
  content: "";
  background-image: url(../images/patterns-2.png);
  background-size: 80%;
  position: absolute;
  top: 47%;
  left: 30%;
  width: 80%;
  height: 60%;
  background-repeat: no-repeat;
  z-index: -1;
}

.shipping-right img {
  width: 100%;
  position: relative;
}

.shipping-right-wrap {
  background-color: var(--theme-color-2);
  display: inline-block;
  padding: 10px 25px;
  position: absolute;
  top: 26%;
  left: 9%;
  text-align: center;
}

.shipping-right-wrap h4 {
  font-size: 70px;
  color: #fff;
  font-weight: 600;
  margin: 0;
}

.shipping-right-wrap h3 {
  font-family: "Outfit";
  font-size: 20px;
  color: #fff;
  margin: 0;
}

/* Shipping CSS End */

/* Client CSS Start */

section.client-section {
  padding: 100px 0;
  background-image: url(../images/client-bg.png);
  background-size: cover;
  position: relative;
}

.brand-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 100px;
}

.brand-img {
    width: 200px;
}
.brand-img img {
  width: 100%;
}

.client1 img {
  border-radius: 50% 50% 0 50%;
}

.client1 {
  border-radius: 50% 50% 0 50%;
}

.client2 img {
  border-radius: 50% 0 50% 50%;
}

.client2 {
  border-radius: 50% 0 50% 50%;
}

.client3 img {
  border-radius: 50% 50% 50% 0;
}

.client3 {
  border-radius: 50% 50% 50% 0;
}

.client4 img {
  border-radius: 0 50% 50% 50%;
}

.client4 {
  border-radius: 0 50% 50% 50%;
}

.client-img-main {
  border: 10px solid #fff;
  margin-bottom: 20px;
  transition: 0.2s all;
}

.client-img-main:hover img,
.client-img-main:hover {
  border-radius: 0;
}

.client-img-main img {
  transition: 0.2s all;
  width: 100%;
  height: 286px;
  object-fit: cover;
}

.client-right .service-head {
  display: unset;
}

.client-right .service-head p {
  width: 80%;
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 70px;
}

.client-right .service-head h6 {
  font-weight: 300;
  padding: 5px 15px;
}

.client-slider-wrap .client-img-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  width: 100%;
  top: -50px;
  left: 0;
  padding: 0 50px;
}

.client-slider-wrap {
  background-color: var(--theme-color-2);
  border-radius: 11px;
  padding: 70px 40px 30px 40px;
  position: relative;
}

.client-slider-wrap .client-img-flex img:first-child {
  border: 5px solid #fff;
  border-radius: 50%;
}

.client-slider-wrap p {
  font-size: 18px;
  color: #fff;
  font-weight: 300;
  margin-bottom: 28px;
}

.rate-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rate-flex-1 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rate-flex-1 h5 {
  margin-bottom: 0;
  color: #fff;
}

.rate-flex-1 .stars i {
  color: yellow;
  font-size: 20px;
}

.rate-flex-2 h4,
.rate-flex-2 h6 {
  color: #fff;
}

.client-slider-wrap-main {
  padding: 0 20px;
}

.client-slider .slick-track {
  padding: 60px 0 0;
}

.client-right button.slick-arrow {
    font-size: 14px;
    color: white;
}

.client-slider .slick-next:before {
  background-image: url(../images/client-arrow-r.png);
}
.client-slider .slick-prev:before {
  background-image: url(../images/client-arrow-l.png);
}

.client-slider .slick-prev:before,
.client-slider .slick-next:before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 60%;
  opacity: 1;
  background-color: transparent;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s all;
}

.client-slider .slick-prev:hover:before,
.client-slider .slick-next:hover:before {
  background-color: var(--theme-color-3);
}

.client-slider .slick-prev {
  left: 20px;
  top: 115%;
}

.client-slider .slick-next {
  left: 200px;
  top: 115%;
}

.client-slider .slick-next:before {
    top: -14px;
    position: absolute;
    right: 20px;
}
.client-slider .slick-prev:before {
    top: -14px;
    position: absolute;
    left: 60px;
}

/* Client CSS End */

/* Delivery CSS Start */

.delivery-section {
  padding: 120px 0;
}

.delivery-section .service-head {
  display: unset;
}

.delivery-section .service-head h2 {
  color: #000;
  margin-bottom: 20px;
}

.delivery-section .service-head p {
  color: #000;
  font-weight: 300;
}

.delivery-section .service-head h6 {
  margin-bottom: 20px;
}

.deliver-box {
  position: relative;
  width: 70%;
}

.deliver-box::before {
  content: "";
  background-image: url(../images/deliver-pattern.png);
  background-size: auto;
  background-repeat: no-repeat;
  position: absolute;
  left: 70%;
  top: -10%;
  width: 32%;
  height: 27%;
  z-index: -1;
}

.deliver-box img {
  width: 80%;
  display: block;
  margin: 0 auto 60px;
  object-fit: contain;
}

.deliver-box h5 {
  font-size: 20px;
  color: #000000;
  font-weight: 600;
  margin-bottom: 10px;
  white-space: nowrap;
}

.deliver-box p {
  color: #505d7b;
  font-size: 14px;
  height: 60px;
}

.deliver-num {
  position: absolute;
  top: 53%;
  left: 1%;
}

.deliver-num h5 {
  color: #fff;
  background-color: var(--theme-color-2);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.deliver-num-big {
  position: absolute;
  top: 29%;
  right: -12%;
  z-index: -1;
}

.deliver-num-big h2 {
  opacity: 20%;
  color: var(--theme-color-2);
  font-size: 175px;
  font-family: "Inter";
}

.delivery-section .row {
  height: 800px;
  position: relative;
}

.deliver1 {
  align-self: center;
  margin-top: 130px;
}

.deliver2 {
  align-self: center;
}

.deliver3 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.deliver3 .deliver-box:first-child {
  margin-top: -70px !important;
}

.delivery-section .row::before {
  content: "";
  background-image: url(../images/line-1.png);
  background-size: 100%;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 19%;
  width: 89%;
  height: 40%;
  z-index: -1;
  mix-blend-mode: luminosity;
  transform: rotate(-8deg);
}

.delivery-section .row::after {
  content: "";
  background-image: url(../images/line-2.png);
  background-size: 80%;
  background-repeat: no-repeat;
  position: absolute;
  left: 30%;
  top: 45%;
  width: 65%;
  height: 40%;
  z-index: -1;
  mix-blend-mode: luminosity;
  transform: rotate(0deg);
}

.deliver2 .deliver-num-big {
  top: -10%;
}

.deliver3 .deliver-box .deliver-num-big {
  top: 28%;
  right: -19%;
}

.deliver-logo img {
  width: 70%;
  margin: 0 auto;
  display: block;
}

.deliver-logo {
  width: 60%;
  margin-top: -220px;
}

/* Delivery CSS End */

/* Contact css Start */

.contact-left img {
  width: 100%;
}

.contact-right {
    padding: 50px 60px;
    background-color: #fff;
    box-shadow: 2px 4px 70px 0 #00000010;
    margin-left: -170px;
    position: relative;
    width: 110%;
}

.contact-right h6 {
  color: #fff;
  background-color: var(--theme-color-2);
  display: inline-block;
  font-size: 16px;
  padding: 5px 15px;
  border-radius: 20px;
  margin-bottom: 25px;
  text-transform: uppercase;
  font-weight: 300;
}

.contact-right h2 {
  font-weight: bold;
  font-size: 42px;
  margin-bottom: 33px;
  text-transform: capitalize;
}

.contact-right form input,
.contact-right form textarea {
  width: 100%;
  margin-bottom: 20px;
  padding: 12px;
  font-family: "Poppins";
  font-size: 14px;
  color: #686a6f;
  background-color: rgb(47 67 47 / 10%);
  border: rgb(47 67 47 / 10%);
  border-radius: 5px;
  outline: none;
}

.contact-right form input[type="number"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.contact-right form input[type="number"]::-webkit-inner-spin-button,
.contact-right form input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.contact-right form textarea {
  height: 120px;
}

.contact-right form button {
  width: 100%;
  transition: 0.2s all;
  border-radius: 0;
  border: 0;
}

/* Contact css end */

/* Footer css start */

.foot-social-sec {
  background-color: var(--theme-color-2);
}

.foot-social-wrap {
  display: flex;
  align-items: center;
  padding: 31px 0;
  justify-content: space-between;
}

.foot-order h5 {
  color: #fff;
  font-size: 25px;
}

.foot-order p {
    margin: 0;
    color: #eeeeee;
    font-size: 16px;
    width: 80%;
}

.foot-order {
  border-left: 3px solid #fff;
  padding-left: 30px;
}

.foot-social-wrap form input {
  background: #fff;
  border: 0;
  padding: 13px 20px;
  border-radius: 6px;
  font-size: 15px;
  color: #505d7b;
  outline: none;
  width: 70%;
}

.foot-social-wrap form input::placeholder {
  color: #505d7b;
}

.foot-social-wrap form {
  display: flex;
  align-items: center;
  width: 40%;
  justify-content: space-between;
}

.foot-social-wrap form button {
  transition: 0.2s all;
  width: 28%;
  padding: 10px 20px;
  border: 1px solid var(--theme-color);
}

.foot-social-wrap form button:hover {
  border-color: var(--theme-color);
}

.bottom-bar p {
  text-align: center;
  margin: 0;
  padding: 40px 0px;
  color: white;
}

.col2 li {
  list-style: none;
}

.col1 {
  background: #41cbeb;
  padding: 30px 30px;
  border-radius: 7px;
}

footer {
  padding: 90px 0 0;
}

.footer-flex h4 {
  font-size: 16px;
  color: white;
  line-height: 21px;
}

.footer-flex {
  display: flex;
  align-items: center;
  gap: 0px 20px;
}

.col1 p {
  color: white;
  font-size: 14px;
  margin: 15px 0;
}

.rate-btn {
  text-align: center;
  margin: 15px 0 15px;
}

.rate-btn a {
  background: white;
  padding: 10px 25px 10px;
  border-radius: 5px;
  font-size: 14px;
  width: 100%;
  display: block;
  font-weight: 600;
}

.rate-btn a:hover {
  background-color: var(--theme-color);
  color: var(--theme-color-2);
}

footer {
  background-image: url(../images/foot-bg.png);
}

.footer-flex-aling {
  display: flex;
  align-items: center;
  gap: 18px;
}

.cont-two p {
  margin: 0;
  color: var(--theme-color-2);
}

.cont-two h6{
  color: white;
  transition: .2s all;
}

.cont-two h6 a{
  color: white;
}

.cont-two h6 a:hover, .cont-two h6:hover {
    color: #000;
}

.footer-contact-bar {
  display: flex;
  justify-content: space-evenly;
  gap: 0px 100px;
  padding: 30px 0 30px;
  background: #6495ed26;
  border-bottom: 3px solid #41cbeb;
  border-radius: 15px;
  margin: 70px 0 0;
}

.footer-flex img {
  width: 25%;
}

.col2 h4 {
  font-size: 21px;
  text-transform: capitalize;
  margin-bottom: 30px;
  color: #fff;
}

.col2 ul {
  padding-left: 36px;
}

.col2 ul li {
  margin-bottom: 12px;
}

.col2 ul li a {
  font-size: 17px;
  color: #fff;
}

.col2 ul li a:hover {
  color: var(--theme-color-2);
}

.cont-one img {
  mix-blend-mode: luminosity;
}

/* Footer css end */

.offcanvas,
.offcanvas-btn {
  display: none;
}

a.btn.offcanvas-btn {
  display: none;
}

.closebtn {
  position: absolute;
  right: 20px;
  top: 30px;
  cursor: pointer;
}

.closebtn i {
  color: #000;
  font-size: 30px;
}

.client-right {
    padding: 0 10px 0;
}

.shipper-form {
    padding: 70px 0 70px;
}

.fields {
    background-image: url(../images/banner-form.png) !important;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 35px 35px 35px;
    border-radius: 30px;
    border: 10px solid #f8f8f8;
}

.field-one label {
    color: white;
    font-size: 12px;
}

.field-two label {
    color: white;
    font-size: 13px;
}

.field-three label {
    color: white;
    font-size: 12px;
}

input#exampleFormControlInput1 {
    border-radius: 0;
    border: 1px solid lightslategrey;
}

.form-btns {
    text-align: center;
    padding: 20px 0 20px;
}

.form-btns a {
    background-color: var(--theme-color-2);
    color: white;
    padding: 10px 40px 10px;
    border-radius: 5px;
}

.form-btns a:hover {
    background-color: var(--theme-color-2);
    color: var(--theme-color);
}

.form-header h4 {
    font-size: 40px;
    font-weight: 600;
    color: white;
    padding: 10px 0 30px;
    text-align: center;
}

.terms-txt h1 {
    font-size: 50px;
    text-align: center;
}

.terms-candition {
    padding: 60px 0;
}

.terms-txt {
}

.set-pickup {
    display: flex;
    gap: 25px;
    justify-content: center;
    padding: 20px 0 0;
}

.quote-form-bg {
   background-image: url(../images/banner-form.png) !important;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 35px 35px 35px;
    border-radius: 30px;
    border: 10px solid #f8f8f8; 
}

.contact-fields label {
    color: white;
}

.choose-service {
    color: white;
    text-align: center;
}

.quote-btn {
    text-align: center;
    padding: 40px 0 0;
}

.quote-btn a {
    background-color: var(--theme-color-2);
    color: white;
    padding: 10px 40px 10px;
    border-radius: 5px;
}

.select-opt p {
    color: white;
    font-size: 20px;
}

.fields p {
    color: white;
}

.fields-one h4 {
    color: white;
    padding: 25px 0 15px;
}

.submit-btn-down {
    text-align: center;
    padding: 25px 0 0;
}

.submit-btn-down a {
    background-color: var(--theme-color-2);
    color: white;
    padding: 10px 40px 10px;
    border-radius: 5px;
}

.submit-btn-down a:hover {
    background-color: var(--theme-color-2);
    color: var(--theme-color);
}

.sign-check .form-check label {
    color: white;
}

#sig-canvas {
  border: 2px dotted #CCCCCC;
  border-radius: 15px;
  cursor: crosshair;
}

.terms-btn {
    display: flex;
    justify-content: space-between;
    padding: 40px 0 40px;
}

button#sig-submitBtn {
    background: #41cbeb;
    border: none;
}

button#sig-clearBtn {
    color: white;
}

button#nextBtn {
    background-color: var(--theme-color-2);
    color: white;
    padding: 10px 40px 10px;
    border-radius: 5px;
    border: none;
}

button#prevBtn {
    background-color: var(--theme-color-2);
    color: white;
    padding: 10px 40px 10px;
    border-radius: 5px;
    border: none;
}

button#submitBtn {
    background-color: var(--theme-color-2);
    color: white;
    padding: 10px 40px 10px;
    border-radius: 5px;
    border: none;
}

.last-field {
    display: flex;
    justify-content: center;
    width: 100% !important;
}

.last-field .field-two {
    width: 45%;
}

.inner-banner {
  padding: 130px 0;
  background-image: url(../images/abt-banner-bg.png);
  background-size: 100% 100%;
  text-align: center;
}

.inner-banner .banner-txt h6::before, .inner-banner .banner-txt h6::after {
    width: 10px;
    height: 10px;
}

.banner-txt h1 {
  margin-bottom: 0;
  font-size: 60px;
  color: #fff;
}

.banner-txt h1 span {
  color: var(--theme-color-3);
}

.banner-txt h6 {
  font-size: 17px;
  background-color: var(--theme-color-3);
  display: inline-block;
  padding: 10px 40px;
  border-radius: 50px;
  color: #fff;
  position: relative;
  margin-bottom: 20px;
}

.banner-txt h6::before {
  content: "";
  position: absolute;
  left: 15px;
  width: 12px;
  height: 12px;
  background-color: #fff;
  border-radius: 50%;
  top: 15px;
}

.banner-txt h6::after {
  content: "";
  position: absolute;
  right: 15px;
  width: 12px;
  height: 12px;
  background-color: #fff;
  border-radius: 50%;
  top: 15px;
}

.shipping-left-about p {
  margin-bottom: 20px;
}

.contact-section {
  position: relative;
}

.client-inner-section {
  background: none !important;
}

.client-inner-section .client-img-main {
  border-color: var(--theme-color-2);
}

.client-inner-section .service-head h2 {
  color: #000;
}

.client-inner-section .service-head p {
  color: #000;
  margin-bottom: 20px;
}

.client-inner-section .client-right button.slick-arrow {
  color: #000;
}

.client-inner-section .client-slider .slick-prev:before {
  background-image: url(../images/arrow-l.png);
}

.client-inner-section .client-slider .slick-next:before {
  background-image: url(../images/arrow-r.png);
}

.services-inner-section {
  position: relative;
  padding: 130px 0 200px;
}

.service-inner-box {
  width: 100%;
}

.service-inner-box img {
  width: 100%;
  border-radius: 10px;
}

.service-inner-box {
  position: relative;
}

.service-wrap {
  position: absolute;
  bottom: -17%;
  background-color: #fff;
  width: 90%;
  left: 0;
  right: 0;
  margin: 0 auto;
  padding: 50px 26px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 4.47px 3.58px 0 #01b3fa;
}

.service-wrap h4 {
  color: #000;
  margin-bottom: 13px;
}

.service-wrap p {
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0;
}

.ship-now-section {
  position: relative;
  padding: 100px 0;
}

.form-ship {
  display: block;
}

.form-ship input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.form-ship label {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 20px;
}

.form-ship label:before {
  content: "";
  -webkit-appearance: none;
  background-color: #d9dfd9;
  border: 2px solid transparent;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05),
    inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  width: 18px;
  height: 15px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 5px;
}

.form-ship input:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  left: 7px;
  width: 5px;
  height: 9px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.ship-checkbox .form-ship label:before {
  background-color: #222222;
}

.ship-checkbox .form-ship label:after {
  border-color: #fff !important;
}

.ship-now-main {
  background-color: #e9e9e9;
  padding: 44px;
}

.ship-now-flex {
  display: flex;
  align-items: start;
  justify-content: space-between;
  margin-bottom: 60px;
}

.ship-now-flex-left h2 {
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 25px;
  line-height: 55px;
}

.ship-now-flex-left p {
  font-size: 16px;
  margin-bottom: 0;
}

.ship-now-flex-right {
  text-align: right;
}

.ship-now-flex-right h6 {
  font-weight: 300;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 9px;
}

.ship-now-flex-right h4 {
  margin-bottom: 10px;
  color: var(--theme-color-3);
  font-size: 42px;
  display: inline-block;
}

.ship-now-main .date h5 {
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 600;
}

.ship-now-main .date {
  display: flex;
  align-items: center;
  gap: 18px;
}

.ship-now-main .date input {
  border: 0;
  background: none;
  border-bottom: 1px solid #000;
  width: 100%;
  outline: none;
}

.ship-now-main form {
  /*display: flex;*/
  /*align-items: center;*/
  /*justify-content: space-between;*/
  /*flex-wrap: wrap;*/
}

.ship-now-main form input {
  background-color: #d2d2d2;
  width: 100%;
  border: 0;
  padding: 10px;
  margin-bottom: 10px;
  font-family: Montserrat;
  font-size: 14px;
  outline: none;
}

.ship-now-main form input::placeholder {
  text-transform: uppercase;
  color: #222222;
  font-weight: 600;
}

/*.form-left,*/
/*.form-right {*/
/*  width: 45%;*/
/*}*/

.form-line {
  height: 130px;
  width: 1px;
  background-color: #000;
    margin: 0px auto 0 auto;
}

.form-flex2 {
  /*display: flex;*/
  /*align-items: center;*/
  /*justify-content: space-between;*/
  /*gap: 16px;*/
  margin: 20px 0px;
}

.ship-now-main .form-flex2 input,
.ship-now-main .form-flex2 .form-ship {
  background-color: #d2d2d2;
  width: 100%;
  border: 0;
  padding: 18px 30px;
  font-family: Montserrat;
  font-size: 14px;
}

.ship-now-main .form-flex2 input::placeholder,
.ship-now-main .form-flex2 .form-ship {
  text-transform: uppercase;
  color: #222222;
  font-weight: 600;
}

.ship-now-heading {
  background-color: var(--theme-color);
  text-align: center;
  padding: 33px 0;
  margin-bottom: 20px;
}

.ship-now-heading h3 {
  font-size: 26px;
  color: #fff;
  font-weight: 100;
  text-transform: capitalize;
  margin-bottom: 7px;
}

.ship-now-heading h3 span {
  font-weight: 500;
}

.ship-now-heading p {
  font-size: 15px;
  color: #fff;
  text-transform: capitalize;
  margin-bottom: 0;
  font-weight: 300;
}

.ship-now-heading p span {
  font-weight: 500;
}

.ship-now-flex2 {
  /*display: flex;*/
  /*align-items: stretch;*/
  /*justify-content: space-between;*/
  /*gap: 19px;*/
  margin-bottom: 20px;
  /*flex-wrap: wrap;*/
}

.ship-now-box {
    background-color: #d2d2d2;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 25px;
}

.ship-now-box h3 {
  font-family: "Montserrat";
  font-size: 19px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0;
  text-align: center;
}
.ship-now-box.ship-now-box-center {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/*.ship-now-box:nth-child(even) {*/
/*  display: flex;*/
/*  flex-direction: column;*/
/*  align-items: flex-start;*/
/*  justify-content: flex-start;*/
/*  padding: 30px 30px;*/
/*}*/

.ship-now-box:nth-child(even) h3 {
  margin-bottom: 6px;
  text-align: left;
}

.ship-checks {
  display: flex;
  gap: 18px;
  align-items: start;
  width: 100%;
}

.ship-checkbox {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.ship-checkbox .form-ship label {
  gap: 9px;
}

.ship-checks p,
.ship-checks label {
  margin-bottom: 0;
  text-transform: capitalize;
  font-size: 14px;
  display: inline-block;
}

.ship-checks p {
    width: 160px;
}

.ship-now-boxes {
  margin-bottom: 28px;
}

.ship-now-wrap {
  text-align: center;
  margin: 50px 0;
}

.ship-now-wrap h6 {
  font-size: 20px;
  font-family: "Inter";
  font-weight: 600;
  margin-bottom: 20px;
}

.ship-now-wrap p {
  font-size: 14px;
  width: 90%;
  margin: 0 auto;
  line-height: 23.5px;
}

.ship-now-sign .row{
  align-items: center;
 }


.log-in-box {
    text-align: center;
    width: 50%;
    position: relative;
    margin: 0px auto;
    background: #41cbeb;
    padding: 20px 20px 20px;
    border-radius: 10px;
}

.log-in-head h2 {
    font-size: 45px;
    font-weight: 600;
    color: white;
}

.log-in-box input#exampleFormControlInput11 {
    padding: 12px 12px 12px;
    margin: 0px 0 20px;
}

.log-in-box input#exampleFormControlInput12 {
    padding: 12px 12px 12px;
}

.log-in-sec {
    padding: 70px 0 70px;
}

.log-in-btn a {
    background: #035bba;
    padding: 12px 40px 12px;
    border-radius: 3px;
    display: inline-block;
    margin: 20px 0;
    color:white;
}

.log-in-btn a:hover {
    background-color: var(--theme-color-2);
    color: var(--theme-color);
}

.log-box input#exampleFormControlInput13 {
    padding: 12px 12px 12px;
    margin: 5px 0 5px;
}

.log-box input#exampleFormControlInput14 {
    padding: 12px 12px 12px;
    margin: 5px 0 5px;
}

.log-box input#exampleFormControlInput15 {
    padding: 12px 12px 12px;
    margin: 5px 0 5px;
}

.log-box input#exampleFormControlInput16 {
    padding: 12px 12px 12px;
    margin: 5px 0 5px;
}

.log-box input#exampleFormControlInput17 {
    padding: 12px 12px 12px;
    margin: 5px 0 5px;
}

.ship-now-main input[type="number"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.ship-now-main input[type="number"]::-webkit-inner-spin-button,
.ship-now-main input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.ship-now-main .date .theme-btn {
    border: 0;
    padding: 10px 15px;
    transition: .2s all;
}

.term-condition {
    position: relative;
}

.terms-txt h4 {
    color: var(--theme-color-3);
    font-family: 'Poppins';
    font-size: 23px;
    margin: 30px 0 10px;
}

.terms-txt ul {margin: 15px 0;padding-left: 32px;}

.terms-txt p {
    font-size: 16px;
    margin-bottom: 11px;
}

.terms-txt h2 {
    font-size: 40px;
    color: var(--theme-color-3);
    margin-bottom: 15px;
}

/*MEDIA__QUERY____*/
.form-line-2{
    display:none;
}

@media only screen and (max-width: 1400px) {
}
@media only screen and (max-width: 1200px) {
    .col2 ul li a{
        font-size: 16px;
    }
    .col2 ul {
        padding-left: 25px;
    }
    .ship-now-section .banner-img-right.banner-img-inner-right img {
        width: 80px;
        top: -4%;
    }
    .ship-checks {
        flex-wrap: wrap;
    }
    .ship-now-box {
        height: 150px;
    }
    .ship-now-sign{
        width: 100%;
    }
    .ship-now-flex-left h2{
        font-size: 35px;
        margin-bottom: 15px;
        line-height: 40px;
    }
    
    .ship-now-flex-left p {
        font-size: 15px;
    }
    .ship-now-flex-right h6 {
        font-size: 18px;
        line-height: 25px;
        margin-bottom: 5px;
    }
    .ship-now-flex-right h4 {
        margin-bottom: 8px;
        font-size: 35px;
    }
    .ship-now-main .date h5 {
        font-size: 18px;
    }
    .ship-now-main .date input {
        font-size: 14px;
    }
    
    .logo a {
        width: 150px;
        display: block;
    }
    
    .logo img {
        width: 100%;
    }
    
    .navigation ul li a {
        font-family: "Outfit";
        font-size: 13px;
    }
    
    .quote-wrap {
        gap: 10px;
    }
    
    .theme-btn {
        padding: 10px 15px 10px 15px;
        font-size: 15px;
    }
    
    .theme-btn i {
        margin-left: 3px;
        padding: 6px;
        font-size: 10px;
    }
    
    .navigation ul {
        gap: 12px;
    }
    
    .head-wrap {
        width: 100%;
        margin-left: 0;
    }
    
    
    .shipping-right::after {
        background-size: contain;
        width: 50%;
    }
    .delivery-section .row::after {
        background-size: contain;
        width: 50%;
    }
    
    .theme-btn-2{
        padding: 10px 10px;
        font-size: 15px;
    }
    .theme-btn-2 i {
        margin-left: 3px;
        padding: 7px;
        font-size: 9px;
    }
    .banner-right-wrap {
        width: 40%;
    }
    
    section.services-section {
        padding: 110px 0 60px;
    }
    
    .shipping-right-wrap h4 {
        font-size: 50px;
    }
    .shipping-right-wrap h3 {
        font-size: 18px;
    }
    .foot-logo img {
        width: 100%;
        object-fit: contain;
    }
    .foot-logo a {
        width: 140px;
        display: block;
    }
    .footer-contact-bar {
        gap: 0px;
    
    }
}
@media only screen and (max-width: 1024px) {
    .col2 ul {
        padding-left: 18px;
    }
    .ship-now-sign canvas#signatureCanvas {
        width: 54%;
    }
    .ship-now-box.text__area {
        flex-direction: column;
        gap: 12px 0px;
    }
    .ship-now-box{
        height: 170px;
    }
    .ship-checks {
        gap: 10px;
    }
    .ship-now-main .date {
        gap: 6px;
    }
    .ship-now-box h3 {
        font-size: 17px;
    }
    .ship-now-sign{
        width: 100%;
    }
    .ship-now-flex-left h2{
        font-size: 30px;
        margin-bottom: 12px;
        line-height: 35px;
    }
    
    .ship-now-flex-left p {
        font-size: 14px;
    }
    .ship-now-flex-right h6 {
        font-size: 17px;
        line-height: 22px;
    }
    .ship-now-flex-right h4 {
        margin-bottom: 6px;
        font-size: 30px;
    }
    .ship-now-main .date h5 {
        font-size: 17px;
    }
    .ship-now-main .date input {
        font-size: 13px;
    }
    .log-in-box {
        width: 60%;
    }
    .banner-img-right img {
        width: 80px;
        top: 73%;
    }
    .banner-left-wrap {
        width: 55%;
    }
    .banner-right-wrap {
        width: 45%;
    }
    .banner-right h1 {
        font-size: 40px;
        line-height: 45px;
    }
    .banner-right h6 {
        font-size: 16px;
    }
    
    .banner-right h6::after ,
    .banner-right h6::before {
        top: 12px;
    }
    .banner-right p {
        font-size: 14px;
    }
    
    .service-head p {
        width: 50%;
        font-size: 15px;
    }
    section.services-section {
        padding: 90px 0 60px;
    }
    .service-head h2 {
        font-size: 40px;
    }
    
    .shipping-left p {
        margin-bottom: 20px;
        font-size: 14px !important;
    }
    
    .counter-1 h3 {
        font-size: 52px;
        margin: 0px;
    }
    .counter-1 h6{
        font-size: 18px;
        margin: 0px;
    }
    
    .ser-icon-flex {
        margin-bottom: 20px;
        gap: 10px;
    }
    
    .client-img-main img {
        height: 200px;
    }
    .brand-wrap {
        margin-bottom: 50px;
    }
    .client-right .service-head h6{
        margin-bottom: 10px;
    }
    
    .client-right .service-head p {
        width: 100%;
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 10px;
    }
    
    .client-slider-wrap p {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .client-slider-wrap .client-img-flex img:first-child {
        border: 2px solid #fff;
        border-radius: 50%;
        width: 70px;
    }
    .client-slider-wrap .client-img-flex img:last-child {
        width: 50px;
    }
    .client-slider-wrap .client-img-flex {
        top: -35px;
    }
    .client-slider-wrap {
        padding: 45px 20px 30px 20px;
    }
    .rate-flex-1 .stars i {
        font-size: 12px;
    }
    
    .rate-flex-2 h4 {
        font-size: 20px;
    }
    .rate-flex-2 h6 {
        font-size: 15px;
    }
    .delivery-section{
        padding: 80px 0 130px 0;
    }
    
    .deliver3 {
        justify-content: space-around;
    }
    
    .deliver-num h5 {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    .deliver-num {
        top: 51%;
        left: 0;
    }
    .deliver-box img {
        width: 83%;
        margin: 0 auto 30px;
    }

    .deliver-num-big h2 {
        font-size: 100px;
    }
    .deliver-box p {
        font-size: 13px;
    }
    .contact-right h6 {
        font-size: 15px;
        margin-bottom: 10px;
    }
    
    .contact-right h2 {
        font-size: 40px;
        margin-bottom: 15px;
    }
    .contact-right form input, .contact-right form textarea{
        margin-bottom: 15px;
        font-size: 12px;
    }
    .contact-right{
        padding: 30px 30px;
        margin-left: -80px;
        width: 100%;
    }
    .foot-order p {
        font-size: 14px;
        width: 93%;
    }
    .foot-social-wrap form {
        width: 60%;
    }
    .foot-social-wrap {
        padding: 25px 0;
    }
    footer {
        padding: 70px 0 0;
    }
    .footer-flex h4 {
        font-size: 15px;
        line-height: 17px;
    }
    .col1 p {
        font-size: 13px;
        margin: 10px 0;
    }
    .rate-btn {
         margin: 0px; 
    }
    .rate-btn a {
        padding: 10px;
        font-size: 13px;
        font-weight: 500;
    }
    .col2 ul li {
        margin-bottom: 9px;
    }
    .col2 ul li a {
        font-size: 13px;
        line-height: 1.3;
        display: block;
    }
    .banner-img-inner-right img {
        top: -12%;
    }
    .inner-banner {
        padding: 90px 0;
    }
    section.shipping-section {
        padding: 70px 0;
        position: relative;
    }
}
@media only screen and (max-width: 991px) {
    .col2 ul{
        padding-left: 28px;
    }
    .ship-now-wrap p {
        font-size: 13px;
    }
    .ship-now-sign .row {
        gap: 17px 0px;
    }
    .ship-now-box.text__area textarea {
        width: 50%;
        padding: 6px 9px;
        font-size: 13px;
    }
    .ship-now-box {
        height: 117px;
    }
    .row.ship-now-flex2 {
        gap: 16px 0px;
    }
    .ship-now-heading {
        padding: 25px 15px;
    }
    .ship-now-heading p {
        font-size: 12px;
    }
    .ship-now-main .form-flex2 input, .ship-now-main .form-flex2 .form-ship {
        padding: 14px;
        font-size: 13px;
    }
    .form-line-2{
        display:block;
    }
    .form-line{
        display:none;
    }
    .ship-now-flex-left p {
        font-size: 12px;
    }
    .ship-now-section .banner-img-right.banner-img-inner-right img {
        top: -2% !important;
    }
    .fields-one.air_fields .row, .fields-one.ocean_fields .row{
        gap: 18px 0px;
    }
    
    .terms-txt ul li, .terms-txt p{
        font-size: 15px;
        margin-bottom: 10px;
    }
    .log-in-box {
        width: 75%;
    }
    .services-inner-section .row {
        gap: 110px 0;
    }
    .services-inner-section {
        padding: 100px 0 120px;
    }
  .offcanvas-btn {
    font-size: 30px;
    color: #fff;
    background-color: var(--theme-color);
    padding: 12px;
    line-height: 24px;
    border-radius: 6px;
  }
  .offcanvas-btn:hover,
  .offcanvas-btn:active {
    background: var(--theme-color) !important;
    border-color: var(--theme-color) !important;
    color: #fff !important;
  }
  .offcanvas,
  .offcanvas-btn {
    display: block !important;
  }
  .offcanvas {
    background-color: var(--theme-color);
  }
  .navigation {
    display: none;
  }
    .side_menu .btn-toggle {
        color: #ffffff !important;
        display: inline-flex;
        padding: 3px 10px;
        font-weight: 500;
        background-color: transparent;
        border: 0;
        font-size: 14px;
        width: 100%;
    }
    
    .btn-toggle:hover,
    .btn-toggle:focus {
        color: var(--color-primary) !important;
    }
    
    .side_menu .btn-toggle::after {
        width: 1.25em;
        line-height: 0;
        content: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='rgba%280,0,0,.5%29' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 14l6-6-6-6'/%3e%3c/svg%3e");
        transition: transform .35s ease;
        transform-origin: .5em 50%;
        margin: 0px 0px 0px auto;
        filter: invert(1);
    }
    
    .btn-toggle[aria-expanded="true"] {
        color: rgba(0, 0, 0, .85);
    }
    
    .btn-toggle[aria-expanded="true"]::after {
        transform: rotate(90deg);
    }
    
    .side_menu .btn-toggle-nav a {
        display: inline-flex;
        text-decoration: none;
        color: #ffffff !important;
        padding: 0px 30px;
    }
    
    .btn-toggle-nav a:hover,
    .btn-toggle-nav a:focus {
        color: var(--color-primary) !important;
    }
    .side_menu button.text-reset {
        color: #fff !important;
        background-color: transparent !important;
        outline: none;
        font-size: 25px;
        margin-right: 14px;
        outline: none;
        border: none;
    }
    
    .offcanvas-header {
        justify-content: flex-end !important;
    }
    
    a.main_link{
        padding: 10px 10px;
        font-weight: 500;
        color: #ffffff !important;
        background-color: transparent;
        border: 0;
        font-size: 14px;
    }
    
    ul.list-unstyled.ps-0 li{
        padding: 4px 0px;
    }
    
    .side_menu .btn-toggle-nav li{
        padding: 1px 0px !important;
    }
    .quote-wrap {
        gap: 30px;
    }
    .banner-right h1 {
        font-size: 30px;
        line-height: 35px;
    }
    .service-box {
        padding: 20px 0 20px 21px;
    }
    .service-box img {
        margin-bottom: 25px;
    }
    
    .service-box h5 {
        margin-bottom: 25px;
        font-size: 16px;
    }
    .service-head p {
        width: 55%;
        font-size: 14px;
    }
    .service-head h6 {
        font-size: 14px;
        padding: 7px;
        margin-bottom: 5px;
    }
    
    .service-head h2 {
        font-size: 32px;
    }
    
    .shipping-left .service-head{
        margin-bottom: 10px;
    }
    
    .ser-icon-txt p {
        margin-bottom: 0 !important;
        font-size: 13px !important;
    }
    .shipping-left p {
        margin-bottom: 20px;
        font-size: 12px !important;
    }
    .counter-1 h3 {
        font-size: 42px;
    }
    .counter-1 h6 {
        font-size: 14px;
    }
    .shipping-section .row{
        align-items: center !important;
    }
    
    .shipping-right-wrap h4 {
        font-size: 40px;
    }
    .shipping-right-wrap {
        padding: 5px 15px;
    }
    .shipping-right-wrap h3 {
        font-size: 14px;
    }
    .client-section .row{
        align-items: center !important;
    }
    .client-img-main img {
        height: 150px;
    }
        .client-slider-wrap p{
        font-size: 12px;
        margin-bottom: 10px;
    }
    .rate-flex-2 h4 {
        font-size: 18px;
    }
    .rate-flex-2 h4 {
        font-size: 12px;
    }
    .rate-flex-1 .stars i {
        font-size: 9px;
    }
    .rate-flex-1 h5 {
    font-size: 14px;
    }
    .client-slider-wrap-main {
        padding: 0 0px;
    }
    .client-slider-wrap {
        padding: 45px 15px 30px 15px;
    }
    .client-right button.slick-arrow {
        font-size: 12px;
    }
    .client-slider .slick-prev:before, .client-slider .slick-next:before {
        width: 30px;
        height: 30px;
        top: -4px;
    }
    .client-slider .slick-next,
    .client-slider .slick-prev {
        top: 109%;
    }
    .client-slider .slick-next {
        left: 160px;
    }
    .client-slider .slick-track {
        padding: 45px 0 0;
    }
    .deliver-box img {
        width: 100%;
    }
    
    .delivery-section .row {
        height: 660px;
    }
    .deliver-num {
        top: 45%;
        left: -14px;
    }
    .deliver-box h5 {
        font-size: 16px;
        font-weight: 500;
    }
    .deliver-box p {
        font-size: 10px;
    }
    .deliver3 {
        justify-content: space-evenly;
    }
    .deliver3 .deliver-box .deliver-num-big {
        right: -28%;
    }
    .deliver-num-big {
        right: -24%;
    }
    .foot-logo a {
        width: 115px;
    }
    .foot-order {
        padding-left: 20px;
    }
    .foot-order p {
        font-size: 12px;
        width: 100%;
    }
    .foot-social-wrap form {
        width: 67%;
    }
    
    .foot-social-wrap form input {
        width: 67%;
    }
    .foot-social-wrap form button {
        width: 29%;
        padding: 10px 0px;
    }
    .col1 {
        padding: 13px;
        text-align: center; 
    }
    .footer-flex {
        gap: 10px 20px;
        flex-direction: column;
    }
    .col1 p {
        font-size: 11px;
        margin: 4px 0 10px 0;
    }
        .rate-btn a {
        padding: 8px 10px;
        font-size: 12px;
    }
    .footer-flex-aling {
        gap: 10px;
    }
    .cont-one img {
        width: 25px;
    }
    .cont-two p,
    .cont-two h6 {
        font-size: 14px;
    }
    .bottom-bar p {
        padding: 20px 0px;
    }
}
@media only screen and (max-width: 767px) {
    .ship-now-flex-right {
        text-align: center;
        width: 50%;
        margin: 14px auto 0;
    }
    .ship-now-flex {
        flex-wrap: wrap;
        text-align: center;
    }
    .ship-now-wrap p {
        font-size: 12px;
        line-height: 20px;
    }
    .ship-now-flex-left h2{
        font-size: 26px;
        margin-bottom: 10px;
        line-height: 30px;
    }
    
    .ship-now-flex-left p {
        font-size: 13px;
    }
    .ship-now-flex-right h6 {
        font-size: 15px;
        line-height: 20px;
    }
    .ship-now-flex-right h4 {
        margin-bottom: 4px;
        font-size: 26px;
    }
    .ship-now-main .date h5 {
        font-size: 14px;
    }
    .ship-now-main .date input {
        font-size: 11px;
    }
    .ship-now-main {
        padding: 30px;
    }
    .fields-one.air_fields, .fields-one.ocean_fields{
        margin-top: 24px;
    }
    .terms-txt ul li, .terms-txt p{
        font-size: 14px;
        margin-bottom: 9px;
    }
    .log-in-box input.form-control {
        padding: 10px !important;
        font-size: 14px;
    }
    .log-in-box {
        width: 90%;
    }
    .offcanvas-btn {
        font-size: 18px;
        padding: 6px 10px;
        border-radius: 4px;
    }
    .services-inner-section .row {
        gap: 130px 0;
    }
    .col2 ul {
        padding-left: 20px;
    }
    
    footer .col2 {
        margin-top: 36px;
    }
    
    .contact-right {
        margin: 30px auto;
        width: 90%;
    }
    
    .foot-social-wrap {
        justify-content: center;
        flex-wrap: wrap;
        text-align: center;
    }
    .foot-order {
        border: none;
        padding: 20px 0px;
    }
    .col1 {
        padding: 20px 30px;
    }
    
    .delivery-section .row {
        height: auto;
        gap: 50px 0px;
    }
        .deliver-box h5 {
        font-size: 26px;
        font-weight: 600;
    }
    .deliver-box p {
        font-size: 15px;
    }
    .deliver1 {
        margin-top: 50px;
    }
    .deliver3 .deliver-box:first-child {
        margin-top: 0px !important;
    }
    .deliver3 {
        gap: 50px 0px;
        margin-bottom: 50px;
    }
    .deliver-num h5{
        width: 80px;
        height: 80px;
        font-size: 56px !important;
    }
    .deliver-num {
        top: 60%;
        left: -45px;
    }
    .deliver-box img {
        width: 100%;
        margin: 0 auto 70px;
    }
    .service-head p {
        width: 100%;
    }
    .service-head h2 {
        font-size: 42px;
    }
    
    .client-left {
       margin-bottom: 40px;
    }
    .client-img-main img {
        height: 200px;
    }
    .shipping-right-wrap {
        padding: 10px 25px;
        top: 28%;
        left: 3%;
    }
    
    .shipping-right {
        margin-top: 40px;
    }
    .services-section .row{
        gap:18px 0px;
    }
    .service-head {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }
    .banner-left-wrap {
        width: 100%;
    }
    .banner-right-wrap {
        width: 80%;
        margin: 0px auto;
    }
    .deliver-box {
        margin: 0px auto;
    }
    .footer-contact-bar {
        gap: 20px 0px;
        flex-wrap: wrap;
    }
    .foot-logo a {
        width: 210px;
    }
}
@media only screen and (max-width: 576px) {
    .ship-now-wrap h6 {
        font-size: 16px;
    }
   
    .set-pickup label.form-check-label{
        font-size: 14px;
    }
    .set-pickup {
        gap: 70px;
    }
    button#submitBtn, button#nextBtn, button#prevBtn {
        padding: 7px 30px;
        font-size: 14px;
    }
    .terms-txt ul li,
    .terms-txt p{
        font-size: 13px;
        margin-bottom: 8px;
    }
    .offcanvas-btn {
        font-size: 15px;
        padding: 3px 8px;
        border-radius: 3px;
    }
    .theme-btn {
        padding: 6px 10px 6px 10px;
        font-size: 13px;
    }
    .shipping-right {
        width: 90%;
        margin: 50px auto 0px auto;
        overflow: hidden;
    }
    .logo a{
        width: 100px;
    }
     .banner-img-inner-right img {
        top: -7% !important;
    }
    .banner-img-right img {
        top: 83%;
    }
    section.shipping-section{
        padding: 60px 0;
    }
    .client-slider-wrap {
        padding: 45px 35px 30px 35px;
    }
    .deliver3 .deliver-box .deliver-num-big {
        top: -6%;
    }
     .banner-right h6 {
        font-size: 15px;
    }
    .banner-right h1 {
        font-size: 28px;
        line-height: 32px;
    }
    .service-head p {
        font-size: 13px;
    }
    .service-box h5 {
        margin-bottom: 22px;
        font-size: 15px;
    }
    .banner-right p {
        font-size: 13px;
    }
    .counter-1 h3 {
        font-size: 32px;
    }
    .shipping-right-wrap h4 {
        font-size: 30px;
    }
    .shipping-right-wrap h3 {
        font-size: 13px;
    }
    .shipping-right-wrap {
        padding: 6px 14px;
        top: 32%;
        left: 5%;
    }
    .client-img-main img {
        height: 220px;
    }
    .deliver-box h5 {
        font-size: 24px;
    }
    .deliver-box p {
        font-size: 14px;
    }

    .delivery-section .row::before,
    .delivery-section .row::after,
    .deliver-box::before{
        content:none;
        display: none;
    }
    .deliver3 .deliver-box .deliver-num-big, .deliver-num-big {
        right: -20%;
    }
    .footer-contact-bar {
        gap: 20px 0px;
        flex-direction: column;
        padding-left: 30px;
    }
    .deliver-num-big {
        top: -7%;
    }
    .ship-now-box {
        height: 135px;
    }
    .ship-now-heading h3 {
        font-size: 22px;
    }

    .banner-txt h1 {
        font-size: 50px;
    }
    .contact-right h6 {
        font-size: 13px;
    }
    .foot-logo a {
        width: 190px;
    }
    .deliver-logo {
        width: 100%;
        margin-top: -230px;
    }
    .terms-txt h2 {
        font-size: 37px;
    }
}
@media only screen and (max-width: 450px) {
    .terms-txt h2 {
        font-size: 35px;
    }
    .deliver-logo {
        margin-top: -270px;
    }
    .contact-right h6 {
        font-size: 12px;
    }
    .banner-txt h1 {
        font-size: 45px;
    }
    .ship-now-box {
        height: 145px;
    }
    .ship-now-heading h3 {
        font-size: 20px;
    }
    .deliver-box p {
        font-size: 13px;
    }
    .deliver-box h5 {
        font-size: 22px;
    }
    .deliver-num h5 {
        width: 64px;
        height: 65px;
        font-size: 44px !important;
    }
    .client-img-main img {
        height: 162px;
    }
    .shipping-right-wrap h4 {
        font-size: 25px;
    }
    .shipping-right-wrap h3 {
        font-size: 11px;
    }
    .shipping-right-wrap {
        padding: 4px 8px;
        left: 4%;
    }
    .counter-1 h3 {
        font-size: 27px;
    }
    .counter-1 h6 {
        font-size: 13px;
    }
    .service-box h5 {
        margin-bottom: 20px;
        font-size: 14px;
    }
    .service-head p {
        font-size: 11px;
    }
    .service-head h6 {
        font-size: 11px;
        padding: 5px 12px;
    }
    .service-head h2{
        font-size: 24px;
    }
    .set-pickup label.form-check-label{
        font-size: 13px;
    }
    .set-pickup {
        gap: 30px;
    }
    .log-in-box input.form-control {
        padding: 8px !important;
        font-size: 12px;
    }
    .quote-wrap {
        gap: 15px;
    }
    .deliver-num {
        top: 54%;
        left: -30px;
    }
    .deliver3 {
        margin-bottom: 90px;
    }
    .banner-right h1 {
        font-size: 25px;
        line-height: 30px;
    }
    .banner-right-wrap {
        width: 95%;
        margin: 0px auto;
    }
    .banner-right h6{
        font-size: 13px;
        padding: 9px 38px;
        margin-left: -30px;
    }
    .banner-right h6::after, .banner-right h6::before {
        top: 8px;
    }
    .brand-img {
        /* width: 150px; */
        display: contents;
    }
    
}
@media only screen and (max-width: 370px) {
    .client-img-main img {
        height: 140px;
    }
    .footer-contact-bar {
        justify-content: flex-start;
        padding: 30px 0px 30px 40px;
        margin: 40px 0 0;
    }
    .bottom-bar p {
        padding: 30px 0px;
        font-size: 13px;
    }
        .deliver-num h5 {
        width: 60px;
        height: 60px;
        font-size: 36px !important;
    }
    .deliver-num {
        top: 53%;
        left: -30px;
    }
    
}
.step {
    display: none;
    }
.step.active {
    display: block;
}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 