@charset "UTF-8";
@font-face {
  font-family: "Gilroy";
  src: url("../../fonts/Gilroy-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroysemibold";
  src: url("../../fonts/Gilroy-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroymedium";
  src: url("../../fonts/Gilroy-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
:root {
  --primary-main-color: #BE1623;
  --black: #000000;
  --white: #fff;
  --gilroy: "Gilroy";
  --gilroySemiBold: "Gilroysemibold";
  --gilroyMedium: "Gilroymedium";
}

body {
  font-family: var(--gilroy);
}
@media screen and (max-width: 992px) {
  body {
    overflow: unset !important;
  }
}

img,
video {
  max-width: 100%;
}

ul,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

p {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

.primary-title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.1;
  font-family: var(--gilroyMedium);
  color: var(--black);
  margin-bottom: 0;
}
.primary-title span {
  color: #6F6F6F;
}
.primary-title.white {
  color: var(--white);
}

.secondary-title {
  color: var(--white);
  font-size: clamp(50px, 5vw, 80px);
  font-weight: 600;
  line-height: 1.1;
}

.desc {
  font-family: var(--gilroy);
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 400;
  line-height: 1.1;
  color: #6F6F6F;
}
.desc.light {
  color: rgba(255, 255, 255, 0.6980392157);
}
.desc.white {
  color: var(--white);
}

section {
  margin-bottom: 80px;
}
@media screen and (max-width: 991.98px) {
  section {
    margin-bottom: 50px;
  }
}
section:nth-last-child(1) {
  margin-bottom: 0;
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  transition: 0.3s all;
  gap: 0;
}
.primary-btn span {
  background: var(--primary-main-color);
  padding: 12px 24px;
  border-radius: 60px;
  font-family: var(--gilroySemiBold);
  border: solid 1px var(--primary-main-color);
  font-size: clamp(14px, 2vw, 16px);
  color: var(--white);
  display: block;
}
.primary-btn span:nth-child(2) {
  border: solid 1px var(--primary-main-color);
  background: var(--primary-main-color);
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  transition: 0.3s all;
  padding: 0;
}
.primary-btn:hover {
  gap: 15px;
}

.secondary-btn {
  display: inline-flex;
  align-items: center;
  transition: 0.3s all;
  gap: 0;
}
.secondary-btn.red span {
  background-color: var(--primary-main-color);
  color: var(--white);
}
.secondary-btn span {
  background: transparent;
  border: solid 1px var(--primary-main-color);
  padding: 12px 24px;
  border-radius: 60px;
  font-family: var(--gilroySemiBold);
  font-size: clamp(14px, 2vw, 16px);
  color: var(--white);
  display: block;
  transition: 0.3s all;
}
.secondary-btn span:nth-child(2) {
  border: solid 1px var(--primary-main-color);
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  transition: 0.3s all;
  padding: 0;
}
.secondary-btn:hover {
  gap: 10px;
}
.secondary-btn:hover span {
  background: var(--primary-main-color);
}
.secondary-btn:hover span:nth-child(2) {
  background: var(--primary-main-color);
}

.sub-heading {
  font-size: 16px;
  font-family: var(--gilroySemiBold);
  font-weight: 600;
  color: var(--black);
  display: inline-flex;
  gap: 10px;
}
.sub-heading.white {
  color: var(--white);
}

/* SIDEBAR START STYLE */
body.open-sidebar .sidebar {
  transition-delay: 0.2s;
}

body.open-sidebar .sidebar-bg,
body.open-sidebar .sidebar {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.sidebar-bg {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  transform: translateX(400px);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 102;
}

.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  max-width: 350px;
  background-color: var(--white);
  box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.1215686275);
  z-index: 999999;
  transform: translateX(400px);
  visibility: hidden;
  transition: 0.3s;
  opacity: 0;
}

.sidebar .sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  gap: 10px;
  border-bottom: 1px solid rgba(190, 22, 36, 0.2588235294);
}

.sidebar .sidebar-body {
  overflow: auto;
  height: calc(100% - 80px);
  padding: 15px;
}

.sidebar .sidebar-body ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.sidebar .sidebar-body ul .dropdownmenu {
  padding-bottom: 10px;
  display: none;
}
.sidebar .sidebar-body ul .dropdownmenu a {
  padding: 6px 10px;
  font-size: 14px;
}
.sidebar .sidebar-body ul .dropdownmenu a:not(:last-child) {
  border-bottom: 1px solid rgba(190, 22, 36, 0.2588235294);
}

.sidebar .sidebar-body ul li {
  border-bottom: 1px solid rgba(190, 22, 36, 0.2588235294);
}

.sidebar .sidebar-body ul li a {
  display: block;
  padding: 10px;
  color: var(--black);
  font-family: var(--gilroySemiBold);
  font-size: 1.1rem;
}
.sidebar .sidebar-body ul li a.manu-link {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}
.sidebar .sidebar-body ul li a.manu-link svg {
  transition: 0.3s linear;
}
.sidebar .sidebar-body ul li a.manu-link.active svg {
  transform: rotate(-180deg);
}

.sidebar .sidebar-body ul li:last-child {
  border-bottom: none;
}

.menu-open.openSidebar {
  cursor: pointer;
}

/* Select2 End */
.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option.select2-results__option--highlighted,
.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option.select2-results__option--selected,
.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option[aria-selected=true]:not(.select2-results__option--highlighted) {
  color: #000;
  background-color: #F6F6F6;
}

.select2-container--bootstrap-5 .select2-dropdown.select2-dropdown--below {
  font-family: "ArchivoRegular", sans-serif;
}

.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option {
  font-size: 14px;
}

.select2-container--bootstrap-5 .select2-dropdown .select2-search .select2-search__field:focus,
.select2-container--bootstrap-5.select2-container--focus .select2-selection,
.select2-container--bootstrap-5.select2-container--open .select2-selection {
  box-shadow: none;
}

.select2-container--bootstrap-5 .select2-dropdown .select2-search .select2-search__field,
.select2-container--bootstrap-5 .select2-dropdown .select2-search .select2-search__field:focus {
  border-color: #ced4da;
}

.select2-container--bootstrap-5 .select2-dropdown {
  border-color: #ced4da;
}

.input .select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered {
  font-family: var(--gilroy);
  font-size: 14px;
  font-weight: 400;
  color: #808080;
  padding: 0;
  line-height: 1.5;
}

.input .select2-container .select2-selection--single {
  height: unset;
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.0509803922) !important;
  padding-block: 10px;
  border-radius: 8px;
  border: 0;
  font-size: 14px;
  font-family: "ArchivoRegular", sans-serif;
}

.error .select2-container .select2-selection--single {
  border: solid 1px var(--primary-main-color) !important;
}

/* Select2 End */
.iti {
  width: 100%;
}
.iti .iti__flag-container {
  padding-inline-start: 20px;
}
.iti .iti__tel-input {
  padding-left: 100px !important;
}
.iti .iti__search-input {
  padding: 10px;
}

.toastify {
  font-family: var(--gilroySemiBold) !important;
  font-weight: 600 !important;
  color: #000 !important;
  display: flex;
  font-size: 14px;
}

.toastify .toast-close {
  color: var(--primary-color);
  opacity: 1;
  padding-left: 10px;
}

.whatsapp-icon {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
}
.whatsapp-icon img {
  width: 50px;
}

.main-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}
.main-video video {
  width: 100%;
  height: 99vh;
  object-fit: cover;
}
@media screen and (max-width: 992px) {
  .main-video {
    display: none;
  }
}

main {
  position: relative;
}
@media screen and (max-width: 992px) {
  main {
    display: block !important;
  }
}

.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 50px;
  background-color: var(--primary-main-color);
  color: #fff;
  text-align: center;
  font-size: 13px;
  display: none;
  z-index: 99999;
}
.top-bar span {
  font-size: 30px;
  line-height: 0;
  cursor: pointer;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.show-top-bar .top-bar {
  display: block;
}

.show-top-bar .header {
  top: 38px;
}

.show-top-bar main {
  padding-top: 38px;
}

.show-top-bar .sticky-section {
  top: 140px !important;
}

@media screen and (max-width: 608px) {
  .show-top-bar .header {
    top: 54px;
  }
  .show-top-bar main {
    padding-top: 56px;
  }
}
@media screen and (max-width: 364px) {
  .show-top-bar .header {
    top: 74px;
  }
  .show-top-bar main {
    padding-top: 74px;
  }
}
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 12px 0;
  transition: 0.5s all;
  z-index: 1;
}
header.active {
  position: sticky;
  top: 0;
  z-index: 999;
  /* apni color laga lo */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  background: var(--white);
}
header.active .logo-menu-main .main-menu li a {
  color: var(--black);
}
header.active .logo-menu-main .main-menu li svg > path {
  transition: 0.3s ease-out;
  fill: var(--black);
}
@media screen and (max-width: 992px) {
  header {
    background: var(--white);
  }
}
header:hover {
  background: var(--white);
}
header:hover .logo-menu-main .main-menu li a {
  color: var(--black);
}
header:hover .logo-menu-main .main-menu li svg > path {
  transition: 0.3s ease-out;
  fill: var(--black);
}
header .logo-menu-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
header .logo-menu-main .main-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}
header .logo-menu-main .main-menu li a {
  font-family: var(--gilroySemiBold);
  font-size: 16px;
  color: var(--white);
  transition: 0.3s all;
}
header .logo-menu-main .main-menu li svg > path {
  transition: 0.3s ease-out;
}
header .logo-menu-main .main-menu li.drop {
  position: relative;
}
header .logo-menu-main .main-menu li.drop .manu-link::after {
  content: "";
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.0823529412);
  display: none;
  z-index: 1;
}
header .logo-menu-main .main-menu li.drop .dropmenu {
  position: absolute;
  top: calc(100% + 20px);
  left: 0;
  opacity: 0;
  visibility: hidden;
  background-color: #fff;
  overflow: auto;
  z-index: 1;
  transition: 0.2s linear;
  display: flex;
  flex-wrap: wrap;
  width: 633px;
  border-radius: 12px;
}
header .logo-menu-main .main-menu li.drop .dropmenu .menu-item {
  width: 211px;
  padding: 12px;
  min-height: 141px;
  display: flex;
  align-items: flex-end;
  gap: 15px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
header .logo-menu-main .main-menu li.drop .dropmenu .menu-item .name {
  font-size: 14px;
  line-height: 1.2;
  color: #fff;
  font-weight: 400;
  transition: 0.3s linear;
}
header .logo-menu-main .main-menu li.drop .dropmenu .menu-item .arrow {
  position: relative;
  width: 20px;
  min-width: 20px;
  height: 20px;
  border-radius: 20px;
  border: 1px solid #828282;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  z-index: 1;
}
header .logo-menu-main .main-menu li.drop .dropmenu .menu-item .arrow svg path {
  stroke: #828282;
}
header .logo-menu-main .main-menu li.drop .dropmenu .menu-item .arrow::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateY(102%);
  background-color: #fff;
  transition: 0.3s linear;
  z-index: -1;
}
header .logo-menu-main .main-menu li.drop .dropmenu .menu-item .menu-item-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
header .logo-menu-main .main-menu li.drop .dropmenu .menu-item .menu-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: 0.2s linear;
  will-change: transform;
}
header .logo-menu-main .main-menu li.drop .dropmenu .menu-item:hover .arrow {
  border-color: transparent;
}
header .logo-menu-main .main-menu li.drop .dropmenu .menu-item:hover .arrow svg path {
  stroke: var(--primary-main-color);
}
header .logo-menu-main .main-menu li.drop .dropmenu .menu-item:hover .arrow::after {
  transform: translateY(0);
}
header .logo-menu-main .main-menu li.drop .dropmenu .menu-item:hover .menu-item-img img {
  filter: grayscale(0);
}
header .logo-menu-main .main-menu li.drop.active .dropmenu {
  opacity: 1;
  visibility: visible;
}
header .logo-menu-main .main-menu li.drop.active .manu-link::after {
  display: block;
}

.header-modal .modal-header {
  border: none !important;
  padding: 10px 10px 8px 10px;
}
.header-modal .modal-header button {
  border: none !important;
  outline: none !important;
  padding: 8px !important;
}
.header-modal .modal-header .btn-close {
  color: var(--black) !important;
  outline: none !important;
  border: none !important;
}
.header-modal .modal-header .btn-close:focus {
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
}
.header-modal .header-menu {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-radius: 20px;
  padding: 0 1.4rem 1.4rem 1.4rem !important;
  min-height: max-content;
  gap: 40px;
  overflow: visible !important;
}
.header-modal .header-menu .menu-wrapper {
  flex: 1;
  position: relative;
}
.header-modal .header-menu .menu-wrapper .menu-indicator {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background: #e8e8e8;
  border-radius: 6px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}
.header-modal .header-menu .menu-wrapper ul {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.header-modal .header-menu .menu-wrapper ul li > a {
  color: #808080;
  padding: 14px 12px;
  font-family: var(--GilroyMedium);
  font-weight: 500;
  font-size: clamp(16px, 3vw, 20px);
  line-height: 1.3;
  cursor: pointer;
  transition: color 0.3s ease;
  display: block;
  pointer-events: none;
}
.header-modal .header-menu .menu-wrapper ul li > a.active {
  color: var(--black);
}
.header-modal .header-menu > div {
  overflow: hidden;
  height: 400px !important;
  position: relative;
  flex: 1;
}
.header-modal .header-menu > div > div {
  transition: transform 0.4s ease;
}
.header-modal .header-menu > div > div img {
  width: 100%;
  height: 400px !important;
  display: block;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

@media screen and (max-width: 991px) {
  .header-menu {
    flex-direction: column !important;
    gap: 20px;
  }
  .menu-wrapper {
    width: 100%;
  }
  .header-images {
    max-height: 220px !important;
    overflow: hidden !important;
    width: 100%;
  }
  .header-images img {
    max-height: 220px !important;
  }
}
@media (max-width: 767px) {
  .modal-dialog {
    margin: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .header-modal .header-menu > div > div img.active {
    display: block;
  }
}
footer {
  position: relative;
  background: #150408;
  padding-top: 20px;
  margin-top: 100px;
  overflow: hidden;
}
footer.active::before {
  top: 0;
}
footer::before {
  content: "";
  position: absolute;
  top: 100%;
  transition: 1s all;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../../images/footer-image.png");
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 991.92px) {
  footer {
    margin-top: 50px;
  }
}
footer .footer-box a {
  display: flex;
  flex-direction: column;
  gap: 130px;
  background: rgba(255, 255, 255, 0.1019607843);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px 30px;
  border-radius: 10px;
  backdrop-filter: blur(20.8999996185px);
}
footer .footer-box a h2 {
  color: rgba(255, 255, 255, 0.8);
  transition: 0.3s all;
  font-size: clamp(28px, 3vw, 42px);
}
footer .footer-box a .foot-btn {
  background-color: rgba(255, 255, 255, 0.2);
  height: 52px;
  width: 52px;
  min-height: 52px;
  min-width: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  transition: 0.3s all;
}
footer .footer-box a:hover h2 {
  color: var(--white);
}
footer .footer-box a:hover .foot-btn {
  background-color: rgba(255, 255, 255, 0.4);
}
footer h6 {
  color: rgba(255, 255, 255, 0.6980392157);
  font-size: 14px;
  margin-bottom: 25px;
}
footer h5 {
  color: rgba(255, 255, 255, 0.6980392157);
  font-size: clamp(16px, 2vw, 18px);
  margin-bottom: 20px;
}
@media screen and (max-width: 991.92px) {
  footer h5 {
    margin-bottom: 10px;
  }
}
footer span {
  color: var(--white);
  font-size: 14px;
}
footer .foot-text {
  color: rgba(255, 255, 255, 0.6980392157);
  font-size: 14px;
  text-align: right;
}
@media screen and (max-width: 991.92px) {
  footer .foot-text {
    text-align: left;
  }
}
footer .foot-text a {
  color: var(--white);
}
@media screen and (max-width: 991.92px) {
  footer ul {
    margin: 15px 0px;
  }
}
footer ul li a {
  display: inline-flex;
  color: var(--white);
  font-size: clamp(16px, 2vw, 18px);
  margin-bottom: 8px;
  line-height: 1.1;
  transition: 0.3s all;
}
footer ul li a:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
}

.banner-main {
  position: relative;
  overflow: hidden;
  z-index: 0;
  margin-bottom: 80px;
}
@media screen and (max-width: 991.98px) {
  .banner-main {
    margin-bottom: 40px;
  }
}
.banner-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 99vh;
  background: linear-gradient(0deg, #000000 -28.89%, rgba(0, 0, 0, 0) 90.35%);
  z-index: 1;
}
.banner-main .banner-slider-main {
  position: relative;
}
.banner-main .banner-slider-main .banner-img img,
.banner-main .banner-slider-main .banner-img video {
  width: 100%;
  height: 99vh;
  object-fit: cover;
}
.banner-main .banner-content {
  position: absolute;
  bottom: 80px;
  left: 0;
  width: 100%;
  z-index: 2;
}
@media screen and (max-width: 450px) {
  .banner-main .banner-content {
    bottom: 20px;
  }
}
.banner-main .banner-content .banner-subtitle {
  position: relative;
  font-family: var(--gilroyMedium);
  font-size: clamp(12px, 2vw, 14px);
  color: rgba(255, 255, 255, 0.8);
  padding-inline: 58px;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .banner-main .banner-content .banner-subtitle {
    padding-inline: 30px;
  }
}
.banner-main .banner-content .banner-subtitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.8) 100%);
  transform: translateY(-50%);
  width: 42px;
  height: 1px;
}
@media screen and (max-width: 767px) {
  .banner-main .banner-content .banner-subtitle::before {
    width: 20px;
  }
}
.banner-main .banner-content .banner-subtitle::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.8) 0%, rgba(240, 5, 5, 0.2) 100%);
  transform: translateY(-50%);
  width: 42px;
  height: 1px;
}
@media screen and (max-width: 767px) {
  .banner-main .banner-content .banner-subtitle::after {
    width: 20px;
  }
}
.banner-main .banner-content .heading-slider-main {
  overflow: hidden;
  margin-bottom: 20px;
}
.banner-main .banner-content .heading-slider-main .heading-main h1 {
  font-family: var(--gilroySemiBold);
  font-size: clamp(34px, 5vw, 52px);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.banner-main .banner-content .heading-slider-main .heading-main .desc {
  font-family: var(--gilroyMedium);
  max-width: 590px;
}
.banner-main .banner-content .arrow-main {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
}
.banner-main .banner-content .arrow-main span {
  width: 38px;
  height: 38px;
  min-width: 38px;
  min-height: 38px;
  border-radius: 100%;
  border: 1px solid rgba(35, 35, 35, 0.1019607843);
  backdrop-filter: blur(20px);
  background: var(--primary-main-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.banner-main .banner-content .arrow-main span.swiper-button-disabled {
  border: 1px solid rgba(255, 255, 255, 0.431372549);
  background: rgba(0, 0, 0, 0.2);
  pointer-events: none;
}
.banner-main .banner-content .thumbnail-main {
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  max-width: 400px;
}
.banner-main .banner-content .thumbnail-main .thumbnail-img {
  width: 100px;
  cursor: pointer;
  transition: 2s all;
  opacity: 0.7;
}
.banner-main .banner-content .thumbnail-main .thumbnail-img.active {
  border: 1px solid rgba(255, 255, 255, 0.3019607843);
  border-radius: 9px;
  width: 150px;
  opacity: 1;
  padding: 7px;
}
.banner-main .banner-content .thumbnail-main .thumbnail-img.active > div::before {
  border: solid 1px #FFFFFF;
  background: linear-gradient(180deg, #FFFFFF, border-box);
  mask: linear-gradient(rgba(255, 255, 255, 0.1) 100%, padding-box);
}
.banner-main .banner-content .thumbnail-main .thumbnail-img.active > div::after {
  display: none;
}
.banner-main .banner-content .thumbnail-main .thumbnail-img > div {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}
.banner-main .banner-content .thumbnail-main .thumbnail-img > div::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, #000000 -28.89%, rgba(0, 0, 0, 0) 90.35%);
  z-index: 1;
}
.banner-main .banner-content .thumbnail-main .thumbnail-img > div::before {
  content: "";
  position: absolute;
  background: transparent;
  border: solid 1px rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  mask-composite: exclude;
  inset: 0;
  transition: 1s all;
}
.banner-main .banner-content .thumbnail-main .thumbnail-img > div img,
.banner-main .banner-content .thumbnail-main .thumbnail-img > div video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 6px;
}

.banner-sub .warehouse-storage-title-main {
  color: var(--white);
  font-size: clamp(40px, 5vw, 64px);
  margin: 0;
  font-weight: 600;
  line-height: 1.1;
  font-family: var(--gilroySemiBold);
}
.banner-sub .comming-soon-title {
  font-family: var(--gilroySemiBold);
  font-size: clamp(34px, 5vw, 52px);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.banner-sub .comming-soon-subtitle {
  font-family: var(--gilroySemiBold);
  font-size: 32px;
  color: var(--white);
  line-height: 1.2;
}

.about-service {
  margin-top: 80px;
  position: relative;
}
.about-service .about-service-sticky {
  position: sticky;
  top: 20px;
  display: flex;
  flex-direction: column;
  gap: 160px;
}
@media screen and (max-width: 767.98px) {
  .about-service .about-service-sticky {
    width: 100%;
    gap: 50px;
  }
}
.about-service .primary-title {
  line-height: 1;
  margin-bottom: 0;
  width: 80%;
}
@media screen and (max-width: 991.98px) {
  .about-service .primary-title {
    width: 100%;
  }
}
.about-service h4 {
  font-family: var(--gilroyMedium);
  font-weight: 500;
  font-size: clamp(20px, 4vw, 24px);
  color: #808080;
  line-height: 1;
  width: 100% !important;
}
.about-service .text-reveal-animation .word {
  color: #808080;
  transition: color 0.5s;
  display: inline;
}
.about-service .text-reveal-animation .word.active {
  color: var(--black);
}
.about-service .video-section {
  position: relative;
  max-height: 702px;
}
.about-service .video-section video {
  height: 100%;
  width: 100%;
}
.about-service .video-section > div {
  position: absolute;
  padding: 6px;
  border-radius: 12px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: end;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(60.4000015259px);
  bottom: 16px;
  right: 16px;
  max-width: 339px;
  max-height: 133px;
}
@media screen and (max-width: 767px) {
  .about-service .video-section > div {
    position: unset;
    max-width: unset;
    max-height: unset;
  }
}
.about-service .video-section > div > p,
.about-service .video-section > div img {
  flex: 1;
}

.core-values {
  position: relative;
}
.core-values .core-values-sticky {
  position: sticky;
  top: 0;
}
@media screen and (max-width: 991.98px) {
  .core-values .core-values-sticky {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767.98px) {
  .core-values .core-values-sticky {
    width: 100%;
    margin-bottom: 0;
  }
}
.core-values .core-values-sticky h2 {
  margin-top: 10px;
}
.core-values .core-values-items .core-value-item {
  display: grid;
  grid-template-columns: 50% auto;
  gap: 20px;
  align-items: start;
  margin-bottom: 70px;
}
@media screen and (max-width: 767.98px) {
  .core-values .core-values-items .core-value-item {
    margin: 30px 0px;
    width: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
}
.core-values .core-values-items .core-value-item h6 {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
  color: var(--black);
  margin: 0;
  font-family: var(--gilroyMedium);
}
.core-values .core-values-items .core-value-item .core-value-icon {
  display: flex;
  gap: 15px;
  align-items: center;
}
.core-values .core-values-items .core-value-item .core-value-icon > div {
  height: 32px;
  width: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.core-values .core-values-items .core-value-item .core-value-icon > div > img {
  object-fit: contain;
}
.core-values .core-values-items .core-value-item:last-child {
  margin-bottom: 0;
}
.core-values .core-values-items .core-value-content p {
  float: right;
  max-width: 90%;
}

.home-overview {
  position: relative;
  padding: 70px 0;
}
.home-overview video {
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  max-height: 550px;
  width: 100%;
  margin: 0 auto;
  z-index: -1;
  transition: 0.3s all;
}
@media screen and (max-width: 991.98px) {
  .home-overview video {
    top: 15%;
  }
}

.home-overview .container {
  position: relative;
  z-index: 1;
  pointer-events: none;
}

.home-overview .desc {
  color: rgba(35, 31, 32, 0.5);
  font-size: clamp(28px, 3vw, 32px);
  font-family: var(--gilroyMedium);
  font-weight: 400;
  text-align: unset;
}

.home-overview .desc strong {
  font-weight: 400;
  transition: 0.8s all;
}

.home-overview .desc strong.active {
  color: #231f20;
}

.home-overview .desc1 {
  margin-top: 350px;
  font-size: clamp(16px, 4vw, 20px);
  font-family: var(--gilroyRegular);
  max-width: 445px;
  color: #6f6f6f;
  line-height: 1.1;
  font-weight: 300;
}

@media screen and (max-width: 768px) {
  .home-overview {
    padding: 80px 0;
  }
  .home-overview video {
    position: relative;
    top: 0px;
    object-fit: cover;
    height: 250px;
  }
  .home-overview .desc1 {
    margin-top: 0;
  }
}
.our-blogs-cards .swiper {
  position: relative;
  width: 100%;
  height: 100%;
}
.our-blogs-cards .swiper-slide .desc,
.our-blogs-cards .col-lg-4 .desc {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.5019607843);
  font-family: var(--gilroyMedium);
}
.our-blogs-cards .swiper-slide h5,
.our-blogs-cards .col-lg-4 h5 {
  color: var(--black);
  font-family: var(--gilroyMedium);
  font-size: clamp(18px, 4vw, 20px);
  max-width: 300px;
}
.our-blogs-cards .warehouse-storage-card {
  position: relative;
  border-radius: 12px;
  height: 450px;
  min-width: 300px;
  overflow: hidden;
}
.our-blogs-cards .warehouse-storage-card img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
  transition: 0.4s all;
}
.our-blogs-cards .warehouse-storage-card div {
  display: hidden;
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  transition: 0.5s all;
}
.our-blogs-cards .warehouse-storage-card span {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(0, 0, 0, 0.2);
  border: 0.5px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(30px);
  color: var(--white);
  padding: 6px 30px;
  z-index: 10;
  font-size: 12px;
  text-transform: capitalize;
  font-family: var(--gilroyMedium);
}
.our-blogs-cards .cards-arrow {
  position: relative;
  width: 24px !important;
  height: 16px !important;
  overflow: hidden;
}
.our-blogs-cards .cards-arrow .arrow {
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s ease-in-out;
}
.our-blogs-cards .arrow-black {
  transform: translateX(0);
  opacity: 1;
}
.our-blogs-cards .arrow-red {
  transform: translateX(-100%);
  opacity: 0;
}
.our-blogs-cards .swiper-slide:hover .warehouse-storage-card > img,
.our-blogs-cards .col-lg-4:hover .warehouse-storage-card > img {
  scale: 125%;
  transition: 0.4s all;
}
.our-blogs-cards .swiper-slide:hover .warehouse-storage-card div,
.our-blogs-cards .col-lg-4:hover .warehouse-storage-card div {
  display: block;
  background-color: rgba(0, 0, 0, 0.3647058824);
  transition: 0.5s all;
}
.our-blogs-cards .swiper-slide:hover .arrow-black,
.our-blogs-cards .col-lg-4:hover .arrow-black {
  transform: translateX(100%);
  opacity: 0;
}
.our-blogs-cards .swiper-slide:hover .arrow-red,
.our-blogs-cards .col-lg-4:hover .arrow-red {
  transform: translateX(0);
  opacity: 1;
}
.our-blogs-cards .swiper-button {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.our-blogs-cards .swiper-button-prev,
.our-blogs-cards .swiper-button-next {
  position: relative !important;
  margin: 0;
  height: 40px;
  width: 40px;
  background-color: #f4f4f4;
  color: var(--black);
  font-size: 16px;
  overflow: hidden;
  border-radius: 4px;
}
.our-blogs-cards .swiper-button-prev::after,
.our-blogs-cards .swiper-button-next::after {
  position: relative;
  font-size: 16px;
  font-weight: 600;
}
.our-blogs-cards .swiper-button-prev::before,
.our-blogs-cards .swiper-button-next::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background-color: var(--primary-main-color);
  top: 100%;
  transition: all 0.3s ease-in-out;
}
.our-blogs-cards .swiper-button-prev:hover::before,
.our-blogs-cards .swiper-button-next:hover::before {
  top: 0;
  transition: all 0.3s ease-in-out;
}
.our-blogs-cards .swiper-button-prev:hover::after,
.our-blogs-cards .swiper-button-next:hover::after {
  color: var(--white);
  transition: 0.3s all;
}

.banner-sub {
  position: relative;
  margin-bottom: 80px;
}
@media screen and (max-width: 991.98px) {
  .banner-sub {
    margin-bottom: 40px;
  }
}
.banner-sub .banner-heading {
  bottom: 60px;
  left: 0;
  width: 100%;
  position: absolute;
}
.banner-sub .banner-heading .service-listing-heading-main {
  color: var(--white);
  font-size: clamp(42px, 6vw, 64px);
  font-weight: 600;
  line-height: 1.1;
  font-family: var(--gilroySemiBold);
  margin-bottom: 0;
}
.banner-sub .banner-heading img {
  width: 100%;
  height: auto;
}
.banner-sub .banner-heading .banner-desc {
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 500;
  color: var(--white);
  font-family: var(--gilroyMedium);
  margin-bottom: 0;
}

.reliable-warehousing .warehousing-heading {
  width: 100%;
  padding-bottom: 45px;
  text-align: center;
}
.reliable-warehousing .warehousing-box-overlay {
  background: #EBEEF2;
  padding: 16px;
  border-radius: 40px;
  height: 100%;
}
.reliable-warehousing .warehousing-box-overlay img {
  width: 100%;
  border-radius: 30px;
  height: 100%;
}
.reliable-warehousing .warehousing-box-overlay .warehousing-box1 {
  position: relative;
  height: 100%;
}
.reliable-warehousing .warehousing-box-overlay .warehousing-box1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  background: linear-gradient(180deg, transparent 40%, rgb(0, 0, 0) 100%);
  z-index: 1;
  pointer-events: none;
}
.reliable-warehousing .warehousing-box-overlay .warehousing-box1 .warehousing-box-desc {
  position: absolute;
  bottom: 40px;
  left: 40px;
  color: var(--white);
  font-size: clamp(24px, 4vw, 42px);
  font-family: var(--gilroyMedium);
  font-weight: 500;
  line-height: 1.1;
  z-index: 1;
  max-width: 500px;
}
.reliable-warehousing .service-listing-hover {
  position: relative;
  margin-bottom: 30px;
}
.reliable-warehousing .service-listing-hover .warehousing-box-child h2 {
  color: #000000;
  font-family: var(--gilroyMedium);
  font-size: 42px;
}
.reliable-warehousing .service-listing-hover:hover .warehousing-box-child-overlay {
  background-color: #BE1623;
}
.reliable-warehousing .service-listing-hover:hover .warehousing-box-child-overlay .warehousing-box-child-hover-img {
  opacity: 1;
  transform: translateX(0);
}
.reliable-warehousing .service-listing-hover:hover .warehousing-box-child-overlay .warehousing-box-child h2 {
  color: var(--white);
}
.reliable-warehousing .service-listing-hover:hover .warehousing-box-child-overlay .warehousing-box-child-heading1,
.reliable-warehousing .service-listing-hover:hover .warehousing-box-child-overlay .warehousing-box-child-heading2 {
  background: transparent;
  background-color: #EBEEF2;
  -webkit-text-fill-color: #1E1E1E;
}
.reliable-warehousing .service-listing-hover:hover .warehousing-box-child-overlay .warehousing-box-child-heading1 p,
.reliable-warehousing .service-listing-hover:hover .warehousing-box-child-overlay .warehousing-box-child-heading2 p {
  color: var(--white);
}
.reliable-warehousing .service-listing-hover:hover .warehousing-box-child-overlay .warehousing-box-child-heading3 p {
  color: #FFFFFF;
}
.reliable-warehousing .service-listing-hover:hover .warehousing-box-child-overlay .warehousing-box-child-button a {
  background-color: #000000;
  color: #FFFFFF;
}

.warehousing-box-child-overlay {
  border: 16px solid #EBEEF2;
  border-radius: 40px;
  height: 100%;
  width: 100%;
  padding: 20px 30px;
  position: relative;
  overflow: hidden;
  background-color: transparent;
  transition: background-color 0.4s ease;
}
.warehousing-box-child-overlay .warehousing-box-child-hover-img {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  transform: translateX(100%);
  transition: opacity 0.4s ease, transform 0.5s ease;
  pointer-events: none;
}
.warehousing-box-child-overlay .warehousing-box-child-hover-img img {
  width: 100%;
  max-width: 290px;
}
.warehousing-box-child-overlay .warehousing-box-child {
  width: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-around;
}
.warehousing-box-child-overlay .warehousing-box-child h1 {
  transition: color 0.4s ease;
}
.warehousing-box-child-overlay .warehousing-box-child-heading {
  display: flex;
  font-size: 16px;
  font-weight: 400;
  color: #6F6F6F;
  font-family: var(--gilroy);
  border-radius: 10px;
  gap: 10px;
  flex-wrap: wrap;
}
.warehousing-box-child-overlay .warehousing-box-child-heading1,
.warehousing-box-child-overlay .warehousing-box-child-heading2 {
  color: #6F6F6F;
  background: #EBEEF2;
  padding: 7px 9px;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: background-color 0.4s ease, border-color 0.4s ease;
}
.warehousing-box-child-overlay .warehousing-box-child-heading1 p,
.warehousing-box-child-overlay .warehousing-box-child-heading2 p {
  transition: color 0.4s ease;
  margin: 0;
}
.warehousing-box-child-overlay .warehousing-box-child-heading3 {
  font-size: 16px;
  font-weight: 400;
  color: #6F6F6F;
  font-family: var(--gilroy);
  padding-top: 15px;
  display: flex;
  align-items: center;
  max-width: 25vw;
  position: relative;
  z-index: 1;
}
.warehousing-box-child-overlay .warehousing-box-child-heading3 p {
  transition: color 0.4s ease;
  line-height: 1;
  letter-spacing: 0;
}
.warehousing-box-child-overlay .warehousing-box-child-button {
  position: relative;
  z-index: 1;
}
.warehousing-box-child-overlay .warehousing-box-child-button a {
  background-color: #BE1623;
  color: var(--white);
  font-weight: 600;
  font-family: var(--gilroySemiBold);
  border-radius: 60px;
  padding: 8px 24px;
  display: inline-flex;
  border: none;
  transition: background-color 0.4s ease, color 0.4s ease;
  cursor: pointer;
}

@media (max-width: 1199px) {
  .reliable-warehousing .warehousing-box-child-overlay {
    padding-left: 15px;
  }
  .reliable-warehousing .warehousing-box-child-overlay .warehousing-box-child {
    padding-left: 10px;
    gap: 10px;
  }
  .reliable-warehousing .warehousing-box-child-overlay .warehousing-box-child-heading {
    flex-wrap: wrap;
    gap: 8px;
  }
  .reliable-warehousing .warehousing-box-child-overlay .warehousing-box-child-heading3 {
    max-width: 100%;
    padding-left: 10px;
    gap: 10px;
  }
}
@media (max-width: 991px) {
  .banner-sub .banner-heading {
    bottom: 60px;
  }
  .banner-sub .banner-heading .banner-desc {
    position: relative;
    right: auto;
    max-width: 100%;
    margin-top: 15px;
  }
  .reliable-warehousing .warehousing-heading {
    padding-bottom: 30px;
  }
  .reliable-warehousing .service-listing-hover {
    margin-bottom: 30px;
  }
  .reliable-warehousing .service-listing-hover .row {
    display: flex;
    flex-direction: column;
  }
  .reliable-warehousing .service-listing-hover .col-lg-7 {
    order: 1 !important;
    width: 100%;
  }
  .reliable-warehousing .service-listing-hover .col-lg-5 {
    order: 2 !important;
    width: 100%;
  }
  .reliable-warehousing .warehousing-box-overlay {
    margin-bottom: 20px;
    border-radius: 24px;
    height: 100%;
  }
  .reliable-warehousing .warehousing-box-child-overlay {
    border-width: 12px;
    border-radius: 24px;
    padding: 15px;
  }
  .reliable-warehousing .warehousing-box-child-overlay .warehousing-box-child {
    padding: 15px;
    gap: 30px;
  }
  .reliable-warehousing .warehousing-box-child-overlay .warehousing-box-child-heading {
    padding-top: 30px;
    flex-wrap: wrap;
  }
  .reliable-warehousing .warehousing-box-child-overlay .warehousing-box-child-heading3 {
    max-width: 100%;
    padding-left: 15px;
  }
}
@media (max-width: 767px) {
  .banner-sub img {
    min-height: 350px;
    object-fit: cover;
  }
  .banner-sub .banner-heading {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    padding: 0 15px;
  }
  .banner-sub .banner-heading .container {
    padding: 0;
  }
  .banner-sub .banner-heading .row {
    flex-direction: column;
    gap: 10px;
  }
  .banner-sub .banner-heading .col-lg-6 {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }
  .banner-sub .banner-heading .secondary-title {
    font-size: 40px;
  }
  .banner-sub .banner-heading .banner-desc {
    position: static;
    max-width: 100%;
    right: auto;
    font-size: clamp(14px, 3vw, 16px);
  }
  .reliable-warehousing .warehousing-heading {
    padding-bottom: 25px;
  }
  .reliable-warehousing .service-listing-hover {
    margin-bottom: 20px;
  }
  .reliable-warehousing .service-listing-hover .row {
    display: flex;
    flex-direction: column;
  }
  .reliable-warehousing .service-listing-hover .col-lg-7 {
    order: 1 !important;
    width: 100%;
  }
  .reliable-warehousing .service-listing-hover .col-lg-5 {
    order: 2 !important;
    width: 100%;
  }
  .reliable-warehousing .warehousing-box-overlay {
    padding: 10px;
    border-radius: 16px;
  }
  .reliable-warehousing .warehousing-box-overlay .warehousing-box1::before {
    border-radius: 12px;
  }
  .reliable-warehousing .warehousing-box-overlay .warehousing-box1 .warehousing-box-desc {
    bottom: 15px;
    left: 15px;
  }
  .reliable-warehousing .warehousing-box-child-overlay {
    border-width: 8px;
    border-radius: 16px;
    padding: 10px;
  }
  .reliable-warehousing .warehousing-box-child-overlay .warehousing-box-child {
    padding: 10px;
  }
  .reliable-warehousing .warehousing-box-child-overlay .warehousing-box-child-heading {
    padding-top: 20px;
    gap: 8px;
  }
  .reliable-warehousing .warehousing-box-child-overlay .warehousing-box-child-heading1,
  .reliable-warehousing .warehousing-box-child-overlay .warehousing-box-child-heading2 {
    padding: 8px;
  }
  .reliable-warehousing .warehousing-box-child-overlay .warehousing-box-child-heading3 {
    padding-top: 15px;
  }
  .reliable-warehousing .warehousing-box-child-overlay .warehousing-box-child-hover-img img {
    max-width: 200px;
  }
}
.client-section {
  background-color: #FAFAFA;
  padding: 80px 0px;
}
@media screen and (max-width: 991.98px) {
  .client-section {
    padding: 40px 0px;
  }
}
.client-section p {
  color: var(--black);
  font-size: clamp(18px, 4vw, 24px);
  font-family: var(--gilroyMedium);
  line-height: 1.1;
}
.client-section .client-main {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  height: 100%;
  gap: 20px;
}
.client-section .client-main .client-box {
  background-color: #E8E8E8;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 24px;
}
.client-section .client-main .client-box span {
  color: var(--black);
  font-family: var(--gilroy);
  font-size: clamp(18px, 4vw, 20px);
  margin-bottom: 35px;
  display: block;
  line-height: 1.3;
}
.client-section .client-main .client-box .box {
  display: flex;
  gap: 20px;
  align-items: center;
}
.client-section .client-main .client-box .box h5 {
  color: var(--black);
  font-family: var(--gilroySemiBold);
  font-size: clamp(16px, 4vw, 18px);
  margin-bottom: 5px;
}
.client-section .client-main .client-box .box h6 {
  margin-bottom: 0px;
  font-size: 16px;
  color: #808080;
}

.our-partners .our-partners-cards {
  display: inline-flex;
  animation: 45s slide infinite linear;
  gap: 20px;
  margin-top: 50px;
}
.our-partners .our-partners-cards .partner-box {
  background-color: #F3F4F7;
  border-radius: 10px;
  padding: 20px;
  flex: 0 0 15%;
}
.our-partners .our-partners-cards .partner-box h5 {
  font-size: clamp(18px, 4vw, 20px);
  color: var(--black);
  font-family: var(--gilroyMedium);
}
.our-partners .our-partners-cards .partner-box .partner-logo {
  text-align: center;
  margin: 80px 0px;
}

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.our-industries {
  background: url("../../images/our-industries.png");
  background-size: cover;
  background-repeat: no-repeat;
  padding: 80px 0px;
}
@media screen and (max-width: 991.98px) {
  .our-industries {
    padding: 40px 0px;
  }
}
.our-industries .sub-heading {
  color: var(--primary-main-color);
}
.our-industries .our-industries-box {
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20.5px);
  padding: 25px 30px;
  overflow: hidden;
  height: 100%;
}
.our-industries .our-industries-box .image {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2509803922);
  height: 40px;
  height: 70px;
  margin-bottom: 30px;
}
.our-industries .our-industries-box .image img {
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.5s;
}
.our-industries .our-industries-box .image img:last-child {
  transition: all 0.5s;
  opacity: 0;
}
.our-industries .our-industries-box .content h3 {
  font-size: clamp(24px, 4vw, 30px);
  color: var(--white);
  letter-spacing: -0.6px;
  margin-bottom: 20px;
  font-family: var(--gilroyMedium);
}
.our-industries .our-industries-box .content p {
  color: var(--white);
  font-size: 16px;
  line-height: 1.1;
  margin-bottom: 10px;
}
.our-industries .our-industries-box::before {
  position: absolute;
  background-color: var(--primary-main-color);
  content: "";
  z-index: -1;
  height: 100%;
  width: 100%;
  scale: 0%;
  border-radius: 50%;
  top: -20%;
  right: -150%;
  transition: linear;
  transition-duration: 0.8s;
}
.our-industries .our-industries-box:hover::before {
  transition-delay: 0s;
  scale: 1000%;
}
.our-industries .our-industries-box:hover .image img:first-child {
  transition: all 0.5s;
  opacity: 0;
}
.our-industries .our-industries-box:hover .image img:last-child {
  transition: all 0.5s;
  opacity: 1;
}

.about-service .primary-title {
  font-size: clamp(20px, 2vw, 24px);
  color: #808080;
}
.about-service .primary-title:first-child {
  font-size: clamp(28px, 4vw, 40px);
  color: var(--black);
}
.about-service .primary-title.text-reveal-animation {
  font-size: clamp(20px, 2vw, 24px);
}
.about-service .primary-title span {
  display: block;
}

.sub-heading {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--black);
}

.sub-heading img {
  width: 18px;
  height: 18px;
}

/* ── Main Boxes Grid ── */
.main-boxes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
}

.quick-box {
  text-align: center;
  padding: 20px 10px;
  position: relative;
}

/* Right borders via pseudo-elements (avoids double-border issues) */
.quick-box::after {
  content: "";
  position: absolute;
  top: 10%;
  right: 0;
  height: 80%;
  width: 1px;
  background: rgba(0, 0, 0, 0.2);
}

.quick-box:last-child::after {
  display: none;
}

.quick-box h3 {
  color: var(--black);
  font-family: var(--gilroyMedium);
  font-size: clamp(30px, 5vw, 64px);
  margin-bottom: 0;
  letter-spacing: -1px;
  line-height: 1.1;
}

.quick-box span {
  color: #808080;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1;
  padding: 0 10px;
  display: inline-block;
  margin-top: 4px;
}

/* ── Tablet: 2×2 grid ── */
@media screen and (max-width: 991.98px) {
  .main-boxes {
    grid-template-columns: repeat(2, 1fr);
  }
  /* Remove all right-side pseudo borders */
  .quick-box::after {
    display: none;
  }
  /* Bottom border on first two items */
  .quick-box:nth-child(1),
  .quick-box:nth-child(2) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  }
  /* Left border on even items to simulate column divider */
  .quick-box:nth-child(2),
  .quick-box:nth-child(4) {
    border-left: 1px solid rgba(0, 0, 0, 0.2);
  }
  .quick-box {
    padding: 20px;
  }
  .quick-box h3 {
    margin-bottom: 10px;
  }
  .quick-box span {
    padding: 0;
  }
}
/* ── Mobile: single column ── */
@media screen and (max-width: 575.98px) {
  .main-boxes {
    grid-template-columns: 1fr;
  }
  .quick-box:nth-child(2),
  .quick-box:nth-child(4) {
    border-left: none;
  }
  .quick-box:nth-child(1),
  .quick-box:nth-child(2),
  .quick-box:nth-child(3) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  }
  .quick-box {
    padding: 24px 10px;
  }
}
/* ── Slot Counter Animation ── */
.slot-counter {
  display: inline-block;
  overflow: hidden;
  height: 1em;
  position: relative;
}

.slot-track {
  display: flex;
  flex-direction: column;
  transition: transform 1.5s ease-out;
}

.slot-track div {
  height: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.our-service .primary-title {
  font-size: clamp(34px, 5vw, 56px);
  max-width: 400px;
}
.our-service .sticky-section {
  position: sticky;
  top: 100px;
}
@media screen and (max-width: 991.98px) {
  .our-service .sticky-section {
    margin-bottom: 30px;
  }
}
.our-service .main-service-section .service-box {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 50px;
  margin-bottom: 50px;
}
.our-service .main-service-section .service-box:last-child {
  border: none;
  padding-bottom: 0px;
  margin-bottom: 0px;
}
@media screen and (max-width: 991.98px) {
  .our-service .main-service-section .service-box {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
}
.our-service .main-service-section .service-box .sub-heading {
  font-size: clamp(16px, 3vw, 20px);
}
.our-service .main-service-section .service-box h3 {
  font-size: clamp(28px, 3vw, 32px);
  letter-spacing: -1px;
  margin-top: 5px;
  margin-bottom: 30px;
  color: var(--black);
  font-family: var(--gilroyMedium);
}
.our-service .main-service-section .service-box img {
  border-radius: 10px;
  width: 100%;
}
.our-service .main-service-section .service-box .image-reveal {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.our-service .main-service-section .service-box .image-reveal .main-service-btn {
  position: absolute;
  z-index: 1;
  bottom: 20px;
  left: 20px;
  opacity: 0;
  transition: all 0.3s ease-out;
}
.our-service .main-service-section .service-box .image-reveal .main-service-btn img {
  max-width: max-content;
}
.our-service .main-service-section .service-box .image-reveal .main-service-btn > a:hover span {
  background-color: var(--white);
  border-color: var(--white);
  color: var(--black);
}
.our-service .main-service-section .service-box .image-reveal .main-service-btn > a:hover span path {
  fill: var(--black);
}
.our-service .main-service-section .service-box .image-reveal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
  transform: translateX(0);
  transition: transform 0.5s ease-out;
}
.our-service .main-service-section .service-box .image-reveal.active .main-service-btn {
  opacity: 1;
}
.our-service .main-service-section .service-box .image-reveal:hover .main-service-btn {
  opacity: 1;
}
.our-service .main-service-section .service-box .image-reveal img {
  display: block;
}

.our-workflow {
  position: relative;
  overflow: hidden;
  min-height: 750px;
}

.plan-pick-dispatch-1 {
  display: none;
  margin: 80px 12px 20px 12px;
}
.plan-pick-dispatch-1 > div {
  margin-bottom: 10px;
}
.plan-pick-dispatch-1 > div,
.plan-pick-dispatch-1 h2 {
  color: var(--black);
}
.plan-pick-dispatch-1 .primary-title {
  font-size: clamp(28px, 3vw, 42px);
}
@media screen and (max-width: 991.98px) {
  .plan-pick-dispatch-1 {
    display: block;
  }
}

.workflow-images img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.workflow-images img.active {
  opacity: 1;
}

.our-workflow-steps {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
}

.step {
  position: relative;
  width: 25%;
  overflow: hidden;
}
@media screen and (min-width: 991.98px) {
  .step {
    border-right: 1px solid var(--white);
  }
}
.step .plan-pick-dispatch {
  top: 40px !important;
  left: 40px !important;
  z-index: 5 !important;
  position: absolute;
}
.step .plan-pick-dispatch .primary-title {
  font-size: clamp(28px, 3vw, 42px);
}
.step .plan-pick-dispatch > div,
.step .plan-pick-dispatch h2 {
  color: var(--white);
}
@media screen and (max-width: 991.98px) {
  .step .plan-pick-dispatch {
    display: none;
  }
}

.step:last-child {
  border-bottom: none;
}

.step-panel {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 30%;
  background: transparent;
  transition: height 0.4s ease, 0.3s ease;
}

.step-content {
  height: 100%;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
}

.step-content span {
  font-size: clamp(18px, 4vw, 20px);
  font-family: var(--gilroyMedium);
  font-weight: 500;
}

.step-content h4 {
  font-family: var(--gilroyMedium);
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 500;
}

.step-content p {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.step-panel::before {
  position: absolute;
  bottom: -100%;
  height: 0;
  width: 100%;
  content: "";
  z-index: -1;
  transition: all 0.4s ease-in;
}

.step:hover .step-panel {
  height: 40%;
}

.step:hover .step-panel::before {
  height: 100%;
  bottom: 0;
  background-color: var(--white);
  transition: height 0.4s ease;
}

.step:hover .step-content span {
  color: #6f6f6f;
  font-size: clamp(18px, 4vw, 20px);
  font-weight: 500;
}

.step:hover .step-content h4 {
  color: var(--black);
}

.step:hover .step-content p {
  max-height: 100px;
  font-size: 16px;
  color: #6f6f6f;
}

@media screen and (max-width: 991.98px) {
  .our-workflow {
    min-height: auto;
    overflow: visible;
  }
  .workflow-images {
    display: none;
  }
  .our-workflow-steps {
    position: relative;
    inset: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .step {
    width: 50%;
    min-height: 320px;
    border-color: var(--white);
    border-style: solid;
  }
}
@media screen and (max-width: 991.98px) and (max-width: 767px) {
  .step {
    width: 100%;
    border-width: 0px 0px 1px 0px !important;
  }
}
@media screen and (max-width: 991.98px) {
  .step-panel {
    position: absolute;
    inset: 0;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .step:nth-child(1) {
    border-width: 0 1px 1px 0;
  }
  .step:nth-child(2) {
    border-width: 0 0 1px 1px;
  }
  .step:nth-child(3) {
    border-width: 1px 1px 0 0;
  }
  .step:nth-child(4) {
    border-width: 1px 0 0 1px;
  }
  .warehouse-storage .step:nth-child(1) .step-panel {
    /* relative from compiled CSS (assets/styles/css/style.css) up two levels into assets/images */
    background-image: url("../../images/warehouse-storage-gallery-1.webp");
  }
  .warehouse-storage .step:nth-child(2) .step-panel {
    background-image: url("../../images/warehouse-storage-gallery-2.webp");
  }
  .warehouse-storage .step:nth-child(3) .step-panel {
    background-image: url("../../images/warehouse-storage-gallery-3.webp");
  }
  .warehouse-storage .step:nth-child(4) .step-panel {
    background-image: url("../../images/warehouse-storage-gallery-4.webp");
  }
  .custom-clearance .step:nth-child(1) .step-panel {
    /* relative from compiled CSS (assets/styles/css/style.css) up two levels into assets/images */
    background-image: url("../../images/customs-clearance-gallery-1.webp");
  }
  .custom-clearance .step:nth-child(2) .step-panel {
    background-image: url("../../images/customs-clearance-gallery-2.webp");
  }
  .custom-clearance .step:nth-child(3) .step-panel {
    background-image: url("../../images/customs-clearance-gallery-3.webp");
  }
  .custom-clearance .step:nth-child(4) .step-panel {
    background-image: url("../../images/customs-clearance-gallery-4.webp");
  }
  .distribution-services .step:nth-child(1) .step-panel {
    /* relative from compiled CSS (assets/styles/css/style.css) up two levels into assets/images */
    background-image: url("../../images/distribution-services-gallery-1.webp");
  }
  .distribution-services .step:nth-child(2) .step-panel {
    background-image: url("../../images/distribution-services-gallery-2.webp");
  }
  .distribution-services .step:nth-child(3) .step-panel {
    background-image: url("../../images/distribution-services-gallery-3.webp");
  }
  .distribution-services .step:nth-child(4) .step-panel {
    background-image: url("../../images/distribution-services-gallery-4.webp");
  }
  .inventory-management-services .step:nth-child(1) .step-panel {
    /* relative from compiled CSS (assets/styles/css/style.css) up two levels into assets/images */
    background-image: url("../../images/inventory-management-services-gallery-1.webp");
  }
  .inventory-management-services .step:nth-child(2) .step-panel {
    background-image: url("../../images/inventory-management-services-gallery-2.webp");
  }
  .inventory-management-services .step:nth-child(3) .step-panel {
    background-image: url("../../images/inventory-management-services-gallery-3.webp");
  }
  .inventory-management-services .step:nth-child(4) .step-panel {
    background-image: url("../../images/inventory-management-services-gallery-4.webp");
  }
  .picking-and-sorting .step:nth-child(1) .step-panel {
    /* relative from compiled CSS (assets/styles/css/style.css) up two levels into assets/images */
    background-image: url("../../images/picking-and-sorting-gallery-1.webp");
  }
  .picking-and-sorting .step:nth-child(2) .step-panel {
    background-image: url("../../images/picking-and-sorting-gallery-2.webp");
  }
  .picking-and-sorting .step:nth-child(3) .step-panel {
    background-image: url("../../images/picking-and-sorting-gallery-3.webp");
  }
  .picking-and-sorting .step:nth-child(4) .step-panel {
    background-image: url("../../images/picking-and-sorting-gallery-4.webp");
  }
  .ambient-storage .step:nth-child(1) .step-panel {
    /* relative from compiled CSS (assets/styles/css/style.css) up two levels into assets/images */
    background-image: url("../../images/ambient-storage-img2.webp");
  }
  .ambient-storage .step:nth-child(2) .step-panel {
    background-image: url("../../images/ambient-storage-img3.webp");
  }
  .ambient-storage .step:nth-child(3) .step-panel {
    background-image: url("../../images/ambient-storage-img4.webp");
  }
  .ambient-storage .step:nth-child(4) .step-panel {
    background-image: url("../../images/ambient-storage-img5.webp");
  }
  .chilled-storage .step:nth-child(1) .step-panel {
    /* relative from compiled CSS (assets/styles/css/style.css) up two levels into assets/images */
    background-image: url("../../images/chilled-storage-img2.webp");
  }
  .chilled-storage .step:nth-child(2) .step-panel {
    background-image: url("../../images/chilled-storage-img3.webp");
  }
  .chilled-storage .step:nth-child(3) .step-panel {
    background-image: url("../../images/chilled-storage-img4.webp");
  }
  .chilled-storage .step:nth-child(4) .step-panel {
    background-image: url("../../images/chilled-storage-img5.webp");
  }
  .frozen-storage .step:nth-child(1) .step-panel {
    /* relative from compiled CSS (assets/styles/css/style.css) up two levels into assets/images */
    background-image: url("../../images/frozen-storage-img2.webp");
  }
  .frozen-storage .step:nth-child(2) .step-panel {
    background-image: url("../../images/frozen-storage-img3.webp");
  }
  .frozen-storage .step:nth-child(3) .step-panel {
    background-image: url("../../images/frozen-storage-img4.webp");
  }
  .frozen-storage .step:nth-child(4) .step-panel {
    background-image: url("../../images/frozen-storage-img5.webp");
  }
  .deep-freeze-storage .step:nth-child(1) .step-panel {
    /* relative from compiled CSS (assets/styles/css/style.css) up two levels into assets/images */
    background-image: url("../../images/deep-freeze-storage-img7.webp");
  }
  .deep-freeze-storage .step:nth-child(2) .step-panel {
    background-image: url("../../images/deep-freeze-storage-img8.webp");
  }
  .deep-freeze-storage .step:nth-child(3) .step-panel {
    background-image: url("../../images/deep-freeze-storage-img9.webp");
  }
  .deep-freeze-storage .step:nth-child(4) .step-panel {
    background-image: url("../../images/deep-freeze-storage-img10.webp");
  }
  .step-content {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 24px 20px;
    color: var(--white);
  }
  .step:hover .step-content span {
    color: var(--white);
  }
  .step:hover .step-content h4 {
    color: var(--white);
  }
  .step-content p {
    max-height: max-content;
    overflow: visible;
  }
  .step:hover .step-content p {
    color: var(--white);
  }
  .step:hover .step-panel {
    height: 100%;
  }
}
.why-us .why-us-header {
  text-align: center;
  width: 40%;
  margin: auto;
}
@media screen and (max-width: 991.98px) {
  .why-us .why-us-header {
    width: 100%;
  }
}
.why-us .why-us-container {
  margin: 30px 0;
}
.why-us .why-us-container .why-us-card {
  border: 1px solid rgba(190, 22, 35, 0.2);
  border-radius: 12px;
  padding: 25px;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  transition: all 0.8s;
}
.why-us .why-us-container .why-us-card > div:first-child {
  flex: 2;
}
.why-us .why-us-container .why-us-card > div:first-child span {
  display: inline-block;
  transform-origin: center;
  font-family: var(--GilroySemibold);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 32px);
  color: var(--primary-main-color);
  transition: transform 0.5s ease;
}
.why-us .why-us-container .why-us-card > div:last-child {
  flex: 1;
}
.why-us .why-us-container .why-us-card > div:last-child h5 {
  font-family: var(--GilroySemibold);
  font-weight: 600;
  font-size: clamp(16px, 3vw, 20px);
  line-height: 1;
  margin: 0 0 12px 0;
  transition: transform 0.5s ease;
}
.why-us .why-us-container .why-us-card > div:last-child p {
  font-family: var(--gilroyMedium);
  text-transform: capitalize;
  color: rgba(128, 128, 128, 0.6);
  transition: transform 0.5s ease;
}
.why-us .why-us-container .why-us-card:hover {
  background-color: var(--primary-main-color);
}
.why-us .why-us-container .why-us-card:hover span,
.why-us .why-us-container .why-us-card:hover h5,
.why-us .why-us-container .why-us-card:hover p {
  color: var(--white) !important;
  transform: translateY(5px);
}
.why-us .why-us-container .why-us-card:hover span {
  transform: scale(1.2);
}
.why-us .why-us-container .why-us-card:hover p {
  text-transform: none !important;
}

.faqs {
  position: relative;
  padding: 70px 0;
  background: #f7f7f7;
}
.faqs .col-lg-3 {
  position: sticky;
  top: 80px;
}
@media screen and (max-width: 992px) {
  .faqs .col-lg-3 {
    position: static;
  }
}
.faqs .primary-title {
  font-size: clamp(28px, 3vw, 42px);
}
.faqs ul li {
  background: #E8E8E8;
  box-shadow: 0px 0px 1px 0.5px rgba(0, 0, 0, 0.1019607843);
  padding: 20px;
  border-radius: 12px;
  transition: 0.5s all;
  margin-bottom: 15px;
  cursor: pointer;
}
.faqs ul li:last-child {
  margin-bottom: 0;
}
.faqs ul li.active {
  background: var(--primary-main-color);
}
.faqs ul li.active span {
  color: var(--white);
}
.faqs ul li span {
  font-family: var(--gilroyMedium);
  font-size: 16px;
  color: #808080;
  line-height: 1.1;
  transition: 0.5s all;
  display: block;
}
@media screen and (max-width: 992px) {
  .faqs {
    padding: 40px 0;
  }
}
.faqs .faqs-accordion .faq-item {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1019607843);
  border-radius: 12px;
  margin-bottom: 15px;
  padding: 20px;
  transition: all 0.5s ease;
}
.faqs .faqs-accordion .faq-item .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.5s;
}
.faqs .faqs-accordion .faq-item .faq-question h6 {
  margin: 0;
  font-family: var(--GilroySemibold);
  font-weight: 600;
  font-size: clamp(16px, 3vw, 20px);
  line-height: 1;
}
.faqs .faqs-accordion .faq-item .faq-question div {
  margin: 5px;
}
.faqs .faqs-accordion .faq-item .faq-question div .faq-icon {
  margin: 5;
  cursor: pointer;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #000;
  position: relative;
  transition: all 0.5s ease;
}
.faqs .faqs-accordion .faq-item .faq-question div .faq-icon::before, .faqs .faqs-accordion .faq-item .faq-question div .faq-icon::after {
  content: "";
  position: absolute;
  background: #fff;
}
.faqs .faqs-accordion .faq-item .faq-question div .faq-icon::before {
  width: 12px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faqs .faqs-accordion .faq-item .faq-question div .faq-icon::after {
  width: 2px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faqs .faqs-accordion .faq-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  margin-top: 0;
}
.faqs .faqs-accordion .faq-item .faq-answer p {
  font-family: var(--gilroy);
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.1;
  margin: 15px 0 0 0;
  color: #808080;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.faqs .faqs-accordion .faq-item .faq-answer ul {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faqs .faqs-accordion .faq-item .faq-answer ul,
.faqs .faqs-accordion .faq-item .faq-answer li {
  list-style: disc !important;
  margin-left: 10px;
}
.faqs .faqs-accordion .faq-item.active .faq-answer {
  max-height: max-content;
  opacity: 1;
  margin-top: 10px;
}
.faqs .faqs-accordion .faq-item.active .faq-answer p {
  opacity: 1;
  transition: opacity 0.3s ease;
}
.faqs .faqs-accordion .faq-item.active .faq-icon {
  background: var(--primary-main-color) !important;
  transition: all 0.5s ease;
}
.faqs .faqs-accordion .faq-item.active .faq-icon::after {
  opacity: 0;
}

.connect-with-team {
  padding: 100px 0;
  margin: 0px !important;
  background: linear-gradient(60deg, var(--primary-main-color) 0%, var(--black) 70%, var(--black) 100%);
  color: #fff;
}
.connect-with-team h2 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 20px;
}
.connect-with-team p {
  font-family: var(--GilroyRegular);
  font-weight: 400;
  font-size: clamp(20px, 3vw, 24px);
  line-height: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px auto;
  color: var(--white);
}
.connect-with-team .cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
.connect-with-team .secondary-btn span {
  background-color: var(--white);
  color: var(--black);
  border: none;
  white-space: nowrap !important;
}
.connect-with-team .secondary-btn span:first-child {
  padding: 15px 100px;
}
@media screen and (max-width: 991.98px) {
  .connect-with-team .secondary-btn span:first-child {
    padding: 10px 50px;
  }
}
@media screen and (max-width: 991.98px) {
  .connect-with-team .secondary-btn span:nth-child(2) {
    height: 42px !important;
    width: 42px !important;
    min-height: 42px !important;
    min-width: 42px !important;
  }
}
.connect-with-team .secondary-btn:hover span {
  background-color: var(--white) !important;
}
.connect-with-team .cta-arrow {
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}
.connect-with-team .cta-arrow span {
  color: #000;
  font-size: 18px;
  transition: transform 0.3s ease;
}
.connect-with-team .cta-arrow:hover {
  transform: translateX(4px);
}
.connect-with-team .cta-arrow:hover span {
  transform: translateX(2px);
}
@media (max-width: 768px) {
  .connect-with-team {
    padding: 70px 20px;
  }
  .connect-with-team h2 {
    font-size: 24px;
  }
  .connect-with-team p {
    font-size: 14px;
  }
  .connect-with-team .cta-buttons {
    flex-direction: column;
    gap: 12px;
  }
}

.legacy-frontier-main .desc-main {
  margin-top: 120px;
}
@media screen and (max-width: 992px) {
  .legacy-frontier-main .desc-main {
    margin-top: 20px;
  }
}
.legacy-frontier-main .legacy-frontier-video video {
  width: 100%;
  height: 445px;
  object-fit: cover;
  border-radius: 10px;
}
.legacy-frontier-main .multi-point-main {
  margin-top: 50px;
}
@media screen and (max-width: 992px) {
  .legacy-frontier-main .multi-point-main {
    margin-top: 20px;
  }
}
.legacy-frontier-main .multi-point-main .multi-point {
  padding: 22px 24px;
  border-bottom: solid 1px #E8E8E8;
}
@media screen and (max-width: 767px) {
  .legacy-frontier-main .multi-point-main .multi-point {
    padding: 12px 14px;
  }
}
.legacy-frontier-main .multi-point-main .multi-point:first-child {
  border-top: solid 1px #E8E8E8;
}
.legacy-frontier-main .multi-point-main .multi-point .count-heading {
  display: flex;
  align-items: center;
  gap: 120px;
}
@media screen and (max-width: 400px) {
  .legacy-frontier-main .multi-point-main .multi-point .count-heading {
    display: block;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .legacy-frontier-main .multi-point-main .multi-point .count-heading {
    gap: 20px;
  }
}
.legacy-frontier-main .multi-point-main .multi-point .count-heading span {
  font-family: var(--gilroyMedium);
  font-size: clamp(20px, 3vw, 32px);
  color: #808080;
  min-width: 40px;
}
@media screen and (max-width: 500px) {
  .legacy-frontier-main .multi-point-main .multi-point .count-heading span {
    min-width: unset;
    margin-bottom: 10px;
    display: block;
  }
}
.legacy-frontier-main .multi-point-main .multi-point .count-heading h3 {
  font-family: var(--gilroyMedium);
  font-size: clamp(22px, 3vw, 32px);
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 0;
}
.legacy-frontier-main .multi-point-main .multi-point .count-desc p {
  font-family: var(--gilroyMedium);
  font-size: clamp(16px, 2vw, 20px);
  color: #808080;
  margin-bottom: 0;
  line-height: 1.1;
}

.warehousing-logistics-main .desc {
  font-family: var(--gilroyMedium);
}
.warehousing-logistics-main .warehousing-card {
  background: var(--white);
  border: 1px solid rgba(190, 22, 35, 0.2);
  border-radius: 12px;
  padding: 27px 24px 50px 24px;
  height: 100%;
  transition: 0.5s all;
}
.warehousing-logistics-main .warehousing-card:hover {
  background: var(--primary-main-color);
}
.warehousing-logistics-main .warehousing-card:hover span {
  font-size: clamp(28px, 3vw, 36px);
  color: var(--white);
}
.warehousing-logistics-main .warehousing-card:hover h4 {
  color: var(--white);
}
.warehousing-logistics-main .warehousing-card:hover p {
  color: var(--white);
}
.warehousing-logistics-main .warehousing-card.active {
  background: var(--primary-main-color);
}
.warehousing-logistics-main .warehousing-card.active span {
  font-size: clamp(28px, 3vw, 36px);
  color: var(--white);
}
.warehousing-logistics-main .warehousing-card.active h4 {
  color: var(--white);
}
.warehousing-logistics-main .warehousing-card.active p {
  color: var(--white);
}
.warehousing-logistics-main .warehousing-card span {
  font-family: var(--gilroyMedium);
  font-size: clamp(24px, 3vw, 32px);
  color: var(--primary-main-color);
  margin-bottom: 24px;
  display: block;
  transition: 0.5s all;
}
.warehousing-logistics-main .warehousing-card h4 {
  font-size: clamp(18px, 2vw, 20px);
  font-family: var(--gilroySemiBold);
  color: var(--black);
  margin-bottom: 10px;
  transition: 0.5s all;
}
.warehousing-logistics-main .warehousing-card p {
  font-family: var(--gilroyMedium);
  font-size: clamp(14px, 2vw, 16px);
  color: rgba(128, 128, 128, 0.6);
  line-height: 1.1;
  margin-bottom: 0;
  transition: 0.5s all;
}

.awm-standout-main {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 70px 0 100px 0;
  background: var(--black);
}
@media screen and (max-width: 992px) {
  .awm-standout-main {
    padding: 50px 0;
  }
}
.awm-standout-main .awm-standout-left-img {
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
  z-index: -1;
}
.awm-standout-main .awm-standout-right-img {
  position: absolute;
  bottom: 0;
  left: 0;
  pointer-events: none;
  z-index: -1;
}
.awm-standout-main .standout-main {
  text-align: center;
}
.awm-standout-main .standout-main .awm-container-img {
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 992px) {
  .awm-standout-main .standout-main .awm-container-img .col-sm-6:last-child .standout-card {
    margin-bottom: 0;
  }
}
.awm-standout-main .standout-main .awm-container-img .standout-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.1019607843);
  border-radius: 10px;
  border: solid 1px rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  padding: 12px 24px;
  width: 100%;
}
@media screen and (max-width: 992px) {
  .awm-standout-main .standout-main .awm-container-img .standout-card {
    position: static;
    margin-bottom: 20px;
  }
}
.awm-standout-main .standout-main .awm-container-img .standout-card.one {
  left: -20%;
  top: 0;
  max-width: 210px;
  text-align: left;
}
@media screen and (max-width: 992px) {
  .awm-standout-main .standout-main .awm-container-img .standout-card.one {
    max-width: unset;
    text-align: center;
  }
}
.awm-standout-main .standout-main .awm-container-img .standout-card.two {
  left: -23%;
  bottom: 0;
  max-width: 260px;
  text-align: left;
}
@media screen and (max-width: 992px) {
  .awm-standout-main .standout-main .awm-container-img .standout-card.two {
    max-width: unset;
    text-align: center;
  }
}
.awm-standout-main .standout-main .awm-container-img .standout-card.three {
  right: -25%;
  top: 0;
  text-align: right;
  max-width: 240px;
}
@media screen and (max-width: 992px) {
  .awm-standout-main .standout-main .awm-container-img .standout-card.three {
    max-width: unset;
    text-align: center;
  }
}
.awm-standout-main .standout-main .awm-container-img .standout-card.four {
  right: -20%;
  bottom: 0;
  width: 290px;
  text-align: right;
}
@media screen and (max-width: 992px) {
  .awm-standout-main .standout-main .awm-container-img .standout-card.four {
    width: 100%;
    text-align: center;
  }
}
.awm-standout-main .standout-main .awm-container-img .standout-card.five {
  left: 50%;
  bottom: -10%;
  transform: translateX(-50%);
  max-width: 310px;
}
@media screen and (max-width: 992px) {
  .awm-standout-main .standout-main .awm-container-img .standout-card.five {
    transform: translateX(0);
    max-width: unset;
    text-align: center;
  }
}
.awm-standout-main .standout-main .awm-container-img .standout-card span {
  font-family: var(--gilroyMedium);
  font-size: 14px;
  color: var(--white);
  display: block;
}
.awm-standout-main .standout-main .awm-container-img .standout-card h3 {
  font-family: var(--gilroySemiBold);
  font-size: clamp(48px, 6vw, 64px);
  color: var(--primary-main-color);
  margin-bottom: 0;
}

.purpose-direction-main .purpose-direction-img-main {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  height: 100%;
}
.purpose-direction-main .purpose-direction-img-main #PurposeDirectionImg {
  height: 100%;
}
.purpose-direction-main .purpose-direction-img-main .purpose-direction-card-img {
  height: 100%;
}
.purpose-direction-main .purpose-direction-img-main .purpose-direction-card-img img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.purpose-direction-main .purpose-direction-img-main .awm-logo-img {
  position: absolute;
  top: 0;
  left: 32px;
  transition: 0.8s all;
  z-index: 1;
  transform: translateY(calc(100% - 150px));
  height: 100%;
  pointer-events: none;
}
.purpose-direction-main .purpose-direction-card-main {
  background: var(--black);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.purpose-direction-main .purpose-direction-card-main .purpose-direction-card {
  padding: 44px 36px;
}
.purpose-direction-main .purpose-direction-card-main .purpose-direction-card .sub-line {
  position: relative;
  margin-bottom: 50px;
  display: block;
  line-height: 1;
}
.purpose-direction-main .purpose-direction-card-main .purpose-direction-card .sub-line::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -36px;
  width: calc(100% + 72px);
  background: rgba(255, 255, 255, 0.2);
  height: 1px;
  z-index: -1;
}
.purpose-direction-main .purpose-direction-card-main .purpose-direction-card .desc {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.8);
}
.purpose-direction-main .purpose-direction-card-main .arrow-main {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 36px 36px 36px;
}
.purpose-direction-main .purpose-direction-card-main .arrow-main span {
  width: 34px;
  height: 34px;
  min-width: 34px;
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-main-color);
  border-radius: 8px;
  transition: 0.5s all;
  user-select: none;
}
.purpose-direction-main .purpose-direction-card-main .arrow-main span.swiper-button-disabled {
  cursor: not-allowed;
  background: rgba(255, 255, 255, 0.1019607843);
}
.purpose-direction-main .purpose-direction-card-main .purpose-absalute-card-img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  width: 100%;
}

.our-key-difference .our-key-difference-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.our-key-difference .our-key-difference-left ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
}
.our-key-difference .our-key-difference-left ul li {
  list-style: disc !important;
  max-width: 80%;
  font-family: var(--gilroyMedium);
  font-weight: 500;
  font-size: clamp(14px, 3vw, 16px);
  color: var(--black);
  line-height: 1;
}
@media screen and (max-width: 991.98px) {
  .our-key-difference .our-key-difference-left ul li {
    max-width: 100%;
  }
}
.our-key-difference .our-key-difference-left .desc {
  color: #808080;
}

.storage-facilities {
  position: relative;
  overflow: hidden;
}
.storage-facilities .sub-heading {
  font-size: clamp(14px, 3vw, 16px);
}
.storage-facilities > img {
  position: absolute;
  opacity: 1;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: -1;
}
.storage-facilities .desc {
  color: var(--white);
}
.storage-facilities .container > div {
  display: flex;
  padding: 44px 0;
  flex-direction: column;
  justify-content: space-between;
  gap: 200px;
}
.storage-facilities .container > div .storage-facilities-header .primary-title {
  width: 80%;
}
@media screen and (max-width: 991.98px) {
  .storage-facilities .container > div .storage-facilities-header .primary-title {
    width: 100%;
  }
}
.storage-facilities .container > div .storage-facilities-header .desc {
  width: 80%;
  float: right;
}
@media screen and (max-width: 991.98px) {
  .storage-facilities .container > div .storage-facilities-header .desc {
    float: left;
    width: 100%;
  }
}
.storage-facilities .container > div .storage-facilities-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 272px;
  backdrop-filter: blur(35.5px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  transition: all 0.4s ease-out;
  overflow: hidden;
}
.storage-facilities .container > div .storage-facilities-card > div {
  position: absolute;
  transition: all 0.4s;
  overflow: hidden;
  padding: 0 24px;
  margin-bottom: 24px;
  transform: translateY(100px);
  width: 100%;
}
.storage-facilities .container > div .storage-facilities-card > div p {
  font-family: var(--GilroyMedium);
  font-weight: 500;
  font-size: clamp(20px, 4vw, 24px);
  line-height: 30px;
  color: var(--white);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1019607843);
}
.storage-facilities .container > div .storage-facilities-card > div a {
  opacity: 0;
  bottom: 0;
  margin-top: 42px;
  padding: 0;
  height: 68px;
}
.storage-facilities .container > div .storage-facilities-card > div a span {
  background-color: var(--white);
  color: var(--primary-main-color);
}
.storage-facilities .container > div .storage-facilities-card > div a span path {
  fill: var(--primary-main-color);
}
.storage-facilities .container > div .storage-facilities-card > div p:last-child {
  opacity: 0;
  font-family: var(--GilroyRegular);
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  border: none;
  margin-top: 42px;
  padding: 0;
  height: 68px;
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.5) transparent;
  /* Chrome, Edge, Safari */
}
.storage-facilities .container > div .storage-facilities-card > div p:last-child::-webkit-scrollbar {
  width: 6px;
}
.storage-facilities .container > div .storage-facilities-card > div p:last-child::-webkit-scrollbar-track {
  background: transparent;
}
.storage-facilities .container > div .storage-facilities-card > div p:last-child::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  transition: background 0.3s ease;
}
.storage-facilities .container > div .storage-facilities-card > div p:last-child::-webkit-scrollbar-thumb:hover {
  background-color: rgba(255, 255, 255, 0.8);
}
.storage-facilities .container > div .storage-facilities-card:hover {
  background-color: var(--primary-main-color);
}
.storage-facilities .container > div .storage-facilities-card:hover > div {
  transform: translateY(0);
}
.storage-facilities .container > div .storage-facilities-card:hover > div > p:last-child {
  opacity: 1;
}
.storage-facilities .container > div .storage-facilities-card:hover a {
  opacity: 1;
}

.contact-us-main .contact-form-main {
  background: rgba(0, 0, 0, 0.0509803922);
  border: 1px solid rgba(0, 0, 0, 0.0509803922);
  border-radius: 12px;
  padding: 32px 24px;
}
.contact-us-main .contact-form-main form .input {
  margin-bottom: 20px;
}
.contact-us-main .contact-form-main form .input.error input,
.contact-us-main .contact-form-main form .input.error select {
  border: solid 1px var(--primary-main-color);
}
.contact-us-main .contact-form-main form .input.error .error-txt {
  font-size: 12px;
  font-family: var(--gilroySemiBold);
  color: var(--primary-main-color);
}
.contact-us-main .contact-form-main form .input label {
  font-family: var(--gilroyMedium);
  font-size: 16px;
  color: #141414;
  margin-bottom: 12px;
}
.contact-us-main .contact-form-main form .input input,
.contact-us-main .contact-form-main form .input textarea {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.0509803922);
  padding: 10px;
  border-radius: 8px;
  font-family: var(--gilroy);
  font-size: 14px;
  color: #808080;
  width: 100%;
  outline: none;
}
.contact-us-main .contact-form-main form .form-btn {
  background: var(--primary-main-color);
  width: 100%;
  padding: 18px 12px;
  font-family: var(--gilroySemiBold);
  font-size: clamp(16px, 3vw, 20px);
  color: var(--white);
  text-align: center;
  border: 0;
  border-radius: 8px;
}
.contact-us-main .contact-form-main form .form-btn.active {
  background: grey;
  color: #000;
  opacity: 0.4;
  cursor: not-allowed;
}
.contact-us-main .form-left-img-main {
  position: relative;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
}
.contact-us-main .form-left-img-main > span {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5882352941);
}
.contact-us-main .form-left-img-main > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-us-main .form-left-img-main .absalute-top {
  position: absolute;
  top: 50px;
  left: 33px;
  right: 33px;
}
@media screen and (max-width: 992px) {
  .contact-us-main .form-left-img-main .absalute-top {
    left: 20px;
    right: 20px;
    bottom: 30px;
  }
}
.contact-us-main .form-left-img-main .absalute-bottom {
  position: absolute;
  left: 33px;
  right: 33px;
  bottom: 30px;
}
@media screen and (max-width: 992px) {
  .contact-us-main .form-left-img-main .absalute-bottom {
    left: 20px;
    right: 20px;
    bottom: 30px;
  }
}
.contact-us-main .form-left-img-main .absalute-bottom h3 {
  font-family: var(--gilroyMedium);
  font-size: clamp(28px, 3vw, 36px);
  color: var(--white);
  margin-bottom: 20px;
}
.contact-us-main .form-left-img-main .absalute-bottom ul li {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 10px;
}
.contact-us-main .form-left-img-main .absalute-bottom ul li span,
.contact-us-main .form-left-img-main .absalute-bottom ul li a {
  font-family: var(--gilroySemiBold);
  font-size: 16px;
  color: var(--white);
  line-height: 1.1;
}

.privacy-policy-main {
  position: relative;
}
.privacy-policy-main .policy-left {
  position: sticky;
  top: 75px;
}
.privacy-policy-main .policy-left h3 {
  font-family: var(--gilroyMedium);
  font-size: clamp(20px, 3vw, 24px);
  color: var(--black);
  margin-bottom: 24px;
}
@media screen and (max-width: 992px) {
  .privacy-policy-main .policy-left h3 {
    margin-bottom: 15px;
  }
}
.privacy-policy-main .policy-left ul li:last-child a {
  margin-bottom: 0;
}
.privacy-policy-main .policy-left ul li a {
  font-family: var(--gilroy);
  font-size: 16px;
  color: #808080;
  padding: 12px 0;
  border-radius: 8px;
  width: 100%;
  transition: 0.5s all;
  margin-bottom: 2px;
  transition: 0.5s all;
  display: block;
}
.privacy-policy-main .policy-left ul li a.active {
  background: var(--primary-main-color);
  padding: 12px 8px;
  color: var(--white);
}
.privacy-policy-main .policy-right .policy-text {
  margin-bottom: 30px;
}
.privacy-policy-main .policy-right .policy-text:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 992px) {
  .privacy-policy-main .policy-right .policy-text {
    margin-bottom: 15px;
  }
}
.privacy-policy-main .policy-right .policy-text h3 {
  font-family: var(--gilroyMedium);
  font-size: clamp(20px, 3vw, 24px);
  color: var(--black);
  margin-bottom: 24px;
}
@media screen and (max-width: 992px) {
  .privacy-policy-main .policy-right .policy-text h3 {
    margin-bottom: 10px;
  }
}
.privacy-policy-main .policy-right .policy-text p {
  font-family: var(--gilroy);
  font-size: clamp(14px, 2vw, 16px);
  color: rgba(0, 0, 0, 0.8);
  line-height: 1.1;
}
.privacy-policy-main .policy-right .policy-text ul {
  padding-left: 18px;
}
.privacy-policy-main .policy-right .policy-text ul li {
  font-family: var(--gilroy);
  font-size: clamp(14px, 2vw, 16px);
  color: rgba(0, 0, 0, 0.8);
  list-style: disc;
  line-height: 1.1;
  padding-bottom: 2px;
}
.privacy-policy-main .policy-right .policy-text ul li:last-child {
  padding-bottom: 0;
}
.privacy-policy-main .policy-right .policy-text span {
  font-family: var(--gilroy);
  font-size: clamp(14px, 2vw, 16px);
  color: rgba(0, 0, 0, 0.8);
  display: block;
  line-height: 1.1;
}
.privacy-policy-main .policy-right .policy-text span a {
  color: rgba(0, 0, 0, 0.8);
}
.privacy-policy-main .policy-right .policy-text a {
  font-family: var(--gilroy);
  font-size: clamp(14px, 2vw, 16px);
  color: rgba(0, 0, 0, 0.8);
  line-height: 1.1;
}

.blog-detail-main .detail-right h6 {
  font-family: var(--gilroy);
  font-size: clamp(20px, 3vw, 24px);
  color: var(--black);
  margin-bottom: 24px;
}
@media screen and (max-width: 992px) {
  .blog-detail-main .detail-right h6 {
    margin-bottom: 12px;
  }
}
.blog-detail-main .detail-right span, .blog-detail-main .detail-right p {
  font-family: var(--gilroy);
  font-size: clamp(18px, 3vw, 20px);
  color: var(--black);
  display: block;
  margin-bottom: 40px;
}
@media screen and (max-width: 992px) {
  .blog-detail-main .detail-right span, .blog-detail-main .detail-right p {
    margin-bottom: 20px;
  }
}
.blog-detail-main .detail-right ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  max-width: 300px;
  margin-bottom: 30px;
}
@media screen and (max-width: 992px) {
  .blog-detail-main .detail-right ul {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 767px) {
  .blog-detail-main .detail-right ul {
    max-width: unset;
  }
}
.blog-detail-main .detail-right ul li span {
  font-family: var(--gilroy);
  color: rgba(0, 0, 0, 0.5019607843);
  margin-bottom: 0;
}
.blog-detail-main .detail-right ul li span:nth-child(1) {
  font-size: clamp(14px, 2vw, 16px);
  margin-bottom: 10px;
}
.blog-detail-main .detail-right ul li span:nth-child(2) {
  font-size: clamp(18px, 3vw, 20px);
}
.blog-detail-main .detail-right .blog-detail-img {
  margin-bottom: 30px;
}
.blog-detail-main .detail-right .blog-detail-img img {
  width: 100%;
  object-fit: cover;
}
@media screen and (max-width: 992px) {
  .blog-detail-main .detail-right .blog-detail-img {
    margin-bottom: 15px;
  }
}
.blog-detail-main .detail-right .detail-text {
  margin-bottom: 30px;
}
@media screen and (max-width: 992px) {
  .blog-detail-main .detail-right .detail-text {
    margin-bottom: 15px;
  }
}
.blog-detail-main .detail-right .detail-text h5 {
  font-family: var(--gilroy);
  font-size: clamp(20px, 3vw, 24px);
  color: var(--black);
  margin-bottom: 30px;
}
@media screen and (max-width: 992px) {
  .blog-detail-main .detail-right .detail-text h5 {
    margin-bottom: 15px;
  }
}
.blog-detail-main .detail-right .detail-text p {
  font-family: var(--gilroy);
  font-size: clamp(16px, 3vw, 20px);
  color: var(--black);
  margin-bottom: 0;
}

/*# sourceMappingURL=style.css.map */
