/* ============================ COMMON CSS START ============================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*:focus-visible,
*:focus-within {
  border: none;
  outline: none;
}


.primarybg{
  background-color: #f2f2f2;
}






html {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", helvetica, sans-serif;
}

a {
  text-decoration: none;
  display: inline-block;
}

ul,
ol {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

button,
input,
textarea,
select,
input:focus,
.input:focus {
  border: none;
  outline: none;
  box-shadow: none !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  appearance: textfield;
  -moz-appearance: textfield;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  /* text-align: justify */
}

.section-spacing {
  margin: 0 0 100px;
}

.section-before {
  position: relative;
  background-color: #f4f5fa;
  padding: 0 0 100px;
  margin: 300px 0 0;
}

.section-before::before {
  content: '';
  position: absolute;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left;
  background-image: url("../images/section-before.png");
  width: 100%;
  height: 196px;
  top: -196px;
  left: 0;
  right: 0;
}

.section-after {
  position: relative;
  background-color: #b12b2b;
  padding: 100px 0 50px;
  margin: 0 0 300px;
}

.section-after::after {
  content: '';
  position: absolute;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
  background-image: url("../images/section-after.png");
  width: 100%;
  height: 196px;
  bottom: -196px;
  left: 0;
  right: 0;
}

.common-title {
  font: 600 46px/50px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #080c24;
  text-align: center;
  margin: 0 0 60px;
}

.common-desc {
  font: 500 16px/26px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #565969;
}

.common-title span {
  color: #b12b2b;
}

.common-btn {
  font: 700 18px/20px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #fff;
  border: 2px solid #EE2B29;
  background-color: #EE2B29;
  padding: 18px 34px;
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  text-transform: capitalize;
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  cursor: pointer;
}

.common-btn:hover {
  background-color: transparent;
  border: 2px solid #EE2B29;
  color: #EE2B29;
}

.common-btn-hover-02:hover {
  background-color: #fff;
  border: 2px solid #fff;
  color: #EE2B29;
}

.common-btn-2 {
  font: 700 18px/20px "Plus Jakarta Sans", helvetica, sans-serif;
  background-color: #2C4298;
  border: 2px solid #2C4298;
  color: #fff;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  width: 100%;
  padding: 20px 25px;
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  margin: 0;
}

.common-btn-2:is(:hover, :active, :focus) {
  color: #2C4298;
  background-color: transparent;
}

@media (max-width: 1599px) {

  .section-before {
    margin: 270px 0 0;
  }

  .section-before::before {
    height: 166px;
    top: -166px;
  }

  .section-after {
    margin: 0 0 270px;
  }

  .section-after::after {
    height: 166px;
    bottom: -166px;
  }

  .common-title {
    margin: 0 0 50px;
  }
}

@media (max-width: 1499px) {

  .section-before::before {
    height: 146px;
    top: -146px;
  }
}

@media (max-width: 1399px) {
  .section-before {
    margin: 250px 0 0;
  }

  .section-after {
    padding: 100px 0 30px;
    margin: 0 0 250px;
  }

  .section-after::after {
    height: 146px;
    bottom: -146px;
  }

  .common-title {
    font-size: 42px;
    line-height: 46px;
    margin: 0 0 40px;
  }

  .common-desc {
    font-size: 14px;
    line-height: 24px;
  }

  .common-btn {
    font-size: 16px;
    line-height: 18px;
    gap: 8px;
  }

  .common-btn-2 {
    font-size: 16px;
    line-height: 18px;
    padding: 17px 20px;
  }
}

@media (max-width: 1299px) {
  .section-before {
    padding: 0 0 80px;
    margin: 210px 0 0;
  }

  .section-before::before {
    height: 126px;
    top: -126px;
  }

  .section-spacing {
    margin: 0 0 80px;
  }

  .section-after {
    padding: 80px 0 10px;
    margin: 0 0 210px;
  }

  .section-after::after {
    height: 126px;
    bottom: -126px;
  }

  .common-title {
    font-size: 36px;
    line-height: 40px;
  }

  .common-btn {
    font-size: 14px;
    line-height: 16px;
    padding: 16px 30px;
  }
}

@media (max-width: 1199px) {
  .section-spacing {
    margin: 0 0 60px;
  }

  .section-before {
    padding: 0 0 60px;
    margin: 170px 0 0;
  }

  .section-before::before {
    height: 106px;
    top: -106px;
  }

  .section-after {
    padding: 60px 0 10px;
    margin: 0 0 170px;
  }

  .section-after::after {
    height: 106px;
    bottom: -106px;
  }

  .common-title {
    margin: 0 0 30px;
  }
}

@media (max-width: 991px) {
  .section-spacing {
    margin: 0 0 40px;
  }

  .section-before {
    padding: 0 0 40px;
    margin: 140px 0 0;
  }

  .section-after {
    padding: 40px 0 0;
    margin: 0 0 140px;
  }

  .common-title {
    font-size: 28px;
    line-height: 32px;
    margin: 0 0 25px;
  }

  #customer .customer-desc {
    font-size: 13px;
  }
}

@media (max-width: 767px) {
  .common-title {
    font-size: 26px;
    line-height: 30px;
    margin: 0 0 20px;
  }

  .common-btn {
    padding: 14px 25px;
  }
}

@media (max-width: 575px) {
  .section-before {
    margin: 100px 0 0;
  }

  .section-before::before {
    height: 56px;
    top: -56px;
  }

  .section-after {
    margin: 0 0 100px;
  }

  .section-after::after {
    height: 56px;
    bottom: -56px;
  }

  .common-title {
    font-size: 24px;
    line-height: 28px;
  }
}

@media (max-width: 480px) {
  .section-spacing {
    margin: 0 0 30px;
  }

  .section-before {
    padding: 0 0 20px;
    margin: 80px 0 0;
  }

  .section-before::before {
    height: 46px;
    top: -46px;
  }

  .section-after {
    padding: 20px 0 0;
    margin: 0 0 80px;
  }

  .section-after::after {
    height: 46px;
    bottom: -46px;
  }

  .common-title {
    font-size: 22px !important;
    line-height: 30px;
    margin: 0 0 15px;
  }

  .common-btn {
    padding: 12px 20px;
  }
}

@media (max-width: 360px) {
  .common-btn-2 {
    font-size: 15px;
    padding: 14px 20px;
  }
}

#inner-hero {
  background-size: cover;
  background-position: right;
  background-repeat: no-repeat;
  width: 100%;
  padding: 180px 0 220px;
}

/* ============================ COMMON CSS END ============================ */
/* ============================ ASK-ME-NOW CSS START ============================ */
#askMenow {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
}

@media (max-width: 1699px) {
  #askMenow {
    bottom: 40px;
  }
}

@media (max-width: 1399px) {
  #askMenow img {
    max-width: 80px;
  }
}

@media (max-width: 991px) {
  #askMenow {
    bottom: 25px;
  }

  #askMenow img {
    max-width: 70px;
  }
}

@media (max-width: 767px) {
  #askMenow {
    bottom: 62px;
  }
}

@media (max-width: 480px) {
  #askMenow {
    bottom: 35px;
  }

  #askMenow img {
    max-width: 60px;
  }
}

@media (max-width: 360px) {
  #askMenow img {
    max-width: 55px;
  }
}

/* ============================ ASK-ME-NOW CSS END ============================ */
/* ============================ HEADER SECTION START ============================ */
/* body.modal-open header {
  width: calc(100% - 16px);
}

header {
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  background-color: transparent;
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  z-index: 9;
}

header.fixed {
  position: fixed;
  top: 0;
  background-color: #ffffffbf;
  box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

header nav.navbar {
  padding: 10px 10px 10px 30px !important;
  background-color: #fff;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
}

header.fixed nav.navbar {
  padding: 10px 0 !important;
  background-color: transparent !important;
}

header nav .navbar-brand {
  max-width: 180px;
}

header nav ul {
  display: flex;
  align-items: center;
  gap: 32px;
}

header nav ul li {
  position: relative;
  padding: 20px 10px;
}

header nav ul li.nav-item a {
  font: 500 18px/20px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #080c24;
  padding: 0 !important;
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
}

header nav ul li.nav-item.active a,
header nav ul li.nav-item:hover a.nav-link,
header nav ul li.nav-item .custom-dropdown li:hover a {
  color: #ee2b29;
}

header nav .common-btn {
  margin: 0 0 0 40px;
}

header nav .navbar-toggler {
  width: 25px;
  height: 25px;
}

header nav .navbar-toggler .lines {
  width: 25px;
  height: 2px;
  background-color: #b12b2b;
  display: block;
  position: relative;
  transition: transform 200ms;
  transition: -webkit-transform 200ms;
  -webkit-transition: -webkit-transform 200ms;
  -moz-transition: -webkit-transform 200ms;
  -ms-transition: -webkit-transform 200ms;
  -o-transition: -webkit-transform 200ms;
  margin: 0 0 -2px;
}

header nav .navbar-toggler[aria-expanded="false"] .line-1 {
  -webkit-transform: translate3d(0, -8px, 0);
  transform: translate3d(0, -8px, 0);
}

header nav .navbar-toggler[aria-expanded="false"] .line-2 {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

header nav .navbar-toggler[aria-expanded="false"] .line-3 {
  -webkit-transform: translate3d(0, 8px, 0);
  transform: translate3d(0, 8px, 0);
}

header nav .navbar-toggler .line-1 {
  -webkit-transform: translate3d(0, 0, 0) rotate(45deg);
  transform: translate3d(0, 0, 0) rotate(45deg);
}

header nav .navbar-toggler .line-2 {
  -webkit-transform: translate3d(0, 0, 0) scale(0.1, 1);
  transform: translate3d(0, 0, 0) scale(0.1, 1);
}

header nav .navbar-toggler .line-3 {
  -webkit-transform: translate3d(0, 0, 0) rotate(-45deg);
  transform: translate3d(0, 0, 0) rotate(-45deg);
}

header nav .navbar-toggler {
  padding: 0;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

header nav .navbar-toggler,
header nav .navbar-toggler:hover,
header nav .navbar-toggler:focus,
header nav .navbar-toggler:active {
  box-shadow: none;
  border: none;
  outline: none;
}

header nav .custom-dropdown {
  opacity: 0;
  user-select: none;
  cursor: none;
  visibility: hidden;
  position: absolute;
  top: calc(100% + 15px);
  display: block;
  background-color: #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 15px 20px;
  min-width: 270px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
}

header nav ul li:hover .custom-dropdown {
  opacity: 1;
  user-select: auto;
  cursor: auto;
  visibility: visible;
  top: calc(100%);
}

header nav .custom-dropdown li {
  padding: 6px 5px;
  position: relative;
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
}

header nav .custom-dropdown li:hover {
  padding: 6px 5px 6px 20px;
}

header nav ul li .custom-dropdown li a {
  font-size: 16px;
  line-height: 18px;
}

header nav .custom-dropdown li::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ee2b29;
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
}

header nav .custom-dropdown li:hover::before {
  width: 10px;
}

@media (max-width: 1399px) {
  header nav ul {
    gap: 25px;
  }

  header nav .common-btn {
    margin: 0 0 0 30px;
  }

  header nav ul li.nav-item a {
    font-size: 16px;
    line-height: 18px;
  }

  header nav .custom-dropdown {
    min-width: 250px;
  }

  header nav ul li .custom-dropdown li a {
    font-size: 15px;
  }

  header nav .custom-dropdown li {
    padding: 5px;
  }

  header nav .custom-dropdown li:hover {
    padding: 5px 5px 5px 20px;
  }

  header.fixed {
    position: fixed;
    top: 0;
    background-color: #ffffffbf;
    box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
  }
}

@media (max-width: 1199px) {
  header nav ul li.nav-item a {
    font-size: 15px;
    line-height: 18px;
  }

  header nav .custom-dropdown {
    min-width: 240px;
  }

  header nav .custom-dropdown li {
    padding: 4px 5px;
  }

  header nav .custom-dropdown li:hover {
    padding: 4px 5px 4px 20px;
  }

  header nav ul li .custom-dropdown li a {
    font-size: 14px;
  }

  header.fixed {
    position: fixed;
    top: 0;
    background-color: #ffffffbf;
    box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
  }
}

@media (max-width: 991px) {
  body.modal-open header {
    width: 100%;
  }

  header,
  header.fixed {
    position: sticky;
    top: 0;
    background-color: #ffffffbf;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
  }

  header nav.navbar,
  header.fixed nav.navbar {
    padding: 10px 0 !important;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    background-color: transparent;
  }

  header nav ul {
    align-items: start;
    gap: 15px;
  }

  header nav ul li {
    padding: 0;
  }

  header nav .common-btn {
    margin: 15px 0 0;
  }

  #navbarSupportedContent {
    position: fixed;
    left: 0;
    right: 0;
    bottom: auto;
    background-color: #fff;
    margin: 0;
    z-index: 9;
    padding: 0 30px;
    border-bottom: 1px solid #ddd;
  }

  #navbarSupportedContent ul {
    padding: 10px 0 0;
    position: relative;
  }

  #navbarSupportedContent .common-btn {
    margin: 15px 0 10px;
  }

  header nav .custom-dropdown {
    position: static !important;
    opacity: 1;
    user-select: auto;
    cursor: auto;
    visibility: visible;
    box-shadow: none;
    background-color: transparent;
    padding: 6px 0 0 10px !important;
  }

  header nav .custom-dropdown li::before {
    width: 10px;
  }

  header nav .custom-dropdown li,
  header nav .custom-dropdown li:hover {
    padding: 3px 0 3px 20px;
  }

  header.fixed {
    position: fixed;
    top: 0;
    background-color: #ffffffbf;
    box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
  }
}

@media (max-width: 575px) {
  #navbarSupportedContent {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  header nav ul {
    gap: 12px;
  }

  header nav ul li.nav-item a {
    font-size: 14px;
    line-height: 16px;
  }

  #navbarSupportedContent .common-btn {
    margin: 12px 0 10px;
  }

  header nav .custom-dropdown li,
  header nav .custom-dropdown li:hover {
    padding: 2px 0 2px 18px;
  }

  header.fixed {
    position: sticky;
    top: 0;
    background-color: #ffffffbf;
    box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
  }
} */

/* ============================ HEADER SECTION END ============================ */
/* ============================ HERO SECTION START ============================ */
/* #hero {
  background-image: url("../image/hero.png");
  background-size: cover;
  background-position: right;
  background-repeat: no-repeat;
  width: 100%;
  padding: 295px 0 310px;
} */

#hero .hero-text .hero-sub-title {
  font: italic 500 32px/34px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #fff;
  text-transform: capitalize;
}

#hero .hero-text .hero-title {
  font: italic 700 72px/80px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #fff;
  text-transform: uppercase;
  padding: 0 160px 0 0;
  margin: 10px 0 45px;
}

#hero .hero-form-wrapper,
#inner-hero .hero-form-wrapper {
  background-color: #fff;
  padding: 40px;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}

#hero .hero-form-wrapper form label,
#inner-hero .hero-form-wrapper form label {
  font: 600 20px/22px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #080c24;
  display: flex;
  align-items: center;
  gap: 10px;
}

#hero .hero-form-wrapper form input,
#inner-hero .hero-form-wrapper form input {
  font: 500 18px/20px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #080c24;
  border: 1px solid #d6d6d6;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  width: 100%;
  padding: 18px 25px;
  margin: 20px 0 25px;
}

#hero .hero-form-wrapper form input::placeholder,
#inner-hero .hero-form-wrapper form input::placeholder {
  opacity: 1;
  color: #565969;
  font-weight: 500;
}

#hero .hero-form-wrapper hr,
#inner-hero .hero-form-wrapper hr {
  border-top: 1px solid #d6d6d6;
  opacity: 1;
  margin: 25px 0;
}

#hero .hero-form-wrapper h6,
#inner-hero .hero-form-wrapper h6 {
  font: 600 18px/20px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #080c24;
  text-transform: capitalize;
  margin: 0 0 15px;
}

#hero .hero-form-wrapper p,
#inner-hero .hero-form-wrapper p {
  font: 500 14px/20px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #565969;
}

@media (max-width: 1599px) {
  #hero {
    padding: 265px 0 280px;
  }
}

@media (max-width: 1399px) {
  #hero {
    padding: 235px 0 250px;
  }

  #hero .hero-text .hero-sub-title {
    font-size: 28px;
    line-height: 30px;
  }

  #hero .hero-text .hero-title {
    font-size: 68px;
    line-height: 76px;
    margin: 10px 0 35px;
  }

  #hero .hero-form-wrapper,
  #inner-hero .hero-form-wrapper {
    padding: 30px;
  }

  #hero .hero-form-wrapper form label,
  #inner-hero .hero-form-wrapper form label {
    font-size: 18px;
    line-height: 20px;
  }

  #hero .hero-form-wrapper form input,
  #inner-hero .hero-form-wrapper form input {
    font-size: 16px;
    line-height: 18px;
    padding: 16px 20px;
    margin: 15px 0 20px;
  }

  #hero .hero-form-wrapper hr,
  #inner-hero .hero-form-wrapper hr {
    margin: 20px 0;
  }

  #hero .hero-form-wrapper h6,
  #inner-hero .hero-form-wrapper h6 {
    font-size: 16px;
    line-height: 18px;
  }
}

@media (max-width: 1299px) {
  #hero {
    padding: 200px 0 215px;
  }

  #hero .hero-text .hero-sub-title {
    font-size: 26px;
    line-height: 28px;
  }

  #hero .hero-text .hero-title {
    font-size: 64px;
    line-height: 72px;
    margin: 8px 0 30px;
  }

  #hero .hero-form-wrapper,
  #inner-hero .hero-form-wrapper {
    padding: 25px;
  }
}

@media (max-width: 1199px) {
  #hero {
    padding: 180px 0 165px;
  }

  #hero .hero-text .hero-sub-title {
    font-size: 24px;
    line-height: 26px;
  }

  #hero .hero-text .hero-title {
    font-size: 60px;
    line-height: 68px;
    padding: 0;
    margin: 8px 0 25px;
  }
}

@media (max-width: 991px) {
  #hero {
    padding: 80px 0 165px;
    background-position: left;
  }

  #hero .hero-text {
    margin: 0 0 25px;
    text-align: center;
  }

  #hero .hero-text .hero-sub-title {
    font-size: 22px;
    line-height: 24px;
  }

  #hero .hero-text .hero-title {
    font-size: 54px;
    line-height: 60px;
    margin: 8px 0 15px;
  }

  #hero .hero-text .hero-btn {
    margin: 0 auto;
  }

  #hero .hero-form-wrapper,
  #inner-hero .hero-form-wrapper {
    padding: 30px;
    width: 70%;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  #hero {
    padding: 60px 0 165px;
  }

  #hero .hero-text .hero-sub-title {
    font-size: 20px;
    line-height: 22px;
  }

  #hero .hero-text .hero-title {
    font-size: 46px;
    line-height: 52px;
    margin: 8px 0 15px;
  }

  #hero .hero-form-wrapper,
  #inner-hero .hero-form-wrapper {
    width: 80%;
  }
}

@media (max-width: 575px) {
  #hero .hero-text .hero-title {
    font-size: 42px;
    line-height: 48px;
  }
}

@media (max-width: 480px) {
  #hero {
    padding: 40px 0 145px;
  }

  #hero .hero-text .hero-sub-title {
    font-size: 18px;
    line-height: 20px;
  }

  #hero .hero-text .hero-title {
    font-size: 38px;
    line-height: 44px;
    margin: 8px 0 12px;
  }

  #hero .hero-form-wrapper,
  #inner-hero .hero-form-wrapper {
    width: 100%;
  }

  #hero .hero-form-wrapper form label,
  #inner-hero .hero-form-wrapper form label {
    font-size: 16px;
    line-height: 18px;
  }

  #hero .hero-form-wrapper form input,
  #inner-hero .hero-form-wrapper form input {
    margin: 15px 0;
  }

  #hero .hero-form-wrapper h6,
  #inner-hero .hero-form-wrapper h6 {
    font-size: 15px;
    margin: 0 0 10px;
  }

  #hero .hero-form-wrapper p,
  #inner-hero .hero-form-wrapper p {
    font-size: 13px;
  }
}

@media (max-width: 400px) {

  #hero .hero-form-wrapper,
  #inner-hero .hero-form-wrapper {
    padding: 25px;
  }
}

@media (max-width: 360px) {
  #hero .hero-text .hero-title {
    font-size: 32px;
    line-height: 40px;
  }

  #hero .hero-form-wrapper,
  #inner-hero .hero-form-wrapper {
    padding: 20px;
  }

  #hero .hero-form-wrapper form input,
  #inner-hero .hero-form-wrapper form input {
    padding: 12px 20px;
    margin: 12px 0 15px;
  }

  #hero .hero-form-wrapper hr,
  #inner-hero .hero-form-wrapper hr {
    margin: 18px 0;
  }
}

/* ============================ HERO SECTION END ============================ */
/* ============================ SHIPPING-PROCESS & HOW-IT-WORKS SECTION START ============================ */
#shipping-process,
#how-it-works {
  overflow: hidden;
}

#shipping-process .shipping-detail-wrapper,
#how-it-works .how-it-works-detail-wrapper {
  text-align: center;
}

#shipping-process .shipping-detail-wrapper .shipping-detail-icon-box-wrapper,
#how-it-works .how-it-works-detail-wrapper .how-it-works-detail-icon-box-wrapper {
  position: relative;
}

#shipping-process .shipping-detail-wrapper .shipping-detail-icon-box,
#how-it-works .how-it-works-detail-wrapper .how-it-works-detail-icon-box {
  width: 205px;
  height: 205px;
  background-color: #F6F8FC;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 10px, rgba(17, 17, 26, 0.05) 0px 8px 20px;
  z-index: 1;
  padding: 30px;
  margin: 0 auto;
}

#shipping-process .shipping-process-col:nth-child(odd) .shipping-detail-wrapper .shipping-detail-icon-box,
#how-it-works .how-it-works-col:nth-child(odd) .how-it-works-detail-wrapper .how-it-works-detail-icon-box,
#fulfilment-how-it-works .how-it-works-col:nth-child(odd) .how-it-works-box-wrapper {
  animation: up-down 4s linear infinite;
  -webkit-animation: up-down 4s linear infinite;
}

@keyframes up-down {

  0%,
  100% {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }

  50% {
    transform: translateY(10px);
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
  }
}

#shipping-process .shipping-process-col:nth-child(2n+1) .shipping-detail-wrapper .shipping-detail-icon-box-wrapper::after,
#how-it-works .how-it-works-col:nth-child(2n+1) .how-it-works-detail-wrapper .how-it-works-detail-icon-box-wrapper::after {
  content: '';
  position: absolute;
  top: 10px;
  left: auto;
  right: -75px;
  bottom: auto;
  background-image: url("../image/next-after.html");
  width: 128px;
  height: 40px;
  z-index: -1;
}

#shipping-process .shipping-process-col:nth-child(even) .shipping-detail-wrapper .shipping-detail-icon-box,
#how-it-works .how-it-works-col:nth-child(even) .how-it-works-detail-wrapper .how-it-works-detail-icon-box {
  animation: down-up 4s linear infinite;
  -webkit-animation: down-up 4s linear infinite;
}

@keyframes down-up {

  0%,
  100% {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
  }
}

#shipping-process .shipping-process-col:nth-child(even) .shipping-detail-wrapper .shipping-detail-icon-box-wrapper::before,
#how-it-works .how-it-works-col:nth-child(even) .how-it-works-detail-wrapper .how-it-works-detail-icon-box-wrapper::before {
  content: '';
  position: absolute;
  top: auto;
  bottom: 10px;
  left: auto;
  right: -75px;
  background-image: url("../image/next-before.html");
  width: 128px;
  height: 40px;
  z-index: -1;
}

#shipping-process .shipping-process-col:last-child .shipping-detail-wrapper .shipping-detail-icon-box-wrapper::after,
#shipping-process .shipping-process-col:last-child .shipping-detail-wrapper .shipping-detail-icon-box-wrapper::before,
#how-it-works .how-it-works-col:last-child .how-it-works-detail-wrapper .how-it-works-detail-icon-box-wrapper::after,
#how-it-works .how-it-works-col:last-child .how-it-works-detail-wrapper .how-it-works-detail-icon-box-wrapper::before {
  display: none;
}

#shipping-process .shipping-detail-wrapper .shipping-detail-text h5,
#how-it-works .how-it-works-detail-wrapper .how-it-works-detail-text h5 {
  font: 600 20px/22px "Plus Jakarta Sans", helvetica, sans-serif;
  padding: 50px 0 10px;
  color: #080C24;
  text-transform: capitalize;
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
}

#shipping-process .shipping-detail-wrapper:hover .shipping-detail-text h5,
#how-it-works .how-it-works-detail-wrapper:hover .how-it-works-detail-text h5 {
  color: #B12B2B;
  transform: translateY(-5px);
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
}

#shipping-process .shipping-detail-wrapper .shipping-detail-text p,
#how-it-works .how-it-works-detail-wrapper .how-it-works-detail-text p {
  font: 500 16px/28px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #565969;
}

@media (max-width: 1399px) {

  #shipping-process .shipping-detail-wrapper .shipping-detail-icon-box,
  #how-it-works .how-it-works-detail-wrapper .how-it-works-detail-icon-box {
    width: 165px;
    height: 165px;
  }

  #how-it-works .how-it-works-detail-wrapper .how-it-works-detail-icon-box {
    padding: 40px;
  }

  #shipping-process .shipping-detail-wrapper .shipping-detail-text h5,
  #how-it-works .how-it-works-detail-wrapper .how-it-works-detail-text h5 {
    font-size: 18px;
    line-height: 20px;
    padding: 40px 0 10px;
  }

  #shipping-process .shipping-detail-wrapper .shipping-detail-text p,
  #how-it-works .how-it-works-detail-wrapper .how-it-works-detail-text p {
    font-size: 14px;
    line-height: 24px;
  }

  @keyframes up-down {

    0%,
    100% {
      transform: translateY(0);
      -webkit-transform: translateY(0);
      -moz-transform: translateY(0);
      -ms-transform: translateY(0);
      -o-transform: translateY(0);
    }

    50% {
      transform: translateY(5px);
      -webkit-transform: translateY(5px);
      -moz-transform: translateY(5px);
      -ms-transform: translateY(5px);
      -o-transform: translateY(5px);
    }
  }

  @keyframes down-up {

    0%,
    100% {
      transform: translateY(0);
      -webkit-transform: translateY(0);
      -moz-transform: translateY(0);
      -ms-transform: translateY(0);
      -o-transform: translateY(0);
    }

    50% {
      transform: translateY(-5px);
      -webkit-transform: translateY(-5px);
      -moz-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
      -o-transform: translateY(-5px);
    }
  }
}

@media (max-width: 1299px) {

  #shipping-process .shipping-detail-wrapper .shipping-detail-icon-box,
  #how-it-works .how-it-works-detail-wrapper .how-it-works-detail-icon-box {
    min-width: 135px;
    max-width: 135px;
    height: 135px;
    padding: 20px;
  }

  #how-it-works .how-it-works-detail-wrapper .how-it-works-detail-icon-box {
    padding: 30px;
  }

  #shipping-process .shipping-detail-wrapper .shipping-detail-text h5,
  #how-it-works .how-it-works-detail-wrapper .how-it-works-detail-text h5 {
    padding: 30px 0 8px;
  }

  #shipping-process .shipping-detail-wrapper .shipping-detail-text p,
  #how-it-works .how-it-works-detail-wrapper .how-it-works-detail-text p {
    font-size: 13px;
    line-height: 22px;
  }
}

@media (max-width: 991px) {

  #shipping-process {
    margin: -40px 0 40px;
  }

  #how-it-works {
    margin: 0 0 40px;
  }

  #shipping-process .shipping-process-col:first-child,
  #shipping-process .shipping-process-col:nth-child(2),
  #shipping-process .shipping-process-col:nth-child(3),
  #how-it-works .how-it-works-col:first-child,
  #how-it-works .how-it-works-col:nth-child(2) {
    margin: 0 0 30px;
  }

  #shipping-process .shipping-process-col:nth-child(2n+1) .shipping-detail-wrapper .shipping-detail-icon-box-wrapper::after,
  #shipping-process .shipping-process-col:nth-child(2n) .shipping-detail-wrapper .shipping-detail-icon-box-wrapper::before,
  #how-it-works .how-it-works-col:nth-child(2n+1) .how-it-works-detail-wrapper .how-it-works-detail-icon-box-wrapper::after,
  #how-it-works .how-it-works-col:nth-child(2n) .how-it-works-detail-wrapper .how-it-works-detail-icon-box-wrapper::before {
    display: none;
  }

  @keyframes up-down {

    0%,
    50%,
    100% {
      transform: translateY(0);
      -webkit-transform: translateY(0);
      -moz-transform: translateY(0);
      -ms-transform: translateY(0);
      -o-transform: translateY(0);
    }
  }

  @keyframes down-up {

    0%,
    50%,
    100% {
      transform: translateY(0);
      -webkit-transform: translateY(0);
      -moz-transform: translateY(0);
      -ms-transform: translateY(0);
      -o-transform: translateY(0);
    }
  }

  #shipping-process .shipping-detail-wrapper .shipping-detail-text h5,
  #how-it-works .how-it-works-detail-wrapper .how-it-works-detail-text h5 {
    padding: 25px 0 8px;
  }
}

@media (max-width: 767px) {

  #shipping-process {
    margin: -60px 0 40px;
  }
}

@media (max-width: 575px) {

  #shipping-process .shipping-process-col:first-child,
  #shipping-process .shipping-process-col:nth-child(2),
  #shipping-process .shipping-process-col:nth-child(3),
  #how-it-works .how-it-works-col:first-child,
  #how-it-works .how-it-works-col:nth-child(2),
  #how-it-works .how-it-works-col:nth-child(3) {
    margin: 0 0 25px;
  }
}

@media (max-width: 480px) {

  #shipping-process {
    margin: -60px 0 30px;
  }

  #shipping-process .shipping-detail-wrapper .shipping-detail-text h5,
  #how-it-works .how-it-works-detail-wrapper .how-it-works-detail-text h5 {
    padding: 15px 0 8px;
  }

  #shipping-process .shipping-detail-wrapper:hover .shipping-detail-text h5,
  #how-it-works .how-it-works-detail-wrapper:hover .how-it-works-detail-text h5 {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }
}

@media (max-width: 360px) {

  #shipping-process .shipping-process-col:first-child,
  #shipping-process .shipping-process-col:nth-child(2),
  #shipping-process .shipping-process-col:nth-child(3),
  #how-it-works .how-it-works-col:first-child,
  #how-it-works .how-it-works-col:nth-child(2),
  #how-it-works .how-it-works-col:nth-child(3) {
    margin: 0 0 20px;
  }

  #shipping-process .shipping-detail-wrapper .shipping-detail-icon-box,
  #how-it-works .how-it-works-detail-wrapper .how-it-works-detail-icon-box {
    width: 125px;
    height: 125px;
  }

  #shipping-process .shipping-detail-wrapper .shipping-detail-text h5,
  #how-it-works .how-it-works-detail-wrapper .how-it-works-detail-text h5 {
    font-size: 15px;
    line-height: 18px;
  }
}

/* ============================ SHIPPING-PROCESS & HOW-IT-WORKS SECTION END ============================ */
/* ============================ SHIPPING-SOLUTION SECTION START ============================ */
#shipping-solution .common-title {
  margin: 0 0 50px;
}

#shipping-solution .tabs {
  display: flex;
  justify-content: flex-start;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  gap: 30px;
}

#shipping-solution .tab {
  min-width: calc(25% - 23px);
  padding: 10px 20px;
  background: #007bff;
  color: #fff;
  cursor: pointer;
  box-sizing: border-box;
  padding: 25px 20px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  background-color: #fff;
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
}

#shipping-solution .tab h5 {
  font: 600 20px/28px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #080C24;
  margin: 0 0 10px;
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  user-select: none;
}

#shipping-solution .tab p {
  font: 500 16px/28px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #565969;
  min-height: 110px;
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  white-space: pre-line;
  user-select: none;
}

#shipping-solution .tab.active {
  background-color: #2C4298;
  box-shadow: rgba(0, 0, 0, 0.15) 4px 4px 16px;
}

#shipping-solution .tab.active h5,
#shipping-solution .tab.active p {
  color: #fff;
}

#shipping-solution .shipping-solution-scroll-bar {
  position: relative;
  width: 25%;
  margin: 30px 0;
  display: inline-block;
  vertical-align: top;
}

#shipping-solution .shipping-solution-scroll-bar-track,
#shipping-solution .shipping-solution-scroll-bar-thumb {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

#shipping-solution .shipping-solution-scroll-bar-track {
  width: 100%;
  height: 2px;
  background-color: #D6D6D6;
}

#shipping-solution .shipping-solution-scroll-bar-thumb {
  height: 2px;
  background-color: #2C4298;
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
}

#shipping-solution .shipping-solution-img-wrapper {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  overflow: hidden;
  display: inline-block;
  position: relative;
  vertical-align: top;
}

#shipping-solution .shipping-solution-img-wrapper::before,
#shipping-solution .shipping-solution-img-wrapper::after {
  background: rgba(255, 255, 255, 0.7) none repeat scroll 0 0;
  content: "";
  height: 0;
  opacity: 1;
  position: absolute;
  width: 0;
}

#shipping-solution .shipping-solution-img-wrapper::before {
  right: 0;
  bottom: 0;
}

#shipping-solution .shipping-solution-img-wrapper::after {
  top: 0;
  left: 0;
}

@media (max-width: 1499px) {
  #shipping-solution .tab {
    padding: 25px 15px;
  }

  #shipping-solution .tab h5 {
    font-size: 18px;
    line-height: 26px;
  }
}

@media (max-width: 1399px) {
  #shipping-solution .common-title {
    margin: 0 0 40px;
  }
}

@media (max-width: 1299px) {

  #shipping-solution .tab p {
    min-height: 90px;
  }
}

@media (max-width: 1199px) {

  #shipping-solution .common-title {
    margin: 0 0 30px;
  }

  #shipping-solution .tab {
    min-width: calc(33% - 20px);
  }

  #shipping-solution .tab p {
    min-height: 90px;
  }

  #shipping-solution .shipping-solution-scroll-bar {
    margin: 25px 0;
  }
}

@media (max-width: 991px) {

  #shipping-solution .tab {
    padding: 10px;
  }

  #shipping-solution .tab h5 {
    font-size: 16px;
    line-height: 24px;
    margin: 0 0 8px;
  }

  #shipping-solution .tab p {
    min-height: 100px;
    font-size: 14px;
    line-height: 24px;
  }
}

@media (max-width: 767px) {
  #shipping-solution .common-title {
    margin: 0 0 20px;
  }

  #shipping-solution .tab {
    min-width: calc(50% - 15px);
  }

  #shipping-solution .shipping-solution-scroll-bar {
    width: 40%;
    margin: 20px 0;
  }
}

@media (max-width: 575px) {

  #shipping-solution .tab h5 {
    font-size: 15px;
    line-height: 20px;
  }

  #shipping-solution .tab p {
    font-size: 13px;
    line-height: 22px;
  }
}

@media (max-width: 480px) {

  #shipping-solution .common-title {
    margin: 0 0 15px;
  }

  #shipping-solution .tab {
    min-width: calc(100% - 10px);
    padding: 15px;
  }

  #shipping-solution .tab.active {
    box-shadow: rgba(0, 0, 0, 0.15) 0 5px 16px;
  }

  #shipping-solution .tab h5 {
    font-size: 17px;
  }

  #shipping-solution .tab p {
    min-height: 80px;
  }

  #shipping-solution .shipping-solution-scroll-bar {
    width: 53%;
    margin: 15px 0;
  }

  #shipping-solution .shipping-solution-scroll-bar-thumb {
    width: 8%;
  }

  #shipping-solution .nav-pills .tab h5,
  #shipping-solution .nav-pills .tab p {
    color: #fff;
  }
}

@media (max-width: 360px) {
  #shipping-solution .tab p {
    min-height: 70px;
  }

  #shipping-solution .scroll-bar-wrapper {
    top: 165px;
  }
}

/* ============================ SHIPPING-SOLUTION SECTION END ============================ */
/* ============================ HELPFUL SECTION START ============================ */
#helpful .common-title {
  color: #fff;
}

#helpful .helpful-content {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  position: relative;
  overflow: hidden;
}

#helpful .helpful-content::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  width: 100%;
  height: 10px;
  background-color: #fff;
  opacity: 0.2;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

#helpful .helpful-col .helpful-detail-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

#helpful .helpful-col .helpful-detail-wrapper h2 {
  font: 800 40px/42px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #fff;
  opacity: 0.2;
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
}

#helpful .helpful-col:hover .helpful-detail-wrapper h2 {
  opacity: 0.5;
}

#helpful .helpful-col .helpful-detail-wrapper h6 {
  font: italic 700 20px/28px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #fff;
}

#helpful .helpful-col .helpful-detail-wrapper .dot-icon-wrapper {
  height: 75px;
  display: flex;
  align-items: end;
  position: relative;
}

#helpful .helpful-col .helpful-detail-wrapper .dot-icon-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: auto;
  margin: auto;
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

#helpful .helpful-col .helpful-detail-wrapper .dot-icon-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: auto;
  margin: auto;
  width: 1px;
  height: 55%;
  border-left: 2px dashed #fff;
}

#helpful .helpful-col .helpful-detail-wrapper .dot-icon {
  width: 34px;
  height: 34px;
  border: 1px solid #fff;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  position: relative;
}

#helpful .helpful-col .helpful-detail-wrapper .dot-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background-color: #fff;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
}

#helpful .helpful-col:hover .helpful-detail-wrapper .dot-icon::after {
  animation: scale 4s linear infinite;
  -webkit-animation: scale 4s linear infinite;
}

@keyframes scale {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    -webkit-transform: translate(-50%, -50%) scale(1);
    -moz-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    -o-transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) scale(0.7);
    -webkit-transform: translate(-50%, -50%) scale(0.7);
    -moz-transform: translate(-50%, -50%) scale(0.7);
    -ms-transform: translate(-50%, -50%) scale(0.7);
    -o-transform: translate(-50%, -50%) scale(0.7);
  }
}

#helpful .helpful-col:nth-child(even) {
  margin: 165px 0 0;
}

#helpful .helpful-col:nth-child(even) .helpful-detail-wrapper .dot-icon-wrapper {
  order: 1;
  height: 65px;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}

#helpful .helpful-col:nth-child(even) .helpful-detail-wrapper .dot-icon-wrapper .dot-icon {
  margin: 0 0 -10px;
}

#helpful .helpful-col:nth-child(even) .helpful-detail-wrapper h2 {
  order: 2;
}

#helpful .helpful-col:nth-child(even) .helpful-detail-wrapper h6 {
  order: 3;
}

@media (max-width: 1499px) {
  #helpful .helpful-col .helpful-detail-wrapper h6 {
    font-size: 18px;
    line-height: 26px;
  }
}

@media (max-width: 1399px) {

  #helpful .helpful-content {
    gap: 20px;
  }

  #helpful .helpful-col .helpful-detail-wrapper h6 {
    font-size: 16px;
    line-height: 24px;
  }

  #helpful .helpful-col .helpful-detail-wrapper h2 {
    font: 800 36px/38px "Plus Jakarta Sans", helvetica, sans-serif;
    color: #fff;
    opacity: 0.2;
    transition: all 400ms ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -ms-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
  }
}

@media (max-width: 1299px) {

  #helpful .helpful-content {
    gap: 0;
  }

  #helpful .helpful-col:nth-child(2n) {
    margin: 150px 0 0;
  }

  #helpful .helpful-col .helpful-detail-wrapper h6 {
    font-size: 14px;
    line-height: 24px;
  }

  #helpful .helpful-col .helpful-detail-wrapper h2 {
    font-size: 32px;
    line-height: 34px;
  }
}

@media (max-width: 991px) {

  #helpful .helpful-col:nth-child(2n) {
    margin: 172px 0 0;
  }
}

@media (max-width: 767px) {
  #helpful .helpful-content {
    row-gap: 25px;
    column-gap: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  #helpful .helpful-content::after,
  #helpful .helpful-col .helpful-detail-wrapper .dot-icon-wrapper {
    display: none;
  }

  #helpful .helpful-content .helpful-col {
    width: calc(33% - 19px);
  }

  #helpful .helpful-col:nth-child(2n) {
    margin: 0;
  }

  #helpful .helpful-col {
    overflow: hidden;
  }

  #helpful .helpful-col:nth-child(even) .helpful-detail-wrapper h2 {
    order: 2;
  }

  #helpful .helpful-col:nth-child(even) .helpful-detail-wrapper h6 {
    order: 1;
  }
}

@media (max-width: 575px) {

  #helpful .helpful-content {
    row-gap: 20px;
  }

  #helpful .helpful-content .helpful-col {
    width: calc(50% - 15px);
  }
}

/* ============================ HELPFUL SECTION END ============================ */
/* ============================ TRUST SECTION START ============================ */
#trust .trust-col .trust-icon-wrapper {
  width: 205px;
  height: 205px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(44, 66, 152, 0.1);
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
}

#trust .trust-col:hover .trust-icon-wrapper {
  background-color: rgba(44, 66, 152, 0.2);
}

#trust .trust-col .trust-text h4 {
  font: 700 36px/38px "Plus Jakarta Sans", helvetica, sans-serif;
  margin: 0 0 15px;
  color: #080C24;
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
}

#trust .trust-col:hover .trust-text h4 {
  color: #B12B2B;
}

#trust .trust-col .trust-text p {
  font: 600 20px/30px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #565969;
}

@media (max-width: 1399px) {
  #trust .trust-col .trust-icon-wrapper {
    width: 165px;
    height: 165px;
    padding: 40px;
  }

  #trust .trust-col .trust-text h4 {
    font-size: 32px;
    line-height: 34px;
    margin: 0 0 10px;
  }

  #trust .trust-col .trust-text p {
    font-size: 16px;
    line-height: 24px;
  }
}

@media (max-width: 1199px) {
  #trust .trust-col .trust-icon-wrapper {
    width: 135px;
    height: 135px;
    padding: 35px;
  }

  #trust .trust-col .trust-text h4 {
    font-size: 28px;
    line-height: 30px;
  }

  #trust .trust-col .trust-text p {
    font-size: 13px;
    line-height: 18px;
  }
}

@media (max-width: 991px) {
  #trust .trust-row {
    justify-content: center;
  }

  #trust .trust-row .trust-col {
    margin: 0 0 25px;
  }

  #trust .trust-row .trust-col:last-child {
    margin: 0;
  }

  #trust .trust-row .trust-col .trust-inner-col:first-child {
    justify-content: center;
    display: flex;
  }
}

@media (max-width: 767px) {
  #trust .trust-col .trust-icon-wrapper {
    width: 105px;
    height: 105px;
    padding: 25px;
  }

  #trust .trust-col .trust-text h4 {
    font-size: 24px;
    line-height: 26px;
  }
}

@media (max-width: 575px) {
  #trust .trust-row .trust-col .trust-inner-col:first-child {
    justify-content: end;
    display: flex;
  }
}

@media (max-width: 480px) {
  #trust .trust-row .trust-col {
    margin: 0 0 15px;
  }

  #trust .trust-col .trust-text h4 {
    font-size: 20px;
    line-height: 22px;
  }
}

/* ============================ TRUST SECTION END ============================ */
/* ============================ CUSTOMER SECTION START ============================ */
#customer {
  padding: 0 0 5px;
}

#customer .common-title {
  margin: 0 0 20px;
}

#customer .customer-desc {
  width: 59%;
  margin: 0 auto 15px;
  text-align: center;
}

#customer .customer-wrapper .customer-col-wrapper {
  padding: 15px;
}

#customer .customer-wrapper .customer-col {
  padding: 80px 25px 35px;
  background-color: #fff;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 16px;
  position: relative;
  /* height: 515px; */
}

#customer .customer-wrapper .customer-col::before,
#customer .customer-wrapper .customer-col::after {
  content: '';
  position: absolute;
  background-image: url("../image/quote.html");
  background-repeat: no-repeat;
  background-size: contain;
  width: 57px;
  height: 40px;
}

#customer .customer-wrapper .customer-col::before {
  top: 20px;
  left: 25px;
}

#customer .customer-wrapper .customer-col::after {
  bottom: 20px;
  right: 25px;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}

#customer .customer-wrapper .customer-col .customer-review,
#customer .customer-wrapper .customer-col .customer-designation {
  font: 400 16px/26px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #565969;
  text-align: center;
}

#customer .customer-wrapper .customer-col .customer-review {
  margin: 0 0 40px;
}

#customer .customer-wrapper .customer-col .customer-name {
  font: 600 18px/20px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #222;
  text-align: center;
  margin: 0 0 5px;
  transition: color 0.2s;
}

#customer .customer-wrapper .customer-col:hover .customer-name {
  color: #B12B2B;
}

#customer .customer-wrapper .customer-col .customer-img-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  overflow: hidden;
  border: 2px solid #C9A063;
  padding: 10px;
  margin: 0 auto 14px;
  display: block;
}

#customer .owl-nav {
  position: absolute;
  margin: 0 !important;
  top: 43%;
  transform: translateY(-43%);
  -webkit-transform: translateY(-43%);
  -moz-transform: translateY(-43%);
  -ms-transform: translateY(-43%);
  -o-transform: translateY(-43%);
  width: calc(100% - 30px);
}

#customer .owl-nav button {
  width: 50px;
  height: 50px;
  background-color: #B12B2B !important;
  box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 16px;
  border-radius: 50% !important;
  -webkit-border-radius: 50% !important;
  -moz-border-radius: 50% !important;
  -ms-border-radius: 50% !important;
  -o-border-radius: 50% !important;
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

#customer .owl-nav button i {
  color: #fff;
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
}

#customer .owl-nav button.disabled {
  background-color: #fff !important;
  cursor: not-allowed;
  opacity: 1 !important;
}

#customer .owl-nav button.disabled i {
  color: #C9A063;
}

#customer .owl-nav button.owl-prev {
  position: absolute;
  left: -10px;
}

#customer .owl-nav button.owl-next {
  position: absolute;
  right: -15px;
}

#customer .owl-dots {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
  margin: 15px 0 0;
}

#customer .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
}

#customer .owl-dots .owl-dot span {
  background-color: transparent;
  border-width: 1px;
  border-style: solid;
  border-color: #C9A063;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
}

#customer .owl-dots .owl-dot:hover span,
#customer .owl-dots .owl-dot.active span {
  background-color: #C9A063;
  border-color: #C9A063;
}

@media (max-width: 1399px) {
  #customer .common-title {
    margin: 0 0 15px;
  }

  #customer .customer-desc {
    width: 62%;
    margin: 0 auto 10px;
  }

  #customer .customer-wrapper .customer-col {
    padding: 60px 25px 25px;
  }

  #customer .customer-wrapper .customer-col::before,
  #customer .customer-wrapper .customer-col::after {
    width: 47px;
    height: 30px;
  }

  #customer .customer-wrapper .customer-col .customer-review,
  #customer .customer-wrapper .customer-col .customer-designation {
    font-size: 14px;
    line-height: 24px;
  }

  #customer .customer-wrapper .customer-col .customer-review {
    margin: 0 0 25px;
  }
}

@media (max-width: 1199px) {
  #customer .customer-desc {
    width: 73%;
  }

  #customer .customer-wrapper .customer-col {
    padding: 50px 20px 25px;
  }

  #customer .customer-wrapper .customer-col::after {
    right: 20px;
  }

  #customer .customer-wrapper .customer-col::before {
    left: 20px;
  }

  #customer .customer-wrapper .customer-col::before,
  #customer .customer-wrapper .customer-col::after {
    width: 37px;
    height: 20px;
  }

  #customer .customer-wrapper .customer-col .customer-review {
    margin: 0 0 20px;
  }

  #customer .owl-nav button {
    width: 40px;
    height: 40px;
    font-size: 13px;
  }

  #customer .owl-dots {
    margin: 10px 0 0;
  }
}

@media (max-width: 991px) {
  #customer .customer-desc {
    width: 85%;
    margin: 0 auto 5px;
  }

  #customer .owl-dots {
    margin: 5px 0 0;
  }

  #customer .owl-nav button.owl-prev {
    left: -5px;
  }

  #customer .owl-nav button.owl-next {
    right: -10px;
  }
}

@media (max-width: 767px) {
  #customer .common-title {
    margin: 0 0 10px;
  }
}

@media (max-width: 575px) {
  #customer .customer-desc {
    width: 100%;
    margin: 0 auto;
  }

  #customer .owl-nav {
    top: 50%;
  }

  #customer .owl-nav button.owl-prev {
    left: 0;
  }

  #customer .owl-nav button.owl-next {
    right: -5px;
  }
}

@media (max-width: 480px) {
  #customer .owl-nav button {
    width: 35px;
    height: 35px;
    font-size: 12px;
  }

  #customer .owl-dots {
    margin: 0;
  }
}

/* ============================ CUSTOMER SECTION END ============================ */
/* ============================ GET-STARTED SECTION START ============================ */
#get-started {
  margin: 0 0 -200px;
  position: relative;
  z-index: 1;
}

#get-started .get-started-wrapper {
  padding: 10px;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  overflow: hidden;
}

#get-started .get-started-wrapper .get-started-bg {
  background-image: url("../image/home-get-started-bg.html");
  background-size: cover;
  background-position: left;
  background-repeat: no-repeat;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  overflow: hidden;
  padding: 125px 30px 85px;
  position: relative;
}

#get-started .get-started-wrapper .get-started-bg::before,
#get-started .get-started-wrapper .get-started-bg::after {
  background: rgba(255, 255, 255, 0.7) none repeat scroll 0 0;
  content: "";
  height: 0;
  opacity: 1;
  position: absolute;
  width: 0;
}

#get-started .get-started-wrapper .get-started-bg::before {
  right: 0;
  bottom: 0;
}

#get-started .get-started-wrapper .get-started-bg::after {
  top: 0;
  left: 0;
}

#get-started .get-started-wrapper .get-started-bg:hover::before,
#get-started .get-started-wrapper .get-started-bg:hover::after {
  height: 100%;
  opacity: 0;
  transition-duration: 1.3s;
  width: 100%;
}

#get-started .get-started-text {
  position: relative;
  z-index: 2;
}

#get-started .get-started-text h2 {
  font: italic 700 48px/50px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #080C24;
}

#get-started .get-started-text p {
  font: 500 18px/20px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #565969;
  margin: 20px 0;
}

#get-started .get-started-text .get-started-btn {
  background-color: #2C4298;
  /* border: 2px solid #2C4298; */
}

#get-started .get-started-text .get-started-btn:is(:hover, :active, :focus) {
  background-color: transparent;
  color: #2C4298;
}

@media (max-width: 1399px) {
  #get-started {
    margin: 0 0 -170px;
  }

  #get-started .get-started-wrapper .get-started-bg {
    padding: 105px 30px 65px;
  }

  #get-started .get-started-text h2 {
    font-size: 44px;
    line-height: 46px;
  }

  #get-started .get-started-text p {
    font-size: 16px;
    line-height: 18px;
    margin: 18px 0;
  }
}

@media (max-width: 1199px) {
  #get-started {
    margin: 0 0 -146px;
  }

  #get-started .get-started-wrapper .get-started-bg {
    padding: 75px 30px 55px;
  }

  #get-started .get-started-text h2 {
    font-size: 38px;
    line-height: 40px;
  }

  #get-started .get-started-text p {
    font-size: 15px;
  }
}

@media (max-width: 991px) {
  #get-started {
    margin: 0 0 -127px;
  }

  #get-started .get-started-wrapper .get-started-bg {
    padding: 55px 30px 45px;
  }

  #get-started .get-started-text h2 {
    font-size: 34px;
    line-height: 36px;
  }

  #get-started .get-started-text p {
    font-size: 14px;
    line-height: 16px;
    margin: 16px 0;
  }
}

@media (max-width: 767px) {
  #get-started {
    margin: 0 0 -120px;
  }

  #get-started .get-started-text h2 {
    font-size: 30px;
    line-height: 32px;
  }

  #get-started .get-started-text p {
    margin: 12px 0 15px;
  }

  #get-started .get-started-wrapper .get-started-bg {
    background-position: 20% !important;
  }
}

@media (max-width: 575px) {
  #get-started .get-started-wrapper .get-started-bg {
    background-position: 28% !important;
  }
}

@media (max-width: 480px) {
  #get-started {
    margin: 0 0 -100px;
  }

  #get-started .get-started-wrapper .get-started-bg {
    padding: 35px 10px 35px;
  }

  #get-started .get-started-wrapper .get-started-bg {
    background-position: 33% !important;
  }

  #get-started .get-started-text h2 {
    font-size: 26px;
    line-height: 28px;
  }

  #get-started .get-started-text p {
    font-size: 13px;
    line-height: 16px;
    margin: 12px 0
  }
}

@media (max-width: 360px) {
  #get-started .get-started-wrapper .get-started-bg {
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
  }
}

/* ============================ GET-STARTED SECTION END ============================ */
/* ============================ FOOTER SECTION START ============================ */
footer {
  background-color: #2C4298;
}

footer .footer-top {
  padding: 180px 0 30px;
  overflow: hidden;
}

footer .footer-top .footer-col {
  border-right: 1px dashed #DDDDDD;
}

footer .footer-top .footer-col:last-child {
  border-right: none;
}

footer .footer-top .footer-col:nth-child(2),
footer .footer-top .footer-col:nth-child(3) {
  display: flex;
  justify-content: center;
}

footer .footer-top .footer-col:last-child {
  display: flex;
  justify-content: end;
}

footer .footer-top .footer-logo {
  max-width: 230px;
}

footer .footer-top .social-icons-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}

footer .footer-top .social-icons-wrapper .social-icon-box {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  border: 1px solid #fff;
  background-color: transparent;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
}

footer .footer-top .social-icons-wrapper .social-icon-box:is(:hover, :active, :focus) {
  border: 1px solid #EE2B29;
  background-color: #EE2B29;
  cursor: pointer;
}

footer .footer-top .footer-col-title {
  font: 600 20px/22px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #fff;
  margin: 0 0 20px;
}

footer .footer-top .footer-menu-title {
  position: relative;
  padding: 0 0 20px;
}

footer .footer-top .footer-menu-title::before,
footer .footer-top .footer-menu-title::after {
  content: '';
  position: absolute;
  top: auto;
  left: 0;
  right: 0;
}

footer .footer-top .footer-menu-title::before {
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #D6D6D6;
  opacity: 0.5;
}

footer .footer-top .footer-menu-title::after {
  bottom: -2px;
  width: 50px;
  height: 4px;
  background-color: #fff;
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
}

footer .footer-top .footer-col:hover .footer-menu-title::after {
  width: 50%;
}

footer .footer-top ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

footer .footer-top ul.footer-menu li a {
  font: 400 16px/18px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #fff;
  position: relative;
  padding: 0 0 0 20px;
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
}

footer .footer-top ul.footer-menu li a::before {
  content: '\f105';
  position: absolute;
  font-family: "Font Awesome 6 Free";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  font-weight: 900;
}

footer .footer-top ul.footer-menu li a:is(:hover, :active, :focus) {
  color: #EE2B29;
}

footer .footer-top ul.connect {
  margin: 0 0 15px;
}

footer .footer-top ul.connect li a {
  background-color: #fff;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  padding: 5px 20px 5px 5px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
}

footer .footer-top ul.connect li a i {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
}

footer .footer-top ul.connect li a.whatsapp i {
  background-color: #009412;
  font-size: 20px;
}

footer .footer-top ul.connect li a span {
  font: 500 16px/18px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #080C24;
}

footer .footer-bottom {
  padding: 18px 0;
  border-top: 1px dashed #DDDDDD;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}

footer .footer-bottom span,
footer .footer-bottom a {
  font: 400 14px/16px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #fff;
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
}

footer .footer-bottom a:first-child {
  position: relative;
  padding: 0 10px 0 0;
  margin: 0 10px 0 0;
}

footer .footer-bottom a::after {
  content: '';
  position: absolute;
  top: 0;
  left: auto;
  right: 0;
  bottom: 0;
  width: 1px;
  height: 100%;
  background-color: #fff;
}

footer .footer-bottom a:is(:hover, :active, :focus) {
  color: #EE2B29;
}

@media (max-width: 1499px) {
  footer .footer-top ul.connect li a {
    gap: 10px;
  }

  footer .footer-top ul.connect li a span {
    font-size: 15px;
    line-height: 18px;
  }
}

@media (max-width: 1399px) {
  footer .footer-top {
    padding: 250px 0 30px;
  }

  footer .footer-top .social-icons-wrapper {
    gap: 12px;
  }

  footer .footer-top .footer-col-title {
    font-size: 18px;
    line-height: 20px;
  }

  footer .footer-top ul.footer-menu li a {
    font-size: 15px;
    padding: 0 0 0 18px;
  }

  footer .footer-top ul.footer-menu li a::before {
    font-size: 12px;
  }

  footer .footer-top ul.connect li a {
    gap: 6px;
    padding: 5px 14px 5px 5px;
  }

  footer .footer-top ul.connect li a span {
    font-size: 13px;
    line-height: 16px;
  }
}

@media (max-width: 1299px) {
  footer .footer-top {
    padding: 230px 0 30px;
  }
}

@media (max-width: 1199px) {
  footer .footer-top {
    padding: 190px 0 30px;
  }

  footer .footer-top .social-icons-wrapper {
    gap: 10px;
  }

  footer .footer-top ul {
    gap: 12px;
  }

  footer .footer-top ul.footer-menu li a {
    font-size: 14px;
  }

  footer .footer-top ul.connect li a i {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  footer .footer-top ul.connect li a.whatsapp i {
    font-size: 16px;
  }

  footer .footer-top ul.connect li a {
    padding: 5px 8px 5px 5px;
  }

  footer .footer-top ul.connect li a span {
    font-size: 12px;
    line-height: 14px;
  }
}

@media (min-width: 992px) and (max-width: 1199px),
(max-width: 480px) {
  footer .footer-top .social-icons-wrapper .social-icon-box {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
}

@media (max-width: 991px) {
  footer .footer-top {
    padding: 170px 0 30px;
  }

  footer .footer-top .footer-col {
    border-right: none;
    margin: 0 0 25px;
  }

  footer .footer-top .footer-col:nth-last-child(2),
  footer .footer-top .footer-col:last-child {
    margin: 0;
  }

  footer .footer-top .footer-col:nth-child(2),
  footer .footer-top .footer-col:nth-child(3),
  footer .footer-top .footer-col:last-child {
    justify-content: start;
  }

  footer .footer-top ul.connect li a {
    gap: 10px;
    padding: 5px 20px 5px 5px;
  }

  footer .footer-top ul.connect li a i {
    width: 40px;
    height: 40px;
  }

  footer .footer-top ul.connect li a.whatsapp i {
    font-size: 20px;
  }

  footer .footer-top ul.connect li a span {
    font-size: 14px;
    line-height: 16px;
  }

  footer .footer-bottom {
    display: block;
    text-align: center;
    padding: 15px 0;
  }

  footer .footer-bottom span {
    margin: 0 0 10px;
    display: inline-block;
  }
}

@media (max-width: 767px) {
  footer .footer-top {
    padding: 160px 0 30px;
  }

  footer .footer-top .footer-col:hover .footer-menu-title::after {
    width: 50px;
  }

  footer .footer-top ul.connect li a {
    gap: 6px;
    padding: 5px 10px 5px 5px;
  }

  footer .footer-top ul.connect li a i {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  footer .footer-top ul.connect li a.whatsapp i {
    font-size: 17px;
  }

  footer .footer-top ul.connect li a span {
    font-size: 13px;
  }
}

@media (max-width: 575px) {
  footer .footer-top .footer-col:nth-last-child(2) {
    margin: 0 0 25px;
  }
}

@media (max-width: 480px) {
  footer .footer-top {
    padding: 180px 0 20px;
  }

  footer .footer-bottom span,
  footer .footer-bottom a {
    font-size: 13px;
    line-height: 20px;
  }

  footer .footer-bottom span {
    margin: 0 0 6px;
  }
}

/* ============================ FOOTER SECTION END ============================ */

/* ======================================================================================================== */
/* ============================ PRICING-PAGE ============================ */
/* ======================================================================================================== */
/* ============================ PRICING-HERO SECTION START ============================ */

#inner-hero .inner-hero-text .inner-hero-title {
  font: italic 700 60px/68px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #fff;
  text-transform: uppercase;
}

#inner-hero .inner-hero-text .inner-hero-desc {
  font: 600 20px/26px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #fff;
  margin: 20px 0 50px;
}

#inner-hero .inner-hero-text .inner-hero-desc.first-desc {
  margin: 20px 0 15px;
}

#inner-hero .inner-hero-text .inner-hero-desc.last-desc {
  margin: 0 0 40px;
}

#inner-hero .shipping-rates-wrapper {
  background-color: #fff;
  padding: 40px;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}

#inner-hero .shipping-rates-wrapper .shipping-rates-title {
  font: 600 24px/26px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #080C24;
  margin: 0 0 30px;
}

#inner-hero .nav-pills {
  margin: 0 !important;
  width: 100%;
  border-bottom: 2px solid #D6D6D6;
}

#inner-hero .nav-pills .nav-item {
  width: 50%;
}

#inner-hero .nav-pills .nav-link {
  font: 600 20px/22px "Plus Jakarta Sans", helvetica, sans-serif;
  text-transform: capitalize;
  width: 100%;
  text-align: center;
  padding: 12px 20px;
  color: #565969;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-bottom: 2px solid transparent;
  margin: 0 0 -2px;
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
}

#inner-hero .nav-pills .nav-link.active,
#inner-hero .nav-pills .show>.nav-link {
  color: #2C4298;
  background-color: transparent;
  border-bottom: 2px solid #2C4298;
}

#inner-hero .shipping-rates-input-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin: 30px 0;
}

#inner-hero .shipping-rates-input-wrapper .shipping-rates-input label {
  font: 500 16px/18px "Plus Jakarta Sans", helvetica, sans-serif;
  display: block;
  margin: 0 0 5px;
  color: #565969;
  text-transform: capitalize;
}

#inner-hero .shipping-rates-input-wrapper .shipping-rates-input .iti--allow-dropdown {
  min-width: 100%;
}

#pricing .iti__flag-box {
  display: none;
}

#inner-hero .shipping-rates-input-wrapper .shipping-rates-input .pricing-mobile-input,
#inner-hero .shipping-rates-input-wrapper .shipping-rates-input #mobile_code,
#inner-hero .ts-wrapper:not(.form-control, .form-select).single .ts-control,
#inner-hero .select2-selection {
  font: 500 18px/24px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #080C24;
  border: 1px solid #D6D6D6 !important;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  width: 100%;
  padding: 16px 25px;
  background-color: transparent;
  box-shadow: none !important;
}

#inner-hero .shipping-rates-input-wrapper .shipping-rates-input .pricing-mobile-input {
  padding-left: 118px !important;
}

#inner-hero .select2-container .select2-selection--single {
  height: auto;
}

#inner-hero .select2-container .select2-selection--single .select2-selection__rendered {
  padding: 0;
}

#inner-hero .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #080c24;
  line-height: 24px;
}

#inner-hero .select2-selection__clear {
  display: none;
}

#inner-hero .select2-container--default .select2-selection--single .select2-selection__arrow {
  right: 20px;
  top: 50%;
  bottom: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

#inner-hero .iti__selected-country {
  position: relative;
  margin: 0 0 0 20px;
  padding: 0 20px 0 0;
}

#inner-hero .iti__selected-country .iti__selected-dial-code {
  position: relative;
  padding: 0 10px 0 0;
  min-width: 55px;
}

#inner-hero .iti__selected-country::before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  right: 0;
  height: 50%;
  width: 1px;
  background-color: #d6d6d6;
}

#inner-hero .iti__selected-country .iti__selected-dial-code::before {
  position: absolute;
  content: '';
  border-color: #565969 transparent transparent transparent;
  border-width: 6px 5px 0 5px;
  border-style: solid;
  top: 50%;
  right: -5px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

#inner-hero .select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #565969 transparent transparent transparent;
  border-width: 6px 5px 0 5px;
  height: 0;
  margin: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

#inner-hero .iti__selected-country[aria-expanded="true"] .iti__selected-dial-code::before,
#inner-hero .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #565969 transparent;
  border-width: 0 5px 6px 5px;
}

#pricing .select2-container--default .select2-results__option--selected,
#pricing .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #f2f2f2;
  color: #080c24;
}

#pricing .select2-container--open .select2-dropdown--above,
#pricing .select2-container--open .select2-dropdown--below,
#pricing .select2-container--default .select2-search--dropdown .select2-search__field,
#pricing .iti--inline-dropdown .iti__dropdown-content {
  border: 1px solid rgba(0, 0, 0, 0.175);
  overflow: hidden;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

#inner-hero .select2-container {
  min-width: 100%;
}

#inner-hero .ts-wrapper:not(.form-control, .form-select).single .ts-control {
  appearance: none;
  background-image: url("../image/down-arrow.html");
  background-repeat: no-repeat;
  background-position: right 1.6rem top 50%;
  background-size: 0.65rem auto;
  cursor: pointer;
}

#inner-hero .ts-control input {
  display: none !important;
}

#inner-hero .iti__arrow {
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #565969;
}

#inner-hero .iti__arrow--up {
  border-bottom: none !important;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #565969;
}

#inner-hero .iti--separate-dial-code .iti__selected-flag {
  background-color: transparent;
  position: relative;
  padding: 0 12px 0 20px;
  margin: 0 12px 0 0;
}

#inner-hero .iti--separate-dial-code .iti__selected-flag:is(:hover, :active, :focus) {
  background-color: transparent !important;
}

#inner-hero .shipping-rates-input-wrapper .shipping-rates-input input {
  padding-left: 110px !important;
}

#inner-hero .iti__selected-dial-code {
  font: 500 18px/20px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #080C24;
  width: 45px;
  user-select: none;
}

#inner-hero .iti__selected-country-primary,
#inner-hero .iti__flag {
  display: none !important;
}

#inner-hero .iti__flag-box,
#inner-hero .iti__flag {
  display: none !important;
}

#inner-hero ul.iti__country-list {
  max-width: 288px;
  width: 288px;
}

#inner-hero .shipping-rates-input-wrapper .shipping-rates-input input::placeholder {
  color: #080C24;
  opacity: 1;
  font-weight: 500;
}

#inner-hero .iti--separate-dial-code .iti__selected-flag::before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  left: auto;
  right: 0;
  height: 60%;
  width: 1px;
  background-color: #D6D6D6;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

#inner-hero .modal {
  background: rgba(83, 83, 83, 0.3);
  backdrop-filter: blur(10px);
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  text-align: center;
  --bs-modal-width: 700px;
  --bs-modal-border-radius: 30px;
}

#inner-hero .modal .modal-content {
  padding: 40px;
}

#inner-hero .modal .modal-header,
#inner-hero .modal .modal-body,
#inner-hero .modal .modal-footer {
  border: none;
  display: block;
  padding: 0;
}

#inner-hero .modal .modal-header .modal-title {
  font: 700 24px/26px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #080C24;
  margin: 0 0 14px;
}

#inner-hero .modal .modal-header .modal-desc {
  font: 500 18px/20px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #565969;
}

#inner-hero .modal .modal-body {
  padding: 50px 0 30px;
}

#inner-hero .modal .modal-body .otp-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}

#inner-hero .modal .modal-body .otp-wrapper .otp-box {
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #D6D6D6;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  width: 100%;
  color: #080C24;
  font: 600 22px/24px "Plus Jakarta Sans", helvetica, sans-serif;
}

#inner-hero .modal .modal-footer p {
  font: 500 18px/20px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #080C24;
  margin: 30px 0 15px;
}

#inner-hero .modal .modal-footer .refresh-btn {
  font: 700 18px/20px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #2C4298;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin: 0 auto;
}

@media (max-width: 1499px) {
  #inner-hero .iti--separate-dial-code .iti__selected-flag {
    padding: 0 12px 0 20px;
    margin: 0 12px 0 0;
  }

  #inner-hero .shipping-rates-input-wrapper .shipping-rates-input .pricing-mobile-input {
    padding-left: 108px !important;
  }

  #inner-hero .iti__selected-country {
    position: relative;
    margin: 0 0 0 16px;
    padding: 0 16px 0 0;
  }

  #inner-hero .shipping-rates-input-wrapper .shipping-rates-input .pricing-mobile-input,
  #pricing .ts-wrapper:not(.form-control, .form-select).single .ts-control,
  #inner-hero .select2-selection {
    padding: 16px 15px;
  }
}

@media (max-width: 1399px) {
  #inner-hero .inner-hero-text .inner-hero-title {
    font-size: 50px;
    line-height: 58px;
  }

  #inner-hero .inner-hero-text .inner-hero-desc {
    font-size: 18px;
    line-height: 26px;
  }

  #inner-hero .inner-hero-text .inner-hero-desc.last-desc {
    margin: 0 0 30px;
  }

  #inner-hero .shipping-rates-wrapper {
    padding: 30px;
  }

  #inner-hero .shipping-rates-wrapper .shipping-rates-title {
    font-size: 22px;
    line-height: 24px;
    margin: 0 0 25px;
  }

  #inner-hero .nav-pills .nav-link {
    font-size: 18px;
    line-height: 20px;
  }

  #inner-hero .shipping-rates-input-wrapper .shipping-rates-input .pricing-mobile-input,
  #inner-hero .ts-wrapper:not(.form-control, .form-select).single .ts-control,
  #inner-hero .select2-selection {
    font-size: 16px;
    line-height: 22px;
    padding: 16px 15px;
  }

  #inner-hero .shipping-rates-input-wrapper .shipping-rates-input select,
  #inner-hero .ts-wrapper:not(.form-control, .form-select).single .ts-control {
    background-position: right 1.3rem top 50%;
  }

  #inner-hero .iti__selected-dial-code {
    font-size: 16px;
    line-height: 18px;
    width: 40px;
  }

  #inner-hero .iti--separate-dial-code .iti__selected-flag {
    padding: 0 12px 0 10px;
    margin: 0 12px 0 0;
  }

  #inner-hero ul.iti__country-list {
    max-width: 228px;
    width: 228px;
  }

  #inner-hero .shipping-rates-input-wrapper .shipping-rates-input .pricing-mobile-input {
    padding-left: 92px !important;
  }

  #inner-hero .modal .modal-header .modal-title {
    font-size: 22px;
    line-height: 24px;
  }

  #inner-hero .modal .modal-body {
    padding: 40px 0 30px;
  }

  #inner-hero .modal .modal-body .otp-wrapper .otp-box {
    padding: 15px;
    font-size: 20px;
    line-height: 22px;
  }

  #inner-hero .modal .modal-footer p {
    margin: 20px 0 15px;
  }

  #inner-hero .iti__selected-country {
    margin: 0 0 0 10px;
  }
}

@media (max-width: 1299px) {
  #inner-hero {
    padding: 160px 0 180px;
  }

  #inner-hero .inner-hero-text .inner-hero-title {
    font-size: 46px;
    line-height: 54px;
  }

  #inner-hero .inner-hero-text .inner-hero-desc {
    font-size: 16px;
    line-height: 24px;
  }

  #inner-hero .inner-hero-text .inner-hero-desc.first-desc {
    margin: 15px 0;
  }

  #inner-hero .inner-hero-text .inner-hero-desc.last-desc {
    margin: 0 0 22px;
  }
}

@media (max-width: 1199px) {
  #inner-hero .shipping-rates-wrapper .shipping-rates-title {
    font-size: 18px;
    line-height: 22px;
    margin: 0 0 15px;
  }

  #inner-hero .nav-pills .nav-link {
    font-size: 16px;
    line-height: 18px;
  }

  #inner-hero .shipping-rates-input-wrapper {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    margin: 20px 0;
  }

  #inner-hero .iti.iti--allow-dropdown.iti--separate-dial-code {
    width: 100%;
  }

  #inner-hero .shipping-rates-input-wrapper .shipping-rates-input label {
    font-size: 15px;
    margin: 0 0 8px;
  }

  #inner-hero .shipping-rates-input-wrapper .shipping-rates-input .pricing-mobile-input,
  #inner-hero .ts-wrapper:not(.form-control, .form-select).single .ts-control,
  #inner-hero .select2-selection {
    padding: 16px 20px;
  }

  #inner-hero .iti--separate-dial-code .iti__selected-flag {
    padding: 0 10px 0 20px;
    margin: 0 10px 0 0;
  }

  #inner-hero ul.iti__country-list {
    max-width: 396px;
    width: 396px;
  }

  #inner-hero .shipping-rates-input-wrapper .shipping-rates-input .pricing-mobile-input {
    padding-left: 100px !important;
  }
}

@media (max-width: 991px) {
  #inner-hero {
    padding: 80px 0 240px;
    background-position: left;
  }

  #inner-hero .inner-hero-text {
    text-align: center;
    margin: 0 0 25px;
  }

  #inner-hero .common-btn {
    margin: 0 auto;
  }

  #inner-hero .inner-hero-text .inner-hero-title {
    font-size: 42px;
    line-height: 50px;
  }

  #inner-hero .shipping-rates-wrapper .shipping-rates-title {
    font-size: 20px;
    line-height: 22px;
    text-align: center;
  }

  #inner-hero .shipping-rates-input-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  #inner-hero ul.iti__country-list {
    max-width: 308px;
    width: 308px;
  }

  #inner-hero .modal .modal-header .modal-desc,
  #inner-hero .modal .modal-footer p,
  #inner-hero .modal .modal-footer .refresh-btn {
    font-size: 16px;
    line-height: 18px;
  }

  #inner-hero .modal .modal-body .otp-wrapper .otp-box {
    font-size: 18px;
    line-height: 20px;
  }
}

@media (max-width: 767px) {
  #inner-hero {
    padding: 60px 0 240px;
  }

  #inner-hero .inner-hero-text .inner-hero-title {
    font-size: 38px;
    line-height: 46px;
  }

  #inner-hero .inner-hero-text .inner-hero-desc.first-desc {
    margin: 10px 0;
  }

  #inner-hero .inner-hero-text .inner-hero-desc.last-desc {
    margin: 0 0 15px;
  }

  #inner-hero .shipping-rates-input-wrapper .shipping-rates-input label {
    font-size: 14px;
    margin: 0 0 5px;
  }

  #inner-hero .shipping-rates-input-wrapper .shipping-rates-input .pricing-mobile-input,
  #inner-hero .ts-wrapper:not(.form-control, .form-select).single .ts-control,
  #inner-hero .select2-selection {
    padding: 16px 15px;
  }

  #inner-hero .shipping-rates-input-wrapper .shipping-rates-input select,
  #inner-hero .ts-wrapper:not(.form-control, .form-select).single .ts-control {
    background-position: right 1rem top 50%;
  }

  #inner-hero .shipping-rates-input-wrapper {
    gap: 15px;
  }

  #inner-hero .iti--separate-dial-code .iti__selected-flag {
    padding: 0 6px 0 10px;
    margin: 0 6px 0 0;
  }

  #inner-hero ul.iti__country-list {
    max-width: 220px;
    width: 220px;
  }

  #inner-hero .shipping-rates-input-wrapper .shipping-rates-input input {
    padding-left: 84px !important;
  }

  #inner-hero .modal {
    --bs-modal-width: 520px;
  }

  #inner-hero .modal .modal-content {
    padding: 30px;
  }

  #inner-hero .modal .modal-body {
    padding: 30px 0 25px;
  }
}

@media (max-width: 575px) {
  #inner-hero .shipping-rates-wrapper {
    padding: 25px;
  }

  #inner-hero .iti__selected-dial-code {
    font-size: 13px;
    line-height: 16px;
    width: 32px;
    margin-left: 4px !important;
  }

  #inner-hero .shipping-rates-input-wrapper .shipping-rates-input .pricing-mobile-input,
  #inner-hero .ts-wrapper:not(.form-control, .form-select).single .ts-control,
  #inner-hero .select2-selection {
    padding: 14px 10px;
  }

  #inner-hero .shipping-rates-input-wrapper .shipping-rates-input input {
    padding-left: 65px !important;
  }

  #inner-hero .iti--separate-dial-code .iti__selected-flag {
    padding: 0 4px 0 6px;
    margin: 0 4px 0 0;
  }

  #inner-hero ul.iti__country-list {
    max-width: 196px;
    width: 196px;
  }

  #inner-hero .modal {
    --bs-modal-width: 100%;
  }

  #inner-hero .modal .modal-body {
    padding: 25px 0 20px;
  }

  #inner-hero .modal .modal-body .otp-wrapper {
    gap: 15px;
  }
}

@media (max-width: 480px) {
  #inner-hero {
    padding: 40px 0 250px;
  }

  #inner-hero .inner-hero-text .inner-hero-title {
    font-size: 34px;
    line-height: 42px;
  }

  #inner-hero .inner-hero-text .inner-hero-desc {
    font-size: 14px;
    line-height: 24px;
  }

  #inner-hero .shipping-rates-wrapper {
    padding: 20px;
  }

  #inner-hero .shipping-rates-wrapper .shipping-rates-title {
    font-size: 18px;
    line-height: 26px;
    margin: 0 0 10px;
  }

  #inner-hero .nav-pills .nav-link {
    font-size: 14px;
    line-height: 16px;
    padding: 10px 15px;
  }


  #inner-hero .shipping-rates-input-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }

  #inner-hero .shipping-rates-input-wrapper .shipping-rates-input .pricing-mobile-input,
  #inner-hero .ts-wrapper:not(.form-control, .form-select).single .ts-control,
  #inner-hero .select2-selection {
    padding: 14px 15px;
  }

  #inner-hero .iti__selected-dial-code {
    font-size: 16px;
    line-height: 18px;
    width: 40px;
    margin-left: 0px !important;
  }

  #inner-hero .iti--separate-dial-code .iti__selected-flag {
    padding: 0 10px 0 15px;
    margin: 0 10px 0 0;
  }

  #inner-hero ul.iti__country-list {
    max-width: 297px;
    width: 297px;
  }

  #inner-hero .shipping-rates-input-wrapper .shipping-rates-input .pricing-mobile-input {
    padding-left: 90px !important;
  }

  #inner-hero .modal .modal-content {
    padding: 20px;
  }

  #inner-hero .modal .modal-header .modal-title {
    font-size: 20px;
    line-height: 22px;
    margin: 0 0 10px;
  }

  #inner-hero .modal .modal-header .modal-desc {
    font-size: 14px;
    line-height: 22px;
  }

  #inner-hero .modal .modal-body {
    padding: 20px 0;
  }

  #inner-hero .modal .modal-body .otp-wrapper {
    gap: 10px;
  }

  #inner-hero .modal .modal-body .otp-wrapper .otp-box {
    padding: 12px;
    font-size: 16px;
    line-height: 18px;
  }

  #inner-hero .modal .modal-footer p,
  #inner-hero .modal .modal-footer .refresh-btn {
    font-size: 14px;
    line-height: 16px;
  }

  #inner-hero .modal .modal-footer p {
    margin: 12px 0;
  }

  #inner-hero .modal .modal-footer .common-btn-2 {
    font-size: 15px;
    line-height: 18px;
    padding: 14px 20px;
  }
}

@media (max-width: 360px) {
  #inner-hero .inner-hero-text .inner-hero-title {
    font-size: 30px;
    line-height: 38px;
  }

  #inner-hero .inner-hero-text .inner-hero-desc.first-desc {
    margin: 8px 0;
  }

  #inner-hero .inner-hero-text .inner-hero-desc.last-desc {
    margin: 0 0 12px;
  }

  #inner-hero ul.iti__country-list {
    max-width: 256px;
    width: 256px;
  }
}

/* ============================ PRICING-HERO SECTION END ============================ */
/* ============================ QUOTE-FOR-SHIPPING SECTION START ============================ */
#quote-for-shipping .quote-for-shipping-top-wrapper {
  background-color: #E2E5F1;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  margin: 0 0 30px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  overflow: hidden;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .common-title {
  padding: 30px 0;
  margin: 0;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .content-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .table-content-wrapper {
  width: 100%;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .table-title-wrapper {
  overflow: hidden;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .table-title-row,
#quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row {
  display: flex;
  align-items: center;
  width: 100%;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .table-title-row .table-title:first-child,
#quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail:first-child {
  width: 20%;
  min-width: 320px;
  text-align: left;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .table-title-row .table-title:nth-child(2),
#quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail:nth-child(2) {
  width: 16%;
  min-width: 130px;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .table-title-row .table-title:nth-child(3),
#quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail:nth-child(3) {
  width: 18%;
  min-width: 130px;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .table-title-row .table-title:nth-child(4),
#quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail:nth-child(4) {
  width: 26%;
  min-width: 210px;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .table-title-row .table-title:nth-child(5),
#quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail:nth-child(5) {
  width: 20%;
  min-width: 200px;
  text-align: right;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .table-title-row {
  background-color: #D4D8E9;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .table-title-row .table-title {
  font: 700 20px/22px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #080C24;
  padding: 18px 20px;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .table-title-row .table-title:last-child {
  padding: 18px 60px 18px 20px;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row {
  background-color: #fff;
  padding: 0;
  cursor: pointer;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row::after {
  display: none;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .table-service {
  background-color: #fff;
  margin: 0 0 5px;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .table-service:last-child {
  margin: 0;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail {
  font: 500 20px/22px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #2C4298;
  padding: 24px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  user-select: none;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail:first-child {
  font: 500 18px/20px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #080C24;
  display: block;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail:first-child span {
  margin: 0 0 0 10px;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail:last-child {
  padding: 24px 40px 24px 20px;
  text-align: right;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail:last-child button {
  font: 600 16px/18px "Plus Jakarta Sans", helvetica, sans-serif;
  padding: 15px 30px;
  margin: 0 0 0 auto;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail span.budge {
  font: 600 14px/16px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #fff;
  padding: 6px 15px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail span.budge.green {
  background-color: #009412;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail span.budge.red {
  background-color: #EE0505;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail .value-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail .value-wrapper span {
  background-color: #EAEDF5;
  width: 10px;
  height: 20px;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail .value-wrapper span.excellent {
  background-color: #293E8E;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail .value-wrapper span.basic {
  background-color: #EE2B29;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail .value-wrapper span.regular {
  background-color: #FFAC0C;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail .tooltip-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  position: relative;
  cursor: pointer;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail .tooltip-wrapper .tooltip {
  font: 500 14px/24px "Plus Jakarta Sans", helvetica, sans-serif;
  text-align: center;
  display: none;
  opacity: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  top: -115px;
  bottom: auto;
  margin: auto;
  background: #fff;
  color: #080C24;
  padding: 15px;
  width: 0;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border: 1px solid #D6D6D6;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail .tooltip-wrapper .tooltip::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: auto;
  bottom: -8px;
  width: 15px;
  height: 15px;
  background: #fff;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  margin: 0 auto;
  z-index: -1;
  border-right: 1px solid #D6D6D6;
  border-bottom: 1px solid #D6D6D6;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail .tooltip-wrapper:hover .tooltip {
  display: block;
  opacity: 1;
  width: 330px;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .table-service:first-child .table-detail-row .table-detail .tooltip-wrapper .tooltip {
  top: auto;
  bottom: -115px;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .table-service:first-child .table-detail-row .table-detail .tooltip-wrapper .tooltip::before {
  top: -8px;
  bottom: auto;
  border-right: none;
  border-bottom: none;
  border-left: 1px solid #D6D6D6;
  border-top: 1px solid #D6D6D6;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail .common-btn {
  border: 2px solid #2C4298;
  background-color: transparent;
  color: #2C4298;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail .common-btn:hover,
#quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row[aria-expanded="true"] .table-detail .common-btn {
  background-color: #2C4298;
  color: #fff;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail .common-btn span {
  margin: 0;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .accordion-body {
  padding: 30px 30px 25px;
  background-color: #E2E5F1;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .accordion-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .accordion-body ul li {
  position: relative;
  font: 500 18px/24px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #565969;
  padding: 0 0 0 20px;
  margin: 0 0 20px;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .accordion-body ul li::before {
  content: '\f0da';
  position: absolute;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  top: 3px;
  left: 0;
  font-size: 18px;
  line-height: 20px;
  color: #565969;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .accordion-body ul li .list-title {
  color: rgba(86, 89, 105, 0.47);
  margin: 0 0 2px;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .accordion-body .msg-err {
  background-color: #FFC7C7;
  color: #EE2B29;
  padding: 10px 15px 10px 40px;
  position: relative;
  font: 500 16px/24px "Plus Jakarta Sans", helvetica, sans-serif;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  display: inline-block;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .accordion-body .msg-err::before {
  content: '\f05a';
  position: absolute;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  left: 15px;
  font-size: 16px;
  line-height: 18px;
  color: #EE2B29;
}

#quote-for-shipping .quote-for-shipping-bottom-wrapper {
  padding: 10px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  background-color: #fff;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  overflow: hidden;
}

#quote-for-shipping .quote-for-shipping-bottom-wrapper .bottom-content {
  background-color: #F4F5F9;
  padding: 30px 0;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  overflow: hidden;
}

#quote-for-shipping .quote-for-shipping-bottom-wrapper .bottom-content .content-row {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 14px 20px;
}

#quote-for-shipping .quote-for-shipping-bottom-wrapper .bottom-content .content-row {
  display: flex;
  align-items: start;
  gap: 30px;
  padding: 14px 20px;
  width: 100%;
}

#quote-for-shipping .quote-for-shipping-bottom-wrapper .bottom-content .content-row:nth-child(2n+1) {
  background-image: linear-gradient(to left, #F4F5F9, #E0E3F0);
}

#quote-for-shipping .quote-for-shipping-bottom-wrapper .bottom-content .content-row .content-title {
  font: 700 16px/22px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #080C24;
  width: calc(30% - 15px);
  text-align: right;
}

#quote-for-shipping .quote-for-shipping-bottom-wrapper .bottom-content .content-row .content-desc {
  font: 500 16px/22px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #080C24;
  width: calc(70% - 15px);
}

#quote-for-shipping .quote-for-shipping-bottom-wrapper ul li {
  font: 500 16px/24px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #080C24;
  margin: 15px 0 0;
  position: relative;
  padding: 0 0 0 32px;
}

#quote-for-shipping .quote-for-shipping-bottom-wrapper ul li::before {
  content: '\f058';
  position: absolute;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  top: 5px;
  left: 0;
  font-size: 18px;
  line-height: 20px;
  color: #EE2B29;
}

@media (max-width: 1399px) {

  #quote-for-shipping .quote-for-shipping-top-wrapper .common-title {
    padding: 25px 0;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-title-row .table-title,
  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail {
    font-size: 18px;
    line-height: 20px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-title-row .table-title:first-child,
  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail:first-child {
    min-width: 260px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-title-row .table-title:nth-child(4),
  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail:nth-child(4) {
    width: 28%;
    min-width: 180px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-title-row .table-title:nth-child(5),
  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail:nth-child(5) {
    width: 22%;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-title-row .table-title {
    padding: 18px 15px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-title-row .table-title:last-child {
    padding: 18px 50px 18px 15px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail {
    padding: 20px 15px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail:last-child {
    padding: 20px 30px 20px 15px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail:last-child button {
    font-size: 14px;
    line-height: 16px;
    padding: 15px 25px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail:first-child {
    font-size: 16px;
    line-height: 18px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail span.budge {
    font-size: 13px;
    line-height: 15px;
    padding: 4px 10px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .delivery-location {
    max-width: 26px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .calendar-icon {
    max-width: 20px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail .value-wrapper {
    gap: 6px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail .value-wrapper span {
    width: 7px;
    height: 16px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail .tooltip-wrapper .tooltip {
    top: -105px;
    padding: 10px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-service:first-child .table-detail-row .table-detail .tooltip-wrapper .tooltip {
    bottom: -105px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .accordion-body {
    padding: 25px 25px 20px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .accordion-body ul li {
    font-size: 16px;
    line-height: 24px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .accordion-body .msg-err {
    font-size: 14px;
  }

  #quote-for-shipping .quote-for-shipping-bottom-wrapper .bottom-content {
    padding: 20px 0;
  }

  #quote-for-shipping .quote-for-shipping-bottom-wrapper .bottom-content .content-row {
    padding: 14px;
    gap: 26px;
  }

  #quote-for-shipping .quote-for-shipping-bottom-wrapper .bottom-content .content-row .content-title {
    width: calc(36% - 13px);
  }

  #quote-for-shipping .quote-for-shipping-bottom-wrapper .bottom-content .content-row .content-desc {
    width: calc(64% - 13px);
  }
}

@media (max-width: 1299px) {
  #quote-for-shipping .quote-for-shipping-bottom-wrapper ul li {
    font-size: 15px;
    line-height: 22px;
  }

  #quote-for-shipping .quote-for-shipping-bottom-wrapper ul li::before {
    top: 3px;
    font-size: 16px;
    line-height: 18px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .accordion-body ul li::before {
    top: 4px;
    font-size: 16px;
    line-height: 18px;
  }
}

@media (max-width: 1199px) {
  #quote-for-shipping .quote-for-shipping-top-wrapper .common-title {
    padding: 20px 0;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-title-row .table-title:first-child,
  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail:first-child {
    width: 20%;
    min-width: 230px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-title-row .table-title:nth-child(2),
  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail:nth-child(2) {
    width: 14%;
    min-width: 120px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-title-row .table-title:nth-child(3),
  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail:nth-child(3) {
    width: 22%;
    min-width: 170px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-title-row .table-title:nth-child(4),
  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail:nth-child(4) {
    width: 24%;
    min-width: 246px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-title-row .table-title:nth-child(5),
  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail:nth-child(5) {
    width: 20%;
    min-width: 170px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-title-row .table-title {
    padding: 18px 10px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-title-row .table-title:last-child {
    padding: 18px 40px 18px 10px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail {
    padding: 15px 10px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail:last-child {
    padding: 15px 20px 15px 10px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-title-row .table-title,
  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail {
    font-size: 16px;
    line-height: 18px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail span.budge {
    font-size: 12px;
    line-height: 14px;
    padding: 4px 10px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail:last-child button {
    font-size: 14px;
    line-height: 16px;
    padding: 12px 20px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail .value-wrapper {
    gap: 5px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail .value-wrapper span {
    width: 6px;
    height: 15px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .accordion-body {
    padding: 20px 20px 15px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .accordion-body ul li {
    font-size: 15px;
    line-height: 22px;
    margin: 0 0 18px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .accordion-body ul li::before {
    top: 3px;
    font-size: 15px;
    line-height: 18px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .accordion-body .msg-err {
    line-height: 22px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .accordion-body .msg-err::before {
    font-size: 15px;
  }

  #quote-for-shipping .quote-for-shipping-bottom-wrapper .bottom-content .content-row .content-title,
  #quote-for-shipping .quote-for-shipping-bottom-wrapper .bottom-content .content-row .content-desc {
    font-size: 15px;
  }

  #quote-for-shipping .quote-for-shipping-bottom-wrapper .bottom-content .content-row {
    gap: 20px;
  }

  #quote-for-shipping .quote-for-shipping-bottom-wrapper .bottom-content .content-row .content-title {
    width: calc(36% - 10px);
  }

  #quote-for-shipping .quote-for-shipping-bottom-wrapper .bottom-content .content-row .content-desc {
    width: calc(64% - 10px);
  }
}

@media (max-width: 991px) {

  #quote-for-shipping {
    margin: -90px 0 40px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-content-wrapper {
    width: fit-content;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail:first-child {
    font-size: 15px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-title-row .table-title:first-child,
  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail:first-child,
  #quote-for-shipping .quote-for-shipping-top-wrapper .table-title-row .table-title:nth-child(2),
  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail:nth-child(2) {
    min-width: 100px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-title-row .table-title:nth-child(3),
  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail:nth-child(3) {
    min-width: 160px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-title-row .table-title:nth-child(4),
  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail:nth-child(4) {
    min-width: 200px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-title-row .table-title:first-child {
    padding: 18px 10px 18px 18px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail:first-child {
    padding: 15px 10px 15px 18px;
  }

  #quote-for-shipping .quote-for-shipping-bottom-wrapper ul {
    padding: 5px;
  }

  #quote-for-shipping .quote-for-shipping-bottom-wrapper .bottom-content .content-row .content-title {
    width: calc(27% - 10px);
  }

  #quote-for-shipping .quote-for-shipping-bottom-wrapper .bottom-content .content-row .content-desc {
    width: calc(73% - 10px);
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .accordion-body ul li {
    margin: 0 0 15px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .accordion-body {
    padding: 15px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .accordion-body .msg-err {
    padding: 8px 10px 8px 30px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .accordion-body .msg-err::before {
    left: 10px;
  }
}

@media (max-width: 767px) {
  #quote-for-shipping {
    margin: -110px 0 40px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .common-title {
    padding: 15px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail .tooltip-wrapper .tooltip {
    font-size: 13px;
    line-height: 20px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail .tooltip-wrapper:hover .tooltip {
    width: 220px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail .tooltip-wrapper .tooltip {
    top: -135px;
    padding: 10px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-service:first-child .table-detail-row .table-detail .tooltip-wrapper .tooltip {
    bottom: -135px;
  }

  #quote-for-shipping .quote-for-shipping-bottom-wrapper .bottom-content .content-row {
    display: block;
  }

  #quote-for-shipping .quote-for-shipping-bottom-wrapper .bottom-content .content-row .content-title {
    width: 100%;
    text-align: left;
    margin: 0 0 5px;
  }

  #quote-for-shipping .quote-for-shipping-bottom-wrapper .bottom-content .content-row .content-desc {
    width: 100%;
  }

  #quote-for-shipping .quote-for-shipping-bottom-wrapper ul li {
    margin: 10px 0 0;
    padding: 0 0 0 28px;
  }

  #quote-for-shipping .quote-for-shipping-bottom-wrapper ul li::before {
    top: 5px;
    font-size: 14px;
    line-height: 16px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-title-row .table-title:first-child,
  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail:first-child,
  #quote-for-shipping .quote-for-shipping-top-wrapper .table-title-row .table-title:nth-child(2),
  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail:nth-child(2),
  #quote-for-shipping .quote-for-shipping-top-wrapper .table-title-row .table-title:nth-child(3),
  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail:nth-child(3),
  #quote-for-shipping .quote-for-shipping-top-wrapper .table-title-row .table-title:nth-child(4),
  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail:nth-child(4),
  #quote-for-shipping .quote-for-shipping-top-wrapper .table-title-row .table-title:nth-child(5),
  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail:nth-child(5) {
    padding: 8px 15px;
    font-size: 16px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-title-row,
  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row {
    padding: 5px 0;
  }
}

@media (max-width: 575px) {
  #quote-for-shipping {
    margin: -120px 0 40px;
  }
}

@media (max-width: 480px) {
  #quote-for-shipping {
    margin: -155px 0 30px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-title-row .table-title:first-child {
    padding: 15px 10px 15px 15px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-title-row .table-title {
    padding: 15px 10px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-title-row .table-title:last-child {
    padding: 15px 30px 15px 10px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-title-row .table-title {
    font-size: 15px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-service {
    margin: 0 0 3px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail:first-child {
    padding: 12px 10px 12px 15px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail {
    padding: 12px 10px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail:last-child {
    padding: 12px 15px 12px 10px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail:last-child button {
    padding: 10px 16px;
    gap: 7px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail:first-child {
    font-size: 14px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail span.budge {
    font-size: 11px;
    line-height: 13px;
    padding: 4px 8px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail {
    font-size: 14px;
    line-height: 16px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail .value-wrapper span {
    width: 5px;
    height: 12px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-title-row .table-title:first-child,
  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail:first-child {
    min-width: 200px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-title-row .table-title:nth-child(3),
  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail:nth-child(3) {
    min-width: 150px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-title-row .table-title:nth-child(4),
  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail:nth-child(4) {
    min-width: 180px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-title-row .table-title:nth-child(5),
  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail:nth-child(5) {
    min-width: 160px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail .tooltip-wrapper .tooltip {
    top: -125px;
    padding: 6px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-service:first-child .table-detail-row .table-detail .tooltip-wrapper .tooltip {
    bottom: -125px;
  }

  #quote-for-shipping .quote-for-shipping-bottom-wrapper .bottom-content .content-row .content-title,
  #quote-for-shipping .quote-for-shipping-bottom-wrapper .bottom-content .content-row .content-desc {
    font-size: 14px;
  }

  #quote-for-shipping .quote-for-shipping-bottom-wrapper ul li {
    margin: 8px 0 0;
    padding: 0 0 0 25px;
    font-size: 14px;
  }

  #quote-for-shipping .quote-for-shipping-bottom-wrapper ul li::before {
    top: 3px;
  }
}

@media (max-width: 360px) {
  #quote-for-shipping {
    margin: -165px 0 30px;
  }

  #quote-for-shipping .quote-for-shipping-bottom-wrapper .bottom-content {
    padding: 15px 0;
  }

  #quote-for-shipping .quote-for-shipping-bottom-wrapper .bottom-content .content-row {
    padding: 10px 15px;
  }

  #quote-for-shipping .quote-for-shipping-bottom-wrapper .bottom-content .content-row .content-title {
    margin: 0 0 2px;
  }

  #quote-for-shipping .quote-for-shipping-bottom-wrapper ul li {
    margin: 6px 0 0;
  }
}

/* ============================ QUOTE-FOR-SHIPPING SECTION END ============================ */
/* ============================ ABOUT-SHIPPING-RATES & HELP-WITH-TRACKING SECTION START ============================ */
#about-shipping-rates,
#help-with-tracking {
  padding-bottom: 0;
}

#about-shipping-rates .about-shipping-rates-img-wrapper,
#help-with-tracking .help-with-tracking-img-wrapper {
  margin: 0 0 0 -220px;
}

#about-shipping-rates .about-shipping-rates-text,
#help-with-tracking .help-with-tracking-text {
  overflow: hidden;
}

#about-shipping-rates .common-title,
#help-with-tracking .common-title {
  text-align: left;
  color: #fff;
  margin: 0 0 30px;
}

#about-shipping-rates p,
#help-with-tracking p {
  font: 500 16px/26px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #fff;
  margin: 15px 0;
}

#about-shipping-rates p.last-desc,
#help-with-tracking p.last-desc {
  margin: 15px 0 30px;
}

@media (max-width: 1899px) {

  #about-shipping-rates .about-shipping-rates-img-wrapper,
  #help-with-tracking .help-with-tracking-img-wrapper {
    margin: 0 0 0 -160px;
  }
}

@media (max-width: 1799px) {

  #about-shipping-rates .about-shipping-rates-img-wrapper,
  #help-with-tracking .help-with-tracking-img-wrapper {
    margin: 0 0 0 -120px;
  }
}

@media (max-width: 1699px) {

  #about-shipping-rates .about-shipping-rates-img-wrapper,
  #help-with-tracking .help-with-tracking-img-wrapper {
    margin: 0 0 0 -80px;
  }
}

@media (max-width: 1599px) {

  #about-shipping-rates .about-shipping-rates-img-wrapper,
  #help-with-tracking .help-with-tracking-img-wrapper {
    margin: 0 0 0 -30px;
  }
}

@media (max-width: 1399px) {

  #about-shipping-rates .about-shipping-rates-img-wrapper,
  #help-with-tracking .help-with-tracking-img-wrapper {
    margin: 0 0 0 -60px;
  }

  #about-shipping-rates .common-title,
  #help-with-tracking .common-title {
    margin: 0 0 20px;
  }

  #about-shipping-rates p.last-desc,
  #help-with-tracking p.last-desc {
    margin: 10px 0 20px;
  }
}

@media (max-width: 1299px) {

  #about-shipping-rates .about-shipping-rates-img-wrapper,
  #help-with-tracking .help-with-tracking-img-wrapper {
    margin: 0 0 0 -20px;
  }
}

@media (max-width: 1199px) {

  #about-shipping-rates .about-shipping-rates-img-wrapper,
  #help-with-tracking .help-with-tracking-img-wrapper {
    margin: 0;
  }

  #about-shipping-rates p,
  #help-with-tracking p {
    font-size: 14px;
    line-height: 24px;
  }
}

@media (max-width: 991px) {

  #about-shipping-rates .about-shipping-rates-img-main-wrapper,
  #help-with-tracking .help-with-tracking-img-main-wrapper {
    margin: 0 0 25px;
  }

  #about-shipping-rates .about-shipping-rates-text,
  #help-with-tracking .help-with-tracking-text,
  #about-shipping-rates .about-shipping-rates-text .common-title,
  #help-with-tracking .help-with-tracking-text .common-title {
    text-align: center;
  }

  #about-shipping-rates .about-shipping-rates-text .common-btn,
  #help-with-tracking .help-with-tracking-text .common-btn {
    margin: 0 auto;
  }
}

@media (max-width: 480px) {

  #about-shipping-rates .common-title,
  #help-with-tracking .common-title {
    margin: 0 0 10px;
  }
}

@media (max-width: 360px) {

  #about-shipping-rates p.last-desc,
  #help-with-tracking p.last-desc {
    margin: 6px 0 12px;
  }
}

/* ============================ ABOUT-SHIPPING-RATES & HELP-WITH-TRACKING SECTION END ============================ */
/* ============================ DISCOVER-SHIPPING-RATES & TRACKING-EXPERIENCE SECTION START ============================ */
#discover-shipping-rates .discover-shipping-rates-text,
#tracking-experience .tracking-experience-text {
  overflow: hidden;
}

#discover-shipping-rates .common-title,
#tracking-experience .common-title {
  text-align: left;
  margin: 0;
}

#discover-shipping-rates p,
#tracking-experience p {
  font: 500 16px/26px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #565969;
  margin: 15px 0 30px;
}

#tracking-experience p.first-desc {
  margin: 30px 0 15px;
}

#tracking-experience p.last-desc {
  margin: 0 0 30px;
}

#discover-shipping-rates .common-btn,
#tracking-experience .common-btn {
  background-color: #2C4298;
  border: 2px solid #2C4298;
}

#discover-shipping-rates .common-btn:is(:hover, :active, :focus),
#tracking-experience .common-btn:is(:hover, :active, :focus) {
  background-color: transparent;
  color: #2C4298;
}

#discover-shipping-rates .discover-shipping-rates-img-main-wrapper,
#tracking-experience .tracking-experience-img-main-wrapper {
  display: flex;
  padding: 70px 0 0;
}

#discover-shipping-rates .discover-shipping-rates-img-main-wrapper .discover-shipping-rates-img-wrapper,
#tracking-experience .tracking-experience-img-main-wrapper .tracking-experience-img-wrapper {
  overflow: hidden;
  display: inline;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  height: fit-content;
}

#discover-shipping-rates .discover-shipping-rates-img-main-wrapper .discover-shipping-rates-img-wrapper img,
#tracking-experience .tracking-experience-img-main-wrapper .tracking-experience-img-wrapper img {
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
}

#discover-shipping-rates .discover-shipping-rates-img-main-wrapper .discover-shipping-rates-img-wrapper:hover img,
#tracking-experience .tracking-experience-img-main-wrapper .tracking-experience-img-wrapper:hover img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}

#discover-shipping-rates .discover-shipping-rates-img-main-wrapper .discover-shipping-rates-img-wrapper:first-child,
#tracking-experience .tracking-experience-img-main-wrapper .tracking-experience-img-wrapper:first-child {
  border: 10px solid #fff;
}

#discover-shipping-rates .discover-shipping-rates-img-main-wrapper .discover-shipping-rates-img-wrapper:first-child,
#tracking-experience .tracking-experience-img-main-wrapper .tracking-experience-img-wrapper:first-child {
  z-index: 1;
  margin: -70px -150px 0 0;
}

@media (max-width: 1399px) {

  #discover-shipping-rates p,
  #tracking-experience p {
    margin: 12px 0 20px;
  }

  #tracking-experience p.first-desc {
    margin: 20px 0 10px;
  }

  #tracking-experience p.last-desc {
    margin: 0 0 20px;
  }
}

@media (max-width: 1199px) {

  #discover-shipping-rates p,
  #tracking-experience p {
    font-size: 14px;
    line-height: 24px;
  }

  #tracking-experience p.first-desc {
    margin: 15px 0 10px;
  }

  #tracking-experience p.last-desc {
    margin: 0 0 15px;
  }
}

@media (max-width: 991px) {

  #discover-shipping-rates .discover-shipping-rates-text,
  #tracking-experience .tracking-experience-text {
    margin: 10px 0 25px;
  }

  #discover-shipping-rates .discover-shipping-rates-text,
  #tracking-experience .tracking-experience-text,
  #discover-shipping-rates .discover-shipping-rates-text .common-title,
  #tracking-experience .tracking-experience-text .common-title {
    text-align: center;
  }

  #discover-shipping-rates .discover-shipping-rates-text .common-btn,
  #tracking-experience .tracking-experience-text .common-btn {
    margin: 0 auto;
  }

  #discover-shipping-rates .discover-shipping-rates-img-main-wrapper,
  #tracking-experience .tracking-experience-img-main-wrapper {
    width: 80%;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {

  #discover-shipping-rates .discover-shipping-rates-text,
  #tracking-experience .tracking-experience-text {
    margin: 0 0 25px;
  }

  #discover-shipping-rates p,
  #tracking-experience p {
    margin: 10px 0 15px;
  }

  #discover-shipping-rates .discover-shipping-rates-img-main-wrapper,
  #tracking-experience .tracking-experience-img-main-wrapper {
    width: 100%;
    margin: 0 auto;
  }

  #discover-shipping-rates .discover-shipping-rates-img-main-wrapper .discover-shipping-rates-img-wrapper:first-child,
  #tracking-experience .tracking-experience-img-main-wrapper .tracking-experience-img-wrapper:first-child {
    border: 6px solid #fff;
  }

}

/* ============================ DISCOVER-SHIPPING-RATES SECTION END ============================ */
/* ============================ HOW-IT-WORKS SECTION START ============================ */
#how-it-works .how-it-works-col:nth-child(2n+1) .how-it-works-detail-wrapper .how-it-works-detail-icon-box-wrapper::after {
  top: 40%;
  transform: translateY(-40%);
  -webkit-transform: translateY(-40%);
  -moz-transform: translateY(-40%);
  -ms-transform: translateY(-40%);
  -o-transform: translateY(-40%);
}

#how-it-works .how-it-works-col:nth-child(2n) .how-it-works-detail-wrapper .how-it-works-detail-icon-box-wrapper::before {
  top: 70%;
  transform: translateY(-70%);
  -webkit-transform: translateY(-70%);
  -moz-transform: translateY(-70%);
  -ms-transform: translateY(-70%);
  -o-transform: translateY(-70%);
}

/* ============================ HOW-IT-WORKS SECTION END ============================ */
/* ============================ FAQ SECTION START ============================ */
#faq .accordion-item {
  background-color: transparent;
  border: none;
  margin: 0 0 15px;
}

#faq .accordion-item:last-child {
  margin: 0;
}

#faq .accordion-button,
#faq .accordion-body {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  overflow: hidden;
}

#faq .accordion-header {
  padding: 0;
  margin: 0 0 5px;
}

#faq .accordion-button {
  font: 700 18px/20px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #080C24;
  background-color: #fff;
  padding: 30px 60px 30px 20px;
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
}

#faq .accordion-body {
  font: 500 16px/28px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #565969;
  background-color: #fff;
  padding: 30px;
}

#faq .accordion-header .accordion-button[aria-expanded="true"],
#faq .accordion-header:is(:hover, :active, :focus) .accordion-button {
  color: #fff;
  background-color: #2C4298;
}

#faq .accordion-button::after {
  content: '\f107';
  position: absolute;
  background-image: none;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 20px;
  width: fit-content;
  height: fit-content;
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
}

#faq .accordion-button:not(.collapsed)::after {
  background-image: none;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}

@media (max-width: 1399px) {
  #faq .accordion-button {
    padding: 25px 60px 25px 20px;
  }

  #faq .accordion-body {
    padding: 25px;
  }
}

@media (max-width: 1199px) {
  #faq .accordion-button {
    font-size: 16px;
    line-height: 18px;
  }

  #faq .accordion-body {
    font-size: 14px;
    line-height: 26px;
  }
}

@media (max-width: 991px) {
  #faq .accordion-item {
    margin: 0 0 10px;
  }

  #faq .accordion-button {
    padding: 20px 60px 20px 20px;
  }

  #faq .accordion-body {
    padding: 20px;
  }
}

@media (max-width: 767px) {
  #faq .accordion-button {
    line-height: 24px;
  }
}

@media (max-width: 575px) {
  #faq .accordion-button {
    padding: 15px 45px 15px 15px;
  }

  #faq .accordion-body {
    padding: 15px;
  }

  #faq .accordion-button::after {
    font-size: 14px;
    line-height: 16px;
    right: 15px;
  }
}

@media (max-width: 480px) {
  #faq .accordion-item {
    margin: 0 0 6px;
  }

  #faq .accordion-button {
    font-size: 15px;
    padding: 10px 45px 10px 15px;
  }

  #faq .accordion-body {
    padding: 10px 15px;
  }
}

@media (max-width: 360px) {
  #faq .accordion-button {
    font-size: 14px;
    line-height: 22px;
    padding: 8px 45px 8px 15px;
  }

  #faq .accordion-button::after {
    font-size: 13px;
  }

  #faq .accordion-body {
    padding: 8px 15px;
    line-height: 24px;
  }
}

/* ============================ FAQ SECTION END ============================ */
/* ============================ PRICING & TRACKING GET-STARTED SECTION END ============================ */
#pricing .get-started-main-wrapper,
#tracking .get-started-main-wrapper {
  background-color: #F4F5FA;
}

/* ============================ PRICING & TRACKING GET-STARTED SECTION END ============================ */

/* ======================================================================================================== */
/* ============================ TRACKING-PAGE ============================ */
/* ======================================================================================================== */
/* ============================ TRACKING-HERO SECTION START ============================ */
#tracking #inner-hero {
  padding: 230px 0 245px;
}

#tracking #inner-hero .inner-hero-text {
  padding: 0 140px 0 0;
}

@media (max-width: 1499px) {
  #tracking #inner-hero .inner-hero-text {
    padding: 0 80px 0 0;
  }
}

@media (max-width: 1399px) {
  #inner-hero .inner-hero-text .inner-hero-desc {
    margin: 15px 0 35px;
  }

  #tracking #inner-hero {
    padding: 180px 0 220px;
  }
}

@media (max-width: 1299px) {
  #tracking #inner-hero {
    padding: 160px 0 180px;
  }

  #tracking #inner-hero .inner-hero-text {
    padding: 0 90px 0 0;
  }
}

@media (max-width: 1199px) {
  #tracking #inner-hero .inner-hero-text {
    padding: 0 30px 0 0;
  }
}

@media (max-width: 991px) {
  #tracking #inner-hero {
    padding: 80px 0 210px;
    background-position: left;
  }

  #tracking #inner-hero .inner-hero-text {
    padding: 0;
  }

  #inner-hero .inner-hero-text .inner-hero-desc {
    margin: 15px 0;
  }
}

@media (max-width: 767px) {
  #tracking #inner-hero {
    padding: 60px 0 210px;
  }
}

@media (max-width: 480px) {
  #tracking #inner-hero {
    padding: 40px 0 180px;
  }
}

/* ============================ TRACKING-HERO SECTION END ============================ */
/* ============================ TRACK-SHIPMENT SECTION START ============================ */
#track-shipment .track-shipment-form {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin: 0 0 30px;
}

#track-shipment .track-shipment-form form {
  width: 40%;
}

#track-shipment .track-shipment-form form label {
  font: 600 20px/22px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #080C24;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
}

#track-shipment .track-shipment-form .track-input {
  position: relative;
  font: 500 18px/20px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #080C24;
  border: 1px solid #D6D6D6;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  overflow: hidden;
  width: 100%;
}

#track-shipment .track-shipment-form .track-input input {
  padding: 18px 195px 18px 25px;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  width: 100%;
}

#track-shipment .track-shipment-form .track-input input::placeholder {
  opacity: 1;
  color: #565969;
  font-weight: 500;
}

#track-shipment .track-shipment-form .track-input .common-btn-2 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: auto;
  padding: 18px 60px;
}

#track-shipment .track-shipment-form .track-input .common-btn-2 i {
  display: none;
}

#track-shipment .track-shipment-form .track-icon-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}

#track-shipment .track-shipment-form .track-icon-wrapper .track-icon,
#track-shipment .track-shipment-content .track-details-text .tracing-history-row .tracing-history-icon {
  width: 50px;
  min-width: 50px;
  height: 50px;
  min-height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #2C4298;
  background-color: #F6F8FC;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  font-size: 20px;
  line-height: 22px;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}

#track-shipment .track-shipment-content {
  padding: 30px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  background-color: #fff;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  overflow: hidden;
}

#track-shipment .track-shipment-content .track-shipment-dates-wrapper {
  padding: 10px 30px 0;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

#track-shipment .track-shipment-content .track-shipment-dates-wrapper .date {
  text-align: center;
  min-width: 231px;
}

#track-shipment .track-shipment-content .track-shipment-dates-wrapper .track-shipment-date-title,
#track-shipment .track-shipment-content .track-shipment-dates-wrapper .track-shipment-date-time,
#track-shipment .track-shipment-content .tracking-detail-text .tracking-Id-title {
  font: 600 20px/22px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #080C24;
}

#track-shipment .track-shipment-content .track-shipment-dates-wrapper .track-shipment-date {
  font: 700 42px/50px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #2C4298;
  margin: 8px 0 0;
}

#track-shipment .track-shipment-content .track-shipment-dates-wrapper .track-shipment-date-time {
  margin: 8px 0 0;
  color: #2C4298;
}

#track-shipment .track-shipment-content .tracking-id {
  width: 100%;
}

#track-shipment .track-shipment-content .tracking-detail {
  position: relative;
}

#track-shipment .track-shipment-content .tracking-detail .tracking-shape {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

#track-shipment .track-shipment-content .tracking-detail-text {
  background-color: #fff;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 12px;
  width: fit-content;
  margin: auto;
  padding: 10px 15px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

#track-shipment .track-shipment-content .tracking-detail-text .tracking-Id-number {
  font: 700 24px/26px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #2C4298;
}

#track-shipment .track-shipment-content .shipment-status {
  font: 600 18px/20px "Plus Jakarta Sans", helvetica, sans-serif;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  background-color: #E8F9EE;
  color: #16BE4E;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 15px;
  margin: -10px auto 30px;
}

#track-shipment .track-shipment-content .track-details-box {
  background-color: #fff;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  overflow: hidden;
}

#track-shipment .track-shipment-content .left-track-details .track-details-box {
  margin: 0 0 20px;
}

#track-shipment .track-shipment-content .left-track-details:last-child .track-details-box {
  margin: 0;
}

#track-shipment .track-shipment-content .track-details-box .track-details-title {
  background-color: #2C4298;
  color: #fff;
  padding: 13px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  height: 50px;
}

#track-shipment .track-shipment-content .track-details-box .track-details-title h5 {
  font: 600 20px/28px "Plus Jakarta Sans", helvetica, sans-serif;
}

#track-shipment .track-shipment-content .track-details-text {
  background-color: #fff;
  padding: 20px;
}

#track-shipment .track-shipment-content .track-details-text.tracking-text {
  padding: 20px 20px 20px;
}

#track-shipment .track-shipment-content .track-details-text .tracing-content-row {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  margin: 0 0 20px;
}

#track-shipment .track-shipment-content .track-details-text .tracing-content-row:last-child {
  margin: 0;
}

#track-shipment .track-shipment-content .track-details-text .tracing-content-row .tracing-icon-title {
  width: 18%;
  display: flex;
  align-items: center;
  gap: 10px;
}

#track-shipment .track-shipment-content .track-details-text .track-details-inner-box {
  display: none;
  margin: -30px -10px 20px;
}

#track-shipment .track-shipment-content .track-details-inner-box .track-details-text {
  padding: 15px 20px 25px;
}

#track-shipment .track-shipment-content .track-details-inner-box .track-details-text .tracing-content-row .tracing-icon-title {
  align-items: start;
  width: calc(33% - 14px);
}

#track-shipment .track-shipment-content .track-details-inner-box .track-details-text .tracing-content-row .tracing-icon-title span {
  margin: 0 0 12px;
  display: inline-block;
}

#track-shipment .track-shipment-content .track-details-inner-box .track-details-text .tracing-content-row .tracing-icon-title img {
  position: relative;
  top: 7px;
}

#track-shipment .track-shipment-content .track-details-text .tracing-content-row .tracing-icon-title span {
  font: 600 14px/16px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #565969;
}

#track-shipment .track-shipment-content .track-details-text .tracing-content-row .tracing-icon-title span {
  font: 600 14px/16px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #565969;
}

#track-shipment .track-shipment-content .track-details-text .tracing-content-row p {
  font: 500 18px/20px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #080C24;
  text-transform: uppercase;
}

#track-shipment .track-shipment-content .track-details-text .tracing-history-row,
#track-shipment .track-shipment-content .track-details-text .other-tracing-history-rows .tracing-history-row:first-child {
  padding: 20px 30px 0 0;
  margin: 20px 0 0;
  border-top: 1px solid #D6D6D6;
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

#track-shipment .track-shipment-content .track-details-text .tracing-history-row:first-child {
  border: none;
  margin: 0;
  padding: 0 30px 0 0;
}

#track-shipment .track-shipment-content .track-details-text .tracing-history-row .tracing-history-icon-title {
  display: flex;
  gap: 15px;
}

#track-shipment .track-shipment-content .track-details-text .tracing-history-row .tracing-history-icon-title h6 {
  font: 600 18px/20px "Plus Jakarta Sans", helvetica, sans-serif;
  margin: 0 0 8px;
  color: #2C4298;
}

#track-shipment .track-shipment-content .track-details-text .other-tracing-history-rows {
  display: none;
}

#track-shipment .track-shipment-content .track-details-text .tracing-history-row:first-child .tracing-history-icon-title h6 {
  color: #06A93D;
}

#track-shipment .track-shipment-content .track-details-text .tracing-history-row:nth-child(2) .tracing-history-icon-title h6 {
  color: #FFBE15;
}

#track-shipment .track-shipment-content .track-details-text .tracing-history-row .tracing-history-icon-title span {
  font: 500 14px/16px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #565969;
}

#track-shipment .track-shipment-content .track-details-text .tracing-history-row .tracing-history-location span,
#track-shipment .track-shipment-content .track-details-text .tracing-history-row .tracing-history-location p {
  font: 500 16px/18px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #565969;
  display: inline-block;
}

#track-shipment .track-shipment-content .track-details-text .tracing-history-row .tracing-history-location span {
  margin: 0 0 8px;
  display: block;
}

#track-shipment .track-shipment-content .track-details-text .tracing-history-row .tracing-history-location p {
  color: #080C24;
  text-transform: uppercase;
}

#track-shipment .track-shipment-content .track-details-text .tracing-history-btn {
  font: 700 14px/16px "Plus Jakarta Sans", helvetica, sans-serif;
  border: 1px solid #2C4298;
  color: #2C4298;
  background-color: transparent;
  padding: 10px 20px;
  width: 100%;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  overflow: hidden;
  text-align: center;
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  margin: 20px 0 0;
}

#track-shipment .track-shipment-content .track-details-text .tracing-history-btn:is(:hover, :active, :focus) {
  color: #fff;
  background-color: #2C4298;
}

#track-shipment .track-shipment-content .track-details-text .tracing-history-location {
  text-align: end;
}

@media (max-width: 1499px) {
  #track-shipment .track-shipment-content .track-details-text .tracing-content-row .tracing-icon-title {
    width: 20%;
  }
}

@media (max-width: 1399px) {
  #track-shipment .track-shipment-form .track-input {
    font-size: 16px;
    line-height: 18px;
  }

  #track-shipment .track-shipment-form form label {
    font-size: 18px;
    line-height: 20px;
    margin: 0 0 15px;
  }

  #track-shipment .track-shipment-form .track-input input {
    padding: 16px 165px 16px 20px;
  }

  #track-shipment .track-shipment-form .track-input .common-btn-2 {
    padding: 16px 50px;
  }

  #track-shipment .track-shipment-content .track-shipment-dates-wrapper {
    padding: 10px 20px 0;
  }

  #track-shipment .track-shipment-content .track-shipment-dates-wrapper .track-shipment-date-title,
  #track-shipment .track-shipment-content .track-shipment-dates-wrapper .track-shipment-date-time,
  #track-shipment .track-shipment-content .tracking-detail-text .tracking-Id-title {
    font-size: 18px;
    line-height: 20px;
  }

  #track-shipment .track-shipment-content .track-shipment-dates-wrapper .track-shipment-date {
    font-size: 44px;
    line-height: 46px;
  }

  #track-shipment .track-shipment-content .tracking-detail .tracking-shape {
    top: 45%;
  }

  #track-shipment .track-shipment-content .tracking-detail-text .tracking-Id-number {
    font-size: 22px;
    line-height: 24px;
  }

  #track-shipment .track-shipment-content .shipment-status,
  #track-shipment .track-shipment-content .track-details-text .tracing-history-row .tracing-history-icon-title h6,
  #track-shipment .track-shipment-content .track-details-text .tracing-content-row p {
    font-size: 16px;
    line-height: 18px;
  }

  #track-shipment .track-shipment-content .track-details-text .tracing-history-row .tracing-history-icon-title h6 {
    margin: 0 0 6px;
  }

  #track-shipment .track-shipment-content .track-details-box .track-details-title {
    gap: 10px;
  }

  #track-shipment .track-shipment-content .track-details-box .track-details-title h5 {
    font-size: 18px;
    line-height: 26px;
  }

  #track-shipment .track-shipment-content .track-details-text .tracing-content-row .tracing-icon-title {
    width: 25%;
  }

  #track-shipment .track-shipment-content .track-details-text .tracing-history-row .tracing-history-location span,
  #track-shipment .track-shipment-content .track-details-text .tracing-history-row .tracing-history-location p {
    font-size: 15px;
  }

  #track-shipment .track-shipment-content .track-details-text .tracing-history-row,
  #track-shipment .track-shipment-content .track-details-text .other-tracing-history-rows .tracing-history-row:first-child {
    padding: 18px 20px 0 0;
    margin: 18px 0 0;
  }

  #track-shipment .track-shipment-content .track-details-text .tracing-history-row:first-child {
    padding: 0 20px 0 0;
  }

  #track-shipment .track-shipment-content .track-details-text .tracing-history-btn {
    margin: 18px 0 0;
  }

  #track-shipment .track-shipment-content .track-details-box .track-details-title .tracking-icon {
    max-width: 25px;
  }

  #track-shipment .track-shipment-content .track-details-box .track-details-title .summary-icon {
    max-width: 18px;
  }
}

@media (max-width: 1199px) {
  #track-shipment .track-shipment-form form {
    width: 50%;
  }

  #track-shipment .track-shipment-content .track-shipment-dates-wrapper {
    padding: 10px 0 0;
  }

  #track-shipment .track-shipment-content .track-shipment-dates-wrapper .track-shipment-date {
    font-size: 38px;
    line-height: 40px;
    margin: 5px 0 0;
  }

  #track-shipment .track-shipment-content .track-shipment-dates-wrapper {
    gap: 20px;
  }

  #track-shipment .track-shipment-content .track-details-text .tracing-content-row .tracing-icon-title {
    width: 30%;
  }

  #track-shipment .track-shipment-content .track-details-inner-box .track-details-text {
    padding: 10px 15px 20px;
  }
}

@media (max-width: 991px) {

  #track-shipment {
    margin: -70px 0 40px;
  }

  #track-shipment .track-shipment-form {
    margin: 0 0 25px;
  }

  #track-shipment .track-shipment-form form {
    width: 60%;
  }

  #track-shipment .track-shipment-content .track-shipment-dates-wrapper {
    padding: 10px 0 0;
  }

  #track-shipment .track-shipment-content .track-shipment-dates-wrapper .date {
    min-width: 130px;
  }

  #track-shipment .track-shipment-content .shipment-status {
    margin: 5px auto 25px;
  }

  #track-shipment .track-shipment-content .track-shipment-dates-wrapper .track-shipment-date-title,
  #track-shipment .track-shipment-content .track-shipment-dates-wrapper .track-shipment-date-time,
  #track-shipment .track-shipment-content .tracking-detail-text .tracking-Id-title {
    font-size: 16px;
    line-height: 18px;
  }

  #track-shipment .track-shipment-content .track-shipment-dates-wrapper .track-shipment-date {
    font-size: 34px;
    line-height: 36px;
  }

  #track-shipment .track-shipment-content .track-details-text .tracing-content-row .tracing-icon-title {
    width: 20%;
  }

  #track-shipment .track-shipment-content .track-details-text.tracking-text {
    padding: 20px;
  }

  #track-shipment .track-shipment-content .track-details-text .track-details-inner-box .tracing-content-row .tracing-icon-title span {
    margin: 0 0 10px;
  }
}

@media (max-width: 767px) {
  #track-shipment {
    margin: -85px 0 40px;
  }

  #track-shipment .track-shipment-form form {
    width: 70%;
  }

  #track-shipment .track-shipment-content .track-shipment-dates-wrapper {
    padding: 0;
  }

  #track-shipment .track-shipment-content .shipment-status {
    margin: 5px auto 15px;
  }

  #track-shipment .track-shipment-content .track-details-box .track-details-title h5 {
    font-size: 16px;
    line-height: 24px;
  }

  #track-shipment .track-shipment-content .track-details-box .track-details-title .tracking-icon {
    max-width: 22px;
  }

  #track-shipment .track-shipment-content .track-details-box .track-details-title .summary-icon {
    max-width: 15px;
  }

  #track-shipment .track-shipment-content .track-details-text .tracing-content-row .tracing-icon-title {
    width: 26%;
  }

  #track-shipment .track-shipment-content .track-details-box .track-details-title {
    padding: 13px 15px;
  }

  #track-shipment .track-shipment-content .track-details-text.tracking-text {
    padding: 20px 15px;
  }

  #track-shipment .track-shipment-content .shipment-status,
  #track-shipment .track-shipment-content .track-details-text .tracing-content-row p,
  #track-shipment .track-shipment-content .track-shipment-dates-wrapper .track-shipment-date-title,
  #track-shipment .track-shipment-content .track-shipment-dates-wrapper .track-shipment-date-time,
  #track-shipment .track-shipment-content .tracking-detail-text .tracking-Id-title {
    font-size: 14px;
    line-height: 16px;
  }

  #track-shipment .track-shipment-content .track-shipment-dates-wrapper .track-shipment-date {
    font-size: 28px;
    line-height: 30px;
  }

  #track-shipment .track-shipment-content .tracking-detail-text .tracking-Id-number {
    font-size: 18px;
    line-height: 20px;
  }

  #track-shipment .track-shipment-content .track-shipment-dates-wrapper .date {
    min-width: 106px;
  }

  #track-shipment .track-shipment-content .track-shipment-dates-wrapper {
    gap: 15px;
  }
}

@media (max-width: 575px) {
  #track-shipment {
    margin: -100px 0 40px;
  }

  #track-shipment .track-shipment-form {
    margin: 0 0 20px;
  }

  #track-shipment .track-shipment-content {
    padding: 25px;
  }

  #track-shipment .track-shipment-content .track-details-text .tracing-content-row .tracing-icon-title {
    width: 28%;
  }

  #track-shipment .track-shipment-content .track-details-text .tracing-history-row,
  #track-shipment .track-shipment-content .track-details-text .other-tracing-history-rows .tracing-history-row:first-child {
    padding: 15px 10px 0 0;
    margin: 15px 0 0;
  }

  #track-shipment .track-shipment-content .track-details-text .tracing-history-row:first-child {
    padding: 0 10px 0 0;
  }

  #track-shipment .track-shipment-content .track-details-text .tracing-history-btn {
    margin: 15px 0 0;
  }
}

@media (max-width: 480px) {
  #track-shipment {
    margin: -90px 0 40px;
  }

  #track-shipment .track-shipment-form form label {
    font-size: 16px;
    line-height: 18px;
  }

  #track-shipment .track-shipment-form {
    display: block;
    margin: 0 0 15px;
  }

  #track-shipment .track-shipment-form form {
    width: 100%;
    margin: 0 0 15px;
  }

  #track-shipment .track-shipment-form .track-input input {
    padding: 16px 70px 16px 20px;
  }

  #track-shipment .track-shipment-form .track-input .common-btn-2 {
    padding: 16px;
  }

  #track-shipment .track-shipment-form .track-input .common-btn-2 span {
    display: none;
  }

  #track-shipment .track-shipment-form .track-input .common-btn-2 i {
    display: inline-block;
  }

  #track-shipment .track-shipment-content .track-shipment-dates-wrapper {
    gap: 15px;
    flex-direction: column;
    margin: 0 0 15px;
  }

  #track-shipment .track-shipment-content {
    padding: 15px;
  }

  #track-shipment .track-shipment-content .track-details-text .tracing-content-row .tracing-icon-title {
    width: 105px;
  }

  #track-shipment .track-shipment-content .track-details-text .tracing-content-row .tracing-icon-title img {
    max-width: 14px;
  }

  #track-shipment .track-shipment-content .track-details-text .tracing-history-row,
  #track-shipment .track-shipment-content .track-details-text .other-tracing-history-rows .tracing-history-row:first-child {
    padding: 15px 0 0 0;
  }

  #track-shipment .track-shipment-content .track-details-text .tracing-history-row:first-child {
    padding: 0;
  }

  #track-shipment .track-shipment-content .track-details-text .tracing-history-row .tracing-history-location span,
  #track-shipment .track-shipment-content .track-details-text .tracing-history-row .tracing-history-location p {
    font-size: 11px;
    line-height: 16px;
    margin: 0 0 5px;
  }

  #track-shipment .track-shipment-content .track-details-text .tracing-history-row .tracing-history-icon-title h6 {
    margin: 0 0 5px;
  }

  #track-shipment .track-shipment-content .track-details-text .tracing-history-row,
  #track-shipment .track-shipment-content .track-details-text .tracing-history-row .tracing-history-icon-title {
    gap: 10px;
  }

  #track-shipment .track-shipment-form .track-icon-wrapper .track-icon,
  #track-shipment .track-shipment-content .track-details-text .tracing-history-row .tracing-history-icon {
    width: 40px;
    min-width: 40px;
    height: 40px;
    min-height: 40px;
    font-size: 18px;
    line-height: 20px;
  }

  #track-shipment .track-shipment-content .track-details-text .track-details-inner-box .tracing-content-row {
    flex-wrap: wrap;
    gap: 10px;
  }

  #track-shipment .track-shipment-content .track-details-text .track-details-inner-box .tracing-content-row .tracing-icon-title {
    min-width: calc(50% - 5px);
  }

  #track-shipment .track-shipment-content .track-details-text .track-details-inner-box .tracing-content-row .tracing-icon-title span {
    margin: 0 0 8px;
  }

  #track-shipment .track-shipment-content .track-details-box {
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
  }

  #track-shipment .track-shipment-content .track-details-box .track-details-title {
    padding: 10px 15px;
  }

  #track-shipment .track-shipment-content .track-details-box .track-details-title h5 {
    font-size: 15px;
    line-height: 18px;
  }

  #track-shipment .track-shipment-content .track-details-text .tracing-history-row .tracing-history-icon img {
    transform: scale(0.75);
  }
}

@media (max-width: 360px) {
  #track-shipment {
    margin: -95px 0 40px;
  }

  #track-shipment .track-shipment-form .track-input input {
    padding: 14px 65px 14px 20px;
  }

  #track-shipment .track-shipment-form .track-input .common-btn-2 {
    padding: 14px;
  }

  #track-shipment .track-shipment-content .track-shipment-dates-wrapper {
    gap: 10px;
  }

  #track-shipment .track-shipment-content .track-shipment-dates-wrapper .track-shipment-date {
    font-size: 24px;
    line-height: 26px;
  }

  #track-shipment .track-shipment-content .tracking-detail-text .tracking-Id-number {
    font-size: 16px;
    line-height: 18px;
  }

  #track-shipment .track-shipment-content .track-details-box .track-details-title h5 {
    font-size: 15px;
    line-height: 22px;
  }

  #track-shipment .track-shipment-content .track-details-box .track-details-title .tracking-icon {
    max-width: 20px;
  }

  #track-shipment .track-shipment-content .track-details-box .track-details-title .summary-icon {
    max-width: 14px;
  }

  #track-shipment .track-shipment-content .track-details-text .tracking-text,
  #track-shipment .track-shipment-content .track-details-text {
    padding: 15px;
  }

  #track-shipment .track-shipment-form .track-icon-wrapper .track-icon,
  #track-shipment .track-shipment-content .track-details-text .tracing-history-row .tracing-history-icon {
    width: 40px;
    min-width: 40px;
    height: 40px;
    min-height: 40px;
  }

  #track-shipment .track-shipment-content .shipment-status,
  #track-shipment .track-shipment-content .track-details-text .tracing-history-row .tracing-history-icon-title h6,
  #track-shipment .track-shipment-content .track-details-text .tracing-content-row p {
    font-size: 13px;
  }

  #track-shipment .track-shipment-content .track-details-text .tracing-history-row,
  #track-shipment .track-shipment-content .track-details-text .other-tracing-history-rows .tracing-history-row:first-child {
    padding: 10px 0 0;
    margin: 10px 0 0;
  }

  #track-shipment .track-shipment-content .track-details-text .tracing-history-btn {
    margin: 10px 0 0;
  }

  #track-shipment .track-shipment-content .track-details-text .track-details-inner-box {
    margin: -30px -10px 15px;
  }

  #track-shipment .track-shipment-content .track-details-text .track-details-inner-box .tracing-content-row {
    gap: 5px;
  }

  #track-shipment .track-shipment-content .track-details-text .track-details-inner-box .tracing-content-row .tracing-icon-title {
    margin: 0 0 6px;
  }

  #track-shipment .track-shipment-content .track-details-text .track-details-inner-box .tracing-content-row .tracing-icon-title:last-child {
    margin: 0;
  }
}

/* ============================ TRACK-SHIPMENT SECTION END ============================ */
/* ============================ HELP-WITH-TRACKING SECTION START ============================ */
#help-with-tracking {
  position: relative;
  overflow: hidden;
  background-color: #2C4298;
  border-radius: 0 0 200px 0;
  -webkit-border-radius: 0 0 200px 0;
  -moz-border-radius: 0 0 200px 0;
  -ms-border-radius: 0 0 200px 0;
  -o-border-radius: 0 0 200px 0;
}

#help-with-tracking::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 150px;
  background-color: #FFF;
  top: auto;
  bottom: -90px;
  left: -120px;
  transform: rotate(4deg);
  -webkit-transform: rotate(4deg);
  -moz-transform: rotate(4deg);
  -ms-transform: rotate(4deg);
  -o-transform: rotate(4deg);
}

#help-with-tracking .help-with-tracking-responsive {
  display: none;
}

#help-with-tracking .help-with-tracking-text {
  padding: 130px 250px 270px 0;
}

@media (max-width: 1899px) {
  #help-with-tracking .help-with-tracking-text {
    padding: 100px 250px 240px 0;
  }
}

@media (max-width: 1799px) {
  #help-with-tracking::before {
    bottom: -94px;
  }

  #help-with-tracking .help-with-tracking-text {
    padding: 92px 200px 190px 0;
  }
}

@media (max-width: 1699px) {
  #help-with-tracking::before {
    bottom: -96px;
  }

  #help-with-tracking .help-with-tracking-text {
    padding: 75px 150px 150px 0;
  }
}

@media (max-width: 1599px) {
  #help-with-tracking::before {
    bottom: -98px;
  }

  #help-with-tracking .help-with-tracking-text {
    padding: 74px 100px 150px 0;
  }
}

@media (max-width: 1499px) {
  #help-with-tracking::before {
    bottom: -104px;
  }

  #help-with-tracking .help-with-tracking-text {
    padding: 43px 100px 100px 0;
  }

  #help-with-tracking .common-title {
    margin: 0 0 25px;
  }

  #help-with-tracking p.last-desc {
    margin: 15px 0 25px;
  }
}

@media (max-width: 1399px) {
  #help-with-tracking {
    border-radius: 0 0 150px 0;
    -webkit-border-radius: 0 0 150px 0;
    -moz-border-radius: 0 0 150px 0;
    -ms-border-radius: 0 0 150px 0;
    -o-border-radius: 0 0 150px 0;
  }

  #help-with-tracking .help-with-tracking-text {
    padding: 43px 140px 100px 0;
  }

  #help-with-tracking .common-title {
    margin: 0 0 20px;
  }
}

@media (max-width: 1299px) {
  #help-with-tracking {
    border-radius: 0 0 130px 0;
    -webkit-border-radius: 0 0 130px 0;
    -moz-border-radius: 0 0 130px 0;
    -ms-border-radius: 0 0 130px 0;
    -o-border-radius: 0 0 130px 0;
  }

  #help-with-tracking::before {
    bottom: -106px;
  }

  #help-with-tracking .help-with-tracking-text {
    padding: 34px 90px 100px 0;
  }
}

@media (max-width: 1199px) {
  #help-with-tracking {
    border-radius: 0 0 100px 0;
    -webkit-border-radius: 0 0 100px 0;
    -moz-border-radius: 0 0 100px 0;
    -ms-border-radius: 0 0 100px 0;
    -o-border-radius: 0 0 100px 0;
  }

  #help-with-tracking::before {
    transform: rotate(5deg);
    -webkit-transform: rotate(5deg);
    -moz-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    -o-transform: rotate(5deg);
  }

  #help-with-tracking::before {
    bottom: -108px;
  }

  #help-with-tracking .help-with-tracking {
    margin: -36px 0 0;
  }

  #help-with-tracking p {
    margin: 10px 0;
  }

  #help-with-tracking p.last-desc {
    margin: 10px 0 20px;
  }

  #help-with-tracking .help-with-tracking-text {
    padding: 20px 130px 55px 0;
  }
}

@media (max-width: 991px) {
  #help-with-tracking {
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    padding: 0 0 40px;
  }

  #help-with-tracking::before {
    display: none;
  }

  #help-with-tracking .help-with-tracking {
    margin: 0 0 25px;
  }

  #help-with-tracking .help-with-tracking {
    display: none;
  }

  #help-with-tracking .help-with-tracking-responsive {
    display: block;
    margin: 0 0 25px;
  }

  #help-with-tracking .help-with-tracking-text {
    padding: 0 40px;
  }
}

@media (max-width: 767px) {
  #help-with-tracking .help-with-tracking-text {
    padding: 0 130px;
  }
}

@media (max-width: 700px) {
  #help-with-tracking .help-with-tracking-text {
    padding: 0 90px;
  }
}

@media (max-width: 600px) {
  #help-with-tracking .help-with-tracking-text {
    padding: 0 60px;
  }
}

@media (max-width: 575px) {
  #help-with-tracking .help-with-tracking-text {
    padding: 0 15px;
  }

  #help-with-tracking .common-title {
    margin: 0 0 15px;
  }

  #help-with-tracking p.last-desc {
    margin: 10px 0 15px;
  }
}

@media (max-width: 480px) {
  #help-with-tracking .help-with-tracking-responsive {
    margin: 0 0 20px;
  }

  #help-with-tracking .common-title {
    margin: 0 0 10px;
  }

  #help-with-tracking p.last-desc {
    margin: 10px 0;
  }
}

/* ============================ HELP-WITH-TRACKING SECTION END ============================ */

/* ======================================================================================================== */
/* ============================ DISCLOSURE-POLICY-PAGE ============================ */
/* ======================================================================================================== */
/* ============================ DISCLOSURE-BREADCRUMB SECTION START ============================ */
#disclosurePolicy #breadcrumb {
  background-image: url("../image/disclosure-policy-breadcrumb.html");
}

#paymentTermsAndConditions #breadcrumb {
  background-image: url("../image/payment-terms-and-conditions-breadcrumb.html");
}

#privacyPolicy #breadcrumb {
  background-image: url("../image/privacy-policy-breadcrumb.html");
}

#conditionsOfCarriage #breadcrumb,
#importService #breadcrumb,
#careers #breadcrumb {
  background-image: url("../image/conditions-of-carriage-breadcrumb.html");
}

#contactUs #breadcrumb {
  background-image: url("../image/contact-us-breadcrumb.html");
}

#dangerousAndHazardousGoods #breadcrumb {
  background-image: url("../image/dangerous-and-hazardous-goods-breadcrumb.html");
}

#seaFreight #breadcrumb,
#SeaFreightContainerDetails #breadcrumb {
  background-image: url("../image/sea-freight-breadcrumb.html");
}

#courierService #breadcrumb {
  background-image: url("../image/courier-service-breadcrumb.html");
}

#breadcrumb {
  padding: 205px 0 126px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin: 0 0 50px;
  overflow: hidden;
}

#contactUs #breadcrumb {
  margin: 0;
}

#breadcrumb.section-margin {
  margin: 0 0 100px;
}

#breadcrumb .breadcrumb-text {
  text-align: center;
}

#breadcrumb .breadcrumb-text h3 {
  font: 600 40px/42px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #fff;
  margin: 0 0 20px;
}

#breadcrumb .breadcrumb-text .breadcrumb-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

#breadcrumb .breadcrumb-text .breadcrumb-links a,
#breadcrumb .breadcrumb-text .breadcrumb-links span {
  font: 400 16px/18px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #fff;
}

#breadcrumb .breadcrumb-text .breadcrumb-links i {
  color: #fff;
  font-size: 12px;
  line-height: 18px;
}

@media (max-width: 1499px) {
  #breadcrumb {
    padding: 185px 0 106px;
  }
}

@media (max-width: 1399px) {
  #breadcrumb {
    padding: 185px 0 86px;
  }
}

@media (max-width: 1299px) {
  #breadcrumb.section-margin {
    margin: 0 0 80px;
  }
}

@media (max-width: 1199px) {
  #breadcrumb {
    padding: 165px 0 66px;
  }

  #breadcrumb.section-margin {
    margin: 0 0 60px;
  }
}

@media (max-width: 991px) {
  #breadcrumb {
    padding: 65px 0;
    margin: 0 0 40px;
  }

  #breadcrumb.section-margin {
    margin: 0 0 40px;
  }

  #breadcrumb .breadcrumb-text h3 {
    font-size: 34px;
    line-height: 36px;
    margin: 0 0 15px;
  }
}

@media (max-width: 480px) {
  #breadcrumb {
    padding: 50px 0;
    margin: 0 0 20px;
  }

  #breadcrumb.section-margin {
    margin: 0 0 30px;
  }

  #breadcrumb .breadcrumb-text h3 {
    font-size: 30px;
    line-height: 32px;
    margin: 0 0 12px;
  }

  #breadcrumb .breadcrumb-text .breadcrumb-links a,
  #breadcrumb .breadcrumb-text .breadcrumb-links span {
    font-size: 14px;
    line-height: 16px;
  }
}

@media (max-width: 360px) {
  #breadcrumb .breadcrumb-text h3 {
    font-size: 26px;
    line-height: 28px;
    margin: 0 0 12px;
  }
}

/* ============================ DISCLOSURE-BREADCRUMB SECTION END ============================ */
/* ============================ SECTION-LINKS SECTION START ============================ */
.section-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 8px;
  column-gap: 30px;
}

.section-links a {
  font: 500 16px/28px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #565969;
  text-decoration: underline;
}

@media (max-width: 1499px) {
  .section-links {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1199px) {
  .section-links {
    column-gap: 15px;
  }

  .section-links a {
    font-size: 15px;
    line-height: 26px;
  }
}

@media (max-width: 991px) {
  .section-links {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 6px;
  }
}

@media (max-width: 480px) {
  .section-links a {
    font-size: 14px;
    line-height: 24px;
  }
}

/* ============================ SECTION-LINKS SECTION END ============================ */
/* ============================ ALCS-DETAIL SECTION END ============================ */
.bg-gray {
  background-color: #f4f5f7;
  padding: 100px 0;
}

.bg-white {
  background-color: #fff;
  padding: 100px 0;
}

.alcs-detail .alcs-inner-detail {
  margin: 0 0 50px;
}

.alcs-detail .alcs-inner-detail:last-child {
  margin: 0;
}

.alcs-detail h4 {
  font: 700 24px/26px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #080c24;
  text-transform: uppercase;
  margin: 0 0 20px;
}

#privacyPolicy .alcs-detail h4 {
  margin: 0 0 35px;
}

.alcs-detail h5 {
  font: 600 16px/22px "Plus Jakarta Sans", helvetica, sans-serif;
  margin: 30px 0 15px;
  position: relative;
  padding: 0 0 0 20px;
}

.alcs-detail h5::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 11px;
  height: 11px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  background-color: #b12b2b;
  margin: 7px 0 0;
}

.alcs-detail ul,
.alcs-detail ol {
  list-style: none;
  padding: 0;
  margin: 15px 0 0;
}

.alcs-detail ul:first-child,
.alcs-detail ol:first-child {
  margin: 0;
}

.alcs-detail ul li,
.alcs-detail ol li,
.alcs-detail p,
.alcs-detail b {
  font: 500 16px/28px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #565969;
  margin: 0 0 15px;
  position: relative;
  padding: 0 0 0 25px;
}

.alcs-detail ol li {
  padding: 0;
}

.alcs-detail ol li .ol-li-number {
  width: 23px;
  display: inline-block;
}

.alcs-detail p {
  padding: 0;
  display: block;
}

.alcs-detail p.note {
  margin: 0;
}

.alcs-detail b {
  color: #080c24;
  font-weight: 600;
  padding: 0;
  display: block;
}

.alcs-detail p b,
.alcs-detail ul li b,
.alcs-detail ol li b {
  display: inline;
}

.alcs-detail b.important {
  margin: 15px 0 0;
}

.alcs-detail p.note b {
  color: #080c24;
  font-weight: 600;
  padding: 0;
  margin: 0;
  display: inline;
}

.alcs-detail ul li span,
.alcs-detail ol li span,
.alcs-detail p span,
.alcs-detail p span a {
  color: #080c24;
  font-weight: 500;
  display: inline;
}

.alcs-detail ul li a,
.alcs-detail ol li a {
  color: #565969;
}

.alcs-detail p a {
  color: #565969;
  text-decoration: underline;
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
}

.alcs-detail p a.link {
  color: #b12b2b;
}

.alcs-detail p a:is(:hover, :focus, :active) {
  color: #ee2b29;
}

.alcs-detail p a.no-underline {
  text-decoration: none;
}

.alcs-detail ul li:last-child,
.alcs-detail ol li:last-child {
  margin: 0;
}

.alcs-detail ul li::before {
  content: "\f058";
  position: absolute;
  font-family: "Font Awesome 6 Free";
  top: 0;
  left: 0;
  font-weight: 900;
  font-size: 16px;
  line-height: 18px;
  color: #b12b2b;
  margin: 6px 0 0;
}

@media (max-width: 1299px) {

  .bg-gray,
  .bg-white {
    padding: 80px 0;
  }
}

@media (max-width: 1199px) {

  .bg-gray,
  .bg-white {
    padding: 60px 0;
  }

  .alcs-detail .alcs-inner-detail {
    margin: 0 0 40px;
  }

  .alcs-detail h5 {
    margin: 25px 0 15px;
  }

  #privacyPolicy .alcs-detail h4 {
    margin: 0 0 30px;
  }
}

@media (max-width: 991px) {

  .bg-gray,
  .bg-white {
    padding: 40px 0;
  }

  .alcs-detail .alcs-inner-detail {
    margin: 0 0 30px;
  }

  .alcs-detail h4 {
    font-size: 22px;
    line-height: 30px;
    margin: 0 0 12px;
  }

  #privacyPolicy .alcs-detail h4 {
    margin: 0 0 25px;
  }

  .alcs-detail h5 {
    margin: 20px 0 10px;
  }

  .alcs-detail ul li,
  .alcs-detail ol li,
  .alcs-detail p,
  .alcs-detail b {
    font-size: 15px;
    line-height: 26px;
    margin: 0 0 10px;
  }

  .alcs-detail b.important {
    margin: 10px 0 0;
  }

  .alcs-detail ul {
    margin: 10px 0 0;
  }

  .alcs-detail ul li::before,
  .alcs-detail ol li::before {
    font-size: 15px;
  }
}

@media (max-width: 480px) {

  .bg-gray,
  .bg-white {
    padding: 30px 0;
  }

  .alcs-detail .alcs-inner-detail {
    margin: 0 0 25px;
  }

  .alcs-detail h4 {
    font-size: 20px;
    line-height: 28px;
    margin: 0 0 10px;
  }

  #privacyPolicy .alcs-detail h4 {
    margin: 0 0 12px;
  }

  .alcs-detail h5 {
    margin: 15px 0 8px;
  }

  .alcs-detail ul li,
  .alcs-detail ol li,
  .alcs-detail p,
  .alcs-detail b {
    font-size: 14px;
    line-height: 24px;
    margin: 0 0 8px;
  }

  .alcs-detail b.important {
    margin: 8px 0 0;
  }

  .alcs-detail ul {
    margin: 8px 0 0;
  }

  .alcs-detail ul li::before,
  .alcs-detail ol li::before {
    font-size: 14px;
    margin: 4px 0 0;
  }
}

/* ============================ ALCS-DETAIL SECTION END ============================ */
/* ======================================================================================================== */
/* ============================ FULFILMENT-PAGE ============================ */
/* ======================================================================================================== */
/* ============================ FULFILMENT-HERO SECTION START ============================ */
#fulfilment .alcs-detail {
  margin: 20px 0 0;
}

#fulfilment .alcs-detail ul li {
  color: #fff;
  display: flex;
  gap: 10px;
  padding: 0;
}

#fulfilment .alcs-detail ul li span {
  color: #fff;
}

#fulfilment .alcs-detail ul li i {
  font-weight: 900;
  font-size: 16px;
  line-height: 18px;
  margin: 6px 0 0;
}

#fulfilment .alcs-detail ul li::before {
  display: none;
}

#fulfilment #inner-hero .sign-up-form-wrapper {
  padding: 30px;
}

#fulfilment #inner-hero .sign-up-form-wrapper h5 {
  font: 700 24px/30px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #080C24;
  padding: 0 0 15px;
  border-bottom: 1px solid #D6D6D6;
}

#fulfilment #inner-hero .sign-up-form-wrapper .field-wrapper {
  padding: 30px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

#fulfilment #inner-hero .sign-up-form-wrapper .field-wrapper label {
  font: 500 16px/20px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #565969;
}

#fulfilment #inner-hero .sign-up-form-wrapper .field-wrapper input,
#fulfilment #inner-hero .sign-up-form-wrapper .field-wrapper textarea {
  margin: 5px 0 0;
  width: 100%;
  resize: none;
  padding: 18px 20px;
  font: 500 18px/22px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #080c24;
}

#fulfilment #inner-hero .sign-up-form-wrapper .field-wrapper .input-wrapper:last-child {
  grid-column: 1 / span 2;
}

#fulfilment #inner-hero .sign-up-form-wrapper .field-wrapper textarea {
  border: 1px solid #d6d6d6;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}

#fulfilment #inner-hero .sign-up-form-wrapper .field-wrapper textarea::placeholder {
  color: #565969;
  opacity: 1;
}

@media (max-width: 1499px) {
  #fulfilment #inner-hero .sign-up-form-wrapper .field-wrapper {
    padding: 25px 0;
    gap: 25px;
  }

  #fulfilment #inner-hero .sign-up-form-wrapper .field-wrapper label {
    font-size: 15px;
    line-height: 18px;
  }

  #fulfilment #inner-hero .sign-up-form-wrapper .field-wrapper input,
  #fulfilment #inner-hero .sign-up-form-wrapper .field-wrapper textarea {
    font-size: 16px;
    line-height: 18px;
  }
}

@media (max-width: 1399px) {
  #fulfilment #inner-hero .sign-up-form-wrapper {
    padding: 25px;
  }

  #fulfilment #inner-hero .sign-up-form-wrapper h5 {
    font-size: 22px;
    line-height: 24px;
  }

  #fulfilment #inner-hero .sign-up-form-wrapper .field-wrapper {
    padding: 15px 0;
    gap: 15px;
  }
}

@media (max-width: 1199px) {

  #fulfilment #inner-hero .sign-up-form-wrapper .field-wrapper input,
  #fulfilment #inner-hero .sign-up-form-wrapper .field-wrapper textarea {
    padding: 16px 20px;
  }
}

@media (min-width: 992px) and (max-width: 1199px),
(max-width: 480px) {
  #fulfilment #inner-hero .sign-up-form-wrapper .field-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }

  #fulfilment #inner-hero .sign-up-form-wrapper .field-wrapper .input-wrapper:last-child {
    grid-column: 1;
  }
}

@media (max-width: 991px) {
  #fulfilment .alcs-detail {
    margin: 15px 0 0;
  }

  #fulfilment .alcs-detail ul li {
    justify-content: center;
    margin: 0 0 8px;
    margin-left: 1rem;
  }

  #fulfilment .alcs-detail ul li i {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  #fulfilment .alcs-detail {
    margin: 8px 0 0;
  }

  #fulfilment #inner-hero .sign-up-form-wrapper {
    width: 90%;
  }
}

@media (max-width: 575px) {
  #fulfilment #inner-hero .sign-up-form-wrapper {
    width: 100%;
  }
}

@media (max-width: 480px) {
  #fulfilment .alcs-detail ul li i {
    font-size: 14px;
    margin: 4px 0 0;
  }

  #fulfilment #inner-hero .sign-up-form-wrapper .field-wrapper label {
    font-size: 14px;
    line-height: 16px;
  }

  #fulfilment #inner-hero .sign-up-form-wrapper .field-wrapper input,
  #fulfilment #inner-hero .sign-up-form-wrapper .field-wrapper textarea {
    font-size: 15px;
    line-height: 18px;
    margin: 6px 0 0;
  }
}

@media (max-width: 360px) {
  #fulfilment #inner-hero .sign-up-form-wrapper {
    padding: 20px;
  }

  #fulfilment #inner-hero .sign-up-form-wrapper h5 {
    font-size: 20px;
    line-height: 22px;
    padding: 0 0 12px;
  }

  #fulfilment #inner-hero .sign-up-form-wrapper .field-wrapper {
    padding: 12px 0;
    gap: 12px;
  }

  #fulfilment #inner-hero .sign-up-form-wrapper .field-wrapper input,
  #fulfilment #inner-hero .sign-up-form-wrapper .field-wrapper textarea {
    padding: 14px 20px;
  }
}

/* ============================ FULFILMENT-HERO SECTION END ============================ */
/* ============================ FULFILMENT-HOW-IT-WORKS SECTION START ============================ */
#fulfilment-how-it-works .how-it-works-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

#fulfilment-how-it-works .how-it-works-box-wrapper {
  width: 325px;
  height: 325px;
  background-color: #F6F8FC;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 10px, rgba(17, 17, 26, 0.05) 0px 8px 20px;
  padding: 50px 35px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 30px;
  text-align: center;
}

#fulfilment-how-it-works .how-it-works-box-wrapper p {
  font: 500 16px/28px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #565969;
}

#fulfilment-how-it-works .how-it-works-col:nth-child(2n + 1) .how-it-works-box-wrapper::after {
  background-image: url("../image/fulfilment-how-it-works-next-after.html");
  background-repeat: no-repeat;
  background-position: center;
  width: 80px;
  height: 28px;
  right: -50px;
}

#fulfilment-how-it-works .how-it-works-col:nth-child(2n) .how-it-works-box-wrapper::before {
  background-image: url("../image/fulfilment-how-it-works-next-before.html");
  background-repeat: no-repeat;
  background-position: center;
  width: 80px;
  height: 28px;
  right: -55px;
}

@media (max-width: 1499px) {
  #fulfilment-how-it-works .how-it-works-box-wrapper {
    width: 300px;
    height: 300px;
    gap: 25px;
  }
}

@media (max-width: 1399px) {
  #fulfilment-how-it-works .how-it-works-box-wrapper {
    width: 270px;
    height: 270px;
    gap: 20px;
    padding: 30px 35px;
  }

  #fulfilment-how-it-works .how-it-works-col:nth-child(2n) .how-it-works-box-wrapper::before {
    right: -50px;
    bottom: 0;
  }

  #fulfilment-how-it-works .how-it-works-col:nth-child(2n+1) .how-it-works-box-wrapper::after {
    right: -45px;
    top: 0;
  }

  #fulfilment-how-it-works .how-it-works-box-wrapper p {
    font-size: 15px;
    line-height: 26px;
  }
}

@media (max-width: 1199px) {
  #fulfilment-how-it-works .how-it-works-box-wrapper {
    width: 225px;
    height: 225px;
    gap: 10px;
    padding: 10px 20px;
  }

  .how-it-works-detail-icon-box {
    max-width: 50px;
  }

  #fulfilment-how-it-works .how-it-works-box-wrapper p {
    font-size: 14px;
    line-height: 24px;
  }

  #fulfilment-how-it-works .how-it-works-col:nth-child(2n+1) .how-it-works-box-wrapper::after {
    width: 60px;
    right: -35px;
  }

  #fulfilment-how-it-works .how-it-works-col:nth-child(2n) .how-it-works-box-wrapper::before {
    width: 60px;
    right: -35px;
  }
}

@media (max-width: 991px) {
  #fulfilment-how-it-works {
    margin: -110px 0 40px;
  }

  #fulfilment-how-it-works .common-title {
    margin: 0 0 20px;
  }

  #fulfilment-how-it-works .how-it-works-row {
    grid-template-columns: repeat(2, 1fr);
  }

  #fulfilment-how-it-works .how-it-works-col:nth-child(2n+1) .how-it-works-box-wrapper::after,
  #fulfilment-how-it-works .how-it-works-col:nth-child(2n) .how-it-works-box-wrapper::before {
    display: none;
  }

  #fulfilment-how-it-works .how-it-works-box-wrapper {
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  #fulfilment-how-it-works {
    margin: -120px 0 40px;
  }

  #fulfilment-how-it-works .how-it-works-row {
    gap: 25px;
  }
}

@media (max-width: 575px) {
  #fulfilment-how-it-works {
    margin: -135px 0 40px;
  }

  #fulfilment-how-it-works .how-it-works-row {
    gap: 20px;
  }

  #fulfilment-how-it-works .how-it-works-box-wrapper {
    width: 205px;
    height: 205px;
    gap: 10px;
    padding: 10px;
  }

  .how-it-works-detail-icon-box {
    max-width: 45px;
  }

  #fulfilment-how-it-works .how-it-works-box-wrapper p {
    font-size: 13px;
    line-height: 22px;
  }
}

@media (max-width: 480px) {
  #fulfilment-how-it-works {
    margin: -165px 0 30px;
  }

  #fulfilment-how-it-works .how-it-works-row {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 360px) {
  #fulfilment-how-it-works {
    margin: -170px 0 30px;
  }
}

/* ============================ FULFILMENT-HOW-IT-WORKS SECTION END ============================ */
/* ============================ SHIP-YOUR-ITEMS SECTION START ============================ */
#ship-your-items .common-title {
  margin: 0 0 20px;
}

#ship-your-items .common-detail {
  width: 82%;
  margin: 0 auto 40px;
}

#ship-your-items .scroll-container {
  position: relative;
  height: 100px;
  overflow: hidden;
}

#ship-your-items .scroll-container .brand-logo {
  width: 345px;
  height: 100%;
  padding: 20px 0;
  background-color: #f4f5f7;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  position: absolute;
  left: max(calc(1px * 6), 100%);
  animation-name: scrollLeft;
  animation-duration: 35s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

#ship-your-items .scroll-container .brand-logo-01 {
  animation-delay: calc(35s / 6 * (6 - 1) * -1);
}

#ship-your-items .scroll-container .brand-logo-02 {
  animation-delay: calc(35s / 6 * (6 - 2) * -1);
}

#ship-your-items .scroll-container .brand-logo-03 {
  animation-delay: calc(35s / 6 * (6 - 3) * -1);
}

#ship-your-items .scroll-container .brand-logo-04 {
  animation-delay: calc(35s / 6 * (6 - 4) * -1);
}

#ship-your-items .scroll-container .brand-logo-05 {
  animation-delay: calc(35s / 6 * (6 - 5) * -1);
}

#ship-your-items .scroll-container .brand-logo-06 {
  animation-delay: calc(35s / 6 * (6 - 6) * -1);
}

@keyframes scrollLeft {
  to {
    left: -300px;
  }
}

@media (max-width: 1899px) {
  #ship-your-items .scroll-container .brand-logo {
    width: 333px;
  }
}

@media (max-width: 1799px) {
  #ship-your-items .scroll-container .brand-logo {
    left: max(calc(300px * 6), 100%);
  }
}

@media (max-width: 1399px) {
  #ship-your-items .common-detail {
    width: 96%;
    margin: 0 auto 30px;
  }

  #ship-your-items .scroll-container {
    height: 90px;
  }

  #ship-your-items .scroll-container .brand-logo {
    width: 300px;
    left: max(calc(270px * 6), 100%);
  }

  #ship-your-items .scroll-container .brand-logo img {
    max-width: 180px;
  }
}

@media (max-width: 1199px) {
  #ship-your-items .common-title {
    margin: 0 0 15px;
  }

  #ship-your-items .common-detail {
    width: 100%;
    margin: 0 auto 25px;
  }
}

@media (max-width: 991px) {
  #ship-your-items .common-detail {
    margin: 0 auto 20px;
  }

  #ship-your-items .scroll-container .brand-logo {
    width: 260px;
    left: max(calc(225px * 6), 100%);
  }

  #ship-your-items .scroll-container .brand-logo img {
    max-width: 150px;
  }
}

@media (max-width: 767px) {
  #ship-your-items .common-title {
    margin: 0 0 10px;
  }

  #ship-your-items .common-detail {
    margin: 0 auto 15px;
  }

  #ship-your-items .scroll-container {
    height: 80px;
  }

  #ship-your-items .scroll-container .brand-logo {
    width: 240px;
    left: max(calc(205px * 6), 100%);
  }
}

@media (max-width: 575px) {
  #ship-your-items .scroll-container .brand-logo {
    width: 220px;
    left: max(calc(185px * 6), 100%);
  }

  #ship-your-items .scroll-container .brand-logo img {
    max-width: 120px;
  }
}

@media (max-width: 480px) {
  #ship-your-items .scroll-container {
    height: 70px;
  }

  #ship-your-items .scroll-container .brand-logo {
    width: 200px;
    left: max(calc(165px * 6), 100%);
  }
}

/* ============================ SHIP-YOUR-ITEMS SECTION END ============================ */
/* ============================ HONEST-RATES SECTION START ============================ */
#honest-rates .common-title,
#honest-rates .rates-cards-wrapper {
  margin: 0 0 40px;
}

#honest-rates .rates-cards-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

#honest-rates .rates-card {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 16px rgba(0, 0, 0, 0.1);
  position: relative;
  width: fit-content;
  margin: 0 auto;
}

#honest-rates .rates-card .rates-detail {
  position: absolute;
  top: auto;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 30px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

#honest-rates .rates-card .rates-detail span {
  font: 500 16px/20px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #fff;
  margin: 0 0 5px;
}

#honest-rates .rates-card .rates-detail h6 {
  font: 600 24px/28px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #fff;
}

@media (max-width: 1399px) {

  #honest-rates .common-title,
  #honest-rates .rates-cards-wrapper {
    margin: 0 0 35px;
  }

  #honest-rates .rates-card .rates-detail {
    padding: 25px;
    gap: 12px;
  }

  #honest-rates .rates-card .rates-detail span {
    font-size: 15px;
  }

  #honest-rates .rates-card .rates-detail h6 {
    font-size: 20px;
    line-height: 24px;
  }
}

@media (max-width: 1199px) {

  #honest-rates .common-title,
  #honest-rates .rates-cards-wrapper {
    margin: 0 0 30px;
  }

  #honest-rates .rates-card .rates-detail {
    padding: 20px;
    gap: 10px;
  }

  #honest-rates .rates-card .rates-detail span {
    font-size: 14px;
    line-height: 18px;
  }

  #honest-rates .rates-card .rates-detail h6 {
    font-size: 18px;
    line-height: 20px;
  }
}

@media (max-width: 991px) {
  #honest-rates .rates-cards-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {

  #honest-rates .common-title,
  #honest-rates .rates-cards-wrapper {
    margin: 0 0 20px;
  }

  #honest-rates .rates-cards-wrapper {
    gap: 20px;
  }

  #honest-rates .rates-card .rates-detail {
    padding: 25px;
    gap: 12px;
  }

  #honest-rates .rates-card .rates-detail span {
    font-size: 15px;
    line-height: 18px;
  }

  #honest-rates .rates-card .rates-detail h6 {
    font-size: 20px;
    line-height: 24px;
  }

  #honest-rates .common-detail br {
    display: none;
  }
}

@media (max-width: 575px) {

  #honest-rates .common-title,
  #honest-rates .rates-cards-wrapper {
    margin: 0 0 15px;
  }

  #honest-rates .rates-card .rates-detail {
    padding: 20px;
    gap: 10px;
  }

  #honest-rates .rates-card .rates-detail span {
    font-size: 14px;
    line-height: 16px;
  }

  #honest-rates .rates-card .rates-detail h6 {
    font-size: 18px;
    line-height: 22px;
  }
}

@media (max-width: 480px) {
  #honest-rates .rates-cards-wrapper {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
  }
}

@media (min-width: 768px) and (max-width: 991px),
(max-width: 480px) {
  #honest-rates .rates-card .rates-detail {
    padding: 30px;
    gap: 18px;
  }

  #honest-rates .rates-card .rates-detail span {
    font-size: 16px;
    line-height: 20px;
  }

  #honest-rates .rates-card .rates-detail h6 {
    font-size: 24px;
    line-height: 28px;
  }
}

@media (max-width: 360px) {

  #honest-rates .common-title,
  #honest-rates .rates-cards-wrapper {
    margin: 0 0 10px;
  }

  #honest-rates .rates-cards-wrapper {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
  }

  #honest-rates .rates-card .rates-detail span {
    font-size: 15px;
    line-height: 18px;
  }

  #honest-rates .rates-card .rates-detail h6 {
    font-size: 22px;
    line-height: 26px;
  }
}

/* ============================ HONEST-RATES SECTION END ============================ */
/* ============================ FEATURES SECTION START ============================ */
#features {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
  padding: 100px 0 200px;
  margin: 0 0 70px;
}

#features .common-title {
  color: #fff;
  margin: 0 0 25px;
}

#features .features-card-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin: 0 0 50px;
}

#features .features-card-wrapper .features-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  text-align: center;
}

#features .features-card-wrapper .features-card .features-card-icon {
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #D6D6D6;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  margin: 0 auto;
}

#features .features-card-wrapper .features-card h6 {
  font: 600 20px/28px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #2C4298;
  margin: 25px 0 15px;
}

#features .features-card-wrapper .features-card p {
  font: 500 16px/28px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #080C24;
}

#features .common-btn {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  margin: 0 auto;
}

#features .common-btn:hover {
  border: 2px solid #fff;
  color: #fff;
}

@media (max-width: 1699px) {
  #features {
    padding: 100px 0 180px;
    margin: 0 0 80px;
  }
}

@media (max-width: 1499px) {
  #features {
    padding: 100px 0 150px;
  }

  #features .features-card-wrapper .features-card {
    padding: 20px;
  }
}

@media (max-width: 1399px) {
  #features .features-card-wrapper .features-card h6 {
    font-size: 18px;
    line-height: 26px;
    margin: 20px 0 10px;
  }

  #features .features-card-wrapper .features-card p {
    font-size: 15px;
    line-height: 26px;
  }
}

@media (max-width: 1299px) {
  #features {
    padding: 80px 0 130px;
    margin: 0 0 70px;
  }

  #features .features-card-wrapper {
    margin: 0 0 40px;
  }
}

@media (max-width: 1199px) {
  #features {
    padding: 60px 0 110px;
    margin: 0 0 45px;
  }

  #features .features-card-wrapper {
    gap: 20px;
  }

  #features .features-card-wrapper .features-card {
    padding: 20px 15px;
  }

  #features .features-card-wrapper .features-card .features-card-icon {
    width: 60px;
    height: 60px;
  }

  #features .features-card-wrapper .features-card p {
    font-size: 14px;
    line-height: 24px;
  }
}

@media (max-width: 991px) {
  #features {
    padding: 40px 0 235px;
    margin: 0;
    background-position: left;
  }

  #features .features-card-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  #features .features-card-wrapper .features-card {
    padding: 30px;
  }
}

@media (max-width: 767px) {
  #features {
    padding: 40px 0 250px;
  }

  #features .features-card-wrapper {
    margin: 0 0 30px;
  }
}

@media (max-width: 575px) {
  #features {
    padding: 40px 0 210px;
  }

  #features .common-title {
    margin: 0 0 20px;
  }

  #features .features-card-wrapper .features-card {
    padding: 20px;
  }

  #features .features-card-wrapper .features-card .features-card-icon {
    width: 55px;
    height: 55px;
  }

  #features .features-card-wrapper .features-card .features-card-icon img {
    max-width: 25px;
  }

  #features .features-card-wrapper .features-card h6 {
    font-size: 17px;
    line-height: 24px;
    margin: 15px 0 6px;
  }
}

@media (max-width: 480px) {
  #features {
    padding: 30px 0 305px;
  }

  #features .common-title {
    margin: 0 0 15px;
  }

  #features .features-card-wrapper {
    grid-template-columns: repeat(1, 1fr);
    margin: 0 0 20px;
    gap: 15px;
  }
}

@media (max-width: 360px) {
  #features {
    padding: 30px 0 320px;
  }
}

/* ============================ FEATURES SECTION END ============================ */
/* ============================ FULFILMENT-CUSTOMER SECTION START ============================ */
@media (max-width: 991px) {
  #fulfilment #customer {
    margin: -80px 0 40px;
  }
}

@media (max-width: 767px) {
  #fulfilment #customer {
    margin: -115px 0 40px;
  }
}

@media (max-width: 575px) {
  #fulfilment #customer {
    margin: -90px 0 40px;
  }
}

@media (max-width: 480px) {
  #fulfilment #customer {
    margin: -210px 0 30px;
  }
}

@media (max-width: 360px) {
  #fulfilment #customer {
    margin: -235px 0 30px;
  }
}

/* ============================ FULFILMENT-CUSTOMER SECTION END ============================ */
/* ======================================================================================================== */
/* ============================ BLOG-PAGE ============================ */
/* ======================================================================================================== */
/* ============================ BLOG-CARDS SECTION START ============================ */
#blog-cards .cards-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 0 0 40px;
}

#blog-cards .cards-wrapper .card {
  background-color: #f4f5f7;
  padding: 15px;
  border: none;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

#blog-cards .cards-wrapper .card .card-img {
  border-radius: 5px 5px 0 0;
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  -ms-border-radius: 5px 5px 0 0;
  -o-border-radius: 5px 5px 0 0;
  overflow: hidden;
  margin: 0 0 15px;
}

#blog-cards .cards-wrapper .card .card-body {
  padding: 0;
}

#blog-cards .cards-wrapper .card .card-body .blog-date {
  display: flex;
  align-items: center;
  gap: 10px;
  font: 500 14px/20px "Plus Jakarta Sans", helvetica, sans-serif;
  margin: 0 0 15px;
  color: #080c24;
}

#blog-cards .cards-wrapper .card .card-body .blog-title {
  font: 600 20px/28px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #000000;
  display: inline-block;
}

#blog-cards .cards-wrapper .card .card-body .blog-description {
  font: 500 16px/24px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #565969;
  margin: 10px 0 15px;
}

#blog-cards .cards-wrapper .card .card-body .blog-btn {
  font: 500 16px/20px "Plus Jakarta Sans", helvetica, sans-serif;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #b12b2b;
}

#blog-cards .cards-wrapper .card .card-body .blog-btn i {
  font-size: 13px;
  margin: 3px 0 0;
}

#blog-cards .pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

#blog-cards .pagination span {
  font: 500 16px/20px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #565969;
}

#blog-cards .pagination-count {
  display: flex;
  align-items: center;
  gap: 10px;
}

#blog-cards .pagination-count .pagination-box {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f4f5f7;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  font: 500 18px/22px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #565969;
}

#blog-cards .pagination-count .pagination-box.active {
  color: #080c24;
}

#blog-cards .pagination-count .pagination-box i {
  font-size: 16px;
  color: #b12b2b;
}

@media (max-width: 1299px) {
  #blog-cards .cards-wrapper {
    margin: 0 0 30px;
  }

  #blog-cards .cards-wrapper .card .card-body .blog-date {
    margin: 0 0 10px;
  }

  #blog-cards .cards-wrapper .card .card-body .blog-title {
    font-size: 18px;
    line-height: 26px;
  }

  #blog-cards .cards-wrapper .card .card-body .blog-description {
    font-size: 14px;
    line-height: 22px;
    margin: 6px 0 10px;
  }

  #blog-cards .cards-wrapper .card .card-body .blog-btn {
    gap: 6px;
    font-size: 14px;
    line-height: 18px;
  }

  #blog-cards .cards-wrapper .card .card-body .blog-btn i {
    font-size: 12px;
  }

  #blog-cards .pagination span {
    font-size: 14px;
    line-height: 18px;
  }

  #blog-cards .pagination-count .pagination-box {
    width: 38px;
    height: 38px;
    font-size: 16px;
    line-height: 20px;
  }

  #blog-cards .pagination-count .pagination-box i {
    font-size: 14px;
  }
}

@media (max-width: 991px) {
  #blog-cards .cards-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  #blog-cards .cards-wrapper .card .card-body .blog-title {
    font-size: 17px;
    line-height: 24px;
  }

  #blog-cards .pagination-count {
    gap: 6px;
  }
}

@media (max-width: 575px) {
  #blog-cards .cards-wrapper {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    margin: 0 0 20px;
  }

  #blog-cards .pagination {
    gap: 12px;
    flex-direction: column;
  }
}

@media (min-width: 478px) and (max-width: 575px) {
  #blog-cards .cards-wrapper .card {
    max-width: 454px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  #blog-cards .cards-wrapper {
    gap: 15px;
  }
}

/* ============================ BLOG-CARDS SECTION END ============================ */
/* ======================================================================================================== */
/* ============================ BLOG-DETAILS-PAGE ============================ */
/* ======================================================================================================== */
/* ============================ BLOG-CONTENT SECTION START ============================ */
#blogContent {
  margin: 200px 0 0;
}

#blogContent .blog-detail-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
}

#blogContent .blog-detail-head h3 {
  font: 600 36px/44px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #000;
  margin: 0 0 15px;
}

#blogContent .blog-detail-head .blog-date {
  display: flex;
  align-items: center;
  gap: 10px;
  font: 500 14px/20px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #080c24;
}

#blogContent .blog-detail-social-media {
  display: flex;
  align-items: center;
  gap: 15px;
}

#blogContent .blog-detail-social-media .social-media-icon {
  display: inline-block;
}

#blogContent .blog-detail-img {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  overflow: hidden;
  margin: 30px 0 40px;
}

#blogContent .alcs-detail {
  padding: 0 0px;
}

#blogContent .alcs-detail .blog-title {
  font: 600 24px/34px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #080C24;
  margin: 0 0 20px;
  text-transform: none;
}

@media (max-width: 1399px) {
  #blogContent .alcs-detail {
    padding: 0 0px;
  }

  #blogContent .blog-detail-head h3 {
    font-size: 32px;
    line-height: 40px;
    margin: 0 0 10px;
  }

  #blogContent .blog-detail-social-media {
    gap: 10px;
  }

  #blogContent .blog-detail-img {
    margin: 25px 0 30px;
  }

  #blogContent .alcs-detail .blog-title {
    font-size: 22px;
    line-height: 32px;
    margin: 0 0 15px;
  }
}

@media (max-width: 1199px) {
  #blogContent .blog-detail-head h3 {
    font-size: 28px;
    line-height: 36px;
  }

  #blogContent .blog-detail-img {
    margin: 20px 0 25px;
  }

  #blogContent .alcs-detail {
    padding: 0 0px;
  }

  #blogContent .alcs-detail .blog-title {
    font-size: 20px;
    line-height: 30px;
  }
}

@media (max-width: 991px) {
  #blogContent {
    margin: 50px 0 0;
  }

  #blogContent .blog-detail-head {
    flex-direction: column;
  }

  #blogContent .blog-detail-head .blog-date {
    margin: 0 0 15px;
  }

  #blogContent .blog-detail-img {
    margin: 20px 0 15px;
  }

  #blogContent .alcs-detail {
    padding: 0;
  }

  #blogContent .alcs-detail .blog-title {
    font-size: 18px;
    line-height: 28px;
    margin: 0 0 10px;
  }
}

@media (max-width: 767px) {
  #blogContent .blog-detail-head h3 {
    font-size: 26px;
    line-height: 34px;
  }

  #blogContent .alcs-detail .blog-title {
    font-size: 16px;
    line-height: 26px;
  }

  #blogContent .blog-detail-social-media .social-media-icon img {
    max-width: 35px;
  }

  #blogContent .blog-detail-img {
    margin: 15px 0;
  }
}

@media (max-width: 480px) {
  #blogContent {
    margin: 30px 0 0;
  }

  #blogContent .blog-detail-head h3 {
    font-size: 22px;
    line-height: 32px;
    margin: 0 0 8px;
  }

  #blogContent .blog-detail-head .blog-date {
    margin: 0 0 12px;
  }

  #blogContent .blog-detail-social-media {
    gap: 8px;
  }

  #blogContent .blog-detail-img {
    margin: 12px 0 8px;
  }

  #blogContent .alcs-detail .blog-title {
    font-size: 15px;
    line-height: 24px;
    margin: 0 0 8px;
  }
}

@media (max-width: 360px) {
  #blogContent .blog-detail-head h3 {
    font-size: 20px;
    line-height: 30px;
    margin: 0 0 8px;
  }
}

/* ============================ BLOG-CONTENT SECTION END ============================ */
/* ======================================================================================================== */
/* ============================ CONTACT-US-PAGE ============================ */
/* ======================================================================================================== */
/* ============================ CONTACT-FORM SECTION START ============================ */
#contactForm {
  background-color: #F4F5F7;
}

#contactForm .form-wrapper {
  padding: 100px 120px;
}

#contactForm form {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  overflow: hidden;
}

#contactForm form h5 {
  font: 700 24px/30px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #080C24;
  padding: 0 0 15px;
  border-bottom: 1px solid #D6D6D6;
}

#contactForm form h5 {
  font: 700 24px/30px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #080C24;
  padding: 0 0 15px;
  border-bottom: 1px solid #D6D6D6;
}

#contactForm form .field-wrapper {
  margin: 30px 0;
}

#contactForm form .field-wrapper .input-wrapper,
#contactForm form textarea {
  border: 1px solid #D6D6D6;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  padding: 14px 20px;
  margin: 0 0 15px;
  width: 100%;
  resize: none;
  display: flex;
  align-items: center;
}

#contactForm form .field-wrapper .input-wrapper:last-child,
#contactForm form textarea {
  margin: 0;
}

#contactForm form .field-wrapper .input-wrapper i {
  color: #787685;
  min-width: 28px;
  padding: 0 10px 0 0;
  margin: 0 10px 0 0;
  border-right: 1px solid #D6D6D6;
}

#contactForm form .field-wrapper .input-wrapper input,
#contactForm form textarea {
  font: 500 16px/18px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #080C24;
  width: 100%;
}

#contactForm form .field-wrapper .input-wrapper input::placeholder,
#contactForm form textarea::placeholder {
  color: #565969;
  opacity: 1;
}

#contactForm form .common-btn-2 {
  width: fit-content;
  padding: 15px 140px;
  display: flex;
  margin: 0 auto;
}

@media (max-width: 1299px) {
  #contactForm .form-wrapper {
    padding: 80px 100px;
  }
}

@media (max-width: 1199px) {
  #contactForm .form-wrapper {
    padding: 60px;
  }

  #contactForm form h5 {
    font-size: 22px;
    line-height: 28px;
  }

  #contactForm form .field-wrapper .input-wrapper input,
  #contactForm form textarea {
    font-size: 15px;
    line-height: 18px;
  }
}

@media (max-width: 991px) {
  #contactForm .form-wrapper {
    padding: 40px 60px;
  }

  #contactForm form {
    padding: 20px;
  }

  #contactForm form .field-wrapper {
    margin: 20px 0;
  }

  #contactForm form .field-wrapper .input-wrapper:last-child {
    margin: 0 0 15px;
  }
}

@media (max-width: 767px) {
  #contactForm .form-wrapper {
    padding: 40px 20px;
  }

  #contactForm form h5 {
    font-size: 20px;
    line-height: 26px;
  }
}

@media (max-width: 575px) {
  #contactForm form .common-btn-2 {
    padding: 15px 0;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  #contactForm .form-wrapper {
    padding: 30px 0;
  }

  #contactForm form {
    padding: 15px;
  }

  #contactForm form .field-wrapper {
    margin: 15px 0;
  }

  #contactForm form h5 {
    font-size: 18px;
    line-height: 24px;
  }

  #contactForm form .field-wrapper .input-wrapper input,
  #contactForm form textarea {
    font-size: 14px;
    line-height: 16px;
  }
}

/* ============================ CONTACT-FORM SECTION END ============================ */
/* ============================ OFFICE SECTION START ============================ */
#office .tabs-wrapper {
  padding: 0 60px;
  margin: 0 0 30px;
}

#office .tabs-wrapper #pills-tab {
  justify-content: center;
  gap: 20px;
  padding: 0 !important;
}

#office .nav-pills .nav-link {
  font: 700 18px/20px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #565969;
  text-transform: capitalize;
  padding: 18px 25px;
  border: 1px solid #D6D6D6;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
}

#office .nav-pills .nav-link:hover,
#office .nav-pills .nav-link.active,
#office .nav-pills .show>.nav-link {
  color: #fff;
  background-color: #2C4298;
  border: 1px solid #2C4298;
}

#office .tab-pane {
  border: 1px solid #D6D6D6;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  padding: 20px;
}

#office .tab-pane .contact-page-address {
  padding: 15px 90px 30px;
}

#office .tab-pane .contact-page-address h5 {
  font: 700 24px/30px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #080C24;
  text-align: center;
  margin-bottom: 2rem;
}

#office .tab-pane .contact-page-address .address-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

#office .tab-pane .contact-page-address .address-wrapper .address-card {
  padding: 0 30px;
  text-align: center;
  border-right: 1px solid #D6D6D6;
}

#office .tab-pane .contact-page-address .address-wrapper .address-card:last-child {
  border-right: none;
}

#office .tab-pane .contact-page-address .icon-wrapper {
  width: 65px;
  height: 65px;
  margin: 0 auto;
  background-color: #F4F5F7;
  border: 1px solid #D6D6D6;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 25px;
  color: #2C4298;
}

#office .tab-pane .contact-page-address span {
  font: 600 16px/28px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #080C24;
  display: block;
  margin: 10px 0;
}

#office .tab-pane .contact-page-address p,
#office .tab-pane .contact-page-address a {
  font: 500 16px/28px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #565969;
}

#office .tab-pane iframe {
  width: 100%;
  height: 500px;
  border-radius: 0 0 30px 30px;
  -webkit-border-radius: 0 0 15px 15px;
  -moz-border-radius: 0 0 30px 30px;
  -ms-border-radius: 0 0 30px 30px;
  -o-border-radius: 0 0 30px 30px;
  overflow: hidden;
  vertical-align: top;
}

@media (max-width: 1499px) {
  #office .tab-pane .contact-page-address {
    padding: 15px 40px 30px;
  }
}

@media (max-width: 1399px) {
  #office .tab-pane .contact-page-address {
    padding: 15px 0 30px;
  }

  #office .tab-pane .contact-page-address .address-wrapper .address-card {
    padding: 0 25px;
  }

  #office .tab-pane .contact-page-address p,
  #office .tab-pane .contact-page-address a {
    font-size: 15px;
    line-height: 26px;
  }

  #office .tab-pane iframe {
    height: 400px;
  }
}

@media (max-width: 1199px) {
  #office .tabs-wrapper {
    padding: 0 30px;
  }

  #office .tabs-wrapper #pills-tab {
    justify-content: center;
    gap: 15px;
    padding: 0 !important;
  }

  #office .nav-pills .nav-link {
    font-size: 16px;
    line-height: 18px;
    padding: 16px 22px;
  }

  #office .tab-pane .contact-page-address {
    padding: 10px 0 25px;
  }

  #office .tab-pane .contact-page-address h5 {
    font-size: 22px;
    line-height: 28px;
  }

  #office .tab-pane .contact-page-address p,
  #office .tab-pane .contact-page-address a {
    font-size: 14px;
    line-height: 24px;
  }

  #office .tab-pane .contact-page-address .address-wrapper .address-card {
    padding: 0 15px;
  }

  #office .tab-pane .contact-page-address .icon-wrapper {
    width: 60px;
    height: 60px;
    font-size: 22px;
  }

  #office .tab-pane iframe {
    height: 350px;
  }
}

@media (max-width: 991px) {
  #office .tabs-wrapper {
    padding: 0;
    margin: 0 0 20px;
  }

  #office .tabs-wrapper #pills-tab {
    gap: 13px;
  }

  #office .tab-pane .contact-page-address .address-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  #office .tab-pane .contact-page-address .address-wrapper .address-card:first-child {
    border-right: none;
    grid-column: 1 / span 2;
    margin: 0 0 20px;
  }

  #office .tab-pane .contact-page-address h5 {
    margin: 0 0 20px;
  }

  #office .tab-pane .contact-page-address {
    padding: 10px 0 20px;
  }
}

@media (max-width: 767px) {
  #office .tabs-wrapper #pills-tab {
    gap: 10px;
  }

  #office .nav-pills .nav-link {
    font-size: 15px;
    padding: 15px 20px;
  }
}

@media (max-width: 575px) {
  #office .tab-pane {
    padding: 15px;
  }

  #office .tab-pane .contact-page-address h5 {
    font-size: 20px;
    line-height: 26px;
  }

  #office .tab-pane .contact-page-address {
    padding: 5px 0 20px;
  }

  #office .tab-pane .contact-page-address .address-wrapper .address-card:first-child {
    margin: 0 0 15px;
  }
}

@media (max-width: 480px) {
  #office .tabs-wrapper #pills-tab {
    gap: 8px;
  }

  #office .nav-pills .nav-link {
    font-size: 14px;
    line-height: 16px;
    padding: 14px 18px;
  }

  #office .tab-pane .contact-page-address h5 {
    font-size: 18px;
    line-height: 22px;
    margin: 0 0 15px;
  }

  #office .tab-pane .contact-page-address .address-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }

  #office .tab-pane .contact-page-address .address-wrapper .address-card:first-child,
  #office .tab-pane .contact-page-address .address-wrapper .address-card:nth-child(2) {
    grid-column: 1;
    margin: 0 0 15px;
    border-right: none;
  }

  #office .tab-pane .contact-page-address span {
    font-size: 15px;
    margin: 8px 0 2px;
  }

  #office .tab-pane .contact-page-address .icon-wrapper {
    width: 55px;
    height: 55px;
    font-size: 20px;
  }

  #office .tab-pane iframe {
    height: 300px;
  }
}

/* ============================ OFFICE SECTION END ============================ */
/* ======================================================================================================== */
/* ============================ DANGEROUS-AND-HAZARDOUS-GOODS-PAGE ============================ */
/* ======================================================================================================== */
/* ============================ NAV&TAB SECTION START ============================ */
#custom-nav-tabs .nav-pills {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  overflow: hidden;
  border: 1px solid #D6D6D6;
  position: sticky;
  top: 100px;
}

#custom-nav-tabs .nav-pills .nav-link {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 15px;
  padding: 14px 20px;
  font: 600 17px/22px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #565969;
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-bottom: 1px solid #D6D6D6;
}

#custom-nav-tabs .nav-pills .nav-link:last-child {
  border-bottom: none;
}

#custom-nav-tabs .nav-pills .nav-link .tab-icon {
  width: 40px;
  height: 40px;
  position: relative;
  background-color: #F4F5F7;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: inline-block;
}

#custom-nav-tabs .nav-pills .nav-link .tab-icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

#custom-nav-tabs .nav-pills .nav-link .tab-icon .hover-img {
  opacity: 0;
}

#custom-nav-tabs .nav-pills .nav-link .tab-icon img {
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
}

#custom-nav-tabs .nav-pills .nav-link.active,
#custom-nav-tabs .nav-pills .show>.nav-link {
  background-color: #2C4298;
  color: #fff;
}

#custom-nav-tabs .nav-pills .nav-link.active .tab-icon .hover-img,
#custom-nav-tabs .nav-pills .show>.nav-link .tab-icon .hover-img {
  opacity: 1;
}

#custom-nav-tabs .nav-pills .nav-link.active .tab-icon .normal-img,
#custom-nav-tabs .nav-pills .show>.nav-link .tab-icon .normal-img {
  opacity: 0;
}

@media (max-width: 1499px) {
  #custom-nav-tabs .nav-pills .nav-link {
    font-size: 15px;
    line-height: 18px;
  }
}

@media (max-width: 1399px) {
  #custom-nav-tabs .nav-pills .nav-link {
    font-size: 14px;
    line-height: 16px;
    padding: 12px 8px;
    gap: 10px;
  }
}

@media (max-width: 1199px) {
  #custom-nav-tabs .nav-pills .nav-link {
    font-size: 15px;
    line-height: 18px;
    padding: 12px 15px;
  }
}

@media (max-width: 991px) {
  #custom-nav-tabs .nav-pills {
    margin: 10px 0 8px;
  }

  #courierService #custom-nav-tabs .nav-pills {
    margin: 0 0 20px;
  }
}

@media (max-width: 575px) {
  #custom-nav-tabs .nav-pills {
    width: 65%;
  }
}

@media (max-width: 480px) {
  #custom-nav-tabs .nav-pills {
    width: 80%;
    margin: 5px 0 8px;
  }

  #courierService #custom-nav-tabs .nav-pills {
    margin: 0 0 15px;
  }

  #custom-nav-tabs .nav-pills .nav-link {
    font-size: 14px;
    line-height: 18px;
    padding: 12px 14px;
  }
}

@media (max-width: 360px) {
  #custom-nav-tabs .nav-pills {
    width: 100%;
  }

  #courierService #custom-nav-tabs .nav-pills {
    margin: 0 0 10px;
  }

  #custom-nav-tabs .nav-pills .nav-link {
    padding: 10px;
  }
}

/* ============================ NAV&TAB SECTION END ============================ */
/* ======================================================================================================== */
/* ============================ SEA-FREIGHT-PAGE ============================ */
/* ======================================================================================================== */
#seaFreight .sea-freight-title {
  margin: 30px 0 15px;
}

#seaFreight .sea-freight-card-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin: 45px 0;
}

#seaFreight .sea-freight-card-wrapper .sea-freight-card {
  background-color: #fff;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  padding: 20px 15px 20px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#seaFreight .sea-freight-card-wrapper .sea-freight-img {
  margin: 0 0 15px;
}

#seaFreight .sea-freight-card-wrapper h6 {
  font: 600 16px/20px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #080C24;
}

#seaFreight .sea-freight-card-wrapper p,
#seaFreight .sea-freight-card-wrapper p a {
  font: 400 16px/22px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #565969;
  margin: 10px 0 18px;
  text-align: start !important;
}

#seaFreight .sea-freight-card-wrapper p a {
  text-decoration: underline;
  display: inline;
}

#seaFreight .sea-freight-card-wrapper a {
  font: 500 16px/20px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #2C4298;
  display: flex;
  align-items: center;
  gap: 10px;
}

#seaFreight .sea-freight-card-wrapper a i {
  font-size: 13px;
  margin: 4px 0 0;
}

@media (max-width: 1399px) {
  #seaFreight .sea-freight-card-wrapper {
    gap: 25px;
    margin: 35px 0;
  }

  #seaFreight .sea-freight-card-wrapper .sea-freight-card {
    padding: 15px 10px 15px 15px;
  }

  #seaFreight .sea-freight-card-wrapper p,
  #seaFreight .sea-freight-card-wrapper p a {
    font-size: 15px;
  }

  #seaFreight .sea-freight-card-wrapper a {
    font-size: 15px;
    gap: 8px;
  }

  #seaFreight .sea-freight-card-wrapper a i {
    font-size: 12px;
  }
}

@media (max-width: 1199px) {
  #seaFreight .sea-freight-card-wrapper {
    grid-template-columns: repeat(3, 1fr);
    margin: 30px 0;
  }
}

@media (max-width: 991px) {
  #seaFreight .sea-freight-card-wrapper {
    grid-template-columns: repeat(2, 1fr);
    margin: 20px 0;
  }

  #seaFreight .sea-freight-title {
    margin: 22px 0 10px;
  }
}

@media (max-width: 575px) {
  #seaFreight .sea-freight-card-wrapper {
    gap: 20px;
  }

  #seaFreight .sea-freight-card-wrapper p,
  #seaFreight .sea-freight-card-wrapper p a {
    margin: 10px 0 15px;
  }
}

@media (max-width: 480px) {
  #seaFreight .sea-freight-card-wrapper {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
    margin: 15px 0;
  }

  #seaFreight .sea-freight-title {
    margin: 18px 0 8px;
  }
}

/* ======================================================================================================== */
/* ============================ SEAFREIGHT-CONTAINER-DETAILS-PAGE ============================ */
/* ======================================================================================================== */
/* ============================ CONTAINER-DETAILS SECTION START ============================ */
#container-details .tabs-wrapper {
  margin: 30px 0 20px;
}

#container-details .tabs-wrapper #pills-tab {
  gap: 20px;
  padding: 0 !important;
  margin: 0 !important;
}

#container-details .nav-pills .nav-link {
  font: 700 16px/20px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #565969;
  text-transform: capitalize;
  padding: 16px 30px;
  border: 1px solid #D6D6D6;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
}

#container-details .nav-pills .nav-link:hover,
#container-details .nav-pills .nav-link.active,
#container-details .nav-pills .show>.nav-link {
  color: #fff;
  background-color: #2C4298;
  border: 1px solid #2C4298;
}

#container-details .container-detail-table {
  width: 58%;
  border: 1px solid #D6D6D6;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  overflow: hidden;
  margin: 0 0 15px;
}

#container-details .container-detail-table .title-row {
  background-color: #f4f6ff;
}

#container-details .container-detail-table .title-row,
#container-details .container-detail-table .detail-row,
#container-details .container-detail-table .inner-title-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid #D6D6D6;
}

#container-details .container-detail-table.custom-table .title-row,
#container-details .container-detail-table.custom-table .inner-title-row,
#container-details .container-detail-table.custom-table .inner-title-row div:first-child,
#container-details .container-detail-table.custom-table .detail-row,
#container-details .container-detail-table.custom-table .detail-row div:first-child {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

#container-details .container-detail-table.custom-table .inner-title-row div:nth-child(2),
#container-details .container-detail-table.custom-table .inner-title-row div:nth-child(3),
#container-details .container-detail-table.custom-table .detail-row div:nth-child(2),
#container-details .container-detail-table.custom-table .detail-row div:nth-child(3) {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

#container-details .container-detail-table.col-span-03 .title-row,
#container-details .container-detail-table.col-span-03 .detail-row {
  grid-template-columns: repeat(3, 1fr);
}

#container-details .container-detail-table.col-span-02 .title-row,
#container-details .container-detail-table.col-span-02 .detail-row {
  grid-template-columns: repeat(2, 1fr);
}

#container-details .container-detail-table .detail-row:last-child {
  border-bottom: none;
}

#container-details .container-detail-table .title-row h6,
#container-details .container-detail-table .inner-title-row h6,
#container-details .container-detail-table.custom-table .inner-title-row div h6,
#container-details .container-detail-table .detail-row span,
#container-details .container-detail-table.custom-table .detail-row div span {
  padding: 14px 15px;
  border-right: 1px solid #D6D6D6;
}

#container-details .container-detail-table .title-row h6:last-child,
#container-details .container-detail-table.custom-table .inner-title-row div:last-child h6:last-child,
#container-details .container-detail-table .inner-title-row h6:last-child,
#container-details .container-detail-table .detail-row span:last-child,
#container-details .container-detail-table .detail-row div:last-child span:last-child {
  border-right: none;
}

#container-details .container-detail-table .title-row h6 {
  font: 700 16px/18px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #2C4298;
  text-transform: capitalize;
}

#container-details .container-detail-table .inner-title-row h6 {
  font: 600 16px/18px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #2C4298;
}

#container-details .container-detail-table .detail-row span {
  font: 500 15px/18px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #565969;
}

#container-details .container-details-img {
  margin: 30px 0;
}

@media (max-width: 1499px) {
  #container-details .container-detail-table {
    width: 62%;
  }
}

@media (max-width: 1399px) {
  #container-details .tabs-wrapper {
    margin: 25px 0 15px;
  }

  #container-details .tabs-wrapper #pills-tab {
    gap: 15px;
  }

  #container-details .nav-pills .nav-link {
    font-size: 15px;
    line-height: 17px;
    padding: 14px 25px;
  }

  #container-details .container-detail-table .title-row h6,
  #container-details .container-detail-table.custom-table .inner-title-row div h6,
  #container-details .container-detail-table .inner-title-row h6 {
    font-size: 15px;
  }

  #container-details .container-detail-table {
    width: 68%;
  }
}

@media (max-width: 1199px) {

  #container-details .container-detail-table .title-row h6:last-child,
  #container-details .container-detail-table .detail-row span:last-child {
    border: none;
  }

  #container-details .container-detail-table {
    width: 80%;
  }
}

@media (max-width: 991px) {
  #container-details .tabs-wrapper {
    margin: 20px 0 15px;
  }

  #container-details .tabs-wrapper #pills-tab {
    gap: 13px;
  }

  #container-details .container-details-img {
    margin: 20px 0;
  }

  #container-details .container-detail-table {
    width: 100%;
  }

  #container-details .container-detail-table .title-row h6,
  #container-details .container-detail-table .inner-title-row h6,
  #container-details .container-detail-table .detail-row span,
  #container-details .container-detail-table.custom-table .inner-title-row div h6 {
    padding: 12px 10px;
    font-size: 14px;
    line-height: 16px;
  }
}

@media (max-width: 767px) {
  #container-details .tabs-wrapper {
    margin: 15px 0 10px;
  }

  #container-details .tabs-wrapper #pills-tab {
    gap: 10px;
  }

  #container-details .container-detail-table .title-row,
  #container-details .container-detail-table .detail-row,
  #container-details .container-detail-table.col-span-03 .title-row,
  #container-details .container-detail-table.col-span-03 .detail-row,
  #container-details .container-detail-table.col-span-02 .title-row,
  #container-details .container-detail-table.col-span-02 .detail-row,
  #container-details .container-detail-table.custom-table .title-row,
  #container-details .container-detail-table.custom-table .inner-title-row,
  #container-details .container-detail-table.custom-table .detail-row {
    grid-template-columns: repeat(1, 1fr);
    padding: 5px 0;
  }

  #container-details .container-detail-table.custom-table .inner-title-row div:nth-child(2),
  #container-details .container-detail-table.custom-table .inner-title-row div:nth-child(3),
  #container-details .container-detail-table.custom-table .detail-row div:nth-child(2),
  #container-details .container-detail-table.custom-table .detail-row div:nth-child(3) {
    grid-template-columns: repeat(3, 1fr);
  }

  #container-details .container-detail-table .title-row h6,
  #container-details .container-detail-table .inner-title-row h6,
  #container-details .container-detail-table .detail-row span,
  #container-details .container-detail-table.custom-table .inner-title-row div h6,
  #container-details .container-detail-table.custom-table .detail-row div span {
    padding: 8px 10px;
    border-right: none;
  }
}

@media (max-width: 480px) {
  #container-details .tabs-wrapper {
    margin: 10px 0 8px;
  }

  #container-details .tabs-wrapper #pills-tab {
    gap: 8px;
  }

  #container-details .nav-pills .nav-link {
    font-size: 14px;
    line-height: 16px;
    padding: 14px 18px;
  }

  #container-details .container-details-img {
    margin: 15px 0;
  }
}

/* ============================ CONTAINER-DETAILS SECTION END ============================ */
/* ======================================================================================================== */
/* ============================  COURIER-SERVICE PAGE ============================ */
/* ======================================================================================================== */
/* ============================ COURIER-PROCESS START ============================ */
#courier-process {
  margin: 30px 0;
}

#courier-process .courier-process-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

#courier-process .courier-process-col .courier-process-box-wrapper {
  width: 270px;
  height: 270px;
  background-color: #F6F8FC;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 10px, rgba(17, 17, 26, 0.05) 0px 8px 20px;
  padding: 50px 35px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 30px;
  text-align: center;
  position: relative;
}

#courier-process .courier-process-col:nth-child(2n) .courier-process-box-wrapper::before {
  background-image: url("../image/fulfilment-how-it-works-next-before.html");
  background-repeat: no-repeat;
  background-position: center;
  width: 80px;
  height: 28px;
  right: -55px;
  content: "";
  position: absolute;
  top: auto;
  bottom: 10px;
  left: auto;
  right: -75px;
  z-index: -1;
}

#courier-process .courier-process-col:nth-child(2n+1) .courier-process-box-wrapper::after {
  background-image: url("../image/fulfilment-how-it-works-next-after.html");
  background-repeat: no-repeat;
  background-position: center;
  width: 80px;
  height: 28px;
  right: -50px;
  content: "";
  position: absolute;
  top: 10px;
  left: auto;
  right: -75px;
  bottom: auto;
  z-index: -1;
}

#courier-process .courier-process-col:last-child .courier-process-box-wrapper::before,
#courier-process .courier-process-col:last-child .courier-process-box-wrapper::after {
  display: none;
}

@media (max-width: 1399px) {
  #courier-process .courier-process-col .courier-process-box-wrapper {
    width: 250px;
    height: 250px;
    padding: 30px 28px;
    gap: 20px;
  }

  #courier-process .courier-process-col:nth-child(2n) .courier-process-box-wrapper::before {
    right: -50px;
    bottom: 0;
  }

  #courier-process .courier-process-col:nth-child(2n+1) .courier-process-box-wrapper::after {
    right: -45px;
    top: 0;
  }
}

@media (max-width: 1199px) {
  #courier-process {
    margin: 30px 0 20px;
  }

  #courier-process .courier-process-col .courier-process-box-wrapper {
    width: 190px;
    height: 190px;
    padding: 30px 28px;
    gap: 10px;
  }

  #courier-process .courier-process-col .courier-process-box-wrapper .courier-process-detail-icon-box {
    max-width: 60px;
  }

  #courier-process .courier-process-col .courier-process-box-wrapper p {
    font-size: 14px;
    line-height: 24px;
  }

  #courier-process .courier-process-col:nth-child(2n) .courier-process-box-wrapper::before {
    width: 60px;
    right: -40px;
  }

  #courier-process .courier-process-col:nth-child(2n+1) .courier-process-box-wrapper::after {
    width: 60px;
    right: -35px;
  }
}

@media (max-width: 991px) {
  #courier-process .courier-process-col:nth-child(2n+1) .courier-process-box-wrapper::after {
    right: -45px;
  }

  #courier-process .courier-process-col:nth-child(2n) .courier-process-box-wrapper::before {
    right: -50px;
  }
}

@media (max-width: 767px) {
  #courier-process {
    margin: 15px 0;
  }

  #courier-process .courier-process-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  #courier-process .courier-process-col:last-child {
    grid-column: 1 / span 2;
  }

  #courier-process .courier-process-col .courier-process-box-wrapper {
    margin: 0 auto;
  }

  #courier-process .courier-process-col:nth-child(2n+1) .courier-process-box-wrapper::after,
  #courier-process .courier-process-col:nth-child(2n) .courier-process-box-wrapper::before {
    display: none;
  }
}

@media (max-width: 480px) {
  #courier-process .courier-process-row {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }

  #courier-process .courier-process-col:last-child {
    grid-column: 1;
  }
}

/* ============================ COURIER-PROCESS END ============================ */
/* ======================================================================================================== */
/* ============================  IMPORT-SERVICE PAGE ============================ */
/* ======================================================================================================== */
/* ============================ IMPORT-SERVICE-CARD START ============================ */
.import-service-card-wrapper {
  margin: 50px 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.import-service-card-wrapper .import-service-card {
  background-color: #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 20px 15px 30px;
  text-align: center;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

.import-service-card-wrapper .import-service-card .import-service-icon-wrapper {
  width: 100px;
  height: 100px;
  background-color: #2C4298;
  margin: 0 auto;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.import-service-card-wrapper .import-service-card h6 {
  font: 600 18px/20px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #080C24;
  margin: 15px 0 10px;
}

.import-service-card-wrapper .import-service-card p {
  font: 400 16px/22px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #565969;
  margin: 0;
}

@media (max-width: 1499px) {
  .import-service-card-wrapper .import-service-card p {
    font-size: 15px;
  }
}

@media (max-width: 1399px) {
  .import-service-card-wrapper {
    margin: 40px 0 0;
  }

  .import-service-card-wrapper .import-service-card .import-service-icon-wrapper {
    width: 85px;
    height: 85px;
  }

  .import-service-card-wrapper .import-service-card .import-service-icon-wrapper img {
    max-width: 40px;
  }

  .import-service-card-wrapper .import-service-card h6 {
    font-size: 16px;
    line-height: 18px;
  }

  .import-service-card-wrapper .import-service-card p {
    font-size: 14px;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .import-service-card-wrapper .import-service-card p {
    min-height: 88px;
  }
}

@media (max-width: 1199px) {
  .import-service-card-wrapper {
    margin: 30px 0 0;
    grid-template-columns: repeat(3, 1fr);
  }

  .import-service-card-wrapper .import-service-card-other-col {
    display: none;
  }
}

@media (max-width: 991px) {
  .import-service-card-wrapper {
    margin: 25px 0 0;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .import-service-card-wrapper .import-service-card {
    padding: 30px;
  }

  .import-service-card-wrapper .import-service-card p {
    min-height: 66px;
  }
}

@media (max-width: 767px) {
  .import-service-card-wrapper .import-service-card .import-service-icon-wrapper {
    width: 75px;
    height: 75px;
  }

  .import-service-card-wrapper .import-service-card .import-service-icon-wrapper img {
    max-width: 38px;
  }

  .import-service-card-wrapper .import-service-card {
    padding: 20px 15px;
  }

  .import-service-card-wrapper .import-service-card h6 {
    font-size: 15px;
  }

  .import-service-card-wrapper .import-service-card p {
    min-height: 88px;
  }
}

@media (max-width: 575px) {
  .import-service-card-wrapper {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .import-service-card-wrapper {
    margin: 20px 0 0;
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
  }

  .import-service-card-wrapper .import-service-card h6 {
    margin: 12px 0 8px;
  }

  .import-service-card-wrapper .import-service-card p {
    min-height: auto;
  }
}

/* ============================ IMPORT-SERVICE-CARD END ============================ */
/* ============================ IMPORTS START ============================ */
.imports-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 991px) {
  .imports-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

@media (max-width: 767px) {
  .imports-row {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 480px) {
  .imports-row {
    gap: 8px;
  }
}

/* ============================ IMPORTS END ============================ */
/* ======================================================================================================== */
/* ============================ CAREERS PAGE ============================ */
/* ======================================================================================================== */
/* ============================ FUTURE-OF-LOGISTICS SECTION START ============================ */
#future-of-logistics .common-title {
  margin: 0 0 20px;
}

#future-of-logistics .common-detail {
  padding: 0 240px;
  margin: 0 0 60px;
}

#future-of-logistics h4 {
  font: 600 32px/50px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #080C24;
  margin: 0 0 10px;
}

#future-of-logistics p {
  font: 500 16px/26px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #565969;
  margin: 0;
}

#future-of-logistics hr {
  border-top: 1px solid #d6d6d6;
  opacity: 1;
  margin: 50px 0 40px;
}

#future-of-logistics .future-of-logistics-card-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

#future-of-logistics .future-of-logistics-card {
  display: flex;
  gap: 30px;
}

#future-of-logistics .future-of-logistics-icon-wrapper {
  width: 150px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(44, 66, 152, 0.1);
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}

#future-of-logistics .future-of-logistics-text {
  width: calc(100% - 180px);
}

#future-of-logistics .future-of-logistics-img {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  overflow: hidden;
  display: inline-block;
}

#future-of-logistics .future-of-logistics-img img {
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
}

#future-of-logistics:hover .future-of-logistics-img img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}

@media (max-width: 1699px) {
  #future-of-logistics .common-detail {
    margin: 0 0 40px;
  }

  #future-of-logistics hr {
    margin: 40px 0 30px;
  }

  #future-of-logistics .future-of-logistics-icon-wrapper {
    width: 130px;
    height: 130px;
  }

  #future-of-logistics .future-of-logistics-text {
    width: calc(100% - 160px);
  }

  #future-of-logistics .future-of-logistics-icon-wrapper img {
    max-width: 80px;
  }
}

@media (max-width: 1299px) {
  #future-of-logistics .common-title {
    margin: 0 0 15px;
  }

  #future-of-logistics h4 {
    font-size: 28px;
    line-height: 40px;
  }

  #future-of-logistics hr {
    margin: 30px 0;
  }
}

@media (max-width: 1199px) {
  #future-of-logistics .common-title {
    margin: 0 0 10px;
  }

  #future-of-logistics .common-detail {
    padding: 0 120px;
    margin: 0 0 25px;
  }

  #future-of-logistics h4 {
    font-size: 26px;
    line-height: 28px;
    ;
  }

  #future-of-logistics p {
    font-size: 15px;
    line-height: 24px;
  }

  #future-of-logistics hr {
    margin: 25px 0;
  }

  #future-of-logistics .future-of-logistics-card-wrapper {
    gap: 25px;
  }

  #future-of-logistics .future-of-logistics-icon-wrapper {
    width: 100px;
    height: 100px;
  }

  #future-of-logistics .future-of-logistics-icon-wrapper img {
    max-width: 62px;
  }

  #future-of-logistics .future-of-logistics-text {
    width: calc(100% - 130px);
  }
}

@media (max-width: 991px) {
  #future-of-logistics {
    text-align: center;
  }

  #future-of-logistics .common-detail {
    padding: 0 60px;
    margin: 0 0 20px;
  }

  #future-of-logistics .future-of-logistics-img {
    margin: 0 0 15px;
  }

  #future-of-logistics .future-of-logistics-text {
    text-align: left;
  }

  #future-of-logistics h4 {
    font-size: 22px;
    line-height: 24px;
  }

  #future-of-logistics p {
    font-size: 14px;
  }

  #future-of-logistics hr {
    margin: 20px 0 25px;
  }
}

@media (max-width: 767px) {
  #future-of-logistics .common-detail {
    padding: 0;
  }

  #future-of-logistics .future-of-logistics-card {
    gap: 25px;
  }

  #future-of-logistics .future-of-logistics-icon-wrapper {
    width: 90px;
    height: 90px;
  }

  #future-of-logistics .future-of-logistics-icon-wrapper img {
    max-width: 55px;
  }

  #future-of-logistics .future-of-logistics-text {
    width: calc(100% - 115px);
  }
}

@media (max-width: 575px) {

  #future-of-logistics .future-of-logistics-card,
  #future-of-logistics .future-of-logistics-card-wrapper {
    gap: 20px;
  }

  #future-of-logistics .future-of-logistics-text {
    width: calc(100% - 110px);
  }
}

@media (max-width: 480px) {
  #future-of-logistics .future-of-logistics-card-wrapper {
    gap: 18px;
  }

  #future-of-logistics .common-title {
    margin: 0 0 8px;
  }

  #future-of-logistics .common-detail {
    margin: 0 0 15px;
  }

  #future-of-logistics .future-of-logistics-img {
    margin: 0 0 10px;
  }

  #future-of-logistics hr {
    margin: 15px 0 20px;
  }

  #future-of-logistics .future-of-logistics-card {
    gap: 10px;
    flex-direction: column;
    align-items: center;
  }

  #future-of-logistics .future-of-logistics-text {
    width: 100%;
    text-align: center;
  }

  #future-of-logistics h4 {
    margin: 0 0 8px;
  }
}

@media (max-width: 360px) {
  #future-of-logistics .future-of-logistics-card-wrapper {
    gap: 15px;
  }
}

/* ============================ FUTURE-OF-LOGISTICS SECTION END ============================ */
/* ============================ TEAM-CULTURE SECTION START ============================ */
#team-culture {
  padding: 100px 0 80px;
}

#team-culture .common-title {
  margin: 0 0 50px;
}

#team-culture #team-culture-img-wrapper {
  position: relative;
  margin: 0 0 40px;
}

#team-culture #team-culture-img-wrapper .team-culture-img {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  overflow: hidden;
}

#team-culture #team-culture-img-wrapper .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  margin: 0;
}

#team-culture #team-culture-img-wrapper .owl-nav button {
  position: absolute;
  width: 50px;
  height: 50px;
  background-color: #b12b2b !important;
  box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 16px;
  border-radius: 50% !important;
  -webkit-border-radius: 50% !important;
  -moz-border-radius: 50% !important;
  -ms-border-radius: 50% !important;
  -o-border-radius: 50% !important;
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

#team-culture #team-culture-img-wrapper .owl-nav button i {
  color: #fff;
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
}

#team-culture #team-culture-img-wrapper .owl-nav button.disabled {
  background-color: #fff !important;
  cursor: not-allowed;
  opacity: 1 !important;
  opacity: 1 !important;
  opacity: 1 !important;
}

#team-culture #team-culture-img-wrapper .owl-nav button.disabled i {
  color: #565969;
}

#team-culture #team-culture-img-wrapper .owl-nav button.owl-prev {
  position: absolute;
  left: 13%;
}

#team-culture #team-culture-img-wrapper .owl-nav button.owl-next {
  position: absolute;
  right: 13%;
}

#team-culture .team-culture-img {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  overflow: hidden;
}

#team-culture .team-culture-scroll-bar {
  position: relative;
  width: 100%;
  display: inline-block;
  vertical-align: top;
}

#team-culture .team-culture-scroll-bar-track,
#team-culture .team-culture-scroll-bar-thumb {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

#team-culture .team-culture-scroll-bar-track {
  width: 100%;
  height: 7px;
  background-color: rgba(44, 66, 152, 0.1);
}

#team-culture .team-culture-scroll-bar-thumb {
  height: 7px;
  background-color: #2C4298;
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
}

#team-culture #team-culture-img-wrapper {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  overflow: hidden;
  display: inline-block;
  position: relative;
  vertical-align: top;
}

#team-culture #team-culture-img-wrapper::before,
#team-culture #team-culture-img-wrapper::after {
  background: rgba(255, 255, 255, 0.7) none repeat scroll 0 0;
  content: "";
  height: 0;
  opacity: 1;
  position: absolute;
  width: 0;
}

#team-culture #team-culture-img-wrapper::before {
  right: 0;
  bottom: 0;
}

#team-culture #team-culture-img-wrapper::after {
  top: 0;
  left: 0;
}

@media (max-width: 1799px) {
  #team-culture #team-culture-img-wrapper .owl-nav button.owl-prev {
    left: 11%;
  }

  #team-culture #team-culture-img-wrapper .owl-nav button.owl-next {
    right: 11%;
  }
}

@media (max-width: 1699px) {
  #team-culture .common-title {
    margin: 0 0 40px;
  }

  #team-culture #team-culture-img-wrapper .owl-nav button.owl-prev {
    left: 9%;
  }

  #team-culture #team-culture-img-wrapper .owl-nav button.owl-next {
    right: 9%;
  }
}

@media (max-width: 1599px) {
  #team-culture #team-culture-img-wrapper .owl-nav button.owl-prev {
    left: 6%;
  }

  #team-culture #team-culture-img-wrapper .owl-nav button.owl-next {
    right: 6%;
  }
}

@media (max-width: 1399px) {
  #team-culture .common-title {
    margin: 0 0 35px;
  }

  #team-culture #team-culture-img-wrapper {
    margin: 0 0 30px;
  }

  #team-culture #team-culture-img-wrapper .owl-nav button.owl-prev {
    left: 10%;
  }

  #team-culture #team-culture-img-wrapper .owl-nav button.owl-next {
    right: 10%;
  }

  #team-culture .team-culture-scroll-bar-track,
  #team-culture .team-culture-scroll-bar-thumb {
    height: 5px;
  }
}

@media (max-width: 1299px) {
  #team-culture {
    padding: 80px 0 60px;
  }

  #team-culture #team-culture-img-wrapper .owl-nav button.owl-prev {
    left: 7%;
  }

  #team-culture #team-culture-img-wrapper .owl-nav button.owl-next {
    right: 7%;
  }
}

@media (max-width: 1199px) {
  #team-culture {
    padding: 60px 0 40px;
  }

  #team-culture .common-title {
    margin: 0 0 30px;
  }

  #team-culture #team-culture-img-wrapper {
    margin: 0 0 25px;
  }

  #team-culture #team-culture-img-wrapper .owl-nav button {
    width: 40px;
    height: 40px;
    font-size: 13px;
  }

  #team-culture #team-culture-img-wrapper .owl-nav button.owl-prev {
    left: 11%;
  }

  #team-culture #team-culture-img-wrapper .owl-nav button.owl-next {
    right: 11%;
  }
}

@media (max-width: 991px) {
  #team-culture {
    padding: 40px 0 20px;
  }

  #team-culture .common-title {
    margin: 0 0 20px;
  }

  #team-culture #team-culture-img-wrapper {
    margin: 0 0 18px;
  }

  #team-culture #team-culture-img-wrapper .owl-nav button.owl-prev {
    left: 15%;
  }

  #team-culture #team-culture-img-wrapper .owl-nav button.owl-next {
    right: 15%;
  }
}

@media (max-width: 575px) {

  #team-culture .common-title,
  #team-culture #team-culture-img-wrapper {
    margin: 0 0 15px;
  }

  #team-culture #team-culture-img-wrapper .owl-nav button.owl-prev {
    left: 15px;
  }

  #team-culture #team-culture-img-wrapper .owl-nav button.owl-next {
    right: 15px;
  }
}

@media (max-width: 480px) {
  #team-culture {
    padding: 30px 0 10px;
  }

  #team-culture .common-title {
    margin: 0 0 8px;
  }

  #team-culture #team-culture-img-wrapper {
    margin: 0 0 10px;
  }

  #team-culture .team-culture-scroll-bar-track,
  #team-culture .team-culture-scroll-bar-thumb {
    height: 3px;
  }

  #team-culture #team-culture-img-wrapper .owl-nav button {
    width: 35px;
    height: 35px;
    font-size: 12px;
  }
}

/* ============================ TEAM-CULTURE SECTION END ============================ */
/* ============================ HIRING SECTION END ============================ */
#hiring {
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0 120px;
}

#hiring .common-title {
  color: #fff;
  margin: 0;
  text-align: left;
}

#hiring .fields-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 30px;
  row-gap: 20px;
  margin: 50px 0;
}

#hiring .fields-wrapper .input-wrapper.jobTitle {
  grid-column: 1 / span 2;
}

#hiring .fields-wrapper label,
#hiring .fields-wrapper b,
#hiring .fields-wrapper #file-value {
  display: block;
  font: 500 16px/20px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #FFFFFF;
  margin: 0 0 5px;
}

#hiring .fields-wrapper #file-value {
  margin: 0;
}

#hiring .fields-wrapper .file-input-content b {
  font-weight: 600;
}

#hiring .fields-wrapper .file-input-content span {
  font: 500 14px/18px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #FFFFFF;
  margin: 0 0 15px;
  display: inline-block;
}

#hiring .fields-wrapper input,
#hiring .fields-wrapper textarea {
  width: 100%;
  padding: 14px 20px;
  border: 1px solid #FFFFFF;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  background-color: transparent;
  color: #FFF;
  caret-color: #FFF;
  font: 500 16px/20px "Plus Jakarta Sans", helvetica, sans-serif;
}

#hiring .fields-wrapper .file-input-content {
  padding: 22px;
  border: 1px dashed #FFFFFF;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  text-align: center;
}

#hiring .fields-wrapper .file-input-content .file-input-wrapper {
  position: relative;
  width: 128px;
  height: 40px;
  margin: 0 auto;
}

#hiring .fields-wrapper .file-input-content .file-input-wrapper input[type="file"] {
  opacity: 0;
  position: absolute;
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  cursor: pointer;
}

#hiring .fields-wrapper .file-input-content .file-input-wrapper .browse-file {
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  font: 500 14px/16px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #2C4298;
  background-color: #fff;
  border: 2px solid #fff;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

#hiring .fields-wrapper .file-input-content .file-input-wrapper:is(:hover) .browse-file {
  color: #fff;
  background-color: transparent;
}

#hiring .hiring-btn-wrapper {
  display: flex;
  justify-content: center;
}

#hiring .common-btn-2 {
  padding: 20px 92px;
  width: fit-content;
  background-color: #fff;
  border: 2px solid #fff;
  color: #2C4298;
}

#hiring .common-btn-2:is(:hover, :active, :focus) {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
}

@media (max-width: 1899px) {
  #hiring .fields-wrapper .file-input-content {
    padding: 15px;
  }
}

@media (max-width: 1499px) {
  #hiring {
    padding: 100px 0;
  }
}

@media (max-width: 1399px) {
  #hiring .fields-wrapper {
    margin: 30px 0;
  }
}

@media (max-width: 1299px) {
  #hiring {
    padding: 80px 0;
  }
}

@media (max-width: 1199px) {
  #hiring {
    padding: 60px 0;
  }
}

@media (max-width: 991px) {
  #hiring {
    padding: 40px 0;
  }
}

@media (max-width: 767px) {
  #hiring .fields-wrapper {
    column-gap: 20px;
    row-gap: 15px
  }

  #hiring .fields-wrapper .input-wrapper:nth-last-child(2),
  #hiring .fields-wrapper .input-wrapper:last-child {
    grid-column: 1 / span 2;
  }

  #hiring .fields-wrapper .file-input-content {
    padding: 20px;
  }

  #hiring .fields-wrapper {
    margin: 25px 0;
  }

  #hiring .common-btn-2 {
    padding: 18px 60px;
  }
}

@media (max-width: 575px) {

  #hiring .fields-wrapper label,
  #hiring .fields-wrapper b,
  #hiring .fields-wrapper #file-value {
    font-size: 15px;
    line-height: 18px;
  }

  #hiring .common-btn-2 {
    padding: 16px 50px;
  }
}

@media (max-width: 480px) {
  #hiring {
    padding: 30px 0;
  }

  #hiring .fields-wrapper {
    grid-template-columns: repeat(1, 1fr);
    margin: 20px 0;
  }

  #hiring .fields-wrapper .input-wrapper.jobTitle,
  #hiring .fields-wrapper .input-wrapper:nth-last-child(2),
  #hiring .fields-wrapper .input-wrapper:last-child {
    grid-column: 1;
  }
}

/* ============================ HIRING SECTION END ============================ */
/* ============================ MEET-OUR-TEAM SECTION START ============================ */
#meet-our-team .team-card-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

#meet-our-team .team-card-wrapper .team-card {
  background-color: #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 30px 40px;
  text-align: center;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

#meet-our-team .team-card-wrapper .default-card {
  box-shadow: none;
  background-color: transparent;
  border: 2px dashed #D6D6D6;
}

#meet-our-team .team-card-wrapper .team-card .team-img-wrapper {
  border: 1px solid #D6D6D6;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  padding: 15px;
  position: relative;
}

#meet-our-team .team-card-wrapper .team-card .team-img-wrapper a {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 58px;
  height: 58px;
  border: 5px solid #fff;
  color: #fff;
  background-color: #2C4298;
  z-index: 2;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#meet-our-team .team-card-wrapper .team-card .team-img-wrapper a i {
  font-size: 20px;
}

#meet-our-team .team-card-wrapper .team-card h6 {
  font: 600 20px/28px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #080C24;
  margin: 30px 0 10px;
}

#meet-our-team .team-card-wrapper .team-card p {
  font: 500 16px/28px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #565969;
}

#meet-our-team .team-card-wrapper .team-card.default-card .team-img-wrapper {
  margin: 0 0 30px;
}

#meet-our-team .team-card-wrapper .team-card .common-btn {
  background-color: #b12b2b;
  border: 2px solid #b12b2b;
  margin: 0 auto;
}

#meet-our-team .team-card-wrapper .team-card .common-btn:is(:hover, :active, :focus) {
  background-color: transparent;
  color: #b12b2b;
}

@media (max-width: 1399px) {
  #meet-our-team .team-card-wrapper .team-card {
    padding: 25px 30px;
  }
}

@media (max-width: 1199px) {
  #meet-our-team .team-card-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }

  #meet-our-team .team-card-wrapper .team-card h6 {
    line-height: 24px;
    margin: 22px 0 10px;
  }

  #meet-our-team .team-card-wrapper .team-card p {
    font-size: 16px;
    line-height: 26px;
  }

  #meet-our-team .team-card-wrapper .team-card .team-img-wrapper {
    width: 210px;
    height: 210px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }

  #meet-our-team .team-card-wrapper .team-card.default-card .team-img-wrapper {
    margin: 0 auto 25px;
  }

  #meet-our-team .team-card-wrapper .team-card .team-img-wrapper img {
    max-width: 180px;
    max-height: 180px;
  }

  #meet-our-team .team-card-wrapper .team-card .team-img-wrapper a {
    width: 55px;
    height: 55px;
  }
}

@media (max-width: 991px) {
  #meet-our-team .team-card-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 767px) {
  #meet-our-team .team-card-wrapper .team-card .team-img-wrapper img {
    max-width: 150px;
    max-height: 150px;
  }

  #meet-our-team .team-card-wrapper .team-card .team-img-wrapper {
    width: 175px;
    height: 175px;
  }

  #meet-our-team .team-card-wrapper .team-card .team-img-wrapper a {
    right: 0;
    bottom: 0;
    width: 52px;
    height: 52px;
  }

  #meet-our-team .team-card-wrapper .team-card .team-img-wrapper a i {
    font-size: 16px;
  }

  #meet-our-team .team-card-wrapper .team-card {
    padding: 25px;
  }
}

@media (max-width: 575px) {
  #meet-our-team .team-card-wrapper .team-card {
    padding: 25px 15px;
  }

  #meet-our-team .team-card-wrapper .team-card .team-img-wrapper {
    width: 140px;
    height: 140px;
  }

  #meet-our-team .team-card-wrapper .team-card .team-img-wrapper img {
    max-width: 120px;
    max-height: 120px;
  }

  #meet-our-team .team-card-wrapper .team-card h6 {
    font-size: 18px;
    margin: 15px 0 6px;
  }

  #meet-our-team .team-card-wrapper .team-card p {
    font-size: 15px;
    line-height: 26px;
  }

  #meet-our-team .team-card-wrapper {
    gap: 20px;
  }

  #meet-our-team .team-card-wrapper .team-card .team-img-wrapper a {
    width: 48px;
    height: 48px;
  }

  #meet-our-team .team-card-wrapper .team-card .team-img-wrapper a i {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  #meet-our-team .team-card-wrapper {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
  }

  #meet-our-team .team-card-wrapper .team-card.default-card .team-img-wrapper {
    margin: 0 auto 20px;
  }
}

/* ============================ MEET-OUR-TEAM SECTION END ============================ */
/* ======================================================================================================== */
/* ============================ ABOUT-US PAGE ============================ */
/* ======================================================================================================== */
/* ============================ WHY-CHOOSE-ALCS SECTION START ============================ */
/* #why-choose-alcs {
  overflow: hidden;
}

#why-choose-alcs .common-title {
  margin: 0 0 25px;
}

#why-choose-alcs .alcs-card {
  background-color: #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 20px 15px;
  text-align: center;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

#why-choose-alcs .alcs-card .alcs-icon-wrapper {
  width: 100px;
  height: 100px;
  background-color: #2C4298;
  margin: 0 auto;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#why-choose-alcs .alcs-card h6 {
  font: 600 16px/20px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #080C24;
  margin: 15px 0 10px;
}

#why-choose-alcs .alcs-card p {
  font: 400 16px/24px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #565969;
  min-height: 120px;
  margin: 0;
}

@media (max-width: 1499px) {
  #why-choose-alcs .alcs-card p {
    min-height: 144px;
  }
}

@media (max-width: 1399px) {
  #why-choose-alcs .alcs-card p {
    font-size: 15px;
    line-height: 22px;
    min-height: 132px;
  }
}

@media (max-width: 1199px) {
  #why-choose-alcs .alcs-card p {
    min-height: 176px;
  }
}

@media (max-width: 991px) {
  #why-choose-alcs .common-title {
    margin: 0 0 20px;
  }

  #why-choose-alcs .alcs-card p {
    min-height: 154px;
  }

  #why-choose-alcs .alcs-card-wrapper {
    justify-content: center;
  }

  #why-choose-alcs .alcs-card {
    margin: 0 0 20px;
  }

  #why-choose-alcs .alcs-card-col:last-child .alcs-card {
    margin: 0;
  }
}

@media (max-width: 767px) {
  #why-choose-alcs .common-title {
    margin: 0 0 20px;
  }

  #why-choose-alcs .alcs-card p {
    min-height: auto;
  }

  #why-choose-alcs .alcs-card-wrapper {
    justify-content: center;
  }

  #why-choose-alcs .alcs-card {
    margin: 0 0 20px;
  }

  #why-choose-alcs .alcs-card-col:last-child .alcs-card {
    margin: 0;
  }
}

@media (max-width: 480px) {
  #why-choose-alcs .common-title {
    margin: 0 0 12px;
  }

  #why-choose-alcs .alcs-card {
    margin: 0 0 15px;
  }

  #why-choose-alcs .alcs-card .alcs-icon-wrapper {
    width: 90px;
    height: 90px;
  }

  #why-choose-alcs .alcs-card .alcs-icon-wrapper img {
    max-width: 35px;
  }

  #why-choose-alcs .alcs-card h6 {
    margin: 12px 0 8px;
  }
}

@media (max-width: 360px) {
  #why-choose-alcs .alcs-card .alcs-icon-wrapper {
    width: 80px;
    height: 80px;
  }

  #why-choose-alcs .alcs-card .alcs-icon-wrapper img {
    max-width: 30px;
  }

  #why-choose-alcs .alcs-card h6 {
    margin: 10px 0 8px;
  }
} */

/* ============================ WHY-CHOOSE-ALCS SECTION END ============================ */
/* ======================================================================================================== */
/* ============================ FRANCHISEE PAGE ============================ */
/* ======================================================================================================== */
/* ============================ FRANCHISE-PARTNER SECTION START ============================ */
#franchise-partner .franchise-partner-bg {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  align-items: center;
  background-color: #2C4298;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  overflow: hidden;
}

#franchise-partner .franchise-partner-bg .franchise-partner-text {
  padding: 0 0 0 60px;
}

#franchise-partner .franchise-partner-bg .franchise-partner-text .common-title {
  text-align: left;
  line-height: 56px;
  color: #fff;
  margin: 0 0 30px;
}

#franchise-partner .franchise-partner-bg .franchise-partner-text p {
  font: 600 18px/22px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #fff;
}

#franchise-partner .franchise-partner-bg .franchise-partner-img-wrapper {
  overflow: hidden;
  display: inline-block;
}

#franchise-partner .franchise-partner-bg .franchise-partner-img-wrapper img {
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
}

#franchise-partner .franchise-partner-bg:hover .franchise-partner-img-wrapper img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}

@media (max-width: 1299px) {
  #franchise-partner .franchise-partner-bg .franchise-partner-text .common-title {
    line-height: 46px;
  }

  #franchise-partner .franchise-partner-bg .franchise-partner-text p {
    font-size: 16px;
  }
}

@media (max-width: 1199px) {
  #franchise-partner .franchise-partner-bg .franchise-partner-text {
    padding: 0 0 0 50px;
  }

  #franchise-partner .franchise-partner-bg .franchise-partner-text .common-title {
    margin: 0 0 20px;
  }
}

@media (max-width: 991px) {
  #franchise-partner .franchise-partner-bg {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }

  #franchise-partner .franchise-partner-bg .franchise-partner-text {
    padding: 0 40px 40px;
    text-align: center;
  }

  #franchise-partner .franchise-partner-bg .franchise-partner-text .common-title {
    line-height: 40px;
    text-align: center;
    margin: 0 0 18px;
  }
}

@media (max-width: 767px) {
  #franchise-partner .franchise-partner-bg .franchise-partner-text {
    padding: 0 30px 30px;
  }

  #franchise-partner .franchise-partner-bg .franchise-partner-text .common-title {
    line-height: 36px;
    margin: 0 0 15px;
  }
}

@media (max-width: 575px) {
  #franchise-partner .franchise-partner-bg .franchise-partner-text p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  #franchise-partner .franchise-partner-bg {
    gap: 15px;
  }

  #franchise-partner .franchise-partner-bg .franchise-partner-text {
    padding: 0 20px 20px;
  }

  #franchise-partner .franchise-partner-bg .franchise-partner-text .common-title {
    line-height: 30px;
    margin: 0 0 10px;
  }

  #franchise-partner .franchise-partner-bg .franchise-partner-text p {
    font-size: 14px;
  }
}

/* ============================ FRANCHISE-PARTNER SECTION END ============================ */
/* ============================ BECOME-FRANCHISEE, BECOME-BUSINESS-AGENT SECTION START ============================ */
#become-franchisee .become-franchisee-wrapper,
#become-business-agent .become-business-agent-wrapper,
#become-franchisee .become-franchisee-wrapper .become-franchisee-inner-detail,
#become-business-agent .become-business-agent-wrapper .become-business-agent-inner-detail {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

#become-franchisee .become-franchisee-wrapper,
#become-business-agent .become-business-agent-wrapper {
  align-items: center;
}

#become-franchisee .become-franchisee-wrapper .common-title,
#become-business-agent .become-business-agent-wrapper .common-title {
  text-align: left;
  margin: 0 0 20px;
}

#become-franchisee .become-franchisee-wrapper hr,
#become-business-agent .become-business-agent-wrapper hr {
  border-top: 1px solid #d6d6d6;
  opacity: 1;
  margin: 35px 0 28px;
}

#become-franchisee .become-franchisee-wrapper .become-franchisee-img-wrapper,
#become-business-agent .become-business-agent-wrapper .become-business-agent-img-wrapper {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  overflow: hidden;
  display: inline-block;
  position: relative;
}

#become-franchisee .become-franchisee-wrapper .become-franchisee-img-wrapper::before,
#become-business-agent .become-business-agent-wrapper .become-business-agent-img-wrapper::before,
#become-franchisee .become-franchisee-wrapper .become-franchisee-img-wrapper::after,
#become-business-agent .become-business-agent-wrapper .become-business-agent-img-wrapper::after {
  background: rgba(255, 255, 255, 0.7) none repeat scroll 0 0;
  content: "";
  opacity: 1;
  position: absolute;
  height: 0;
  width: 0;
}

#become-franchisee .become-franchisee-wrapper .become-franchisee-img-wrapper::before,
#become-business-agent .become-business-agent-wrapper .become-business-agent-img-wrapper::before {
  bottom: 0;
  right: 0;
}

#become-franchisee .become-franchisee-wrapper .become-franchisee-img-wrapper::after,
#become-business-agent .become-business-agent-wrapper .become-business-agent-img-wrapper::after {
  left: 0;
  top: 0;
}

#become-franchisee:hover .become-franchisee-wrapper .become-franchisee-img-wrapper::before,
#become-business-agent:hover .become-business-agent-wrapper .become-business-agent-img-wrapper::before,
#become-franchisee:hover .become-franchisee-wrapper .become-franchisee-img-wrapper::after,
#become-business-agent:hover .become-business-agent-wrapper .become-business-agent-img-wrapper::after {
  height: 100%;
  width: 100%;
  opacity: 0;
  transition-duration: 1.3s;
}

#become-franchisee .become-franchisee-wrapper .become-franchisee-inner-detail,
#become-business-agent .become-business-agent-wrapper .become-business-agent-inner-detail {
  margin: 0 0 35px;
}

#become-franchisee .become-franchisee-wrapper .common-btn,
#become-business-agent .become-business-agent-wrapper .common-btn {
  padding: 13px 35px;
}

#become-franchisee .become-franchisee-wrapper .common-btn {
  background-color: #2C4298;
  border: 2px solid #2C4298;
}

#become-franchisee .become-franchisee-wrapper .common-btn:is(:hover, :active, :focus) {
  background-color: transparent;
  color: #b12b2b;
}

#become-business-agent .become-business-agent-wrapper .common-btn {
  background-color: #fff;
  border: 2px solid #fff;
  color: #2C4298;
}

#become-business-agent .become-business-agent-wrapper .common-btn:is(:hover, :active, :focus) {
  background-color: transparent;
  color: #fff;
}

#become-business-agent .become-business-agent-wrapper .common-title,
#become-business-agent .become-business-agent-wrapper .common-desc,
#become-business-agent .alcs-detail h4,
#become-business-agent .alcs-detail ul li,
#become-business-agent .alcs-detail ul li::before {
  color: #fff;
}

@media (max-width: 1299px) {

  #become-franchisee .become-franchisee-wrapper hr,
  #become-business-agent .become-business-agent-wrapper hr {
    margin: 30px 0 25px;
  }

  #become-franchisee .become-franchisee-wrapper .become-franchisee-inner-detail,
  #become-business-agent .become-business-agent-wrapper .become-business-agent-inner-detail {
    margin: 0 0 30px;
  }
}

@media (max-width: 1199px) {

  #become-franchisee .become-franchisee-wrapper hr,
  #become-business-agent .become-business-agent-wrapper hr {
    margin: 20px 0 15px;
  }
}

@media (max-width: 991px) {

  #become-franchisee .become-franchisee-wrapper,
  #become-business-agent .become-business-agent-wrapper {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }

  #become-franchisee .become-franchisee-wrapper .common-title,
  #become-business-agent .become-business-agent-wrapper .common-title {
    margin: 0 0 15px;
  }

  #become-franchisee .become-franchisee-wrapper .become-franchisee-inner-detail,
  #become-business-agent .become-business-agent-wrapper .become-business-agent-inner-detail {
    margin: 0 0 25px;
  }

  #become-franchisee .become-franchisee-wrapper hr,
  #become-business-agent .become-business-agent-wrapper hr {
    margin: 20px 0 15px;
  }
}

@media (max-width: 575px) {

  #become-franchisee .become-franchisee-wrapper .common-title,
  #become-business-agent .become-business-agent-wrapper .common-title {
    margin: 0 0 10px;
  }

  #become-franchisee .become-franchisee-wrapper hr,
  #become-business-agent .become-business-agent-wrapper hr {
    margin: 15px 0;
  }

  #become-franchisee .become-franchisee-wrapper .alcs-detail h4,
  #become-business-agent .become-business-agent-wrapper .alcs-detail h4 {
    margin: 0 0 8px;
  }

  #become-franchisee .become-franchisee-wrapper .alcs-detail ul li,
  #become-business-agent .become-business-agent-wrapper .alcs-detail ul li {
    margin: 0 0 8px;
  }

  #become-franchisee .become-franchisee-wrapper .alcs-detail ul li:last-child,
  #become-business-agent .become-business-agent-wrapper .alcs-detail ul li:last-child {
    margin: 0;
  }

  #become-franchisee .become-franchisee-wrapper .become-franchisee-inner-detail,
  #become-business-agent .become-business-agent-wrapper .become-business-agent-inner-detail {
    margin: 0 0 15px;
  }

  #become-franchisee .become-franchisee-wrapper,
  #become-business-agent .become-business-agent-wrapper,
  #become-franchisee .become-franchisee-wrapper .become-franchisee-inner-detail,
  #become-business-agent .become-business-agent-wrapper .become-business-agent-inner-detail {
    gap: 20px;
  }
}

@media (max-width: 480px) {

  #become-franchisee .become-franchisee-wrapper,
  #become-business-agent .become-business-agent-wrapper {
    gap: 15px;
  }

  #become-franchisee .become-franchisee-wrapper .alcs-detail h4,
  #become-business-agent .become-business-agent-wrapper .alcs-detail h4 {
    font-size: 18px;
    line-height: 26px;
    margin: 0 0 10px;
  }

  #become-franchisee .become-franchisee-wrapper .common-btn,
  #become-business-agent .become-business-agent-wrapper .common-btn {
    font-size: 13px;
    line-height: 15px;
    padding: 13px 18px;
  }

  #become-franchisee .become-franchisee-wrapper .become-franchisee-inner-detail,
  #become-business-agent .become-business-agent-wrapper .become-business-agent-inner-detail {
    grid-template-columns: repeat(1, 1fr);
    gap: 8px;
  }

  #become-franchisee .become-franchisee-wrapper hr,
  #become-business-agent .become-business-agent-wrapper hr {
    margin: 12px 0;
  }
}

/* ============================ BECOME-FRANCHISEE, BECOME-BUSINESS-AGENT SECTION END ============================ */
/* ============================ FRANCHISEE-MODAL SECTION START ============================ */
#franchisee .modal {
  background: rgba(83, 83, 83, 0.3);
  backdrop-filter: blur(10px);
  text-align: center;
  --bs-modal-width: 1180px;
  --bs-modal-border-radius: 10px;
  transition: 400ms ease-in-out;
  -webkit-transition: 400ms ease-in-out;
  -moz-transition: 400ms ease-in-out;
  -ms-transition: 400ms ease-in-out;
  -o-transition: 400ms ease-in-out;
}

#franchisee .modal .modal-content {
  padding: 30px 50px;
}

#franchisee .modal #exampleModalLabel {
  font: 600 32px/34px "Plus Jakarta Sans", helvetica, sans-serif !important;
  color: #080C24;
}

#franchisee .modal .modal-header,
#franchisee .modal .modal-body,
#franchisee .modal .modal-footer {
  padding: 0;
}

#franchisee .modal .modal-header .btn-close {
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
}

#franchisee .modal .modal-header .btn-close:hover {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}

#franchisee .modal .modal-header {
  border-bottom: 1px solid #D6D6D6;
  padding: 0 0 30px;
}

#franchisee .modal .modal-footer {
  border-top: none;
  justify-content: center;
  gap: 30px;
}

#franchisee .modal .modal-body {
  text-align: left;
  padding: 30px 0;
}

#franchisee .modal .modal-body .input-wrapper label {
  font: 500 16px/18px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #565969;
  margin: 0 0 5px;
  display: block;
}

#franchisee .modal .modal-body .input-wrapper input,
#franchisee .modal .modal-body .input-wrapper textarea {
  width: 100%;
  resize: none;
  padding: 15px 20px;
  font: 500 18px/22px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #080c24;
  border: 1px solid #d6d6d6;
}

#franchisee .modal .modal-body .input-wrapper input {
  margin: 0 0 20px;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}

#franchisee .modal .modal-body .input-wrapper textarea {
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

#franchisee .modal .modal-footer button {
  padding: 19px 60px;
  margin: 0;
}

#franchisee .modal .modal-footer #resetButton {
  background-color: transparent;
  border: 2px solid #2C4298;
  color: #2C4298;
}

#franchisee .modal .modal-footer #resetButton:hover {
  background-color: #2C4298;
  color: #fff;
}

#franchisee .modal .modal-footer button[type="submit"] {
  background-color: #2C4298;
  border: 2px solid #2C4298;
  color: #fff;
}

#franchisee .modal .modal-footer button[type="submit"]:hover {
  background-color: transparent;
  color: #2C4298;
}

@media (max-width: 1399px) {
  #franchisee .modal #exampleModalLabel {
    font-size: 30px !important;
    line-height: 32px !important;
  }
}

@media (max-width: 1299px) {
  #franchisee .modal {
    --bs-modal-width: 1100px;
  }
}

@media (max-width: 1199px) {
  #franchisee .modal {
    --bs-modal-width: 950px;
  }

  #franchisee .modal #exampleModalLabel {
    font-size: 28px !important;
    line-height: 30px !important;
  }
}

@media (max-width: 991px) {
  #franchisee .modal {
    --bs-modal-width: 700px;
  }

  #franchisee .modal .modal-content {
    padding: 30px;
  }

  #franchisee .modal .modal-header {
    padding: 0 0 20px;
  }

  #franchisee .modal .modal-footer {
    gap: 20px;
  }

  #franchisee .modal .modal-body {
    padding: 20px 0;
  }

  #franchisee .modal .modal-footer button {
    padding: 15px 50px;
  }

  #franchisee .modal #exampleModalLabel {
    font-size: 26px !important;
    line-height: 28px !important;
  }
}

@media (max-width: 767px) {
  #franchisee .modal {
    --bs-modal-width: 520px;
  }

  #franchisee .modal .modal-content {
    padding: 20px 30px;
  }

  #franchisee .modal .modal-footer {
    gap: 15px;
  }

  #franchisee .modal .modal-body .input-wrapper input {
    margin: 0 0 15px;
  }

  #franchisee .modal .modal-header {
    padding: 0 0 15px;
  }

  #franchisee .modal .modal-body {
    padding: 15px 0;
  }

  #franchisee .modal .modal-body .input-wrapper label {
    font-size: 14px;
    line-height: 16px;
  }

  #franchisee .modal .modal-body .input-wrapper input,
  #franchisee .modal .modal-body .input-wrapper textarea {
    padding: 13px 20px;
    font-size: 16px;
    line-height: 18px;
  }

  #franchisee .modal #exampleModalLabel {
    font-size: 24px !important;
    line-height: 26px !important;
  }
}

@media (max-width: 575px) {
  #franchisee .modal {
    --bs-modal-width: 100%;
  }
}

@media (max-width: 480px) {
  #franchisee .modal .modal-content {
    padding: 20px;
  }

  #franchisee .modal #exampleModalLabel {
    font-size: 20px !important;
    line-height: 22px !important;
    text-align: left;
  }

  #franchisee .modal .modal-header .btn-close {
    font-size: 12px;
    list-style: 14px;
  }

  #franchisee .modal .modal-footer button {
    padding: 13px 45px;
  }

  #franchisee .modal .modal-body .input-wrapper input {
    margin: 0 0 12px;
  }
}

@media (max-width: 360px) {
  #franchisee .modal #exampleModalLabel {
    font-size: 18px !important;
    line-height: 20px !important;
  }

  #franchisee .modal .modal-footer {
    gap: 10px;
  }

  #franchisee .modal .modal-footer button {
    padding: 12px 35px;
  }

  #franchisee .modal .modal-body .input-wrapper input {
    margin: 0 0 10px;
  }
}

/* ============================ FRANCHISEE-MODAL SECTION END ============================ */
/* ======================================================================================================== */
/* ============================ EXPORT-SERVICE PAGE ============================ */
/* ======================================================================================================== */
/* ============================ EXPORT-SERVICE-CARD SECTION START ============================ */
#exportService .export-service-card-wrapper {
  margin: 50px 0 100px;
}

#exportService .export-service-card-wrapper .export-service-card-row {
  justify-content: center;
}

#exportService .export-service-card-wrapper .export-service-card {
  background-color: #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 20px 15px 30px;
  text-align: center;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  margin: 0 0 30px;
}

#exportService .export-service-card-wrapper .export-service-card-col:nth-last-child(2) .export-service-card,
#exportService .export-service-card-wrapper .export-service-card-col:last-child .export-service-card {
  margin: 0;
}

#exportService .export-service-card-wrapper .export-service-card .export-service-icon-wrapper {
  width: 100px;
  height: 100px;
  background-color: #2C4298;
  margin: 0 auto;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#exportService .export-service-card-wrapper .export-service-card h6 {
  font: 600 16px/20px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #080C24;
  margin: 15px 0 10px;
}

#exportService .export-service-card-wrapper .export-service-card p {
  font: 400 16px/22px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #565969;
  margin: 0;
  min-height: 110px;
}

#exportService .alcs-inner-detail .common-title,
#exportService #benefits-of-exports .common-title {
  margin: 0 0 20px;
}

#exportService .common-desc {
  color: #080C24;
  width: 50%;
  margin: 0 auto;
  text-align: center;
}

@media (max-width: 1499px) {
  #exportService .export-service-card-wrapper {
    margin: 40px 0 100px;
  }
}

@media (max-width: 1399px) {
  #exportService .export-service-card-wrapper {
    margin: 30px 0 100px;
  }

  #exportService .export-service-card-wrapper .export-service-card p {
    min-height: 132px;
  }

  #exportService .alcs-inner-detail .common-title,
  #exportService #benefits-of-exports .common-title {
    margin: 0 0 20px;
  }

  #exportService .common-desc {
    font-size: 16px;
  }
}

@media (max-width: 1299px) {
  #exportService .export-service-card-wrapper {
    margin: 30px 0 80px;
  }
}

@media (max-width: 1199px) {
  #exportService .export-service-card-wrapper {
    margin: 30px 0 60px;
  }

  #exportService .export-service-card-wrapper .export-service-card p {
    min-height: 154px;
  }

  #exportService .alcs-inner-detail .common-title,
  #exportService #benefits-of-exports .common-title {
    margin: 0 0 15px;
  }
}

@media (max-width: 991px) {
  #exportService .export-service-card-wrapper {
    margin: 30px 0 40px;
  }

  #exportService .export-service-card-wrapper .export-service-card p {
    min-height: 132px;
  }

  #exportService .alcs-inner-detail .common-title,
  #exportService #benefits-of-exports .common-title {
    margin: 0 0 10px;
  }

  #exportService .common-desc {
    width: 70%;
  }
}

@media (max-width: 767px) {

  #exportService .export-service-card-wrapper .export-service-card,
  #exportService .export-service-card-wrapper .export-service-card-col:nth-last-child(2) .export-service-card {
    margin: 0 0 25px;
  }

  #exportService .export-service-card-wrapper .export-service-card p {
    min-height: auto;
  }

  #exportService .common-desc {
    width: 80%;
  }
}

@media (max-width: 575px) {
  #exportService .export-service-card-wrapper {
    margin: 25px 0 40px;
  }

  #exportService .export-service-card-wrapper .export-service-card .export-service-icon-wrapper {
    width: 85px;
    height: 85px;
  }

  #exportService .export-service-card-wrapper .export-service-card .export-service-icon-wrapper img {
    max-width: 42px;
  }

  #exportService .common-desc {
    width: 90%;
    font-size: 15px;
  }

  #exportService .export-service-card-wrapper .export-service-card,
  #exportService .export-service-card-wrapper .export-service-card-col:nth-last-child(2) .export-service-card {
    margin: 0 0 25px;
  }

  #exportService .export-service-card-wrapper .export-service-card p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  #exportService .export-service-card-wrapper {
    margin: 20px 0 30px;
  }

  #exportService .export-service-card-wrapper .export-service-card,
  #exportService .export-service-card-wrapper .export-service-card-col:nth-last-child(2) .export-service-card {
    margin: 0 0 15px;
  }

  #exportService .export-service-card-wrapper .export-service-card h6 {
    margin: 12px 0 8px;
  }

  #exportService .export-service-card-wrapper .export-service-card p {
    font-size: 14px;
  }

  #exportService .alcs-inner-detail .common-title,
  #exportService #benefits-of-exports .common-title {
    margin: 0 0 5px;
  }

  #exportService .common-desc {
    width: 100%;
  }
}

/* ============================ EXPORT-SERVICE-CARD SECTION END ============================ */
/* ============================ EXPORT-SHIPMENT-DETAIL SECTION START ============================ */
#export-shipment-detail {
  margin: 30px 0 0;
}

#export-shipment-detail .export-shipment-cards-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

#export-shipment-detail .export-shipment-cards-wrapper .export-shipment-card {
  background-color: #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 20px;
  text-align: center;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  position: relative;
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
}

#export-shipment-detail .export-shipment-cards-wrapper .export-shipment-card:hover {
  background-color: #e7ebfd;
  cursor: pointer;
}

#export-shipment-detail .export-shipment-cards-wrapper .export-shipment-card .export-shipment-icon-wrapper {
  width: 55px;
  height: 55px;
  background-color: #2C4298;
  margin: 0 auto;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#export-shipment-detail .export-shipment-cards-wrapper .export-shipment-card .export-shipment-icon-wrapper img {
  max-width: 20px;
}

#export-shipment-detail .export-shipment-cards-wrapper .export-shipment-card h6 {
  font: 600 16px/20px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #080C24;
  word-wrap: anywhere;
}

#exportService .tooltip {
  --bs-tooltip-opacity: 1 !important;
}

#exportService .tooltip-inner {
  font: 500 16px/28px "Plus Jakarta Sans", helvetica, sans-serif;
  text-align: center;
  background-color: #fff;
  color: #565969;
  padding: 20px;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  max-width: calc(100% - 500px) !important;
  transform: translateX(250px);
  -webkit-transform: translateX(250px);
  -moz-transform: translateX(250px);
  -ms-transform: translateX(250px);
  -o-transform: translateX(250px);
}

#exportService .bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow::before,
#exportService .bs-tooltip-top .tooltip-arrow::before {
  border-top-color: #c5c5c5;
  width: 15px !important;
  height: 15px !important;
}

#exportService .bs-tooltip-auto[data-popper-placement^="bottom"] .tooltip-arrow::before,
#exportService .bs-tooltip-bottom .tooltip-arrow::before {
  border-bottom-color: #c5c5c5;
  width: 15px !important;
  height: 15px !important;
}

#exportService .bs-tooltip-auto[data-popper-placement^="left"] .tooltip-arrow::before,
#exportService .bs-tooltip-left .tooltip-arrow::before {
  border-left-color: #c5c5c5;
  width: 15px !important;
  height: 15px !important;
}

#exportService .bs-tooltip-auto[data-popper-placement^="right"] .tooltip-arrow::before,
#exportService .bs-tooltip-right .tooltip-arrow::before {
  border-right-color: #c5c5c5;
  width: 15px !important;
  height: 15px !important;
}

@media (max-width: 1799px) {
  #exportService .tooltip-inner {
    max-width: calc(100% - 300px) !important;
    transform: translateX(150px);
    -webkit-transform: translateX(150px);
    -moz-transform: translateX(150px);
    -ms-transform: translateX(150px);
    -o-transform: translateX(150px);
  }
}

@media (max-width: 1599px) {
  #exportService .tooltip-inner {
    max-width: calc(100% - 100px) !important;
    transform: translateX(50px);
    -webkit-transform: translateX(50px);
    -moz-transform: translateX(50px);
    -ms-transform: translateX(50px);
    -o-transform: translateX(50px);
  }
}

@media (max-width: 1399px) {
  #export-shipment-detail .export-shipment-cards-wrapper .export-shipment-card h6 {
    font-size: 15px;
  }

  #exportService .tooltip-inner {
    font-size: 15px;
    line-height: 26px;
    padding: 15px;
  }
}

@media (max-width: 991px) {
  #export-shipment-detail {
    margin: 20px 0 0;
  }

  #export-shipment-detail .export-shipment-cards-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }

  #exportService .tooltip-inner {
    font-size: 14px;
    line-height: 24px;
  }
}

@media (max-width: 767px) {
  #export-shipment-detail .export-shipment-cards-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 575px) {
  #exportService .tooltip-inner {
    max-width: calc(100% - 30px) !important;
    transform: translateX(15px);
    -webkit-transform: translateX(15px);
    -moz-transform: translateX(15px);
    -ms-transform: translateX(15px);
    -o-transform: translateX(15px);
  }
}

@media (max-width: 480px) {
  #export-shipment-detail {
    margin: 15px 0 0;
  }

  #export-shipment-detail .export-shipment-cards-wrapper {
    gap: 20px;
  }

  #export-shipment-detail .export-shipment-cards-wrapper .export-shipment-card {
    padding: 15px 10px;
  }

  #exportService .tooltip-inner {
    font-size: 13px;
    line-height: 22px;
    padding: 10px;
  }
}

@media (max-width: 360px) {
  #export-shipment-detail .export-shipment-cards-wrapper {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
  }
}

/* ============================ EXPORT-SHIPMENT-DETAIL SECTION END ============================ */
/* ============================ BENEFITS-OF-EXPORTS SECTION START ============================ */
#benefits-of-exports .common-title,
#benefits-of-exports .common-desc,
#benefits-of-exports .benefits-of-exports-bottom h4,
#benefits-of-exports .benefits-of-exports-bottom p {
  color: #fff;
}

#benefits-of-exports .benefits-of-exports-card-wrapper {
  margin: 45px 0 60px;
}

#benefits-of-exports .benefits-of-exports-card-wrapper .benefits-of-exports-row {
  justify-content: center;
}

#benefits-of-exports .benefits-of-exports-col {
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  margin: 0 0 50px;
}

#benefits-of-exports .benefits-of-exports-col:nth-child(4n+0),
#benefits-of-exports .benefits-of-exports-col:last-child {
  border-right: none;
}

#benefits-of-exports .benefits-of-exports-col:nth-last-child(-n+3) {
  margin: 0;
}

#benefits-of-exports .benefits-of-exports-col .benefits-of-exports-card .card-count {
  font: 800 32px/34px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #fff;
  opacity: 0.5;
}

#benefits-of-exports .benefits-of-exports-col .benefits-of-exports-card h5 {
  font: 600 24px/30px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #fff;
  margin: 25px 0 15px;
}

#benefits-of-exports .benefits-of-exports-col .benefits-of-exports-card p {
  font: 500 16px/28px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #fff;
}

#benefits-of-exports .benefits-of-exports-bottom h4 {
  margin: 0 0 15px;
}

#benefits-of-exports .benefits-of-exports-bottom p {
  margin: 0;
}

@media (max-width: 1399px) {
  #benefits-of-exports .benefits-of-exports-col .benefits-of-exports-card h5 {
    font-size: 22px;
    line-height: 28px;
  }
}

@media (max-width: 1299px) {
  #benefits-of-exports .benefits-of-exports-col .benefits-of-exports-card h5 {
    margin: 22px 0 12px;
  }
}

@media (max-width: 1199px) {
  #benefits-of-exports .benefits-of-exports-card-wrapper {
    margin: 45px 0 50px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  #benefits-of-exports .benefits-of-exports-col .benefits-of-exports-card h5 {
    font-size: 18px;
    line-height: 22px;
  }

  #benefits-of-exports .benefits-of-exports-col .benefits-of-exports-card p {
    font-size: 15px;
    line-height: 26px;
  }
}

@media (max-width: 991px) {
  #benefits-of-exports .benefits-of-exports-col:nth-child(2n) {
    border-right: none;
  }

  #benefits-of-exports .benefits-of-exports-col,
  #benefits-of-exports .benefits-of-exports-col:nth-last-child(-n+3) {
    margin: 0 0 30px;
  }

  #benefits-of-exports .benefits-of-exports-col:last-child {
    margin: 0;
  }

  #benefits-of-exports .benefits-of-exports-card-wrapper {
    margin: 35px 0;
  }

  #benefits-of-exports .benefits-of-exports-bottom h4 {
    margin: 0 0 10px;
  }
}

@media (max-width: 767px) {
  #benefits-of-exports .benefits-of-exports-col {
    border-right: none;
    text-align: center;
  }

  #benefits-of-exports .benefits-of-exports-card-wrapper {
    margin: 30px 0;
  }

  #benefits-of-exports .benefits-of-exports-col .benefits-of-exports-card h5 {
    margin: 15px 0 10px;
  }

  #benefits-of-exports .benefits-of-exports-bottom {
    text-align: center;
  }
}

@media (max-width: 575px) {
  #benefits-of-exports .benefits-of-exports-col .benefits-of-exports-card .card-count {
    font-size: 30px;
    line-height: 32px;
  }

  #benefits-of-exports .benefits-of-exports-col .benefits-of-exports-card h5 {
    font-size: 20px;
    line-height: 26px;
  }

  #benefits-of-exports .benefits-of-exports-col .benefits-of-exports-card p {
    font-size: 15px;
    line-height: 26px;
  }

  #benefits-of-exports .benefits-of-exports-col,
  #benefits-of-exports .benefits-of-exports-col:nth-last-child(-n+3) {
    margin: 0 0 25px;
  }

  #benefits-of-exports .benefits-of-exports-col:last-child {
    margin: 0;
  }
}

@media (max-width: 480px) {
  #benefits-of-exports .benefits-of-exports-col .benefits-of-exports-card .card-count {
    font-size: 28px;
    line-height: 30px;
  }

  #benefits-of-exports .benefits-of-exports-col .benefits-of-exports-card h5 {
    font-size: 18px;
    line-height: 24px;
    margin: 12px 0 8px;
  }

  #benefits-of-exports .benefits-of-exports-col .benefits-of-exports-card p {
    font-size: 14px;
    line-height: 24px;
  }

  #benefits-of-exports .benefits-of-exports-col,
  #benefits-of-exports .benefits-of-exports-col:nth-last-child(-n+3) {
    margin: 0 0 15px;
  }

  #benefits-of-exports .benefits-of-exports-col:last-child {
    margin: 0;
  }

  #benefits-of-exports .benefits-of-exports-card-wrapper {
    margin: 20px 0;
  }
}

/* ============================ BENEFITS-OF-EXPORTS SECTION END ============================ */
/* ============================ ALCS-DETAIL SECTION END ============================ */
.bg-gray {
  background-color: #f4f5f7;
  padding: 100px 0;
}

.bg-white {
  background-color: #fff;
  padding: 100px 0;
}

.bg-blue {
  background-color: #2C4298;
  padding: 100px 0;
}

.alcs-detail .alcs-inner-detail {
  margin: 0 0 50px;
}

.alcs-detail .alcs-inner-detail:last-child {
  margin: 0;
}

.alcs-detail h4 {
  font: 700 24px/26px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #080c24;
  text-transform: uppercase;
  margin: 0 0 20px;
}

#privacyPolicy .alcs-detail h4 {
  margin: 0 0 35px;
}

.alcs-detail h5 {
  font: 600 16px/22px "Plus Jakarta Sans", helvetica, sans-serif;
  margin: 30px 0 15px;
  position: relative;
  padding: 0 0 0 20px;
}

.alcs-detail h5::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 11px;
  height: 11px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  background-color: #b12b2b;
  margin: 7px 0 0;
}

.alcs-detail ul,
.alcs-detail ol {
  list-style: none;
  padding: 0;
  margin: 15px 0 0;
}

.alcs-detail ul:first-child,
.alcs-detail ol:first-child {
  margin: 0;
}

.alcs-detail ul li,
.alcs-detail ol li,
.alcs-detail p,
.alcs-detail b {
  font: 500 16px/28px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #565969;
  margin: 0 0 15px;
  position: relative;
  padding: 0 0 0 25px;
}

.alcs-detail ol li {
  padding: 0;
}

.alcs-detail ol li .ol-li-number {
  width: 23px;
  display: inline-block;
}

.alcs-detail p {
  padding: 0;
  display: block;
}

.alcs-detail p.note {
  margin: 0;
}

.alcs-detail b {
  color: #080c24;
  font-weight: 600;
  padding: 0;
  display: block;
}

.alcs-detail p b,
.alcs-detail ul li b,
.alcs-detail ol li b {
  display: inline;
}

.alcs-detail b.important {
  margin: 15px 0 0;
}

.alcs-detail p.note b {
  color: #080c24;
  font-weight: 600;
  padding: 0;
  margin: 0;
  display: inline;
}

.alcs-detail ul li span,
.alcs-detail ol li span,
.alcs-detail p span,
.alcs-detail p span a {
  color: #080c24;
  font-weight: 500;
  display: inline;
}

.alcs-detail ul li a,
.alcs-detail ol li a {
  color: #565969;
}

.alcs-detail p a {
  color: #565969;
  text-decoration: underline;
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
}

.alcs-detail p a.link {
  color: #b12b2b;
}

.alcs-detail p a:is(:hover, :focus, :active) {
  color: #ee2b29;
}

.alcs-detail p a.no-underline {
  text-decoration: none;
}

.alcs-detail ul li:last-child,
.alcs-detail ol li:last-child {
  margin: 0;
}

.alcs-detail ul li::before {
  content: "\f058";
  position: absolute;
  font-family: "Font Awesome 6 Free";
  top: 0;
  left: 0;
  font-weight: 900;
  font-size: 16px;
  line-height: 18px;
  color: #b12b2b;
  margin: 6px 0 0;
}

@media (max-width: 1299px) {

  .bg-gray,
  .bg-white,
  .bg-blue {
    padding: 80px 0;
  }
}

@media (max-width: 1199px) {

  .bg-gray,
  .bg-white,
  .bg-blue {
    padding: 60px 0;
  }

  .alcs-detail .alcs-inner-detail {
    margin: 0 0 40px;
  }

  .alcs-detail h5 {
    margin: 25px 0 15px;
  }

  #privacyPolicy .alcs-detail h4 {
    margin: 0 0 30px;
  }
}

@media (max-width: 991px) {

  .bg-gray,
  .bg-white,
  .bg-blue {
    padding: 40px 0;
  }

  .alcs-detail .alcs-inner-detail {
    margin: 0 0 30px;
  }

  .alcs-detail h4 {
    font-size: 22px;
    line-height: 30px;
    margin: 0 0 12px;
  }

  #privacyPolicy .alcs-detail h4 {
    margin: 0 0 25px;
  }

  .alcs-detail h5 {
    margin: 20px 0 10px;
  }

  .alcs-detail ul li,
  .alcs-detail ol li,
  .alcs-detail p,
  .alcs-detail b {
    font-size: 15px;
    line-height: 26px;
    margin: 0 0 10px;
  }

  .alcs-detail b.important {
    margin: 10px 0 0;
  }

  .alcs-detail ul {
    margin: 10px 0 0;
  }

  .alcs-detail ul li::before,
  .alcs-detail ol li::before {
    font-size: 15px;
  }
}

@media (max-width: 480px) {

  .bg-gray,
  .bg-white,
  .bg-blue {
    padding: 30px 0;
  }

  .alcs-detail .alcs-inner-detail {
    margin: 0 0 25px;
  }

  .alcs-detail h4 {
    font-size: 20px;
    line-height: 28px;
    margin: 0 0 10px;
  }

  #privacyPolicy .alcs-detail h4 {
    margin: 0 0 12px;
  }

  .alcs-detail h5 {
    margin: 15px 0 8px;
  }

  .alcs-detail ul li,
  .alcs-detail ol li,
  .alcs-detail p,
  .alcs-detail b {
    font-size: 14px;
    line-height: 24px;
    margin: 0 0 8px;
  }

  .alcs-detail b.important {
    margin: 8px 0 0;
  }

  .alcs-detail ul {
    margin: 8px 0 0;
  }

  .alcs-detail ul li::before,
  .alcs-detail ol li::before {
    font-size: 14px;
    margin: 4px 0 0;
  }
}

/* ============================ ALCS-DETAIL SECTION END ============================ */

/* ============================ QUOTE-FOR-SHIPPING SECTION START ============================ */
#quote-for-shipping .quote-for-shipping-top-wrapper {
  background-color: #e2e5f1;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  margin: 0 0 30px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  overflow: hidden;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .common-title {
  padding: 30px 0;
  margin: 0;
  font-size: 36px;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .content-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .table-content-wrapper {
  width: 100%;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .table-title-wrapper {
  overflow: hidden;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .table-title-row,
#quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row {
  display: flex;
  align-items: center;
  width: 100%;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .table-title-row .table-title:first-child,
#quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .accordion-button .table-detail:first-child {
  width: 20%;
  min-width: 320px;
  text-align: left;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .table-title-row .table-title:nth-child(2),
#quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .accordion-button .table-detail:nth-child(2) {
  width: 18%;
  min-width: 130px;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .table-title-row .table-title:nth-child(3),
#quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .accordion-button .table-detail:nth-child(3) {
  width: 25%;
  min-width: 130px;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .table-title-row .table-title:nth-child(4),
#quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .accordion-button .table-detail:nth-child(4) {
  width: 26%;
  min-width: 210px;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .table-title-row .table-title:nth-child(5),
#quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail.modal-btn {
  width: 20%;
  min-width: 200px;
  text-align: right;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .table-title-row {
  background-color: #d4d8e9;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .table-title-row .table-title {
  font: 700 20px/22px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #080c24;
  padding: 18px 20px;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .table-title-row .table-title:last-child {
  padding: 18px 60px 18px 20px;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row {
  background-color: #fff;
  padding: 0;
  cursor: pointer;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row::after {
  display: none;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .table-service {
  background-color: #fff;
  margin: 0 0 5px;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .table-service:last-child {
  margin: 0;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail {
  font: 500 20px/22px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #b12b2b;
  padding: 24px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  user-select: none;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail .table-title {
  display: none;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail:first-child {
  font: 500 18px/20px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #080c24;
  display: flex;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail:first-child span {
  margin: 0 0 0 10px;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail.modal-btn {
  padding: 24px 40px 24px 20px;
  text-align: right;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail.modal-btn button {
  font: 600 16px/18px "Plus Jakarta Sans", helvetica, sans-serif;
  padding: 15px 30px;
  margin: 0 0 0 auto;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail span.budge {
  font: 600 14px/16px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #fff;
  padding: 6px 15px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail span.budge.green {
  background-color: #009412;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail span.budge.red {
  background-color: #ee0505;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail .value-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail .value-wrapper span {
  background-color: #eaedf5;
  width: 10px;
  height: 20px;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail .value-wrapper span.excellent {
  background-color: #293e8e;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail .value-wrapper span.basic {
  background-color: #ee2b29;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail .value-wrapper span.regular {
  background-color: #ffac0c;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail .tooltip-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  position: relative;
  cursor: pointer;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail .tooltip-wrapper .tooltip {
  font: 500 14px/24px "Plus Jakarta Sans", helvetica, sans-serif;
  text-align: center;
  display: none;
  opacity: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  top: -115px;
  bottom: auto;
  margin: auto;
  background: #fff;
  color: #080c24;
  padding: 15px;
  width: 0;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border: 1px solid #d6d6d6;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail .tooltip-wrapper .tooltip::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: auto;
  bottom: -8px;
  width: 15px;
  height: 15px;
  background: #fff;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  margin: 0 auto;
  z-index: -1;
  border-right: 1px solid #d6d6d6;
  border-bottom: 1px solid #d6d6d6;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail .tooltip-wrapper:hover .tooltip {
  display: block;
  opacity: 1;
  width: 330px;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .table-service:first-child .table-detail-row .table-detail .tooltip-wrapper .tooltip {
  top: auto;
  bottom: -115px;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .table-service:first-child .table-detail-row .table-detail .tooltip-wrapper .tooltip::before {
  top: -8px;
  bottom: auto;
  border-right: none;
  border-bottom: none;
  border-left: 1px solid #d6d6d6;
  border-top: 1px solid #d6d6d6;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail .common-btn {
  border: 2px solid #b12b2b;
  background-color: transparent;
  color: #b12b2b;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail .common-btn:hover,
#quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row[aria-expanded="true"] .table-detail .common-btn {
  background-color: #b12b2b;
  color: #fff;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail .common-btn span {
  margin: 0;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .accordion-body {
  padding: 30px 30px 25px;
  background-color: #e2e5f1;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .accordion-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .accordion-body ul li {
  position: relative;
  font: 500 18px/24px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #565969;
  padding: 0 0 0 20px;
  margin: 0 0 20px;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .accordion-body ul li::before {
  content: "\f0da";
  position: absolute;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  top: 3px;
  left: 0;
  font-size: 18px;
  line-height: 20px;
  color: #565969;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .accordion-body ul li .list-title {
  color: rgba(86, 89, 105, 0.47);
  margin: 0 0 2px;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .accordion-body .msg-err {
  background-color: #ffc7c7;
  color: #ee2b29;
  padding: 10px 15px 10px 40px;
  position: relative;
  font: 500 16px/24px "Plus Jakarta Sans", helvetica, sans-serif;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  display: inline-block;
}

#quote-for-shipping .quote-for-shipping-top-wrapper .accordion-body .msg-err::before {
  content: "\f05a";
  position: absolute;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  left: 15px;
  font-size: 16px;
  line-height: 18px;
  color: #ee2b29;
}

#quote-for-shipping .quote-for-shipping-bottom-wrapper {
  padding: 10px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  background-color: #fff;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  overflow: hidden;
}

#quote-for-shipping .quote-for-shipping-bottom-wrapper .bottom-content {
  background-color: #f4f5f9;
  padding: 30px 0;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  overflow: hidden;
}

#quote-for-shipping .quote-for-shipping-bottom-wrapper .bottom-content .content-row {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 14px 20px;
}

#quote-for-shipping .quote-for-shipping-bottom-wrapper .bottom-content .content-row {
  display: flex;
  align-items: start;
  gap: 30px;
  padding: 14px 20px;
  width: 100%;
}

#quote-for-shipping .quote-for-shipping-bottom-wrapper .bottom-content .content-row:nth-child(2n + 1) {
  background-image: linear-gradient(to left, #f4f5f9, #e0e3f0);
}

#quote-for-shipping .quote-for-shipping-bottom-wrapper .bottom-content .content-row .content-title {
  font: 700 16px/22px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #080c24;
  width: calc(30% - 15px);
  text-align: right;
}

#quote-for-shipping .quote-for-shipping-bottom-wrapper .bottom-content .content-row .content-desc {
  font: 500 16px/22px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #080c24;
  width: calc(70% - 15px);
}

#quote-for-shipping .quote-for-shipping-bottom-wrapper ul li {
  font: 500 12px/24px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #080c24;
  margin: 4px 0 0;
  position: relative;
  padding: 0 0 0 32px;
}

#quote-for-shipping .quote-for-shipping-bottom-wrapper ul li::before {
  content: "\f058";
  position: absolute;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  top: 5px;
  left: 0;
  font-size: 18px;
  line-height: 20px;
  color: #ee2b29;
}

#quote-for-shipping .modal {
  background: rgba(83, 83, 83, 0.3);
  backdrop-filter: blur(10px);
  text-align: center;
  --bs-modal-width: 800px !important;
  --bs-modal-border-radius: 20px;
  transition: 400ms ease-in-out;
  -webkit-transition: 400ms ease-in-out;
  -moz-transition: 400ms ease-in-out;
  -ms-transition: 400ms ease-in-out;
  -o-transition: 400ms ease-in-out;
}

#quote-for-shipping .table-detail-row .accordion-button {
  padding: 0;
}

#quote-for-shipping .table-detail-row .accordion-button::after {
  display: none;
}

#quote-for-shipping .accordion-button:not(.collapsed) {
  background-color: transparent;
  box-shadow: none;
}

#quote-for-shipping .modal .modal-content {
  padding: 30px 50px;
}

#quote-for-shipping .modal #staticBackdropLabel {
  font: 600 32px/34px "Plus Jakarta Sans", helvetica, sans-serif !important;
  color: #080C24;
}

#quote-for-shipping .modal .modal-header,
#quote-for-shipping .modal .modal-body,
#quote-for-shipping .modal .modal-footer {
  padding: 0;
}

#quote-for-shipping .modal .modal-header .btn-close {
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
}

#quote-for-shipping .modal .modal-header .btn-close:hover {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}

#quote-for-shipping .modal .modal-header {
  border-bottom: 1px solid #D6D6D6;
  padding: 0 0 30px;
}

#quote-for-shipping .modal .modal-footer {
  border-top: none;
  justify-content: center;
  gap: 30px;
}

#quote-for-shipping .modal .modal-body .input-wrapper label {
  font: 500 16px/18px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #565969;
  margin: 0 0 5px;
  display: block;
}

#quote-for-shipping .modal .modal-body .input-wrapper input,
#quote-for-shipping .modal .modal-body .input-wrapper textarea {
  width: 100%;
  resize: none;
  padding: 15px 20px;
  font: 500 18px/22px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #080c24;
  border: 1px solid #d6d6d6;
}

#quote-for-shipping .modal .modal-body .input-wrapper input {
  margin: 0 0 20px;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}

#quote-for-shipping .modal .modal-body .input-wrapper textarea {
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

#quote-for-shipping .modal .modal-footer button {
  padding: 19px 60px;
  margin: 0;
}

#quote-for-shipping .modal .modal-footer #resetButton {
  background-color: transparent;
  border: 2px solid #2C4298;
  color: #2C4298;
}

#quote-for-shipping .modal .modal-footer #resetButton:hover {
  background-color: #2C4298;
  color: #fff;
}

#quote-for-shipping .modal .modal-footer button[type="submit"] {
  background-color: #2C4298;
  border: 2px solid #2C4298;
  color: #fff;
}

#quote-for-shipping .modal .modal-footer button[type="submit"]:hover {
  background-color: transparent;
  color: #2C4298;
}

@media (max-width: 1399px) {
  #quote-for-shipping .quote-for-shipping-top-wrapper .common-title {
    padding: 25px 0;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-title-row .table-title,
  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .accordion-button .table-detail {
    font-size: 18px;
    line-height: 20px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-title-row .table-title:first-child,
  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .accordion-button .table-detail:first-child {
    min-width: 260px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-title-row .table-title:nth-child(4),
  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .accordion-button .table-detail:nth-child(4) {
    width: 28%;
    min-width: 180px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-title-row .table-title:nth-child(5),
  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail:nth-child(5) {
    width: 22%;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-title-row .table-title {
    padding: 18px 15px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-title-row .table-title:last-child {
    padding: 18px 50px 18px 15px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail {
    padding: 20px 15px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail:last-child {
    padding: 20px 30px 20px 15px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail:last-child button {
    font-size: 14px;
    line-height: 16px;
    padding: 15px 25px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail:first-child {
    font-size: 16px;
    line-height: 18px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail span.budge {
    font-size: 13px;
    line-height: 15px;
    padding: 4px 10px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .delivery-location {
    max-width: 26px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .calendar-icon {
    max-width: 20px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail .value-wrapper {
    gap: 6px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail .value-wrapper span {
    width: 7px;
    height: 16px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail .tooltip-wrapper .tooltip {
    top: -105px;
    padding: 10px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-service:first-child .table-detail-row .table-detail .tooltip-wrapper .tooltip {
    bottom: -105px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .accordion-body {
    padding: 25px 25px 20px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .accordion-body ul li {
    font-size: 16px;
    line-height: 24px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .accordion-body .msg-err {
    font-size: 14px;
  }

  #quote-for-shipping .quote-for-shipping-bottom-wrapper .bottom-content {
    padding: 20px 0;
  }

  #quote-for-shipping .quote-for-shipping-bottom-wrapper .bottom-content .content-row {
    padding: 14px;
    gap: 26px;
  }

  #quote-for-shipping .quote-for-shipping-bottom-wrapper .bottom-content .content-row .content-title {
    width: calc(36% - 13px);
  }

  #quote-for-shipping .quote-for-shipping-bottom-wrapper .bottom-content .content-row .content-desc {
    width: calc(64% - 13px);
  }

  #quote-for-shipping .modal #staticBackdropLabel {
    font-size: 30px !important;
    line-height: 32px !important;
  }
}

@media (max-width: 1299px) {
  #quote-for-shipping .quote-for-shipping-bottom-wrapper ul li {
    font-size: 15px;
    line-height: 22px;
  }

  #quote-for-shipping .quote-for-shipping-bottom-wrapper ul li::before {
    top: 3px;
    font-size: 16px;
    line-height: 18px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .accordion-body ul li::before {
    top: 4px;
    font-size: 16px;
    line-height: 18px;
  }

  #quote-for-shipping .modal {
    --bs-modal-width: 1100px;
  }
}

@media (max-width: 1199px) {
  #quote-for-shipping .quote-for-shipping-top-wrapper .common-title {
    padding: 20px 0;
    font-size: 25px;
  }

  #quote-for-shipping .table-detail-row .accordion-button {
    padding: 0;
    width: fit-content;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-title-row .table-title:first-child,
  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .accordion-button .table-detail:first-child {
    width: 20%;
    min-width: 230px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-title-row .table-title:nth-child(2),
  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .accordion-button .table-detail:nth-child(2) {
    width: 14%;
    min-width: 120px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-title-row .table-title:nth-child(3),
  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .accordion-button .table-detail:nth-child(3) {
    width: 22%;
    min-width: 170px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-title-row .table-title:nth-child(4),
  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .accordion-button .table-detail:nth-child(4) {
    width: 24%;
    min-width: 246px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-title-row .table-title:nth-child(5),
  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail.modal-btn {
    width: 20%;
    min-width: 170px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-title-row .table-title {
    padding: 18px 10px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-title-row .table-title:last-child {
    padding: 18px 40px 18px 10px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail {
    padding: 15px 10px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail:last-child {
    padding: 15px 20px 15px 10px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-title-row .table-title,
  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .accordion-button .table-detail {
    font-size: 16px;
    line-height: 18px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail span.budge {
    font-size: 12px;
    line-height: 14px;
    padding: 4px 10px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail:last-child button {
    font-size: 14px;
    line-height: 16px;
    padding: 12px 20px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail .value-wrapper {
    gap: 5px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail .value-wrapper span {
    width: 6px;
    height: 15px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .accordion-body {
    padding: 20px 20px 15px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .accordion-body ul li {
    font-size: 15px;
    line-height: 22px;
    margin: 0 0 18px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .accordion-body ul li::before {
    top: 3px;
    font-size: 15px;
    line-height: 18px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .accordion-body .msg-err {
    line-height: 22px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .accordion-body .msg-err::before {
    font-size: 15px;
  }

  #quote-for-shipping .quote-for-shipping-bottom-wrapper .bottom-content .content-row .content-title,
  #quote-for-shipping .quote-for-shipping-bottom-wrapper .bottom-content .content-row .content-desc {
    font-size: 15px;
  }

  #quote-for-shipping .quote-for-shipping-bottom-wrapper .bottom-content .content-row {
    gap: 20px;
  }

  #quote-for-shipping .quote-for-shipping-bottom-wrapper .bottom-content .content-row .content-title {
    width: calc(36% - 10px);
  }

  #quote-for-shipping .quote-for-shipping-bottom-wrapper .bottom-content .content-row .content-desc {
    width: calc(64% - 10px);
  }

  #quote-for-shipping .modal {
    --bs-modal-width: 950px;
  }

  #quote-for-shipping .modal #staticBackdropLabel {
    font-size: 28px !important;
    line-height: 30px !important;
  }
}

@media (max-width: 991px) {
  #quote-for-shipping {
    margin: -90px 0 40px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail .table-title,
  #quote-for-shipping .table-detail-row .accordion-button {
    display: block;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-title-row {
    display: none !important;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-content-wrapper {
    width: fit-content;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail:first-child {
    font-size: 15px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .accordion-button .table-detail:first-child,
  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .accordion-button .table-detail:nth-child(2),
  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .accordion-button .table-detail:nth-child(3),
  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .accordion-button .table-detail:nth-child(4),
  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail.modal-btn {
    min-width: fit-content;
    width: fit-content;
    max-width: fit-content;
    padding: 10px 15px;
    font-size: 16px;
    display: flex;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail.modal-btn {
    min-width: 100%;
    background-color: #edf0ff;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail .table-title {
    color: #111;
    min-width: 120px;
    text-align: left;
    font-size: 16px;
    line-height: 18px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row {
    display: block;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-content-wrapper {
    width: 100%;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail .tooltip-wrapper .tooltip {
    left: 0;
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail .tooltip-wrapper .tooltip::before {
    left: 15px;
    right: auto;
  }

  #quote-for-shipping .quote-for-shipping-bottom-wrapper ul {
    padding: 5px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .accordion-body ul li {
    margin: 0 0 15px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .accordion-body {
    padding: 15px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .accordion-body .msg-err {
    padding: 8px 10px 8px 30px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .accordion-body .msg-err::before {
    left: 10px;
  }

  #quote-for-shipping .modal {
    --bs-modal-width: 700px;
  }

  #quote-for-shipping .modal .modal-content {
    padding: 30px;
  }

  #quote-for-shipping .modal .modal-header {
    padding: 0 0 20px;
  }

  #quote-for-shipping .modal .modal-footer {
    gap: 20px;
  }

  #quote-for-shipping .modal .modal-body {
    padding: 20px 0;
  }

  #quote-for-shipping .modal .modal-footer button {
    padding: 15px 50px;
  }

  #quote-for-shipping .modal #staticBackdropLabel {
    font-size: 26px !important;
    line-height: 28px !important;
  }
}

@media (max-width: 767px) {
  #quote-for-shipping {
    margin: -110px 0 40px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .common-title {
    padding: 15px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail .tooltip-wrapper .tooltip {
    font-size: 13px;
    line-height: 20px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail .tooltip-wrapper:hover .tooltip {
    width: 220px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail .tooltip-wrapper .tooltip {
    top: -135px;
    padding: 10px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-service:first-child .table-detail-row .table-detail .tooltip-wrapper .tooltip {
    bottom: -135px;
  }

  #quote-for-shipping .quote-for-shipping-bottom-wrapper .bottom-content .content-row {
    display: block;
  }

  #quote-for-shipping .quote-for-shipping-bottom-wrapper .bottom-content .content-row .content-title {
    width: 100%;
    text-align: left;
    margin: 0 0 5px;
  }

  #quote-for-shipping .quote-for-shipping-bottom-wrapper .bottom-content .content-row .content-desc {
    width: 100%;
  }

  #quote-for-shipping .quote-for-shipping-bottom-wrapper ul li {
    margin: 10px 0 0;
    padding: 0 0 0 28px;
  }

  #quote-for-shipping .quote-for-shipping-bottom-wrapper ul li::before {
    top: 5px;
    font-size: 14px;
    line-height: 16px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .accordion-button .table-detail:first-child,
  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .accordion-button .table-detail:nth-child(2),
  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .accordion-button .table-detail:nth-child(3),
  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .accordion-button .table-detail:nth-child(4),
  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail.modal-btn {
    padding: 8px 15px;
  }

  #quote-for-shipping {
    --bs-modal-width: 520px;
  }

  #quote-for-shipping .modal-content {
    padding: 20px 30px;
  }

  #quote-for-shipping .modal-footer {
    gap: 15px;
  }

  #quote-for-shipping .modal-body .input-wrapper input {
    margin: 0 0 12px;
  }

  #quote-for-shipping .modal-header {
    padding: 0 0 15px;
  }

  #quote-for-shipping .modal-body {
    padding: 15px 0;
  }

  #quote-for-shipping .modal-body .input-wrapper label {
    font-size: 14px;
    line-height: 16px;
  }

  #quote-for-shipping .modal-body .input-wrapper input,
  #quote-for-shipping .modal-body .input-wrapper textarea {
    padding: 13px 20px;
    font-size: 16px;
    line-height: 18px;
  }

  #quote-for-shipping #exampleModalLabel {
    font-size: 24px !important;
    line-height: 26px !important;
  }

  #quote-for-shipping .modal .modal-body .input-wrapper label {
    font-size: 14px;
    line-height: 16px;
  }
}

@media (max-width: 575px) {
  #quote-for-shipping {
    margin: -120px 0 40px;
  }

  #quote-for-shipping .modal {
    --bs-modal-width: 100%;
  }
}

@media (max-width: 480px) {
  #quote-for-shipping {
    margin: -155px 0 30px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-service {
    margin: 0 0 3px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail:first-child {
    padding: 12px 10px 12px 15px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail {
    padding: 12px 10px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail.modal-btn {
    padding: 12px 15px 12px 10px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail.modal-btn button {
    padding: 10px 16px;
    gap: 7px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail:first-child {
    font-size: 14px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail span.budge {
    font-size: 11px;
    line-height: 13px;
    padding: 4px 8px;
    margin: 0 0 0 4px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail {
    font-size: 14px;
    line-height: 16px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail .value-wrapper span {
    width: 5px;
    height: 12px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .accordion-button .table-detail:first-child,
  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .accordion-button .table-detail:nth-child(2),
  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .accordion-button .table-detail:nth-child(3),
  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .accordion-button .table-detail:nth-child(4),
  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail.modal-btn {
    padding: 6px 15px;
    font-size: 14px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail .tooltip-wrapper .tooltip {
    top: -125px;
    padding: 6px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-service:first-child .table-detail-row .table-detail .tooltip-wrapper .tooltip {
    bottom: -125px;
  }

  #quote-for-shipping .quote-for-shipping-bottom-wrapper .bottom-content .content-row .content-title,
  #quote-for-shipping .quote-for-shipping-bottom-wrapper .bottom-content .content-row .content-desc {
    font-size: 14px;
  }

  #quote-for-shipping .quote-for-shipping-bottom-wrapper ul li {
    margin: 8px 0 0;
    padding: 0 0 0 25px;
    font-size: 14px;
  }

  #quote-for-shipping .quote-for-shipping-bottom-wrapper ul li::before {
    top: 3px;
  }

  #quote-for-shipping .modal .modal-content {
    padding: 20px;
  }

  #quote-for-shipping .modal #staticBackdropLabel {
    font-size: 20px !important;
    line-height: 22px !important;
    text-align: left;
  }

  #quote-for-shipping .modal .modal-header .btn-close {
    font-size: 12px;
    list-style: 14px;
  }

  #quote-for-shipping .modal .modal-footer button {
    padding: 13px 45px;
  }

  #quote-for-shipping .modal .modal-body .input-wrapper input {
    margin: 0 0 12px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail .table-title {
    min-width: 90px;
    font-size: 15px;
    line-height: 18px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail .tooltip-wrapper:hover .tooltip {
    width: 200px;
  }
}

@media (max-width: 360px) {
  #quote-for-shipping {
    margin: -165px 0 30px;
  }

  #quote-for-shipping .quote-for-shipping-bottom-wrapper .bottom-content {
    padding: 15px 0;
  }

  #quote-for-shipping .quote-for-shipping-bottom-wrapper .bottom-content .content-row {
    padding: 10px 15px;
  }

  #quote-for-shipping .quote-for-shipping-bottom-wrapper .bottom-content .content-row .content-title {
    margin: 0 0 2px;
  }

  #quote-for-shipping .quote-for-shipping-bottom-wrapper ul li {
    margin: 6px 0 0;
  }

  #quote-for-shipping .modal #staticBackdropLabel {
    font-size: 18px !important;
    line-height: 20px !important;
  }

  #quote-for-shipping .modal .modal-footer {
    gap: 10px;
  }

  #quote-for-shipping .modal .modal-footer button {
    padding: 12px 35px;
  }

  #quote-for-shipping .modal .modal-body .input-wrapper input {
    margin: 0 0 10px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail span.budge {
    font-size: 10px;
    line-height: 12px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .accordion-button .table-detail:first-child,
  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .accordion-button .table-detail:nth-child(2),
  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .accordion-button .table-detail:nth-child(3),
  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .accordion-button .table-detail:nth-child(4),
  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail.modal-btn {
    padding: 6px 10px;
    font-size: 13px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail .table-title {
    min-width: 80px;
    font-size: 14px;
    line-height: 16px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail .tooltip-wrapper:hover .tooltip {
    width: 175px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-service:first-child .table-detail-row .table-detail .tooltip-wrapper .tooltip {
    bottom: -145px;
  }

  #quote-for-shipping .quote-for-shipping-top-wrapper .table-detail-row .table-detail .tooltip-wrapper .tooltip {
    top: -145px;
  }
}

/* ============================ QUOTE-FOR-SHIPPING SECTION END ============================ */
/* ============================ FRANCHISE-PARTNER SECTION START ============================ */
#franchise-partner .franchise-partner-bg {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  align-items: center;
  background-color: #2C4298;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  overflow: hidden;
}

#franchise-partner .franchise-partner-bg .franchise-partner-text {
  padding: 0 0 0 60px;
}

#franchise-partner .franchise-partner-bg .franchise-partner-text .common-title {
  text-align: left;
  line-height: 56px;
  color: #fff;
  margin: 0 0 30px;
}

#franchise-partner .franchise-partner-bg .franchise-partner-text p {
  font: 600 18px/22px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #fff;
}

#franchise-partner .franchise-partner-bg .franchise-partner-img-wrapper img {
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
}

#franchise-partner .franchise-partner-bg:hover .franchise-partner-img-wrapper img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}

@media (max-width: 1299px) {
  #franchise-partner .franchise-partner-bg .franchise-partner-text .common-title {
    line-height: 46px;
  }

  #franchise-partner .franchise-partner-bg .franchise-partner-text p {
    font-size: 16px;
  }
}

@media (max-width: 1199px) {
  #franchise-partner .franchise-partner-bg .franchise-partner-text {
    padding: 0 0 0 50px;
  }

  #franchise-partner .franchise-partner-bg .franchise-partner-text .common-title {
    margin: 0 0 20px;
  }
}

@media (max-width: 991px) {
  #franchise-partner .franchise-partner-bg {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }

  #franchise-partner .franchise-partner-bg .franchise-partner-text {
    padding: 0 40px 40px;
    text-align: center;
  }

  #franchise-partner .franchise-partner-bg .franchise-partner-text .common-title {
    line-height: 40px;
    text-align: center;
    margin: 0 0 18px;
  }
}

@media (max-width: 767px) {
  #franchise-partner .franchise-partner-bg .franchise-partner-text {
    padding: 0 30px 30px;
  }

  #franchise-partner .franchise-partner-bg .franchise-partner-text .common-title {
    line-height: 36px;
    margin: 0 0 15px;
  }
}

@media (max-width: 575px) {
  #franchise-partner .franchise-partner-bg .franchise-partner-text p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  #franchise-partner .franchise-partner-bg {
    gap: 15px;
  }

  #franchise-partner .franchise-partner-bg .franchise-partner-text {
    padding: 0 20px 20px;
  }

  #franchise-partner .franchise-partner-bg .franchise-partner-text .common-title {
    line-height: 30px;
    margin: 0 0 10px;
  }

  #franchise-partner .franchise-partner-bg .franchise-partner-text p {
    font-size: 14px;
  }
}

/* ============================ FRANCHISE-PARTNER SECTION END ============================ */
/* ============================ BECOME-FRANCHISEE, BECOME-BUSINESS-AGENT SECTION START ============================ */
#become-franchisee .become-franchisee-wrapper,
#become-business-agent .become-business-agent-wrapper,
#become-franchisee .become-franchisee-wrapper .become-franchisee-inner-detail,
#become-business-agent .become-business-agent-wrapper .become-business-agent-inner-detail {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

#become-franchisee .become-franchisee-wrapper,
#become-business-agent .become-business-agent-wrapper {
  align-items: center;
}

#become-franchisee .become-franchisee-wrapper .common-title,
#become-business-agent .become-business-agent-wrapper .common-title {
  text-align: left;
  margin: 0 0 20px;
}

#become-franchisee .become-franchisee-wrapper hr,
#become-business-agent .become-business-agent-wrapper hr {
  border-top: 1px solid #d6d6d6;
  opacity: 1;
  margin: 35px 0 28px;
}

#become-franchisee .become-franchisee-wrapper .become-franchisee-img-wrapper,
#become-business-agent .become-business-agent-wrapper .become-business-agent-img-wrapper {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  overflow: hidden;
  display: inline-block;
  position: relative;
}

#become-franchisee .become-franchisee-wrapper .become-franchisee-img-wrapper::before,
#become-business-agent .become-business-agent-wrapper .become-business-agent-img-wrapper::before,
#become-franchisee .become-franchisee-wrapper .become-franchisee-img-wrapper::after,
#become-business-agent .become-business-agent-wrapper .become-business-agent-img-wrapper::after {
  background: rgba(255, 255, 255, 0.7) none repeat scroll 0 0;
  content: "";
  opacity: 1;
  position: absolute;
  height: 0;
  width: 0;
}

#become-franchisee .become-franchisee-wrapper .become-franchisee-img-wrapper::before,
#become-business-agent .become-business-agent-wrapper .become-business-agent-img-wrapper::before {
  bottom: 0;
  right: 0;
}

#become-franchisee .become-franchisee-wrapper .become-franchisee-img-wrapper::after,
#become-business-agent .become-business-agent-wrapper .become-business-agent-img-wrapper::after {
  left: 0;
  top: 0;
}

#become-franchisee:hover .become-franchisee-wrapper .become-franchisee-img-wrapper::before,
#become-business-agent:hover .become-business-agent-wrapper .become-business-agent-img-wrapper::before,
#become-franchisee:hover .become-franchisee-wrapper .become-franchisee-img-wrapper::after,
#become-business-agent:hover .become-business-agent-wrapper .become-business-agent-img-wrapper::after {
  height: 100%;
  width: 100%;
  opacity: 0;
  transition-duration: 1.3s;
}

#become-franchisee .become-franchisee-wrapper .become-franchisee-inner-detail,
#become-business-agent .become-business-agent-wrapper .become-business-agent-inner-detail {
  margin: 0 0 35px;
}

#become-franchisee .become-franchisee-wrapper .common-btn,
#become-business-agent .become-business-agent-wrapper .common-btn {
  padding: 13px 35px;
}

#become-franchisee .become-franchisee-wrapper .common-btn {
  background-color: #2C4298;
  border: 2px solid #2C4298;
}

#become-franchisee .become-franchisee-wrapper .common-btn:is(:hover, :active, :focus) {
  background-color: transparent;
  color: #b12b2b;
}

#become-business-agent .become-business-agent-wrapper .common-btn {
  background-color: #fff;
  border: 2px solid #fff;
  color: #2C4298;
}

#become-business-agent .become-business-agent-wrapper .common-btn:is(:hover, :active, :focus) {
  background-color: transparent;
  color: #fff;
}

#become-business-agent .become-business-agent-wrapper .common-title,
#become-business-agent .become-business-agent-wrapper .common-desc,
#become-business-agent .alcs-detail h4,
#become-business-agent .alcs-detail ul li,
#become-business-agent .alcs-detail ul li::before {
  color: #fff;
}

@media (max-width: 1299px) {

  #become-franchisee .become-franchisee-wrapper hr,
  #become-business-agent .become-business-agent-wrapper hr {
    margin: 30px 0 25px;
  }

  #become-franchisee .become-franchisee-wrapper .become-franchisee-inner-detail,
  #become-business-agent .become-business-agent-wrapper .become-business-agent-inner-detail {
    margin: 0 0 30px;
  }
}

@media (max-width: 1199px) {

  #become-franchisee .become-franchisee-wrapper hr,
  #become-business-agent .become-business-agent-wrapper hr {
    margin: 20px 0 15px;
  }
}

@media (max-width: 991px) {

  #become-franchisee .become-franchisee-wrapper,
  #become-business-agent .become-business-agent-wrapper {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }

  #become-franchisee .become-franchisee-wrapper .common-title,
  #become-business-agent .become-business-agent-wrapper .common-title {
    margin: 0 0 15px;
  }

  #become-franchisee .become-franchisee-wrapper .become-franchisee-inner-detail,
  #become-business-agent .become-business-agent-wrapper .become-business-agent-inner-detail {
    margin: 0 0 25px;
  }

  #become-franchisee .become-franchisee-wrapper hr,
  #become-business-agent .become-business-agent-wrapper hr {
    margin: 20px 0 15px;
  }
}

@media (max-width: 575px) {

  #become-franchisee .become-franchisee-wrapper .common-title,
  #become-business-agent .become-business-agent-wrapper .common-title {
    margin: 0 0 10px;
  }

  #become-franchisee .become-franchisee-wrapper hr,
  #become-business-agent .become-business-agent-wrapper hr {
    margin: 15px 0;
  }

  #become-franchisee .become-franchisee-wrapper .alcs-detail h4,
  #become-business-agent .become-business-agent-wrapper .alcs-detail h4 {
    margin: 0 0 8px;
  }

  #become-franchisee .become-franchisee-wrapper .alcs-detail ul li,
  #become-business-agent .become-business-agent-wrapper .alcs-detail ul li {
    margin: 0 0 8px;
  }

  #become-franchisee .become-franchisee-wrapper .alcs-detail ul li:last-child,
  #become-business-agent .become-business-agent-wrapper .alcs-detail ul li:last-child {
    margin: 0;
  }

  #become-franchisee .become-franchisee-wrapper .become-franchisee-inner-detail,
  #become-business-agent .become-business-agent-wrapper .become-business-agent-inner-detail {
    margin: 0 0 15px;
  }

  #become-franchisee .become-franchisee-wrapper,
  #become-business-agent .become-business-agent-wrapper,
  #become-franchisee .become-franchisee-wrapper .become-franchisee-inner-detail,
  #become-business-agent .become-business-agent-wrapper .become-business-agent-inner-detail {
    gap: 20px;
  }
}

@media (max-width: 480px) {

  #become-franchisee .become-franchisee-wrapper,
  #become-business-agent .become-business-agent-wrapper {
    gap: 15px;
  }

  #become-franchisee .become-franchisee-wrapper .alcs-detail h4,
  #become-business-agent .become-business-agent-wrapper .alcs-detail h4 {
    font-size: 18px;
    line-height: 26px;
    margin: 0 0 10px;
  }

  #become-franchisee .become-franchisee-wrapper .common-btn,
  #become-business-agent .become-business-agent-wrapper .common-btn {
    font-size: 13px;
    line-height: 15px;
    padding: 13px 18px;
  }

  #become-franchisee .become-franchisee-wrapper .become-franchisee-inner-detail,
  #become-business-agent .become-business-agent-wrapper .become-business-agent-inner-detail {
    grid-template-columns: repeat(1, 1fr);
    gap: 8px;
  }

  #become-franchisee .become-franchisee-wrapper hr,
  #become-business-agent .become-business-agent-wrapper hr {
    margin: 12px 0;
  }
}

/* ============================ BECOME-FRANCHISEE, BECOME-BUSINESS-AGENT SECTION END ============================ */
/* #enquiry_form .input-wrapper select {
  font: 500 18px/24px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #080C24;
  border: 1px solid #D6D6D6;
  border-radius: 30px;
  # -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  width: 100%;
  padding: 14px 25px;
  background-color: transparent;
  box-shadow: none !important;
} */

/* ============================= New ============================================ */
#otp_box_01,
#otp_box_02,
#otp_box_03,
#otp_box_04 {
  border: hidden !important;
  text-align: center !important;
  font-size: 1.5rem !important;
}

#track-shipment .modal {
  background: rgba(83, 83, 83, 0.3);
  backdrop-filter: blur(10px);
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  text-align: center;
  --bs-modal-width: 700px;
  --bs-modal-border-radius: 30px;
}

#track-shipment .modal .modal-content {
  padding: 40px;
}

#track-shipment .modal .modal-header,
#track-shipment .modal .modal-body,
#track-shipment .modal .modal-footer {
  border: none;
  display: block;
  padding: 0;
}

#track-shipment .modal .modal-header .modal-title {
  font: 700 24px/26px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #080C24;
  margin: 0 0 14px;
}

#track-shipment .modal .modal-header .modal-desc {
  font: 500 18px/20px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #565969;
}

#track-shipment .modal .modal-body {
  padding: 50px 0 30px;
}

#track-shipment .modal .modal-body .otp-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}

#track-shipment .modal .modal-body .otp-wrapper .otp-box {
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #D6D6D6;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  width: 100%;
  color: #080C24;
  font: 600 22px/24px "Plus Jakarta Sans", helvetica, sans-serif;
}

#track-shipment .modal .modal-footer p {
  font: 500 18px/20px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #080C24;
  margin: 30px 0 15px;
}

#track-shipment .modal .modal-footer .refresh-btn {
  font: 700 18px/20px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #2C4298;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin: 0 auto;
}

@media (max-width: 991px) {

  #track-shipment .modal .modal-header .modal-desc,
  #track-shipment .modal .modal-footer p,
  #track-shipment .modal .modal-footer .refresh-btn {
    font-size: 16px;
    line-height: 18px;
  }

  #track-shipment .modal .modal-body .otp-wrapper .otp-box {
    font-size: 18px;
    line-height: 20px;
  }
}

@media (max-width: 767px) {
  #track-shipment .modal {
    --bs-modal-width: 520px;
  }

  #track-shipment .modal .modal-content {
    padding: 30px;
  }

  #track-shipment .modal .modal-body {
    padding: 30px 0 25px;
  }
}

@media (max-width: 575px) {
  #track-shipment .modal {
    --bs-modal-width: 100%;
  }

  #track-shipment .modal .modal-body {
    padding: 25px 0 20px;
  }

  #track-shipment .modal .modal-body .otp-wrapper {
    gap: 15px;
  }
}

@media (max-width: 480px) {
  #track-shipment .modal .modal-content {
    padding: 20px;
  }

  #track-shipment .modal .modal-header .modal-title {
    font-size: 20px;
    line-height: 22px;
    margin: 0 0 10px;
  }

  #track-shipment .modal .modal-header .modal-desc {
    font-size: 14px;
    line-height: 22px;
  }

  #track-shipment .modal .modal-body {
    padding: 20px 0;
  }

  #track-shipment .modal .modal-body .otp-wrapper {
    gap: 10px;
  }

  #track-shipment .modal .modal-body .otp-wrapper .otp-box {
    padding: 12px;
    font-size: 16px;
    line-height: 18px;
  }

  #track-shipment .modal .modal-footer p,
  #track-shipment .modal .modal-footer .refresh-btn {
    font-size: 14px;
    line-height: 16px;
  }

  #track-shipment .modal .modal-footer p {
    margin: 12px 0;
  }

  #track-shipment .modal .modal-footer .common-btn-2 {
    font-size: 15px;
    line-height: 18px;
    padding: 14px 20px;
  }
}

#complaint_modal_section .modal {
  background: rgba(83, 83, 83, 0.3);
  backdrop-filter: blur(10px);
  text-align: center;
  --bs-modal-border-radius: 20px;
  transition: 400ms ease-in-out;
  -webkit-transition: 400ms ease-in-out;
  -moz-transition: 400ms ease-in-out;
  -ms-transition: 400ms ease-in-out;
  -o-transition: 400ms ease-in-out;
}

#complaint_modal_section .modal .modal-content {
  padding: 30px 50px;
}

#complaint_modal_section .modal #staticBackdropLabel {
  font: 600 32px/34px "Plus Jakarta Sans", helvetica, sans-serif !important;
  color: #080C24;
}

#complaint_modal_section .modal .modal-header,
#complaint_modal_section .modal .modal-body,
#complaint_modal_section .modal .modal-footer {
  padding: 0;
}

#complaint_modal_section .modal .modal-header .btn-close {
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
}

#complaint_modal_section .modal .modal-header .btn-close:hover {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}

#complaint_modal_section .modal .modal-header {
  border-bottom: 1px solid #D6D6D6;
  padding: 0 0 30px;
}

#complaint_modal_section .modal .modal-footer {
  border-top: none;
  justify-content: center;
  gap: 30px;
}

#complaint_modal_section .modal .modal-body {
  text-align: left;
  padding: 30px 0;
}

#complaint_modal_section .modal .modal-body .input-wrapper label {
  font: 500 16px/18px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #565969;
  margin: 0 0 5px;
  display: block;
}

#complaint_modal_section .modal .modal-body .input-wrapper input,
#complaint_modal_section .modal .modal-body .input-wrapper textarea {
  width: 100%;
  resize: none;
  padding: 15px 20px;
  font: 500 18px/22px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #080c24;
  border: 1px solid #d6d6d6;
}

#complaint_modal_section .modal .modal-body .input-wrapper input {
  margin: 0 0 20px;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}

#complaint_modal_section .modal .modal-body .input-wrapper textarea {
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

#complaint_modal_section .modal .modal-footer button {
  padding: 19px 60px;
  margin: 0;
}

#complaint_modal_section .modal .modal-footer #resetButton {
  background-color: transparent;
  border: 2px solid #2C4298;
  color: #2C4298;
}

#complaint_modal_section .modal .modal-footer #resetButton:hover {
  background-color: #2C4298;
  color: #fff;
}

#complaint_modal_section .modal .modal-footer button[type="submit"] {
  background-color: #2C4298;
  border: 2px solid #2C4298;
  color: #fff;
}

#complaint_modal_section .modal .modal-footer button[type="submit"]:hover {
  background-color: transparent;
  color: #2C4298;
}

#complaint_modal_section .modal #staticBackdropLabel {
  font-size: 30px !important;
  line-height: 32px !important;
}

@media (max-width: 1299px) {
  #complaint_modal_section .modal {
    --bs-modal-width: 1100px;
  }
}

@media (max-width: 1199px) {
  #complaint_modal_section .modal {
    --bs-modal-width: 950px;
  }

  #complaint_modal_section .modal #staticBackdropLabel {
    font-size: 28px !important;
    line-height: 30px !important;
  }
}

@media (max-width: 991px) {
  #complaint_modal_section .modal {
    --bs-modal-width: 700px;
  }

  #complaint_modal_section .modal .modal-content {
    padding: 30px;
  }

  #complaint_modal_section .modal .modal-header {
    padding: 0 0 20px;
  }

  #complaint_modal_section .modal .modal-footer {
    gap: 20px;
  }

  #complaint_modal_section .modal .modal-body {
    padding: 20px 0;
  }

  #complaint_modal_section .modal .modal-footer button {
    padding: 15px 50px;
  }

  #complaint_modal_section .modal #staticBackdropLabel {
    font-size: 26px !important;
    line-height: 28px !important;
  }
}

@media (max-width: 767px) {
  #complaint_modal_section {
    --bs-modal-width: 520px;
  }

  #complaint_modal_section .modal-content {
    padding: 20px 30px;
  }

  #complaint_modal_section .modal-footer {
    gap: 15px;
  }

  #complaint_modal_section .modal-body .input-wrapper input {
    margin: 0 0 15px;
  }

  #complaint_modal_section .modal-header {
    padding: 0 0 15px;
  }

  #complaint_modal_section .modal-body {
    padding: 15px 0;
  }

  #complaint_modal_section .modal-body .input-wrapper label {
    font-size: 14px;
    line-height: 16px;
  }

  #complaint_modal_section .modal-body .input-wrapper input,
  #complaint_modal_section .modal-body .input-wrapper textarea {
    padding: 13px 20px;
    font-size: 16px;
    line-height: 18px;
  }

  #complaint_modal_section #exampleModalLabel {
    font-size: 24px !important;
    line-height: 26px !important;
  }

  #complaint_modal_section .modal .modal-body .input-wrapper label {
    font-size: 14px;
    line-height: 16px;
  }
}

@media (max-width: 575px) {
  #complaint_modal_section {
    margin: -120px 0 40px;
  }

  #complaint_modal_section .modal {
    --bs-modal-width: 100%;
  }
}

@media (max-width: 480px) {
  #complaint_modal_section .modal .modal-content {
    padding: 20px;
  }

  #complaint_modal_section .modal #staticBackdropLabel {
    font-size: 20px !important;
    line-height: 22px !important;
    text-align: left;
  }

  #complaint_modal_section .modal .modal-header .btn-close {
    font-size: 12px;
    list-style: 14px;
  }

  #complaint_modal_section .modal .modal-footer button {
    padding: 13px 45px;
  }

  #complaint_modal_section .modal .modal-body .input-wrapper input {
    margin: 0 0 12px;
  }

  #emailOTPModal .email_section .modal-header,
  #emailOTPModal .otp_section .modal-header {
    margin-top: 0rem !important;
  }
}

@media (max-width: 360px) {
  #complaint_modal_section .modal #staticBackdropLabel {
    font-size: 18px !important;
    line-height: 20px !important;
  }

  #complaint_modal_section .modal .modal-footer {
    gap: 10px;
  }

  #complaint_modal_section .modal .modal-footer button {
    padding: 12px 35px;
  }

  #complaint_modal_section .modal .modal-body .input-wrapper input {
    margin: 0 0 10px;
  }
}

#complaint_modal_section .modal .modal-header {
  display: flex !important;
}

#complaint_modal .is-invalid {
  border-color: #dc3545 !important;
}

#complaint_modal .invalid-feedback {
  color: #dc3545;
  margin-top: -1rem;
  font-size: 0.7rem;
  margin-top: 0.4rem;
}

@media only screen and (max-width: 600px) {
  #complaint_modal .invalid-feedback {
    color: #dc3545;
    margin-top: 0rem !important;
    font-size: 0.7rem;
    margin-top: 0.4rem;
  }
}

#complaint_modal .is-valid {
  border-color: #28a745 !important;
  position: relative;
}

#complaint_modal .is-valid::after {
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #28a745;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

#complaint_modal .input-wrapper {
  margin-top: 10px !important;
  height: 100% !important;
}

#form_enquiry .input-wrapper span {
  height: 0px !important;
}

#complaint_modal #message-error {
  margin-top: 0rem !important;
}

#complaint_modal .input-wrapper select {
  font: 500 18px / 24px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #080C24;
  border: 1px solid #D6D6D6;
  border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  width: 100%;
  padding: 14px 25px;
  background-color: transparent;
  box-shadow: none !important;
}

#emailOTPModal #email_box_01 {
  padding: 15px 20px !important;
  text-align: center;
  border: #b12b2b2e 1px solid;
  border-radius: 25px !important;
}

#emailOTPModal .modal-desc {
  margin-bottom: 2rem;
  font-size: large;
  font-family: 'Plus Jakarta Sans';
}

#emailOTPModal .email_section .modal-header,
#emailOTPModal .otp_section .modal-header {
  border: none !important;
  padding: 0px !important;
  margin-top: -1rem;
  display: flex !important;
}

#query_model_section .modal {
  background: rgba(83, 83, 83, 0.3);
  backdrop-filter: blur(10px);
  text-align: center;
  --bs-modal-border-radius: 20px;
  transition: 400ms ease-in-out;
  -webkit-transition: 400ms ease-in-out;
  -moz-transition: 400ms ease-in-out;
  -ms-transition: 400ms ease-in-out;
  -o-transition: 400ms ease-in-out;
  --bs-modal-width: 800px;
}

#query_model_section .modal .modal-content {
  padding: 30px 50px;
}

#query_model_section .modal #staticBackdropLabel {
  font: 600 32px/34px "Plus Jakarta Sans", helvetica, sans-serif !important;
  color: #080C24;
}

#query_model_section .modal .modal-header,
#query_model_section .modal .modal-body,
#query_model_section .modal .modal-footer {
  padding: 0;
}

#query_model_section .modal .modal-header .btn-close {
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
}

#query_model_section .modal .modal-header .btn-close:hover {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}

#query_model_section .modal .modal-header {
  border-bottom: 1px solid #D6D6D6;
  padding: 0 0 30px;
}

#query_model_section .modal .modal-footer {
  border-top: none;
  justify-content: center;
  gap: 30px;
}

#query_model_section .modal .modal-body {
  text-align: left;
  padding: 30px 0;
}

#query_model_section .modal .modal-body .input-wrapper label {
  font: 500 16px/18px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #565969;
  margin: 0 0 5px;
  display: block;
}

#query_model_section .modal .modal-body .input-wrapper input,
#query_model_section .modal .modal-body .input-wrapper textarea {
  width: 100%;
  resize: none;
  padding: 15px 20px;
  font: 500 18px/22px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #080c24;
  border: 1px solid #d6d6d6;
}

#query_model_section .modal .modal-body .input-wrapper input {
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}

#query_model_section .modal .modal-body .input-wrapper textarea {
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

#query_model_section .modal .modal-footer button {
  padding: 19px 60px;
  margin: 0;
}

#query_model_section .modal .modal-footer #resetButton {
  background-color: transparent;
  border: 2px solid #2C4298;
  color: #2C4298;
}

#query_model_section .modal .modal-footer #resetButton:hover {
  background-color: #2C4298;
  color: #fff;
}

#query_model_section .modal .modal-footer button[type="submit"] {
  background-color: #2C4298;
  border: 2px solid #2C4298;
  color: #fff;
}

#query_model_section .modal .modal-footer button[type="submit"]:hover {
  background-color: transparent;
  color: #2C4298;
}

#query_model_section .modal #staticBackdropLabel {
  font-size: 30px !important;
  line-height: 32px !important;
}

@media (max-width: 1299px) {
  #query_model_section .modal {
    --bs-modal-width: 1100px;
  }
}

@media (max-width: 1199px) {
  #query_model_section .modal {
    --bs-modal-width: 950px;
  }

  #query_model_section .modal #staticBackdropLabel {
    font-size: 28px !important;
    line-height: 30px !important;
  }
}

@media (max-width: 991px) {
  #query_model_section .modal {
    --bs-modal-width: 700px;
  }

  #query_model_section .modal .modal-content {
    padding: 30px;
  }

  #query_model_section .modal .modal-header {
    padding: 0 0 20px;
  }

  #query_model_section .modal .modal-footer {
    gap: 20px;
  }

  #query_model_section .modal .modal-body {
    padding: 20px 0;
  }

  #query_model_section .modal .modal-footer button {
    padding: 15px 50px;
  }

  #query_model_section .modal #staticBackdropLabel {
    font-size: 26px !important;
    line-height: 28px !important;
  }
}

@media (max-width: 767px) {
  #query_model_section {
    --bs-modal-width: 520px;
  }

  #query_model_section .modal-content {
    padding: 20px 30px;
  }

  #query_model_section .modal-footer {
    gap: 15px;
  }

  #query_model_section .modal-body .input-wrapper input {
    margin: 0 0 15px;
  }

  #query_model_section .modal-header {
    padding: 0 0 15px;
  }

  #query_model_section .modal-body {
    padding: 15px 0;
  }

  #query_model_section .modal-body .input-wrapper label {
    font-size: 14px;
    line-height: 16px;
  }

  #query_model_section .modal-body .input-wrapper input,
  #query_model_section .modal-body .input-wrapper textarea {
    padding: 13px 20px;
    font-size: 16px;
    line-height: 18px;
  }

  #query_model_section #exampleModalLabel {
    font-size: 24px !important;
    line-height: 26px !important;
  }

  #query_model_section .modal .modal-body .input-wrapper label {
    font-size: 14px;
    line-height: 16px;
  }
}

@media (max-width: 575px) {
  #query_model_section {
    margin: -120px 0 40px;
  }

  #query_model_section .modal {
    --bs-modal-width: 100%;
  }
}

@media (max-width: 480px) {
  #query_model_section .modal .modal-content {
    padding: 20px;
  }

  #query_model_section .modal #staticBackdropLabel {
    font-size: 20px !important;
    line-height: 22px !important;
    text-align: left;
  }

  #query_model_section .modal .modal-header .btn-close {
    font-size: 12px;
    list-style: 14px;
  }

  #query_model_section .modal .modal-footer button {
    padding: 13px 45px;
  }

  #query_model_section .modal .modal-body .input-wrapper input {
    margin: 0 0 12px;
  }
}

@media (max-width: 360px) {
  #query_model_section .modal #staticBackdropLabel {
    font-size: 18px !important;
    line-height: 20px !important;
  }

  #query_model_section .modal .modal-footer {
    gap: 10px;
  }

  #query_model_section .modal .modal-footer button {
    padding: 12px 35px;
  }

  #query_model_section .modal .modal-body .input-wrapper input {
    margin: 0 0 10px;
  }
}

#query_model_section .modal .modal-header {
  display: flex !important;
}

#query_model_section .is-invalid {
  border-color: #dc3545 !important;
}

#query_model_section .invalid-feedback {
  color: #dc3545;
  margin-top: -1rem;
  font-size: 0.7rem;
  margin-top: 0.4rem;
}

@media only screen and (max-width: 600px) {
  #query_model_section .invalid-feedback {
    color: #dc3545;
    margin-top: 0rem !important;
    font-size: 0.7rem;
    margin-top: 0.4rem;
  }
}

#query_model_section .is-valid {
  border-color: #28a745 !important;
  position: relative;
}

#query_model_section .is-valid::after {
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #28a745;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

#query_model_section .input-wrapper {
  margin-top: 10px !important;
  height: 100% !important;
}

#form_enquiry .input-wrapper span {
  height: 0px !important;
}

#query_model_section #message-error {
  margin-top: 0rem !important;
}

#query_model_section .input-wrapper select {
  font: 500 18px / 24px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #757575;
  border: 1px solid #D6D6D6;
  border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  width: 100%;
  padding: 14px 25px;
  background-color: transparent;
  box-shadow: none !important;
}

#query_model_section #queriesModal .input-wrapper span {
  font-size: 0.7rem;
  height: 10px;
}

#query_model_section #queriesModal .modal-footer #query_submit {
  width: 100%;
  display: block;
}

#tracking_ticket_type {
  appearance: none;
  background-image: url(../images/new_images/down-arrow.svg);
  background-repeat: no-repeat;
  background-position: right 1.6rem top 50%;
  background-size: 0.65rem auto;
  cursor: pointer;
}

.iti__flag-container {
  pointer-events: none;
}

@media (max-width: 480px) {
  #help-with-tracking {
    margin-top: 10rem;
  }

  .track-details button#tracing_history_btn {
    font: 700 14px / 16px "Plus Jakarta Sans", helvetica, sans-serif;
    border: 1px solid #2C4298;
    color: #2C4298;
    background-color: transparent;
    padding: 10px 20px;
    width: 90%;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    overflow: hidden;
    text-align: center;
    transition: all 400ms ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -ms-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
    margin: 20px 0 0;
    margin-left: 15px;
    margin-bottom: 20px;
  }
}

#inner-hero .alcs-detail ul li span {
  width: 21rem;
  text-align: start;
  margin-left: 1rem;
}

footer .footer-top .footer-logo {
  max-width: 230px;
  margin: 0 0 25px;
}

footer .footer-top .iso-certified-img-wrapper img {
  max-width: 110px;
}

#quote-for-shipping .select2-container .select2-selection--single {
  height: auto;
}

#quote-for-shipping .select2-container .select2-selection--single .select2-selection__rendered {
  padding: 0;
}

#quote-for-shipping .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #080c24;
  line-height: 24px;
}

#quote-for-shipping .select2-selection__clear {
  display: none;
}

#quote-for-shipping .select2-container--default .select2-selection--single .select2-selection__arrow {
  right: 20px;
  top: 50%;
  bottom: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

#quote-for-shipping .select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #565969 transparent transparent transparent;
  border-width: 6px 5px 0 5px;
  height: 0;
  margin: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

#quote-for-shipping .iti__selected-country[aria-expanded="true"] .iti__selected-dial-code::before,
#quote-for-shipping .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #565969 transparent;
  border-width: 0 5px 6px 5px;
}

#quote-for-shipping .select2-container--default .select2-results__option--selected,
#quote-for-shipping .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #f2f2f2;
  color: #080c24;
}

#quote-for-shipping .select2-container--open .select2-dropdown--above,
#quote-for-shipping .select2-container--open .select2-dropdown--below,
#quote-for-shipping .select2-container--default .select2-search--dropdown .select2-search__field,
#quote-for-shipping .iti--inline-dropdown .iti__dropdown-content {
  border: 1px solid rgba(0, 0, 0, 0.175);
  overflow: hidden;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

#quote-for-shipping .select2-container {
  min-width: 100%;
}

@media (max-width: 1499px) {
  #quote-for-shipping .select2-selection {
    padding: 16px 15px;
  }
}

@media (max-width: 1399px) {
  #quote-for-shipping .select2-selection {
    font-size: 16px;
    line-height: 22px;
    padding: 16px 15px;
  }
}

@media (max-width: 1199px) {
  #quote-for-shipping .select2-selection {
    padding: 16px 20px;
  }
}

@media (max-width: 767px) {
  #quote-for-shipping .select2-selection {
    padding: 16px 15px;
  }
}

@media (max-width: 575px) {
  #quote-for-shipping .select2-selection {
    padding: 14px 10px;
  }
}

@media (max-width: 480px) {
  #quote-for-shipping .select2-selection {
    padding: 14px 15px;
  }
}

#error #error-content {
  text-align: center;
  margin: 200px 0 0;
}

#error #error-content .common-title {
  margin: 10px 0 20px;
}

#error #error-content .return-home-btn-wrapper {
  display: flex;
  justify-content: center;
  margin: 20px 0 0;
}

@media (max-width: 991px) {
  #error #error-content {
    margin: 50px 0 0;
  }
}

/* ============================ FUEL-SURCHARGE-PAGE ============================ */
/* ======================================================================================================== */
/* ============================ FUEL-SURCHARGE START ============================ */
#fuelSurcharge .aics-detail {
  width: 60%;
  margin: 0 auto;
}

#fuelSurcharge .container-detail-table {
  width: 58%;
  border: 1px solid #D6D6D6;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  overflow: hidden;
  margin: 35px auto;
}

#fuelSurcharge .container-detail-table .title-row {
  background-color: #f4f6ff;
}

#fuelSurcharge .container-detail-table .title-row,
#fuelSurcharge .container-detail-table .detail-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid #D6D6D6;
}

#fuelSurcharge .container-detail-table .detail-row:last-child {
  border-bottom: none;
}

#fuelSurcharge .container-detail-table .title-row h6,
#fuelSurcharge .container-detail-table .detail-row span {
  padding: 14px 15px;
  border-right: 1px solid #D6D6D6;
}

#fuelSurcharge .container-detail-table .title-row h6:last-child,
#fuelSurcharge .container-detail-table .detail-row span:last-child,
#fuelSurcharge .container-detail-table .detail-row div:last-child span:last-child {
  border-right: none;
}

#fuelSurcharge .container-detail-table .title-row h6 {
  font: 700 16px/18px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #2C4298;
  text-transform: capitalize;
}

#fuelSurcharge .container-detail-table .detail-row span {
  font: 500 15px/18px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #565969;
}

#fuelSurcharge .fuel-surcharge-details {
  margin: 35px 0;
}

@media (max-width: 1499px) {
  #fuelSurcharge .aics-detail {
    width: 70%;
  }

  #fuelSurcharge .container-detail-table {
    width: 62%;
  }
}

@media (max-width: 1399px) {
  #fuelSurcharge .container-detail-table .title-row h6 {
    font-size: 15px;
  }

  #fuelSurcharge .container-detail-table {
    width: 68%;
  }
}

@media (max-width: 1199px) {

  #fuelSurcharge .container-detail-table .title-row h6:last-child,
  #fuelSurcharge .container-detail-table .detail-row span:last-child {
    border: none;
  }

  #fuelSurcharge .container-detail-table {
    width: 80%;
  }
}

@media (max-width: 991px) {
  #fuelSurcharge .aics-detail {
    width: 100%;
  }

  #fuelSurcharge .container-detail-table {
    width: 100%;
    margin: 30px auto;
  }

  #fuelSurcharge .container-detail-table .title-row h6,
  #fuelSurcharge .container-detail-table .detail-row span {
    padding: 12px 10px;
    font-size: 14px;
    line-height: 16px;
  }

  #fuelSurcharge .fuel-surcharge-details {
    margin: 30px 0;
  }
}

@media (max-width: 767px) {

  #fuelSurcharge .container-detail-table .title-row,
  #fuelSurcharge .container-detail-table .detail-row {
    grid-template-columns: repeat(3, 1fr);
  }

  #fuelSurcharge .container-detail-table .title-row h6,
  #fuelSurcharge .container-detail-table .detail-row span {
    padding: 8px 10px;
  }
}

@media (max-width: 480px) {
  #fuelSurcharge .container-detail-table {
    margin: 25px auto;
  }

  #fuelSurcharge .fuel-surcharge-details {
    margin: 25px 0;
  }
}

/* ============================ FUEL-SURCHARGE END ============================ */

.bg-gray {
  background-color: #f4f5f7;
  padding: 100px 0;
}

.bg-white {
  background-color: #fff;
  padding: 100px 0;
}

.bg-blue {
  background-color: #B12B2B;
  padding: 100px 0;
}

.aics-detail .aics-inner-detail {
  margin: 0 0 50px;
}

.aics-detail .aics-inner-detail:last-child {
  margin: 0;
}

.aics-detail h4 {
  font: 700 24px/26px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #222;
  text-transform: uppercase;
  margin: 0 0 20px;
}

#privacyPolicy .aics-detail h4 {
  margin: 0 0 35px;
}

.aics-detail h5 {
  font: 600 16px/22px "Plus Jakarta Sans", helvetica, sans-serif;
  margin: 30px 0 15px;
  position: relative;
  padding: 0 0 0 20px;
}

.aics-detail h5::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 11px;
  height: 11px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  background-color: #B12B2B;
  margin: 7px 0 0;
}

.aics-detail ul,
.aics-detail ol {
  list-style: none;
  padding: 0;
  margin: 15px 0 0;
}

.aics-detail ul:first-child,
.aics-detail ol:first-child {
  margin: 0;
}

.aics-detail ul li,
.aics-detail ol li,
.aics-detail p,
.aics-detail b {
  font: 500 16px/28px "Plus Jakarta Sans", helvetica, sans-serif;
  color: #222;
  margin: 0 0 15px;
  position: relative;
  padding: 0 0 0 25px;
}

.aics-detail ol li {
  padding: 0;
}

.aics-detail ol li .ol-li-number {
  width: 23px;
  display: inline-block;
}

.aics-detail p {
  padding: 0;
  display: block;
}

.aics-detail p.note {
  margin: 0;
}

.aics-detail b {
  color: #222;
  font-weight: 600;
  padding: 0;
  display: block;
}

.aics-detail p b,
.aics-detail ul li b,
.aics-detail ol li b {
  display: inline;
}

.aics-detail b.important {
  margin: 15px 0 0;
}

.aics-detail p.note b {
  color: #222;
  font-weight: 600;
  padding: 0;
  margin: 0;
  display: inline;
}

.aics-detail ul li span,
.aics-detail ol li span,
.aics-detail p span,
.aics-detail p span a {
  color: #222;
  font-weight: 500;
  display: inline;
}

.aics-detail ul li a,
.aics-detail ol li a {
  color: #222;
}

.aics-detail p a {
  color: #2C4298;
  text-decoration: underline;
  transition: color 0.2s;
}

.aics-detail p a.link {
  color: #2C4298;
}

.aics-detail p a:hover {
  color: #B12B2B;
}

.aics-detail p a.no-underline {
  text-decoration: none;
}

.aics-detail ul li:last-child,
.aics-detail ol li:last-child {
  margin: 0;
}

.aics-detail ul li::before {
  content: "\f058";
  position: absolute;
  font-family: "Font Awesome 6 Free";
  top: 0;
  left: 0;
  font-weight: 900;
  font-size: 16px;
  line-height: 18px;
  color: #B12B2B;
  margin: 6px 0 0;
}

@media (max-width: 1299px) {

  .bg-gray,
  .bg-white,
  .bg-blue {
    padding: 80px 0;
  }
}

@media (max-width: 1199px) {

  .bg-gray,
  .bg-white,
  .bg-blue {
    padding: 60px 0;
  }

  .aics-detail .aics-inner-detail {
    margin: 0 0 40px;
  }

  .aics-detail h5 {
    margin: 25px 0 15px;
  }

  #privacyPolicy .aics-detail h4 {
    margin: 0 0 30px;
  }
}

@media (max-width: 991px) {

  .bg-gray,
  .bg-white,
  .bg-blue {
    padding: 40px 0;
  }

  .aics-detail .aics-inner-detail {
    margin: 0 0 30px;
  }

  .aics-detail h4 {
    font-size: 22px;
    line-height: 30px;
    margin: 0 0 12px;
  }

  #privacyPolicy .aics-detail h4 {
    margin: 0 0 25px;
  }

  .aics-detail h5 {
    margin: 20px 0 10px;
  }

  .aics-detail ul li,
  .aics-detail ol li,
  .aics-detail p,
  .aics-detail b {
    font-size: 15px;
    line-height: 26px;
    margin: 0 0 10px;
  }

  .aics-detail b.important {
    margin: 10px 0 0;
  }

  .aics-detail ul {
    margin: 10px 0 0;
  }

  .aics-detail ul li::before,
  .aics-detail ol li::before {
    font-size: 15px;
  }
}

@media (max-width: 480px) {

  .bg-gray,
  .bg-white,
  .bg-blue {
    padding: 30px 0;
  }

  .aics-detail .aics-inner-detail {
    margin: 0 0 25px;
  }

  .aics-detail h4 {
    font-size: 20px;
    line-height: 28px;
    margin: 0 0 10px;
  }

  #privacyPolicy .aics-detail h4 {
    margin: 0 0 12px;
  }

  .aics-detail h5 {
    margin: 15px 0 8px;
  }

  .aics-detail ul li,
  .aics-detail ol li,
  .aics-detail p,
  .aics-detail b {
    font-size: 14px;
    line-height: 24px;
    margin: 0 0 8px;
  }

  .aics-detail b.important {
    margin: 8px 0 0;
  }

  .aics-detail ul {
    margin: 8px 0 0;
  }

  .aics-detail ul li::before,
  .aics-detail ol li::before {
    font-size: 14px;
    margin: 4px 0 0;
  }
}

@media (max-width: 480px) {

  .bg-gray,
  .bg-white,
  .bg-blue {
    padding: 30px 0;
  }

  .aics-detail .aics-inner-detail {
    margin: 0 0 25px;
  }

  .aics-detail h4 {
    font-size: 20px;
    line-height: 28px;
    margin: 0 0 10px;
  }

  #privacyPolicy .aics-detail h4 {
    margin: 0 0 12px;
  }

  .aics-detail h5 {
    margin: 15px 0 8px;
  }

  .aics-detail ul li,
  .aics-detail ol li,
  .aics-detail p,
  .aics-detail b {
    font-size: 14px;
    line-height: 24px;
    margin: 0 0 8px;
  }

  .aics-detail b.important {
    margin: 8px 0 0;
  }

  .aics-detail ul {
    margin: 8px 0 0;
  }

  .aics-detail ul li::before,
  .aics-detail ol li::before {
    font-size: 14px;
    margin: 4px 0 0;
  }
}


#feedbackModel .rating {
  display: inline-block;
  direction: rtl;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  margin-left: 1rem;
}

#feedbackModel .rating input {
  display: none;
}

#feedbackModel .rating label {
  cursor: pointer;
  color: lightgray;
}

/* Change color on hover */
#feedbackModel .rating label:hover,
#feedbackModel .rating label:hover~label {
  color: gold;
}

/* Custom colors for stars */
#feedbackModel .rating input:checked~label:nth-of-type(-n+2) {
  color: #00800094;
}

#feedbackModel .rating input:checked~label:nth-of-type(-n+1) {
  color: green;
}

#feedbackModel .rating input:checked~label:nth-of-type(3) {
  color: gold;
}

#feedbackModel .rating input:checked~label:nth-of-type(4) {
  color: #ff00008c;
}

#feedbackModel .rating input:checked~label:nth-of-type(5) {
  color: red;
}

#feedbackModel .comment-box {
  margin-bottom: 1rem;
}

#feedbackModel .comment-box textarea {
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  border-radius: 4px;
  border: 1px solid #ccc;
  margin-top: 1rem;
}

#feedbackModel .submit-button button {
  padding: 0.75rem 2rem;
  font-size: 1rem;
  background-color: #ff0000c4;
  color: white;
  border: none;
  border-radius: 25px;
  cursor: pointer;
}

#feedbackModel .submit-button button:hover {
  background-color: #218838;
}

#track-shipment #feedbackModel {
  text-align: left;
}

#track-shipment #ratingForm {
  margin-top: 1rem;
}

#track-shipment #feedbackModel .bullet {
  position: relative;
  padding-left: 20px;
}

#track-shipment #feedbackModel .bullet::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: black;
  border-radius: 50%;
}

#track-shipment #feedbackModel p {
  font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  #feedbackModel .modal-content {
    width: 95%;
  }

  #feedbackModel .rating {
    font-size: 1.5rem;
  }

  #feedbackModel .submit-button button {
    width: 100%;
    font-size: 1rem;
  }

  #feedbackModel .modal-header img {
    height: 40px;
  }

  #feedbackModel .modal-heading h2 {
    font-size: 1.5rem;
  }
}


/* ============================ FEEDBACK POPUP START ============================ */
.feedback.modal {
  --bs-modal-width: 700px;
  --bs-modal-border-radius: 30px;
}

.feedback.modal .modal-content .btn-close {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #fff;
  color: #000;
  top: -10px;
  right: -10px;
  position: absolute;
  margin: 0 0 0 auto;
  opacity: 1;
  z-index: 1;
}

.feedback.modal .modal-main-header {
  position: relative;
  padding: 0 55px;
}

.feedback.modal .modal-main-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  height: 100%;
  background-color: #B12B2B;
  border-radius: 30px 0 0 0;
  -webkit-border-radius: 30px 0 0 0;
  -moz-border-radius: 30px 0 0 0;
  -ms-border-radius: 30px 0 0 0;
  -o-border-radius: 30px 0 0 0;
}

.feedback.modal .modal-main-header::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 70%;
  height: 100%;
  background-color: #2C4298;
  border-radius: 0 30px 0 0;
  -webkit-border-radius: 0 30px 0 0;
  -moz-border-radius: 0 30px 0 0;
  -ms-border-radius: 0 30px 0 0;
  -o-border-radius: 0 30px 0 0;
}

.feedback.modal .modal-main-header .modal-logo {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 12px 0;
}

.feedback.modal .modal-main-header .modal-logo::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transform: skewX(-18deg);
  -webkit-transform: skewX(-18deg);
  -moz-transform: skewX(-18deg);
  -ms-transform: skewX(-18deg);
  -o-transform: skewX(-18deg);
  z-index: -1;
}

.feedback.modal .modal-main-header .modal-logo {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 12px 25px;
}

.feedback.modal .modal-header {
  background-color: #e7ecff;
  padding: 30px 45px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border: none;
}

.feedback.modal .modal-header .delivery-boy-image {
  margin: -95px 0 -30px;
  position: relative;
  z-index: 1;
}

.feedback.modal .modal-header #exampleModalLabel {
  font: 700 21px/16px "Plus Jakarta Sans", helvetica, sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #000;
}

.feedback.modal .modal-body {
  padding: 40px;
}

.feedback.modal .modal-body ul li {
  position: relative;
  padding: 0 0 0 22px;
  margin: 0 0 30px;
}

.feedback.modal .modal-body ul li p {
  font: 500 15px/20px "Plus Jakarta Sans", helvetica, sans-serif;
  letter-spacing: 0;
  margin: 0 0 15px;
}

.feedback.modal .modal-body ul li::before {
  content: '•';
  position: absolute;
  top: 0;
  left: 0;
  font-size: 25px;
  line-height: 20px;
  color: #000;
}

.feedback.modal .modal-body #feedback-form .rating-stars {
  display: flex;
  align-items: center;
  gap: 30px;
  direction: rtl;
  justify-content: end;
}

.feedback.modal .modal-body #feedback-form .rating-stars input {
  display: none;
}

.feedback.modal .modal-body #feedback-form .rating-stars label {
  cursor: pointer;
  position: relative;
  width: 44px;
  height: 44px;
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
}

.feedback.modal .modal-body #feedback-form .rating-stars label span {
  position: absolute;
  font-family: "Font Awesome 6 Free";
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  line-height: 40px;
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
}

.feedback.modal .modal-body #feedback-form .rating-stars label .active-star {
  opacity: 0;
  visibility: hidden;
}

/* Show active star when the corresponding radio is checked */
.feedback.modal .modal-body #feedback-form .rating-stars input:checked+label .active-star {
  opacity: 1;
  visibility: visible;
}

/* Hide unselected stars when one is checked */
.feedback.modal .modal-body #feedback-form .rating-stars input:checked~label .star {
  opacity: 1;
  visibility: visible;
}

/* Keep unselected stars visible */
.feedback.modal .modal-body #feedback-form .rating-stars input:checked+label .star {
  opacity: 0;
  visibility: hidden;
}

.feedback.modal .modal-body #feedback-form ul li .rating-stars label span.red i {
  color: #b2062c;
}

.feedback.modal .modal-body #feedback-form ul li .rating-stars label span.orange i {
  color: #ed5c09;
}

.feedback.modal .modal-body #feedback-form ul li .rating-stars label span.yellow i {
  color: #f6de08;
}

.feedback.modal .modal-body #feedback-form ul li .rating-stars label span.green i {
  color: #c2d500;
}

.feedback.modal .modal-body #feedback-form ul li .rating-stars label span.dark-green i {
  color: #6aa62c;
}

.feedback.modal .modal-body #feedback-form textarea {
  border: 1px solid #a6abae;
  border-radius: 10px;
  overflow: hidden;
  padding: 10px 15px 20px;
  width: 100%;
  resize: none;
  font: 500 14px/22px "Plus Jakarta Sans", helvetica, sans-serif;
}

.feedback.modal .modal-body #feedback-form button {
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .feedback.modal {
    --bs-modal-width: 520px;
  }

  .feedback.modal .modal-main-header .modal-logo {
    padding: 12px 20px;
  }

  .feedback.modal .modal-main-header .modal-logo::after {
    transform: skewX(-15deg);
    -webkit-transform: skewX(-15deg);
    -moz-transform: skewX(-15deg);
    -ms-transform: skewX(-15deg);
    -o-transform: skewX(-15deg);
    z-index: -1;
  }

  .feedback.modal .modal-main-header .modal-logo img {
    max-width: 155px;
  }

  .feedback.modal .modal-header {
    padding: 25px;
    gap: 20px;
  }

  .feedback.modal .modal-header #exampleModalLabel {
    font-size: 20px;
    line-height: 22px;
  }

  .feedback.modal .modal-header .delivery-boy-image {
    margin: -85px 0 -25px;
  }

  .feedback.modal .modal-header .delivery-boy-image img {
    max-width: 130px;
  }

  .feedback.modal .modal-body {
    padding: 30px;
  }

  .feedback.modal .modal-body ul li p {
    font-size: 15px;
    line-height: 22px;
    margin: 0 0 10px;
  }

  .feedback.modal .modal-body ul li {
    margin: 0 0 20px;
  }

  .feedback.modal .modal-body #feedback-form textarea {
    padding: 10px 15px 15px;
  }

  .feedback.modal .modal-body #feedback-form button {
    padding: 12px 23px;
    font-size: 13px;
    line-height: 15px;
  }

  .feedback.modal .modal-content .btn-close {
    width: 25px;
    height: 25px;
  }
}

@media (max-width: 575px) {
  .feedback.modal {
    --bs-modal-width: 100%
  }

  .feedback.modal .modal-content .btn-close {
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background-size: 10px;
  }

  .feedback.modal .modal-main-header .modal-logo img {
    max-width: 130px;
  }

  .feedback.modal .modal-header {
    padding: 20px 15px;
    gap: 15px;
  }

  .feedback.modal .modal-header #exampleModalLabel {
    font-size: 18px;
    line-height: 20px;
  }

  .feedback.modal .modal-header .delivery-boy-image {
    margin: -85px 0 -35px;
  }

  .feedback.modal .modal-header .delivery-boy-image img {
    max-width: 110px;
  }

  .feedback.modal .modal-body {
    padding: 15px;
  }

  .feedback.modal .modal-body ul li {
    padding: 0 0 0 18px;
  }

  .feedback.modal .modal-body ul li:last-child {
    margin: 0 0 15px;
  }

  .feedback.modal .modal-body ul li::before {
    font-size: 20px;
    line-height: 18px;
  }

  .feedback.modal .modal-body #feedback-form .rating-stars {
    gap: 25px;
  }

  .feedback.modal .modal-body #feedback-form .rating-stars label {
    width: 38px;
    height: 38px;
  }

  .feedback.modal .modal-body #feedback-form .rating-stars label span {
    font-size: 38px;
    line-height: 38px;
  }
}

@media (max-width: 480px) {
  .feedback.modal .modal-main-header {
    padding: 0 45px;
  }

  .feedback.modal .modal-main-header .modal-logo img {
    max-width: 105px;
  }

  .feedback.modal .modal-main-header .modal-logo {
    padding: 10px 15px;
  }

  .feedback.modal .modal-main-header .modal-logo::after {
    transform: skewX(-12deg);
    -webkit-transform: skewX(-12deg);
    -moz-transform: skewX(-12deg);
    -ms-transform: skewX(-12deg);
    -o-transform: skewX(-12deg);
    z-index: -1;
  }

  .feedback.modal .modal-header {
    padding: 15px;
  }

  .feedback.modal .modal-header .delivery-boy-image {
    margin: -75px 0 -35px;
  }

  .feedback.modal .modal-body ul li p {
    font-size: 14px;
    line-height: 20px;
  }

  .feedback.modal .modal-body #feedback-form .rating-stars {
    gap: 15px;
  }

  .feedback.modal .modal-body #feedback-form .rating-stars label {
    width: 34px;
    height: 34px;
  }

  .feedback.modal .modal-body #feedback-form .rating-stars label span {
    font-size: 34px;
    line-height: 34px;
  }
}

@media (max-width: 360px) {
  .feedback.modal .modal-header #exampleModalLabel {
    font-size: 16px;
    line-height: 20px;
  }
}

/* ============================ FEEDBACK POPUP END ============================ */