/* Shal Xpress Style Sheet */
:root {
  --bs-poppins: "Poppins", sans-serif;
  --bs-opensans: "Open Sans", sans-serif;
  --bs-manrope: "Manrope", sans-serif;
  --bs-shalred: #b11d29;
  --bs-shalblue: #201652;
  --bs-white: #fff;
  --bs-black: #000;
  --bs-blackgrey: #515151;
  --bs-grey: #a9a9a9;
  --bs-whiteblue: #f7f9ff;
  --bs-whites: #fafafa;
  /* Other */
  --color-text: navy;
  --color-bg: papayawhip;
  --color-bg-accent: #ecdcc0;
  --size: clamp(10rem, 1rem + 40vmin, 30rem);
  --gap: calc(var(--size) / 14);
  --duration: 60s;
  --scroll-start: 0;
  --scroll-end: calc(-100% - var(--gap));
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  overflow-x: hidden;
}
body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: inherit;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.mt-service {
  margin-top: 270px;
}
.dropdown-menu {
  display: block;
  visibility: hidden;
  opacity: 0;
  transform: translateY(50px);
  transition: 0.5s ease all;
}
.dropdown-menu.show {
  display: block;
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
  transition: 0.5s ease all;
}
.mt-5{
  margin-top: 50px !important;
}
.mt-3{
  margin-top: 30px !important;
}
/* Nav */
.navdiv {
  width: 90%;
  margin: 0 auto;
  padding: 0;
}
.navdiv .action-btn {
  text-align: end;
}
.navdiv .action-btn img {
  width: 25px;
}
.navdiv .action-btn .btn {
  background-color: var(--bs-shalblue);
  border-color: var(--bs-shalblue);
  font-family: var(--bs-poppins);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 50px;
}
.navdiv .action-btn a {
  text-decoration: none;
}
.navdiv ul li {
  font-family: var(--bs-manrope);
}
.navdiv ul li a {
  color: var(--bs-shalblue);
  font-weight: 600;
}
.navbar {
  transition: 100ms ease-in-out;
}
.navbar.white {
  background-color: var(--bs-white);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
}
.centre-nav {
  display: flex;
  width: 80%;
  justify-content: center;
  gap: 30px;
}
/* Main div */
.main-div {
  width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.landing-bg {
  position: absolute;
  width: 100%;
  height: fit-content;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 20%;
}
.landing-page {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  padding: 100px 0px 0px;
  flex-direction: column;
}
.landing-1 {
  width: 100%;
  padding-top: 50px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.landing-1 h1 {
  font-family: var(--bs-poppins);
  font-weight: 700;
  color: var(--bs-shalblue);
  font-size: 54px;
  width: 70%;
  margin: 0 auto;
  text-align: center;
  line-height: 72px;
}
.landing-1 h1 span {
  color: var(--bs-shalred);
  position: relative;
}
.landing-1 h1 span .pat-1 {
  position: absolute;
  bottom: -5px;
  width: 90%;
}
.landing-1 h1 span .pat-2 {
  position: absolute;
  left: 75px;
  top: -10px;
}
.landing-1 p {
  font-family: var(--bs-manrope);
}
.track-btn {
  background-color: var(--bs-shalred);
  width: fit-content;
  padding: 10px 10px 10px 20px;
  border-radius: 50px;
}
.track-btn a {
  text-decoration: none;
}
.track-btn span {
  color: var(--bs-white);
  font-family: var(--bs-poppins);
  font-size: 18px;
}
.track-btn i {
  margin-left: 10px;
  background-color: var(--bs-white);
  font-size: 18px;
  color: var(--bs-shalblue);
  height: 35px;
  width: 35px;
  padding: 9px;
  border-radius: 50px;
  transition: 500ms ease-in-out;
}
.track-btn:hover {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.landing-2 {
  width: 100%;
}
.landing-2 img {
  width: inherit;
}
/* Quote-div */
.quote-div {
  width: 100%;
  background-color: var(--bs-shalblue);
  padding: 30px 50px 120px;
}
.quote-form {
  display: flex;
  justify-content: space-between;
}
.quote-form .mb-3 {
  width: 20%;
}
.quote-form .mb-3 input {
  padding: 10px 10px;
  outline: none !important;
  box-shadow: none;
  border: 1px solid #e8e8e8;
}
.quote-div h2 {
  color: var(--bs-white);
}
.quote-div p {
  color: var(--bs-white);
}
.qoute-btn {
  text-align: end;
}
.qoute-btn .btn {
  background-color: var(--bs-shalred);
  color: var(--bs-white);
  font-family: var(--bs-manrope);
  border-radius: 20px;
  margin-left: 15px;
}
.qoute-btn span {
  color: var(--bs-white);
  font-family: var(--bs-manrope);
}
/* Service */
.service-section {
  width: 100%;
  position: absolute;
  top: 235px;
  z-index: 1;
}
.service-div {
  width: 95%;
  margin: 0 auto;
  text-align: center;
  box-shadow: #e6effa 0px 70px 100px -20px, #e6effa 0px 30px 60px -30px;
  padding: 20px;
  border-radius: 10px;
  background-color: var(--bs-white);
}
.service-div h2 {
  font-family: var(--bs-manrope);
  font-weight: 700;
  color: var(--bs-shalblue);
  font-size: 42px;
}
.service-div p {
  font-family: var(--bs-manrope);
  font-weight: 400;
  font-size: 14px;
}
.service-card {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.service-card-1 {
  width: 30%;
  height: fit-content;
  background-color: #fafbff;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px 20px 10px;
}
.service-card-1 img {
  width: 25%;
  height: 70%;
}
.service-card-1 span {
  font-family: var(--bs-manrope);
  font-weight: 700;
  font-size: 28px;
  color: var(--bs-shalblue);
  margin-top: 10px;
}
.service-card-1 p {
  font-family: var(--bs-manrope);
  font-weight: 400;
  font-size: 14px;
  margin-top: 10px;
}
.img-1 {
  width: 20% !important;
}
.img-2 {
  width: 50% !important;
}
.qut-serv-div {
  position: relative;
}
/* About us */
.about-us {
  width: 100%;
}
.about-section {
  width: 95%;
  margin: 25% auto 0%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.about-sec-1 {
  width: 50%;
}
.about-sec-2 {
  width: 50%;
}
.about-sec-2 img {
  width: 100%;
}
.about-sec-1 p {
  margin-bottom: 0;
}
.tag-title {
  display: flex;
  align-items: center;
  gap: 5px;
}
.tag-title span {
  width: 10px;
  height: 30px;
  background-color: var(--bs-shalred);
  display: block;
  border-radius: 3px;
}
.tag-title p {
  font-family: var(--bs-poppins);
  font-size: 28px !important;
  font-weight: 800;
  color: var(--bs-shalred);
  margin-bottom: 0;
}
.about-sec-1 h2 {
  font-family: var(--bs-manrope);
  font-size: 46px;
  font-weight: 800;
  color: var(--bs-shalblue);
}
.about-sec-1 p {
  font-family: var(--bs-manrope);
  font-size: 16px;
  line-height: 32px;
}
/* How it works */
.how-works {
  width: 100%;
  background-color: var(--bs-whiteblue);
  padding: 50px 0px;
  margin-top: 100px;
}
.how-works-div {
  width: 95%;
  margin: 0px auto;
  display: flex;
  align-items: center;
}
.how-works-1 {
  width: 50%;
}
.how-works-2 {
  width: 50%;
}
.how-works-1 img {
  width: 90%;
}
.how-works-2 h2 {
  font-family: var(--bs-manrope);
  font-size: 46px;
  font-weight: 800;
  color: var(--bs-shalblue);
}
.how-works-2 p {
  font-family: var(--bs-manrope);
  font-size: 16px;
  line-height: 32px;
}
.works-card {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.card-1-w {
  width: 45%;
  height: fit-content;
  background: var(--bs-white);
  padding: 30px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: 10px;
  transition: 500ms ease-in-out;
}
.card-1-w:hover {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.card-1-w span {
  font-size: 26px;
  font-family: var(--bs-manrope);
  color: var(--bs-shalblue);
  font-weight: 800;
}
.card-1-img {
  width: 60px;
  height: 60px;
  background-color: var(--bs-shalred);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  box-shadow: rgba(196, 13, 13, 0.286) 0px 4px 12px;
}
.card-1-img img {
  width: 50px;
  padding: 2px;
}
/* Call of action */
.coa-divs {
  width: 95%;
  background-color: var(--bs-shalblue);
  height: 30rem;
  overflow: hidden;
  margin: 100px auto 0px;
  display: flex;
  border-radius: 20px 20px 0px 0px;
  position: relative;
}
.coa-divs-1 {
  width: 50%;
}
.coa-divs-2 {
  width: 50%;
  text-align: center;
  padding: 100px 30px;
}
.coa-divs-1 img {
  width: 140%;
  padding: 0px;
}
.coa-divs-2 span {
  color: var(--bs-white);
  font-family: var(--bs-poppins);
  font-size: 52px;
  font-weight: 700;
}
.coa-divs-2 a img {
  width: 30%;
  margin-top: 20px;
}
.coa-main {
  position: absolute;
  right: -150px;
  width: 30%;
}
/* footer */
.footer {
  width: 100%;
  background: rgb(255, 255, 255);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(245, 249, 255, 1) 100%
  );
  /* margin-top: 50px; */
  padding: 15px 0px;
}
.footer-div {
  width: 95%;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px 0px;
}
.footer-1 {
  width: 25%;
}
.footer-2 {
  width: 15%;
}
.footer-3 {
  width: 20%;
}
.footer-4 {
  width: 30%;
}
.footer-logo {
  width: 20%;
}
.footer-2 .dropdown button {
  border: navajowhite;
  background-color: inherit;
}
.footer-right {
  font-family: var(--bs-manrope);
  color: var(--bs-shalblue);
  font-weight: 800;
}
.footer-follow {
  text-align: end;
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  align-items: center;
}
.footer-logo img {
  width: 200px;
}
.footer-follow img {
  width: 30px;
}
.footer-follow span {
  font-family: var(--bs-manrope);
  font-weight: 800;
  color: var(--bs-shalblue);
}
.footer-title {
  font-family: var(--bs-manrope);
  font-size: 18px;
  color: var(--bs-shalblue);
  font-weight: 800;
}
.footer-3 ul {
  list-style: none;
  margin-top: 10px;
}
.footer-3 ul {
  margin: 5px 0px;
  padding: 0;
}
.footer-4 .form-div {
  display: flex;
  gap: 10px;
}
.footer-2 ul {
  padding: 0rem 0rem;
  margin-top: 5px;
  line-height: 32px;
  font-family: var(--bs-manrope);
  list-style: none;
}
.footer-2 i {
  color: var(--bs-shalred);
  font-size: 10px;
}
.footer-1 p {
  font-family: var(--bs-manrope);
  color: var(--bs-black);
  font-size: 14px;
  line-height: 24px;
}
.footer-2 a,
.footer-3 a {
  width: fit-content;
  display: block;
}
.footer-2 a li {
  display: flex;
  align-items: center;
  gap: 5px;
}
.footer-3 a li {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-bottom: 10px;
  font-family: var(--bs-manrope);
}
.footer-3 i {
  color: var(--bs-shalred);
}
.footer-form {
  margin-top: 5px;
}
.footer-4 .btn {
  background-color: var(--bs-shalred);
  color: var(--bs-white);
  font-family: var(--bs-manrope);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
.footer-terms {
  width: 95%;
  margin: 0 auto;
  border-top: 1px solid #eaeaea;
  padding: 10px 0px;
}
.footer-4 .form-div .mb-3 {
  width: 50%;
}
.terms-1 {
  display: flex;
  justify-content: space-between;
}
.terms-1 span {
  width: 15%;
  color: var(--bs-shalblue);
  font-family: var(--bs-manrope);
  font-size: 18px;
  font-weight: 700;
}
.terms-1 p {
  font-family: var(--bs-manrope);
  font-size: 14px;
  width: 85%;
}
.terms-2 {
  display: flex;
  justify-content: space-between;
}
.terms-2 span {
  width: 15%;
  color: var(--bs-shalred);
  font-family: var(--bs-manrope);
  font-size: 18px;
  font-weight: 700;
}
.terms-2 p {
  font-family: var(--bs-manrope);
  font-size: 14px;
  color: var(--bs-shalred);
  width: 85%;
}
.copy-right {
  border-top: 1px solid #eaeaea;
  width: 95%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0px;
}
.copy-right .footer-right {
  width: 100%;
}
.copy-right .footer-follow {
  width: 12%;
}
.footer-follow i {
  color: var(--bs-shalred);
  font-size: 22px;
}
.footer-2 .dropdown-menu {
  line-height: normal;
  font-size: 14px;
}
.footer-2 .dropdown-menu a {
  width: 100%;
}
/* Contact page css */
.contact-div {
  width: 100%;
  margin: 100px auto;
  display: flex;
  justify-content: space-between;
}
.contact-div-1 {
  width: 40%;
  padding: 0px 80px;
}
.contact-div-2 {
  width: 60%;
  text-align: end;
}
.contact-div-2 img {
  width: 90%;
}
.contact-div-1 ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.contact-div-1 .contact-div {
  padding: 0px;
}
.contact-div h1 {
  font-family: var(--bs-poppins);
  font-size: 54px;
  font-weight: 600;
  color: var(--bs-shalblue);
}
.contact-tag {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
}
.contact-tag:first-child {
  margin-top: 20px;
}
.contact-icon {
  color: var(--bs-shalred);
  font-size: 20px;
}
.contact-det span {
  color: var(--bs-shalblue);
  font-family: var(--bs-poppins);
  font-size: 26px;
  font-weight: 700;
}
.contact-det a {
  font-family: var(--bs-manrope);
  font-size: 18px;
}
/* Location Page Css */
.location-div {
  width: 100%;
  position: relative;
  height: 25rem;
  overflow: hidden;
}
.location-div img {
  position: absolute;
  width: inherit;
  top: 0;
  left: 0;
  z-index: -1;
  height: inherit;
}
.location-section {
  width: 90%;
  margin: 100px auto 0px;
}
.location-section h1 {
  font-family: var(--bs-poppins);
  font-size: 54px;
  font-weight: 600;
  color: var(--bs-shalblue);
}
.location-section p {
  font-family: var(--bs-manrope);
  font-size: 14px;
}
.location-cards {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  /* justify-content: space-between; */
  gap: 30px;
}
.location-det {
  width: 23%;
  height: inherit;
  background-color: #fafbff;
  border-radius: 10px;
  border-left: 10px solid #201652;
  padding: 20px;
  position: relative;
  overflow: hidden;
  transition: 500ms ease-in-out;
  margin-bottom: 50px;
}
.location-det span {
  font-family: var(--bs-manrope);
  color: var(--bs-shalblue);
  font-size: 22px;
  font-weight: 700;
}
.loact-address p {
  font-family: var(--bs-manrope);
  font-size: 16px;
  margin-top: 10px;
}
.loact-phone p {
  font-family: var(--bs-manrope);
  font-size: 16px;
  margin-top: 5px;
  color: var(--bs-shalred);
  margin-bottom: 0px;
}
.location-det .btn {
  background-color: var(--bs-shalred);
  color: var(--bs-white);
  font-family: var(--bs-manrope);
}
.location-det i {
  position: absolute;
  right: -50px;
  font-size: 100px;
  bottom: 0;
  color: var(--bs-shalred);
  opacity: 10%;
}
.location-det:hover {
  box-shadow: rgba(255, 204, 204, 0.616) 0px 25px 20px -20px;
}
/* Service page */
/* Parcel service */
.parcel-div {
  width: 100%;
  position: relative;
}
.parcel-section {
  width: 90%;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  padding: 100px 0px 0px;
}
.parcel-1 {
  width: 55%;
  padding-top: 50px;
}
.parcel-2 {
  width: 45%;
  text-align: center;
}
.parcel-2 img {
  width: 100%;
}
.parcel-bg {
  width: 25%;
  height: 700px;
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--bs-shalblue);
  z-index: -1;
  border-radius: 0px 0px 0px 100px;
}
.parcel-1 h1 {
  color: var(--bs-shalblue);
  font-size: 54px;
  font-family: var(--bs-poppins);
  font-weight: 700;
}
.parcel-1 p {
  font-family: var(--bs-manrope);
  font-size: 16px;
  line-height: 32px;
  width: 80%;
}
.parcel-who-div {
  width: 90%;
  margin: 80px auto 0px;
}
.parcel-who-title {
  width: 80%;
  margin: 0 auto;
  position: relative;
}
.parcel-who-title h2 {
  font-family: var(--bs-manrope);
  font-size: 36px;
  font-weight: 600;
  text-align: center;
  color: var(--bs-shalblue);
}
.parcel-who-title span {
  position: absolute;
  width: 100px;
  height: 1px;
  background-color: var(--bs-shalred);
  top: 120%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.parcel-service-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.parcel-ser-div {
  width: 45%;
  height: fit-content;
  display: flex;
  margin-top: 50px;
}
.parcel-service-card-1 {
  width: 15%;
}
.parcel-service-card-2 {
  width: 80%;
}
.parcel-service-card-1 span {
  background-color: var(--bs-shalred);
  height: fit-content;
  width: fit-content;
  display: block;
  border-radius: 5px;
}
.parcel-service-card-1 img {
  width: 80px;
  padding: 10px;
}
.parcel-service-card-2 span {
  font-family: var(--bs-manrope);
  font-size: 20px;
  color: var(--bs-shalblue);
  font-weight: 600;
}
.parcel-service-card-2 p {
  font-family: var(--bs-manrope);
  font-size: 14px;
  line-height: 28px;
}
.parcel-what {
  width: 90%;
  margin: 100px auto 0px;
}
.parcel-what-div {
  display: flex;
  gap: 100px;
  margin-top: 50px;
}
.parcel-what-card {
  width: 28%;
  height: 250px;
  /* background-color: var(--bs-whiteblue); */
  position: relative;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #e8e8e8;
  transition: 500ms ease-in-out;
}
.parcel-what-card:hover {
  box-shadow: rgba(14, 14, 81, 0.53) 0px 30px 60px -12px,
    rgba(208, 68, 68, 0.53) 0px 18px 36px -18px;
}
.parcel-what-card span {
  font-family: var(--bs-manrope);
  font-size: 24px;
  font-weight: 600;
  color: var(--bs-shalblue);
}
.parcel-what-card p {
  font-family: var(--bs-manrope);
  font-size: 16px;
  line-height: 32px;
  margin-top: 10px;
}
.parcel-what-bg {
  position: absolute;
  bottom: 0;
  right: 5px;
  font-size: 62px !important;
  opacity: 20%;
  font-family: var(--bs-manrope);
}
.coa-div {
  width: 90%;
  margin: 100px auto 100px;
  height: inherit;
  border: 5px solid #201652;
  border-radius: 150px;
  padding: 15px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.coa-1 {
  width: 17%;
}
.coa-2 {
  width: 80%;
}
.coa-1 span {
  background-color: var(--bs-shalred);
  width: 200px;
  height: 200px;
  display: block;
  border-radius: 50%;
  display: flex;
  /* text-align: center; */
  align-items: center;
  justify-content: center;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset,
    rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
}
.coa-1 img {
  width: 60%;
}
.coa-bg {
  position: absolute;
  width: 100%;
  z-index: -1;
  top: 10px;
  opacity: 50%;
  height: 225px;
}
.coa-2 span {
  font-family: var(--bs-manrope);
  font-size: 36px;
  color: var(--bs-shalblue);
  font-weight: 800;
}
.coa-2 p {
  font-family: var(--bs-manrope);
  font-size: 15px;
  color: var(--bs-black);
}
.coa-2 a .btn {
  background-color: var(--bs-shalred);
  color: var(--bs-white);
  font-family: var(--bs-manrope);
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
}
.coa-truck {
  position: absolute;
  width: 300px;
  height: inherit;
  bottom: 0px;
  right: 150px;
}
.sec-section {
  width: 90%;
  margin: 100px auto 0px;
}
.sec-section p {
  font-family: var(--bs-manrope);
  font-size: 18px;
  margin-top: 30px;
  text-align: center;
  line-height: 32px;
}
/* About Us page */
.about-div {
  width: 95%;
  margin: 100px auto 50px;
  height: 25rem;
  background-image: url(../image/about-bg.webp);
  background-size: 100% 100%;
  border-radius: 20px;
}
.about-divs {
  background-color: #fcfdff;
  height: 100%;
  text-align: center;
  padding: 50px;
  opacity: 95%;
}
.about-divs span {
  font-family: var(--bs-poppins);
  font-size: 32px;
  color: var(--bs-shalblue);
  font-weight: 600;
}
.about-divs h1,
.about-divs h1 span {
  font-family: var(--bs-poppins);
  font-size: 64px;
  color: var(--bs-shalred);
  font-weight: 700;
}
.about-divs p {
  font-family: var(--bs-manrope);
  font-size: 18px;
  line-height: 36px;
}
.about-divs a .btn {
  background-color: var(--bs-shalblue);
  font-family: var(--bs-manrope);
  padding: 10px 15px;
  font-size: 18px;
  border-radius: 50px;
  color: var(--bs-white);
}
.about-divs h1 span {
  color: var(--bs-shalblue);
}
.about-what {
  width: 95%;
  margin: 100px auto 0px;
}
.about-what-div {
  display: flex;
  justify-content: space-between;
}
.about-what-1 {
  width: 50%;
  text-align: center;
}
.about-what-2 {
  width: 50%;
}
.about-what-1 img {
  width: 70%;
}
.about-points {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
}
.about-points span {
  width: 70px;
  height: 70px;
  border-radius: 50px;
  background-color: var(--bs-shalblue);
  display: flex;
  justify-content: center;
}
.about-points span img {
  width: 36px;
  color: var(--bs-white);
}
.about-points p {
  font-family: var(--bs-manrope);
  font-size: 24px;
  font-weight: 600;
}
.about-what-2 h2 {
  font-family: var(--bs-manrope);
  font-weight: 700;
  color: var(--bs-shalblue);
  font-size: 42px;
}
.about-pts {
  margin-top: 15px;
}
.about-offer {
  background-color: #f6f9ff;
  width: 100%;
  padding: 50px;
  margin-top: 100px;
}
.about-offer-div {
  width: 95%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.about-offer-1 {
  width: 50%;
}
.about-offer-2 {
  width: 50%;
  text-align: center;
}
.about-offer-2 img {
  width: 70%;
}
.about-offer-1 span {
  font-family: var(--bs-manrope);
  font-size: 18px;
  font-weight: 600;
  color: var(--bs-shalblue);
}
.about-pts-1 {
  display: flex;
  align-items: baseline;
  flex-direction: column;
  margin-top: 15px;
}
.about-pts-1 p {
  font-family: var(--bs-manrope);
  font-size: 14px;
}
.about-pts-1 i {
  color: var(--bs-shalred);
  margin-right: 5px;
}
.fleet-div {
  width: 95%;
  margin: 100px auto 0px;
}
.about-offer-1 h2 {
  font-family: var(--bs-manrope);
  font-weight: 700;
  color: var(--bs-shalblue);
  font-size: 42px;
}
.fleet-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.fleet-cards {
  width: 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 30px;
}
.fleet-cards span {
  background-color: var(--bs-shalred);
  width: 60px;
  height: 60px;
  display: flex;
  padding: 15px;
  justify-content: center;
  border-radius: 50px;
}
.fleet-cards h3 {
  font-family: var(--bs-manrope);
  font-size: 22px;
  color: var(--bs-shalblue);
  font-weight: 600;
  margin-top: 10px;
}
.fleet-cards p {
  font-family: var(--bs-manrope);
  font-size: 16px;
}
.line-red {
  position: absolute;
  width: 70%;
  height: 2px;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  border: 1px dashed #b11d29;
}
.about-coa {
  width: 95%;
  margin: 120px auto;
  background-color: var(--bs-shalblue);
  position: relative;
  overflow: hidden;
  height: 15rem;
  border-radius: 20px;
}
.about-coa img {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: inherit;
  opacity: 30%;
}
.about-coa span {
  font-family: var(--bs-poppins);
  color: var(--bs-white);
  font-size: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: inherit;
  font-weight: 600;
}
.svg {
  color: var(--bs-white);
}

/* Transiaction */
.pat-2 {
  -webkit-animation: mover 1s infinite alternate;
  animation: mover 1s infinite alternate;
}
.pat-2 {
  -webkit-animation: mover 1s infinite alternate;
  animation: mover 1s infinite alternate;
}
@-webkit-keyframes mover {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-5px);
  }
}
@keyframes mover {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-3px);
  }
}
.how-works-1 img {
  -webkit-animation: mover 1s infinite alternate;
  animation: mover1 1s infinite alternate;
}
.how-works-1 img {
  -webkit-animation: mover 1s infinite alternate;
  animation: mover1 1s infinite alternate;
}
@-webkit-keyframes mover1 {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50px);
  }
}
@keyframes mover1 {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50px);
  }
}
.track-btn:hover i {
  transform: rotateY(180deg);
}

/* Clients css */
.clients h2 {
  font-family: var(--bs-manrope);
  font-weight: 700;
  color: var(--bs-shalblue);
  font-size: 42px;
  text-align: center;
}
@media (prefers-color-scheme: dark) {
  :root {
    --color-text: papayawhip;
    --color-bg: navy;
    --color-bg-accent: #2626a0;
  }
}
.clients {
  display: grid;
  align-content: center;
  overflow: hidden;
  gap: var(--gap);
  width: 100%;
  height: auto;
  font-family: system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  background-color: var(--bs-white);
  margin: 100px auto;
}

.marquee {
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);
  mask-image: linear-gradient(
    var(--mask-direction, to right),
    hsl(0 0% 0% / 0),
    hsl(0 0% 0% / 1) 20%,
    hsl(0 0% 0% / 1) 80%,
    hsl(0 0% 0% / 0)
  );
  height: 100px;
}

.marquee__group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: var(--gap);
  min-width: 100%;
  animation: scroll-x var(--duration) linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .marquee__group {
    animation-play-state: paused;
  }
}

.marquee--vertical {
  --mask-direction: to bottom;
}

.marquee--vertical,
.marquee--vertical .marquee__group {
  flex-direction: column;
}

.marquee--vertical .marquee__group {
  animation-name: scroll-y;
}

.marquee--reverse .marquee__group {
  animation-direction: reverse;
  animation-delay: -3s;
}
.agent-name {
  display: flex;
  font-size: 16px !important;
  margin-top: 5px;
  font-weight: 400 !important;
  gap: 5px;
}
.agent-name p {
  margin: 0;
}
.blog-div a{
  font-weight: 800;
  color: var(--bs-shalred);
}
@keyframes scroll-x {
  from {
    transform: translateX(var(--scroll-start));
  }
  to {
    transform: translateX(var(--scroll-end));
  }
}

@keyframes scroll-y {
  from {
    transform: translateY(var(--scroll-start));
  }
  to {
    transform: translateY(var(--scroll-end));
  }
}

/* Element styles */
.marquee svg {
  display: grid;
  place-items: center;
  width: 110px;
  fill: var(--bs-shalblue);
  /* aspect-ratio: 16/9; */
  padding: calc(var(--size) / 10);
  border-radius: 0.5rem;
}
.marquee img {
  width: 100px;
  filter: grayscale(1);
}
/* Parent wrapper */
.wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
  margin: auto;
  max-width: 100vw;
}

/* Blog */
.blog-div .contact-div-1 {
  width: 100%;
  padding: 0px;
  margin-bottom: 15px;
}
.blog-content {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 50px;
}
.blog-sec {
  width: 45%;
  height: max-content;
}
.blog-div {
  margin-bottom: 50px;
}
.blog-img {
  width: 100%;
  position: relative;
}
.blog-img img {
  width: 100%;
}
.blog-title {
  margin-top: 10px;
}
.blog-title span {
  font-family: var(--bs-manrope);
  color: var(--bs-shalblue);
  font-weight: 600;
  font-size: 22px;
}
.blog-title p {
  font-family: var(--bs-manrope);
  font-size: 14px;
  margin-top: 5px;
  line-height: 22px;
}
.blog-btn .btn {
  background-color: var(--bs-shalred);
  color: var(--bs-white);
  font-family: var(--bs-manrope);
  border-radius: 50px;
}
.blog-btn {
  text-align: end;
}
.blog-img .blog-date {
  position: absolute;
  width: 100%;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  bottom: 0;
  height: 35px;
  text-align: end;
  color: var(--bs-white);
  padding: 5px 10px;
  font-family: var(--bs-manrope);
  color: var(--bs-shalred);
  font-weight: 600;
}
.location-section .mb-3 input {
  padding: 10px 10px;
  outline: none !important;
  box-shadow: none;
  border: 1px solid #e8e8e8;
}
.footer-form .mb-3 input {
  padding: 10px 10px;
  outline: none !important;
  box-shadow: none;
  border: 1px solid #e8e8e8;
}
.blog-main {
  margin-bottom: 100px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.service-card-1 i {
  font-size: 20px;
  color: var(--bs-shalred);
}
/* Blog-page */
.blog-div {
  width: 90%;
  margin: 100px auto 0px;
}
.blog-section {
  width: 100%;
}
.blog-section h1 {
  font-family: var(--bs-poppins);
  font-size: 42px;
  color: var(--bs-shalblue);
  width: 85%;
  font-weight: 600;
}
.blog-det {
  display: flex;
  align-items: baseline;
  flex-direction: column;
  gap: 5px;
}
.blog-det i {
  color: var(--bs-shalred);
  width: 2%;
}
.blog-det span {
  display: flex;
  align-items: baseline;
  width: 100%;
  font-family: var(--bs-manrope);
  font-weight: 400;
}
.blog-point {
  width: 100%;
}
.blog-main-cont {
  width: 100%;
}
.blog-main-cont p {
  width: 85%;
  float: right;
  font-family: var(--bs-manrope);
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
}
.blog-point img {
  width: 100%;
  border-radius: 15px;
}
.blog-points {
  width: 100%;
  display: flex;
  margin-top: 50px;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
.blog-pts-div {
  width: 45%;
}
/* .blog-pts-div:last-child {
  width: 100%;
} */
.blog-pts-div span {
  color: var(--bs-shalred);
  font-family: var(--bs-manrope);
  font-weight: 700;
  font-size: 20px;
}
.blog-pts-div p {
  font-family: var(--bs-manrope);
  font-weight: 400;
  line-height: 28px;
}
.blog-pts-div a {
  color: var(--bs-shalblue);
  font-weight: 800;
}
.blog-det span p {
  padding: 0px;
  margin: 0px;
}
.blog-det span p a {
  color: var(--bs-shalblue);
  font-weight: 500;
}
.parcel-new .parcel-1 h1 {
  color: var(--bs-shalblue);
  font-size: 100px;
  font-family: var(--bs-poppins);
  font-weight: 700;
}
.parcel-new .parcel-2 img {
  width: 65%;
}
.parcel-div .service-bg {
  position: absolute;
  left: -220px;
  top: 80px;
  z-index: -1;
  width: 85%;
}
.parcel-new .parcel-1 p {
  width: 95%;
}
.parcel-new .btn {
  background-color: var(--bs-shalred);
  color: var(--bs-white);
  font-family: var(--bs-manrope);
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
}
.service-action {
  display: flex;
  align-items: center;
  gap: 20px;
}
.service-action span {
  color: var(--bs-black);
  font-family: var(--bs-manrope);
  font-weight: 400;
  font-size: 15px;
}
.service-action:last-child {
  font-family: var(--bs-manrope);
  font-weight: 600;
  color: var(--bs-shalblue);
  font-size: 18px;
}
.parcel-tag p {
  font-family: var(--bs-manrope);
  font-size: 16px;
  color: var(--bs-black);
  width: 90%;
  margin: 100px auto 0px;
  line-height: 32px;
}
.parcel-xpress {
  width: 100%;
  background-color: var(--bs-whiteblue);
  margin-top: 100px;
  display: flex;
}
.parcel-xpress-1 {
  width: 50%;
  background-color: var(--bs-white);
}
.parcel-xpress-2 {
  width: 50%;
  padding: 40px;
}
.parcel-xpress-1 img {
  width: 90%;
}
.parcel-xpress-sec {
  width: 100%;
  display: flex;
  margin-top: 30px;
  border-bottom: 1px solid #e9e9e9;
}
.parcel-xpres-img {
  width: 15%;
  /* background-color: var(--bs-shalred); */
}

.parcel-xpres-cont {
  width: 90%;
}
.parcel-xpress-2 h2 {
  font-size: 42px;
  color: var(--bs-shalblue);
  font-family: var(--bs-manrope);
  font-weight: 600;
}
.parcel-xpres-cont span {
  font-family: var(--bs-manrope);
  color: var(--bs-shalblue);
  font-weight: 400;
  font-size: 20px;
}
.parcel-xpres-cont p {
  font-family: var(--bs-manrope);
  color: var(--bs-black);
  font-size: 14px;
  line-height: 32px;
}
.parcel-xpres-img img {
  background-color: var(--bs-shalred);
  width: 80px;
  height: 80px;
  padding: 20px;
  border-radius: 20px;
}
.parcel-xpress-sec:last-child {
  border-bottom: none;
}
.parcel-who-sec {
  width: 90%;
  margin: 0 auto;
}
.parcel-who-div h2 {
  text-align: center;
  color: var(--bs-shalblue);
  font-family: var(--bs-manrope);
  font-size: 42px;
  font-weight: 500;
}
.parcel-who-cont {
  width: 85%;
  margin: 50px auto;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  position: relative;
}
.parcel-who-list {
  width: 45%;
  background-color: var(--bs-shalblue);
  padding: 30px 30px 20px 40px;
  color: var(--bs-white);
  font-family: var(--bs-manrope);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
}
.parcel-who-list span {
  font-size: 26px;
  font-weight: 600;
}
.parcel-who-list p {
  font-size: 16px;
  line-height: 32px;
  font-weight: 400;
}
.parcel-lists-num {
  font-size: 52px !important;
  font-weight: 700;
  opacity: 10%;
}
.parcel-who-list-1 .parcel-lists-num {
  text-align: end;
  display: block;
}
.parcel-cent-circle {
  position: absolute;
  width: 250px;
  background-color: var(--bs-white);
  height: 250px;
  position: absolute;
  left: 50%;
  transform: translate(-60%, 70%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.parcel-cent-circle img{
  width: 50%;
}
.parcel-img{
  display: flex;
  justify-content: center;
}
.parcel-service-card {
  font-family: var(--bs-manrope);
  margin-top: 30px;
}
.why-last-tag{
  margin-top: 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 32px;
  color: var(--bs-shalblue);

}
.blog-list{
  width: 100%;
  margin-top: 50px;
}
.blog-list span{
  font-family: var(--bs-manrope);
  font-size: 22px;
  color: var(--bs-shalblue);
  font-weight: 700;
}
.blog-list p{
  font-family: var(--bs-manrope);
  color: var(--bs-black);
  font-size: 16px;
  line-height: 32px;
  width: 100%;
}
.blog-content-main{
  margin-top: 20px;
}
.blog-content-main .blog-points{
  margin-top: 10px;
}
.blog-title-pts{
  font-family: var(--bs-manrope);
  font-size: 22px;
  color: var(--bs-shalblue);
  font-weight: 600;
}
.blog-slogan{
  font-family: var(--bs-poppins);
  color: var(--bs-shalblue);
  font-size: 32px;
  font-weight: 700;
}
.blog-conclusion{
  font-family: var(--bs-manrope);
  font-size: 16px;
  line-height: 32px;
}
.blog-150{
  font-family: var(--bs-manrope);
  font-size: 16px;
}
/* Privacy-policy */
.pp-div{
  width: 90%;
  margin: 80px auto;
}
.pp-content{
  width: 100%;
  margin-top: 30px;
}
.pp-content h2{
  font-family: var(--bs-manrope);
  font-weight: 600;
  font-size: 24px;
  color: var(--bs-shalblue);
} 
.pp-content span{
  font-family: var(--bs-manrope);
  font-weight: 600;
  font-size: 20px;
} 
.pp-content p{
  font-family: var(--bs-manrope);
  font-size: 15px;
  line-height: 32px;
}
.pp-list i{
  color: var(--bs-shalred);
  font-size: 16px;
}
.pp-list span{
  font-size: 18px;
}
.pp-list p{
  line-height: 32px;
}
.blog-bulets p{
  margin-bottom: 10px;
}
.blog-bulets i{
  color: var(--bs-shalred);
  margin-right: 10px;
}
.other-title{
  font-family: var(--bs-manrope);
  font-weight: 700;
  font-size: 18px;
  margin-top: 10px;
}
.other-para{
  font-family: var(--bs-manrope);
  margin-top: 10px;
}
.pp-list ul li{
  font-family: var(--bs-manrope);
  line-height: 32px;
}
.pp-list p{
  font-family: var(--bs-manrope);
}
/* Responsive code */
@media only screen and (max-width: 600px) {
  body {
    width: 100%;
    height: 100%;
    overflow-x: hidden !important;
  }
  .navbar {
    background-color: var(--bs-white);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
  }
  /* Home page */
  .centre-nav {
    gap: 0px;
  }
  .landing-1 h1 {
    width: 90%;
    font-size: 44px;
    line-height: 56px;
  }
  .landing-1 p {
    width: 90%;
    text-align: center;
  }
  .landing-2 {
    display: none;
  }
  .landing-1 {
    margin-bottom: 50px;
  }
  .landing-1 h1 span .pat-2 {
    display: none;
  }
  .quote-div {
    padding: 20px 20px 100px;
  }
  .quote-form {
    flex-direction: column;
  }
  .quote-form .mb-3 {
    width: 100%;
  }
  .service-section {
    top: 85%;
  }
  .service-card {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  .service-card-1 {
    width: 90%;
  }
  .about-section {
    margin: 280% auto 0%;
    flex-wrap: wrap;
    width: 90%;
  }
  .about-sec-1,
  .about-sec-2 {
    width: 100%;
  }
  .how-works-div {
    width: 90%;
    flex-direction: column-reverse;
    gap: 90px;
  }
  .how-works-1,
  .how-works-2 {
    width: 100%;
  }
  .card-1-w {
    width: 100%;
  }
  .coa-divs {
    flex-direction: column-reverse;
    height: 40rem;
    gap: 40px;
  }
  .coa-divs-2 {
    width: 100%;
    padding: 0px 20px;
  }
  .coa-divs-1 {
    width: 100%;
    height: 10rem;
    text-align: center;
  }
  .coa-divs-2 span {
    font-size: 44px;
  }
  .coa-divs-2 a img {
    width: 50%;
    margin-top: 20px;
  }
  .footer-div {
    flex-wrap: wrap;
    gap: 20px;
    width: 90%;
  }
  .footer-1,
  .footer-2,
  .footer-3,
  .footer-4 {
    width: 100%;
  }
  .footer-terms {
    width: 90%;
  }
  .terms-1,
  .terms-2 {
    flex-direction: column;
  }
  .terms-1 span,
  .terms-1 p,
  .terms-2 span,
  .terms-2 p {
    width: 100%;
  }
  .copy-right {
    width: 90%;
    flex-direction: column;
    gap: 10px;
  }
  .copy-right .footer-right,
  .copy-right .footer-follow {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  /* service */
  .parcel-section {
    flex-wrap: wrap;
  }
  .parcel-1,
  .parcel-2 {
    width: 100%;
    padding-top: 10px;
  }
  .parcel-bg {
    display: none;
  }
  .parcel-1 p {
    width: 100%;
  }
  .parcel-ser-div {
    width: 100%;
  }
  .parcel-service-card-1 {
    width: 30%;
  }
  .parcel-service-card-2 {
    width: 70%;
  }
  .parcel-1 h1 {
    font-size: 42px;
  }
  .parcel-what-div {
    flex-wrap: wrap;
    gap: 30px;
  }
  .parcel-what-card {
    width: 100%;
  }
  .coa-div {
    width: 90%;
    margin: 50px auto 50px;
    height: inherit;
    border: 5px solid #201652;
    border-radius: 30px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
  }
  .coa-bg {
    position: absolute;
    width: 100%;
    z-index: -1;
    top: 10px;
    opacity: 50%;
    height: -webkit-fill-available;
    right: 0;
  }
  .coa-truck {
    position: absolute;
    width: 150px;
    height: inherit;
    bottom: 0px;
    right: 20px;
  }
  .coa-1 {
    display: none;
  }
  /* Contact Us */
  .contact-div {
    margin: 100px 0px 80px;
  }
  .contact-div-2 {
    display: none;
  }
  .contact-div-1 {
    width: 90%;
    padding: 0px;
    margin: 0 auto;
  }
  .contact-div h1 {
    font-size: 44px;
  }
  .contact-det span {
    font-size: 22px;
  }
  /* Location */
  .location-cards {
    gap: 0px;
  }
  .location-det {
    width: 100%;
  }
  /* About us */
  .about-div {
    height: auto;
  }
  .about-divs {
    padding: 20px;
    opacity: 95%;
  }
  .about-divs span {
    font-size: 28px;
  }
  .about-divs h1,
  .about-divs h1 span {
    font-size: 44px;
  }
  .about-divs p {
    font-family: var(--bs-manrope);
    font-size: 14px;
    line-height: 28px;
  }
  .about-divs a .btn {
    font-size: 14px;
  }
  .about-div {
    background-image: none;
  }
  .marquee img {
    width: 85px;
  }
  .marquee svg {
    width: 50px;
    padding: 0px;
  }
  .about-what {
    width: 90%;
  }
  .about-what-div {
    flex-direction: column-reverse;
    gap: 20px;
  }
  .about-what-1,
  .about-what-2 {
    width: 100%;
  }
  .about-points span {
    width: 60px;
    height: 50px;
    border-radius: 50px;
    background-color: var(--bs-shalblue);
    display: flex;
    justify-content: center;
  }
  .about-points p {
    font-family: var(--bs-manrope);
    font-size: 18px;
    font-weight: 600;
    width: 100%;
  }
  .about-points span img {
    width: 24px;
  }
  .about-points {
    align-items: flex-start;
  }
  .about-what-1 img {
    width: 100%;
  }
  .about-offer-div {
    flex-direction: column;
    width: 90%;
    gap: 20px;
    padding: 20px 0px;
  }
  .about-offer-1,
  .about-offer-2 {
    width: 100%;
  }
  .about-offer {
    padding: 0px;
  }
  .about-offer-2 img {
    width: 100%;
  }
  .fleet-card {
    flex-wrap: wrap;
  }
  .fleet-cards {
    width: 100%;
  }
  .line-red {
    display: none;
  }
  .about-coa span {
    font-size: 44px;
  }
  .about-coa {
    width: 90%;
    height: 20rem;
    margin: 70px auto;
    text-align: center;
  }
  .coa-divs-1 img {
    width: 450px;
    padding: 0px 0px;
    transform: rotate(33deg);
    padding-right: 60px;
  }
  .blog-div .contact-div-1 {
    width: 90%;
    margin: 0 auto;
  }
  .blog-content {
    gap: 20px;
  }
  .blog-sec {
    width: 100%;
  }
  .blog-section h1 {
    font-size: 32px;
    width: 100%;
  }
  .blog-det i {
    width: 8%;
  }
  .blog-main-cont p {
    width: 100%;
    margin-top: 10px;
  }
  .blog-pts-div {
    width: 100%;
  }
  .parcel-new .parcel-1 h1{
    font-size: 44px;
  }
  .parcel-new .parcel-2 img{
    width: 90%;
  }
  .parcel-section{
    gap: 20px;
  }
  .parcel-xpress{
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
  .parcel-xpress-1, .parcel-xpress-2{
    width: 100%;
  }
  .parcel-xpres-img{
    width: 35%;
  }
  .parcel-cent-circle{
    display: none;
  }
  .parcel-who-cont{
    width: 100%;
  }
  .parcel-who-list{
    width: 100%;
  }
  .coa-2{
    width: 100%;
  }
  .service-action{
    flex-direction: column;
  }
}
