@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Outfit:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oleo+Script+Swash+Caps:wght@400;700&family=Oswald:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&display=swap');

/* Root Variables */ 
:root {
  --primary: #E00072;
  --secondary: #000;
  --body-color: #616161;
  --family: "Outfit", sans-serif;
  --family-title: "Montserrat", sans-serif;
  /* Default Font Sizes (Mobile First) */
  --title-h1: 40px;
  --title-h2: 32px;
  --title-h3: 24px;
  --title-h4: 21px;
  --title-h5: 18px;
  --title-h6: 16px;
  --body-text: 14px;
}
/* Tablet Sizes */
@media (min-width: 768px) {
  :root {
    --title-h1: 48px;
    --title-h2: 42px;
    --title-h3: 30px;
    --title-h4: 24px;
    --title-h5: 21px;
    --title-h6: 18px;
    --body-text: 15px;
  }
}
/* Desktop Sizes */
@media (min-width: 1600px) {
  :root {
    --title-h1: 72px;
    --title-h2: 48px;
    --title-h3: 36px;
    --title-h4: 30px;
    --title-h5: 24px;
    --title-h6: 21px;
    --body-text: 16px;
  }
}
/*Basic css start  */
body {
  font-family: var(--family);
  font-size: var(--body-text);
  padding: 0;
  margin: 0;
  color: var(--secondary);
}
h1, h2, h3, h4, h5, h6 {
  clear: both;
  padding: 0;
  margin: 0;
  font-family: var(--family-title);
  font-weight: 700;
}
h1 {
  font-size: var(--title-h1);
  text-transform: uppercase;
  color: var(--bs-white);
  font-weight: 800;
}
h2 {
  font-size: var(--title-h2);
}
h3 {
  font-size: var(--title-h3);
}
h4 {
  font-size: var(--title-h4);
}
h5 {
  font-size: var(--title-h5);
}
h6 {
  font-size: var(--title-h6);
}
.fw-medium {
  font-weight: 500 !important;
}
p {
  clear: both;
  padding: 0 0 12px 0;
  margin: 0;
  color: var(--body-color);
  font-size: var(--body-text);
  line-height: 24px;
}
a {
  color: #000;
}
p a:hover, a, a:hover {
  text-decoration: none;
  color: var(--primary-text);
}
p a {
  color: var(--primary-text);
  text-decoration: underline;
}
iframe {
  max-width: 100%;
}
/* ::-webkit-input-placeholder {

  color: #ff0;

}



::-moz-placeholder {

  color: #ff0;

  opacity: 1;

}



::-ms-input-placeholder {

  color: #ff0;

  opacity: 1;

} */
.bg-none {
  background: none !important;
}
.text-primary-color {
  color: var(--primary);
}
select {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  color: #A8A8A8;
  font-size: 14px;
  padding: 13px;
  background: var(--bs-white) url(../assets/select-arrow.svg) no-repeat calc(100% - 10px) center;
  -appearance: none;
  -webkit-appearance: none;
}
.btn {
  background-color: var(--bs-white);
  text-align: left;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  flex-direction: row;
  padding: 10px 7px 10px 30px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-weight: 500;
  text-transform: capitalize;
  height: 55px;
  border: 0;
  border-radius: 30px;
  transition: all .4s cubic-bezier(.42, 0, .58, 1);
  transition-delay: 0s;
}
.btn::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
  background-color: var(--primary);
  transform: translate(calc(-100% - 2px));
  border-radius: 30px;
  transition: all .6s cubic-bezier(.645, .045, .355, 1);
  transition-delay: 0s;
  z-index: -1;
}
.btn .button-text {
  position: relative;
  display: block;
  margin-right: 20px;
  transition: all .4s cubic-bezier(.42, 0, .58, 1);
  transition-delay: .1s;
}
.btn-outline {
  border: 1px solid var(--primary);
  color: var(--primary);
}
.btn .btn-round-shape {
  transition: all .4s cubic-bezier(.42, 0, .58, 1);
  transition-delay: .1s;
  height: 44px;
  width: 44px;
  background-color: var(--primary);
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.btn .btn-round-shape i {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  right: auto;
  bottom: auto;
  left: 50%;
  display: flex;
}
.icon-arrow-right img {
  filter: brightness(0) invert(1);
}
/* Btn Hover effect */
.btn:hover {
  color: var(--bs-white);
}
.btn:hover .icon-arrow-right img {
  filter: inherit;
  animation: move-forward-right .6s cubic-bezier(.645, .045, .355, 1)0s both 1
}
@keyframes move-forward-right {
  50% {
    transform: translate(100%)
  }
  51% {
    transform: translate(-100%);
    opacity: 0
  }
  100% {
    transform: translate(0);
    opacity: 1
  }
}
.btn:hover::before {
  transform: translate(0);
  transition: all .4s cubic-bezier(.42, 0, .58, 1);
  transition-delay: 0s;
}
.btn:hover .btn-round-shape {
  transition: all .4s cubic-bezier(.42, 0, .58, 1);
  transition-delay: .2s;
  background-color: #fff;
}
.btn:hover .btn-round-shape i {
  transition: all .4s cubic-bezier(.42, 0, .58, 1);
  transition-delay: .2s;
}
.btn-small {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0 18px;
  height: 40px;
}
.btn-small .button-text {
  color: var(--primary);
}
.btn-small:hover .button-text {
  color: var(--bs-white);
}
.btn-small.btn-warning .button-text {
  color: var(--secondary);
}
.btn-small.btn-warning:hover .button-text {
  color: var(--bs-white);
}
.btn-small .icon-arrow-right img {
  filter: inherit;
  vertical-align: top;
}
.btn-small:hover .icon-arrow-right img {
  filter: brightness(0) invert();
}
.btn-warning {
  color: var(--secondary);
  background-color: #FFCC00;
  border-color: #FFCC00;
}
.btn-warning:before {
  background: var(--secondary);
}
.btn-warning:hover {
  color: var(--bs-white);
  background-color: #FFCC00;
  border-color: #FFCC00;
}
.btn-small-outline {
  border: 1px solid var(--primary);
  height: 42px;
  color: var(--primary);
  padding: 5px 5px 5px 22px;
}
.btn-small-outline .btn-round-shape {
  width: 32px;
  height: 32px;
}
.btn-small-outline .button-text {
  margin-right: 12px;
}
img {
  max-width: 100%;
}
.container {
  max-width: 1340px;
}
.py-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}
.pt-80 {
  padding-top: 80px;
}
.pb-80 {
  padding-bottom: 80px;
}
/* Header Css */
header {
  background: rgba(0, 0, 0, .1);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  transition: all ease-in-out 0.3s 0s;
}
header.sticky {
  background: var(--secondary);
}
.sticky .default-logo, .sticky-logo {
  display: none;
}
.sticky .sticky-logo {
  display: inline;
}
header .container {
  max-width: 100%;
  padding-left: 60px;
  padding-right: 60px;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.account-header {
  display: flex;
  gap: 20px;
  align-items: center;
}
.searchOverlay {
  position: fixed;
  background: rgba(0, 0, 0, .9);
  width: 100%;
  height: 100vh;
  left: 0;
  top: 0;
  z-index: 999;
  transition: transform .5s ease-in-out;
  transform: translateY(-100%);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.searchOverlay.openSearch {
  transform: translateY(0);
}
.closeBtn {
  position: absolute;
  right: 30px;
  top: 30px;
  width: 34px;
  cursor: pointer;
}
.overlay-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}
.overlay-content form {
  max-width: 960px;
  margin: auto;
  width: 100%;
}
.overlay-content form h3 {
  color: var(--bs-white);
  margin-bottom: 15px;
  transition: all ease-in-out 1.1s 0s;
}
.search-bar {
  background: rgba(255, 255, 255, .15);
  border: 1px solid #fff;
  border-radius: 50px;
  display: flex;
  width: 100%;
  height: 80px;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all ease-in-out 1.5s 0s;
}
.openSearch .search-bar {
  opacity: 1;
  visibility: visible;
}
.search-bar input[type="text"] {
  width: 100%;
  height: 100%;
  background: none;
  border: 0;
  color: #fff;
  font-size: 38px;
  font-weight: 300;
  padding: 10px;
  border-radius: 50px 0 0 50px;
  flex: 1;
  outline: none;
}
.search-bar button[type="submit"] {
  background: var(--primary);
  border: 0;
  cursor: pointer;
  font-weight: 700;
  text-align: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  margin-right: 6px;
  transition: all ease-in-out 0.3s 0s;
}
.search-bar button[type="submit"]:hover {
  background: var(--secondary);
}
/* Home Css */
/* Home Slider */
.slideritem {
  height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
}
.slider-text-caption {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
}
.top-tag {
  background: var(--primary);
  display: inline-block;
  color: var(--bs-white);
  padding: 10px 22px;
  border-radius: 30px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: normal;
}
.slider-text-caption p {
  color: var(--bs-white);
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 20px;
}
.home-carousel .owl-dots {
  position: absolute;
  bottom: 50px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.home-carousel .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  background: var(--bs-white);
  border-radius: 50%;
  position: relative;
}
.home-carousel .owl-dots .owl-dot.active::after {
  content: "";
  position: absolute;
  left: -6px;
  top: -6px;
  margin: auto;
  width: 22px;
  height: 22px;
  background: none;
  border: 1px solid var(--bs-white);
  border-radius: 50%;
}
/* Top Category */
.cat-panel {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  margin: 60px;
  position: relative;
}
.panel {
  position: relative;
  flex: 1;
  min-width: 300px;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
  transition: all 0.3s ease;
}
.panel.left {
  border-radius: 25px 0 0 25px;
}
.panel.right {
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
  border-radius: 0 25px 25px 0;
}
.panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}
.panel:hover img {
  scale: 1.1;
}
.panel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  color: var(--bs-white);
  background: rgba(0, 0, 0, 0.5);
}
.panel-overlay-inner {
  max-width: 530px;
  margin: auto;
}
.panel-overlay p {
  margin-bottom: 10px;
  color: var(--bs-white);
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
}
.panel-overlay-inner h3 {
  text-transform: uppercase;
}
.badge-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: var(--bs-white);
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.badge-container::before {
  content: "";
  border: 1px solid var(--bs-white);
  width: 220px;
  height: 220px;
  position: absolute;
  border-radius: 50%;
}
.rotating-badge {
  width: 166px;
  height: 166px;
  animation: rotate 8s linear infinite;
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.main-title {
  text-align: center;
  margin-bottom: 50px;
  color: var(--secondary);
  position: relative;
}
.main-title h2 span {
  font-weight: 300;
}
.short-description-title {
  max-width: 700px;
  margin: auto;
  font-size: 20px;
  color: var(--body-color);
}
.main-title h2::after {
  content: "";
  display: block;
  height: 3px;
  width: 80px;
  background: var(--secondary);
  margin: 15px auto;
  border-radius: 8px;
}
.our-services {
  position: relative;
  padding-bottom: 80px;
  overflow: hidden;
}
.services-grid {
  display: flex;
  flex-wrap: wrap;
}
.service-box {
  text-align: center;
  padding: 45px;
  border-left: 1px solid #eee;
  transition: all ease-in-out 0.3s 0s;
  width: 33.33%;
  border-bottom: 1px solid #eee;
}
.service-box:nth-child(1), .service-box:nth-child(4) {
  border-left: none;
}
.service-box:nth-child(4), .service-box:nth-child(5), .service-box:nth-child(6) {
  border-bottom: none;
}
.service-box .icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
  filter: grayscale(100);
}
.service-box h5 {
  color: #40404A;
}
.service-box h5::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  margin: 10px auto;
  background: #40404A;
}
.service-box:hover h5 {
  color: var(--primary);
}
.service-box:hover h5::after {
  background: var(--primary);
}
.service-box:hover .icon {
  filter: grayscale(0);
}
.service-box:hover {
  background: #f8f8f8;
}
.service-box .btn {
  margin-top: 20px;
}
.service-box p {
  font-size: 18px;
  line-height: 28px;
  min-height: 124px;
}
.badge-plane .rotating-badge {
  width: auto;
  height: auto;
}
.badge-plane {
  position: absolute;
  right: -250px;
}
.shape_02 {
  animation: jump 2.5s ease-in-out infinite;
  position: absolute;
  bottom: 0;
  left: 0;
}
@keyframes jump {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.insta-panel {
  background: url(../images/insta-bg.jpg) no-repeat center center;
  background-size: cover;
  position: relative;
}
.insta-content {
  background: url(../assets/insta-text.svg) no-repeat center 20px;
  padding: 100px 0 68px 0;
}
.insta-content h2 {
  color: var(--bs-white);
  font-size: 60px;
  margin-bottom: 20px;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
}
.insta-content h2:after {
  display: none;
}
.insta-content .short-description-title {
  color: var(--bs-white);
  margin-bottom: 40px;
}
.insta-cap-men {
  position: absolute;
  bottom: 0;
  max-width: 27%;
}
.our-news {
  padding: 80px 0;
  overflow: hidden;
  width: 100%;
  position: relative;
}
.container.container-slider {
  padding-left: calc((100% - 1340px) / 2);
  padding-right: 0;
  max-width: 100%;
}
.news-carousel .owl-stage-outer .owl-stage {
  padding-left: 0 !important;
  margin-left: 0;
  overflow: hidden;
}
.news-thumb {
  border-radius: 15px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  overflow: hidden;
}
.news-thumb img {
  border-radius: 15px;
  transition: all ease-in-out 0.3s 0s;
}
.news-blog:hover .news-thumb img {
  scale: 1.1;
}
.news-blog {
  position: relative;
}
.news-thumb {
  border-radius: 15px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  overflow: hidden;
}
.news-deals-caption {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  transition: all ease-in-out 0.3s 0s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 28px;
  opacity: 0;
  visibility: hidden;
}
.news-deals-caption .position-relative {
  scale: 0;
  transition: all ease-in-out 0.3s 0s;
}
.news-deals-caption:hover .position-relative {
  scale: 1;
}
.news-deals-caption .top-tag {
  padding: 7px 16px;
}
.news-deals-caption h4 {
  color: var(--bs-white);
  margin-bottom: 15px;
}
.news-date {
  background: url(../assets/calendar.svg) no-repeat 0 4px;
  color: var(--bs-white);
  padding: 0 0 0 25px;
  margin-bottom: 20px;
}
.news-blog:hover .news-deals-caption {
  opacity: 1;
  visibility: visible;
}
.news-deals-caption:before, .news-deals-caption:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 50%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  transform: translateX(-100%) rotate(15deg);
  transition: all .3s ease-in-out 0s;
  opacity: 0;
  visibility: hidden;
  border-radius: 15px 0 0 15px;
}
.news-deals-caption:after {
  left: auto;
  right: 0;
  transform: translateX(100%) rotate(-15deg);
  border-radius: 0 15px 15px 0px;
}
.news-blog:hover .news-deals-caption:before, .news-blog:hover .news-deals-caption:after {
  transform: none;
  opacity: 1;
  visibility: visible;
}
.shape_03 {
  position: absolute;
  right: 0;
  top: 60px;
  max-width: 20%;
}
.shape_04 {
  position: absolute;
  bottom: -30px;
  max-width: 23%;
}
.news-carousel .owl-nav {
  display: flex;
  gap: 20px;
  margin-top: 35px;
}
.news-carousel .owl-nav button {
  width: 60px;
  height: 60px;
  background: #fff !important;
  border: 2px solid #E00072 !important;
  border-radius: 50%;
  transition: all ease-in-out 0.3s 0s;
}
.news-carousel .owl-nav button:hover {
  background: #E00072 !important;
  border: 2px solid #E00072 !important;
}
.news-carousel .owl-nav button.owl-prev span {
  background: url(../assets/slider-left.svg) no-repeat center center;
  font-size: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.news-carousel .owl-nav button.owl-next span {
  background: url(../assets/slider-right.svg) no-repeat center center;
  font-size: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.news-carousel .owl-nav button:hover span {
  filter: brightness(0) invert(1);
}
.mailbox-panel {
  background-image: url(../images/mailbox-bg.jpg);
}
.mailbox-panel .insta-content {
  background-image: url(../assets/mailbox-text.svg);
  padding: 100px 0 68px 0;
}
.mailbox-panel .insta-content .short-description-title {
  font-size: 24px;
  max-width: 360px;
}
.mailbox-step {
  display: flex;
  margin: 0;
  list-style: none;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 0;
}
.mailbox-step li a {
  background: var(--bs-white);
  border-radius: 5px;
  padding: 15px;
  gap: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 150px;
  font-weight: 500;
  color: #555;
  transition: all ease-in-out 0.3s 0s;
  position: relative;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  text-align: center;
}
.mailbox-step li a p {
  padding: 0;
  color: #555;
}
.mailbox-step li a p span {
  display: block;
}
.mailbox-step li a:hover img {
  filter: brightness(0) invert(1);
}
.mailbox-step li a:hover {
  background: var(--primary);
  color: var(--bs-white);
}
.mailbox-step li a:hover p {
  color: var(--bs-white);
}
.mailbox-step li a::after {
  content: "";
  background: url(../assets/bottom-arrow-mailbox.svg) no-repeat 0 0;
  height: 16px;
  width: 53px;
  position: absolute;
  right: -35px;
  bottom: -14px;
}
.mailbox-step li:last-child a::after, .mailbox-step li:nth-child(2) a::after {
  display: none;
}
.mailbox-step li:nth-child(2) a::before {
  content: "";
  background: url(../assets/top-arrow-mailbox.svg) no-repeat 0 0;
  height: 16px;
  width: 53px;
  position: absolute;
  right: -35px;
  top: -10px;
}
.choose-us {
  position: relative;
  padding: 80px 0;
  background: url(../images/dotted-map-bg.png) no-repeat 50px 150px;
}
.choose-big-thumg {
  position: relative;
}
.choose-big-thumg .main-image {
  width: 100%;
  border-radius: 15px;
}
.choose-fixed-thumb {
  position: absolute;
  bottom: -30px;
  right: -20px;
  border-radius: 10px;
  border: 4px solid var(--bs-white);
  width: 150px;
  height: 150px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.choose-fixed-thumb img {
  border-radius: 6px;
}
.choose-right-panel {
  padding-left: 20px;
}
.choose-card {
  background: var(--bs-white);
  border-radius: 20px;
  padding: 21px;
  box-shadow: 0 0px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  margin-bottom: 21px;
  transition: all ease-in-out 0.3s 0s;
}
.choose-card:hover {
  scale: 1.05;
}
.choose-icon {
  margin-bottom: 10px;
  position: relative;
}
.choose-icon::before {
  content: "";
  width: 60px;
  height: 1px;
  background: var(--primary);
  display: block;
  margin-bottom: 10px;
}
.choose-icon img {
  height: 60px;
  object-fit: contain;
  width: 60px;
}
.choose-content h3 {
  font-size: 18px;
  margin: 5px 0 10px 0;
  font-weight: 600;
}
.choose-content p {
  color: var(--secondary);
  max-width: 200px;
  padding: 0;
  min-height: 63px;
}
.card-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  border-radius: 0 16px 0 16px;
}
.choose-us .shape_02 {
  left: auto;
  right: 20px;
  bottom: auto;
  top: 50px;
}
.global-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  background-color: #222;
  background-image: url(../images/bg-pattern-left.svg), url(../images/bg-pattern-right.svg);
  background-repeat: no-repeat, no-repeat;
  background-position: 0 0, right bottom;
  color: var(--bs-white);
  padding: 40px 0;
  position: relative;
  border-radius: 20px;
}
.hero-image {
  width: 48%;
}
.global-text {
  width: 50%;
  padding-right: 25px;
}
.global-text h2 {
  font-size: 60px;
  line-height: 1.2;
  margin-bottom: 20px;
}
.global-text p {
  color: var(--bs-white);
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 20px;
}
.faq {
  padding: 80px 0;
  position: relative;
  background: url(../images/dotted-map-bg.png) no-repeat 50px 150px;
}
.faq-left {
  max-width: 610px;
}
.faq .top-tag {
  padding: 7px 20px;
}
.faq-left p {
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 10px;
}
.faq-left .choose-fixed-thumb img {
  border-radius: 100%;
}
.faq-left .choose-fixed-thumb {
  width: 130px;
  height: 130px;
  border-radius: 50%;
}
.accordion-item {
  border: none;
  border-radius: 6px !important;
  margin-bottom: 15px;
  position: relative;
}
.accordion-item .accordion-button {
  background: rgba(224, 0, 114, .1);
  border-radius: 6px !important;
  font-weight: 600;
}
.accordion-button::after {
  background: url(../assets/accordian-arrow.svg) no-repeat center center;
}
.accordion-button:not(.collapsed)::after {
  background: url(../assets/accordian-open-arrow.svg) no-repeat center center;
  transform: none;
}
.accordion-button:not(.collapsed) {
  box-shadow: inherit;
  background: var(--primary);
  color: var(--bs-white);
}
.accordion-button:focus {
  outline: 0;
  box-shadow: inherit;
}
.accordion-body ul {
  padding-left: 0px;
}
.accordion-body li {
  background: url(../assets/truck.svg) no-repeat 0 8px;
  padding: 0 0 0 25px;
  margin: 10px 0;
  list-style: none;
  color: var(--body-color);
}
.faq .shape_02 {
  left: auto;
  right: 50px;
  bottom: 100px;
}
.testimonials {
  background: url(../images/map.png) no-repeat center calc(100% - 20px);
  padding: 80px 0;
  background-size: 1000px;
}
.testimonials .main-title {
  margin-bottom: 130px;
}
.review-rate {
  display: flex;
  gap: 5px;
  margin-bottom: 30px;
}
.testi-blog h5 {
  color: #252B2C;
  font-weight: normal;
  line-height: 36px;
}
.testtimonial-flex {
  display: flex;
  margin-top: 30px;
  gap: 22px;
  align-items: center;
}
.testi-thumb {
  width: 92px;
  height: 92px;
  border-radius: 100px;
  overflow: hidden;
  border: 2px solid var(--primary);
}
.testi-thumb img {
  height: 100%;
  object-fit: cover;
}
.testtimonial-text h4 {
  font-size: 26px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 5px;
}
.testtimonial-text h6 {
  font-family: var(--family);
  font-weight: 500;
}
.testimonials .badge-container {
  transform: inherit;
  background: url(../images/trusted-quote.svg) no-repeat center center;
  left: 0;
  top: 30px;
}
.testimonials .badge-container .rotating-badge {
  width: 202px;
  height: 202px;
}
.testtimonial-carousel {
  max-width: 820px;
  margin: auto;
}
.testtimonial-carousel .owl-dots {
  position: absolute;
  right: -150px;
  width: 45px;
  background: rgba(224, 0, 114, .1);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  justify-content: center;
  padding: 27px 0;
  top: 40%;
  transform: translateY(-50%);
}
.testtimonial-carousel .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  border: 1px solid var(--primary);
  border-radius: 50px;
  background: var(--bs-white);
}
.testtimonial-carousel .owl-dots .owl-dot.active {
  background: var(--primary);
}
.testimonials .short-description-title {
  max-width: 1100px;
}
.partners {
  background: #F7F7F7;
  padding: 65px 0 124px 0;
}
.partners .owl-dots {
  text-align: center;
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}
.partners .owl-dots .owl-dot {
  background: #D9D9D9;
  height: 4px;
  width: 35px;
  border-radius: 5px;
}
.partners .owl-dots .owl-dot.active {
  background: var(--primary);
}
.partners .owl-carousel .owl-item img {
  width: 150px;
  height: 150px;
  object-fit: contain;
}
.partner-logo img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}
.partner-logo a:hover img {
  filter: inherit;
}
.website-logos {
  padding: 65px 0;
}
.website-logos {
  padding: 65px 0;
}
.website-carousel .partner-logo {
  background: #fff;
  padding: 10px 30px;
  border-radius: 5px;
  border: 1px solid #eaeaea;
}
/* Footer Start*/
.newsletter {
  top: -62px;
  position: relative;
}
.newsletter-wrapper form {
  background: #fff;
  width: 100%;
  border-radius: 10px;
  display: flex;
  border: 1px solid var(--primary);
  padding: 6px;
  height: 60px;
  max-width: 400px;
}
.newsletter-wrapper form input[type="text"] {
  width: 100%;
  flex: 1;
  border: none;
  outline: none;
  padding: 0 15px;
}
.newsletter-wrapper form input[type="submit"] {
  background: var(--primary);
  border: none;
  border-radius: 6px;
  color: var(--bs-white);
  padding: 0 30px;
  transition: all ease-in-out 0.3s 0s;
  font-family: var(--family-title);
  font-weight: 600;
}
.newsletter-wrapper form input[type="submit"]:hover {
  background: var(--secondary);
}
.newsletter-wrapper {
  background: var(--bs-white);
  padding: 32px;
  border-radius: 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 50px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  max-width: 1100px;
  margin: auto;
}
.tracking-image {
  position: absolute;
  max-width: 130px;
  left: 30px;
}
.newsletter-wrapper .btn {
  border: 1px solid var(--primary);
}
.newsletter-wrapper h4 {
  font-family: "Poppins", sans-serif;
  -webkit-text-stroke: 1px var(--primary);
  color: transparent;
}
footer {
  background: #1D1D1D url(../images/ftr-bg.png) no-repeat center center;
  background-size: cover;
}
.footer-inner {
  padding: 18px 0 68px 0;
}
.ftr-logo {
  margin-bottom: 25px;
}
footer p {
  color: var(--bs-white);
  font-family: var(--family-title);
}
.ftr-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
}
.ftr-social a {
  width: 38px;
  height: 38px;
  border: 1px solid var(--bs-white);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all ease-in-out 0.3s 0s;
}
.ftr-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
}
footer h6 {
  font-size: 18px;
  text-transform: uppercase;
  color: var(--bs-white);
  margin-bottom: 25px;
}
footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
footer ul li {
  margin-bottom: 10px;
}
footer ul li a {
  color: var(--bs-white);
  font-family: var(--family-title);
  font-weight: 500;
}
footer ul li a:hover {
  color: var(--bs-white);
  text-decoration: underline;
}
.ftr-btn {
  color: #BDBDBD;
  font-weight: 700;
  font-family: var(--family-title);
  text-transform: uppercase;
  border: 2px solid #BDBDBD;
  padding: 15px 21px;
  display: inline-block;
  border-radius: 5px;
  font-size: 14px;
  margin-top: 30px;
  transition: all ease-in-out 0.3s 0s;
}
.ftr-btn:hover {
  background: #BDBDBD;
}
.copy-right {
  background: #151517;
  padding: 22px 0;
  position: relative;
}
.copy-right-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.copy-right-text p {
  padding: 0;
  font-size: 14px;
  font-weight: 500;
}
.copy-right-text p a {
  text-decoration: none;
}
.copy-right-text p a:hover {
  text-decoration: underline;
  color: var(--primary);
}
footer .shape_01 {
  position: absolute;
  top: -64px;
  left: 40%;
  transform: translateX(-40%);
  animation: runSlow 32s infinite linear;
}
@keyframes runSlow {
  0% {
    transform: translateX(300px);
  }
  50% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(300px);
  }
}
/* Footer End */
.main-wrapper {
  position: relative;
  background: url(../images/dotted-map-bg.png) no-repeat 0px 0px;
  padding: 80px 0 40px 0;
}
/* Faq Page css Start */
.main-wrapper .faq {
  background: none;
}
.inner-banner {
  height: 400px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  background-position: center center;
}
.inner-banner::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(15, 49, 58, 0.97) 100%);
}
.inner-banner-wrapper {
  position: relative;
  z-index: 1;
}
.breadcrumb a {
  color: var(--bs-white);
}
.breadcrumb a:hover {
  color: var(--primary);
  text-decoration: underline;
}
.breadcrumb .breadcrumb-item {
  color: var(--bs-white);
  font-family: var(--family-title);
  font-weight: 500;
  display: flex;
  align-items: center;
}
.breadcrumb-item + .breadcrumb-item::before {
  background: url(../assets/breadcrumb-arrow.svg) no-repeat right center;
  font-size: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  margin-right: 9px;
}
.sidebar-widget {
  margin-bottom: 50px;
  background: var(--bs-white);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.09);
  padding: 25px 20px;
  border-radius: 10px;
}
.sidebar h6 {
  margin-bottom: 15px;
}
.search-widget {
  background: var(--primary);
}
.search-widget h6 {
  color: var(--bs-white);
}
.sidebar form {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .3);
  padding: 4px;
  border-radius: 5px;
}
.sidebar form input[type="search"] {
  width: 100%;
  flex: 1;
  border: none;
  background: none;
  padding: 9px;
  outline: none;
  color: var(--bs-white);
}
.sidebar form input[type="submit"] {
  background: var(--bs-white) url(../assets/search-primary.svg) no-repeat center center;
  border: none;
  border-radius: 3px;
  width: 44px;
  height: 44px;
}
.sidebar ::-webkit-input-placeholder {
  color: #fff;
  opacity: 1;
}
.sidebar ::-moz-placeholder {
  color: #fff;
  opacity: 1;
}
.sidebar :-ms-input-placeholder {
  color: #fff;
  opacity: 1;
}
.sidebar ::placeholder {
  color: #fff;
  opacity: 1;
}
.sidebar-widget ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.sidebar-widget ul li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 3px 0;
}
.sidebar-widget ul li:last-child {
  border: none;
}
.sidebar-widget ul li a {
  padding: 12px 0;
  display: flex;
  text-transform: uppercase;
  font-size: 15px;
  font-family: var(--family-title);
  font-weight: 500;
  transition: all ease-in-out 0.3s 0s;
  align-items: center;
  color: var(--secondary);
}
.sidebar-widget ul li a:hover {
  color: var(--primary);
}
.sidebar-widget ul li a:before {
  background: url(../assets/arrow-right-up-linear.svg) no-repeat 0 0;
  width: 0px;
  height: 20px;
  content: "";
  display: inline-block;
  transition: all ease-in-out 0.3s 0s;
  margin-right: 0px;
}
.sidebar-widget ul li a:hover:before {
  width: 20px;
  margin-right: 8px;
}
.sub-para {
  font-size: 20px;
  line-height: 30px;
}
.accordion-body h6 {
  font-size: 16px;
  background: url(../assets/truck.svg) no-repeat 0 3px;
  padding: 0 0 0 35px;
  background-size: 20px;
}
.acc-detail {
  margin-bottom: 25px;
  margin-top: 15px;
}
.acc-detail p {
  padding: 0;
}
.acc-detail span {
  display: block;
  color: var(--secondary);
  font-weight: 600;
}
.counter {
  background: url(../images/logistic.gif) no-repeat center center;
  background-size: cover;
  position: relative;
}
.counter::before {
  content: "";
  background: rgba(15, 49, 58, .8);
  width: 100%;
  height: 100%;
  position: absolute;
}
.counter-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  background-image: url(../images/bg-pattern-left.svg), url(../images/bg-pattern-right.svg);
  background-repeat: no-repeat, no-repeat;
  background-position: 0 0, right bottom;
  color: var(--bs-white);
  padding: 110px 0 140px 0;
  position: relative;
  border-radius: 20px;
}
.counter-content ul {
  list-style: none;
  display: flex;
  padding: 0;
  margin: 0;
  justify-content: center;
  flex-wrap: wrap;
}
.counter-content ul li {
  width: 25%;
  text-align: center;
  padding: 0 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.counter-icon {
  display: flex;
  width: 80px;
  height: 80px;
  background: var(--primary);
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}
.counter-icon img {
  transition: all ease-in-out 0.8s 0s;
}
.counter-content ul li:hover img {
  transform: rotate(360deg);
}
.counter-text {
  font-family: "Poppins", sans-serif;
  font-size: 64px;
  font-weight: 700;
  -webkit-text-stroke: 1px #FFFFFF;
  color: transparent;
  line-height: 64px;
}
.counter-detail {
  font-weight: 600;
  font-size: 21px;
}
.contact-address {
  background: #FFF3F9;
  padding: 25px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.contact-icon {
  width: 80px;
  height: 80px;
  background: var(--bs-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all ease-in-out 0.3s 0s;
}
.contact-address:hover .contact-icon {
  background: var(--primary);
}
.contact-icon img {
  transition: all ease-in-out 0.3s 0s;
}
.contact-address:hover .contact-icon img {
  filter: brightness(0) invert(1);
}
.contact-address:hover h6 a {
  color: var(--primary);
}
.line {
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
  position: relative;
  margin: 5px 0 30px 0;
}
.contact-address h6 {
  font-size: 18px;
  margin-bottom: 15px;
}
.contact-address p {
  max-width: 200px;
}
.contact-address ol {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #A8A8A8;
  gap: 3px;
  display: flex;
  flex-direction: column;
}
.line::before, .line::after {
  content: "";
  width: 9px;
  height: 9px;
  background: var(--primary);
  position: absolute;
  top: -5px;
  left: 0;
}
.line::after {
  left: auto;
  right: 0;
}
/* Contact us page */
.contact-wrapper {
  padding: 50px;
  margin: 80px 0 0 0;
  border-top: 11px solid var(--primary);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  position: relative;
  background: var(--bs-white);
}
.contact-form h4 {
  margin-bottom: 28px;
}
.contact-form label {
  display: block;
  font-family: var(--family-title);
  font-weight: 500;
  margin-bottom: 10px;
}
.contact-form input[type="text"], .contact-form input[type="email"], .contact-form select, .contact-form textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  color: var(--secondary);
  font-size: 14px;
  padding: 13px;
  background-color: var(--bs-white);
}
.contact-form textarea {
  height: 110px;
  resize: none;
}
.contact-wrapper .btn, .branch-wrapper .btn {
  border: 1px solid var(--primary);
}
.contact-form {
  max-width: 96%;
}
.map-container {
  margin-top: -300px;
}
/* Contact Branch */
.branch-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
.beanch-freight {
  width: 100%;
  flex: 1;
  position: relative;
}
.beanch-freight ul {
  position: absolute;
  list-style: none;
  display: flex;
  gap: 30px;
  padding: 0;
  margin: 0;
  left: 25px;
  top: 40px;
}
.beanch-freight ul li {
  width: 27.5%;
}
.branch-form {
  width: 100%;
  position: relative;
  margin-left: -100px;
  max-width: 50%;
}
.branch-form .contact-form {
  max-width: 100%;
  width: 100%;
  background: var(--bs-white) url(../images/circle-pattern.png) no-repeat right bottom;
  position: relative;
  padding: 40px 80px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}
.branch-form:before {
  width: 350px;
  height: 350px;
  content: "";
  background: var(--primary);
  position: absolute;
  left: -10px;
  bottom: -10px;
  clip-path: polygon(0 0, 0% 0, 100% 100%, 0% 100%);
}
.branch-wrapper .shape_02 {
  z-index: 1;
  left: calc(50% - 59px);
  top: calc(50% - 120px);
  bottom: auto;
}
.branch-form h6 {
  text-transform: uppercase;
  color: var(--primary);
  font-size: 16px;
  margin-bottom: 10px;
}
.branch-form .contact-form input[type="text"], .branch-form .contact-form input[type="email"], .branch-form .contact-form select, .branch-form .contact-form textarea {
  box-shadow: inherit;
  border-radius: 0;
  position: relative;
  z-index: 1;
}
.beanch-freight::before {
  width: 350px;
  height: 350px;
  content: "";
  background: var(--primary);
  position: absolute;
  left: -10px;
  top: -10px;
  clip-path: polygon(0 0, 100% 0, 0% 100%, 0% 100%);
}
.branch-list {
  background: url(../images/bg-contacts-map.png) no-repeat center center;
  padding: 70px 0;
  display: flex;
  justify-content: space-between;
  gap: 65px;
}
.branch-detail {
  max-width: 310px;
  margin: auto;
}
.branch-detail span {
  color: var(--primary);
  margin-bottom: 15px;
  display: block;
}
.branch-detail ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.branch-detail ul li {
  padding-left: 30px;
  background-repeat: no-repeat;
  font-size: 15px;
}
.location-li {
  background-image: url(../assets/address-icon.svg);
  background-position: 5px 3px;
}
.call-li {
  background-image: url(../assets/phone-call-icon.svg);
  background-position: 1px 0;
}
.mail-li {
  background-image: url(../assets/mail-icon.svg);
  background-position: 0 0;
}
/* About Us */
.welcome-text {
  background: url(../assets/wave-shape-right.svg) no-repeat right bottom;
  padding: 60px 0;
}
.welcome-text p {
  font-size: 18px;
  line-height: 30px;
}
.figure {
  margin: 30px 0;
  position: relative;
  border-radius: 20px;
}
.figure img {
  border-radius: 20px;
}
.figure::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(199, 199, 199, .8) 100%);
}
.quote-block {
  max-width: 100%;
  position: relative;
  background: url(../images/globe.svg) no-repeat 0 center;
  padding: 50px 220px;
}
.quote-block-inner {
  position: relative;
}
.quote-block h4 {
  color: var(--primary);
  line-height: 48px;
}
.quote-icon {
  display: inline-block;
}
.quote-icon.left {
  position: absolute;
  top: -30px;
  left: -110px;
}
.quote-icon.right {
  position: absolute;
  bottom: -30px;
  right: -110px;
}
.logistic-soluation {
  background: url(../images/logistic-bg.jpg) no-repeat center center;
  background-size: cover;
  padding: 50px 0 100px 0;
  position: relative;
}
.logistic-soluation .shape_02 {
  top: 55px;
  bottom: auto;
  left: auto;
  right: 0;
  max-width: 20%;
}
.logistic-soluation .main-title {
  color: var(--bs-white);
}
.logistic-soluation .main-title h2:after {
  background: var(--bs-white);
}
.logistic-box-area {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.logistic-box {
  width: 122px;
  height: 520px;
  margin-right: 20px;
  overflow: hidden;
  border-radius: 20px;
  padding: 10px;
  background: var(--bs-white);
  position: relative;
  transition: all linear 0.6s;
}
.logistic-box:last-child {
  margin-right: 0;
}
.logistic-box-inner {
  display: flex;
  justify-content: space-between;
  height: 100%;
}
.logistic-detail {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  padding: 10px;
  justify-content: space-between;
}
.active .logistic-detail {
  align-items: flex-end;
}
.logistic-thumb {
  height: 100%;
  width: 0;
}
.logistic-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}
.logistic-box .count {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  background: rgba(224, 0, 114, .1);
  font-size: 26px;
  color: #111;
  font-weight: 600;
  font-family: var(--family-title);
  justify-content: center;
  margin-bottom: 54px;
}
.logistic-box h5 {
  transition: all linear 0.3s;
  margin-bottom: 15px;
  width: 100%;
  opacity: 0;
  display: none;
  font-weight: 600;
}
.logistic-box .active-h5 {
  white-space: nowrap;
  opacity: 1;
  position: absolute;
  bottom: 370px;
  left: 35%;
  top: auto;
  font-size: 28px;
  line-height: 38px;
  margin: 0;
  z-index: 1;
  inline-size: 370px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  -khtml-transform: translateX(-50%) translateY(0) rotate(180deg);
  -moz-transform: translateX(-50%) translateY(0) rotate(180deg);
  -ms-transform: translateX(-50%) translateY(0) rotate(180deg);
  -o-transform: translateX(-50%) translateY(0) rotate(180deg);
  transform: translateX(-90%) translateY(-50%) rotate(-90deg);
  transform-origin: bottom right;
}
.active.logistic-box .active-h5 {
  display: none;
}
.logistic-box p {
  opacity: 0;
  transition: all linear 0.3s;
  text-align: left;
  display: none;
  visibility: hidden;
}
.logistic-box.active h5 {
  opacity: 1;
  transform: none;
  transition: all linear 21.3s;
}
.logistic-box.active p {
  opacity: 1;
  display: inline;
  visibility: visible;
  transition: all linear 21.3s;
}
.logistic-box.active {
  width: 864px;
  transition: all linear 0.6s;
}
.active .logistic-thumb {
  margin-right: 37px;
  width: 400px;
}
.active .logistic-detail {
  justify-content: flex-start;
}
.active.logistic-box h5 {
  display: block;
}
.active .active-h5 {
  display: none;
}
.bac-team {
  background: rgba(217, 217, 217, .2);
  position: relative;
  overflow: hidden;
}
.employe-box {
  text-align: center;
  background: var(--bs-white);
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
  padding: 50px;
  transition: all ease-in-out 0.3s 0s;
  position: relative;
  z-index: 1;
}
.employe-box:hover {
  background: var(--primary);
}
.employe-thumb {
  border-radius: 50%;
  overflow: hidden;
  width: 200px;
  height: 200px;
  margin: auto;
}
.employe-thumb img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all ease-in-out 0.3s 0s;
}
.employe-box:hover .employe-thumb img {
  scale: 1.1
}
.employe-detail {
  position: relative;
}
.team-social {
  display: none;
  gap: 10px;
  opacity: 0;
  transition: all ease-in-out 0.3s 0s;
  position: absolute;
  top: 32px;
  z-index: 1;
}
.employe-box:hover .team-social {
  opacity: 1;
  display: flex;
}
.team-social a {
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--bs-white);
  transition: all ease-in-out 0.3s 0s;
}
.team-social img {
  filter: brightness(0) invert(1);
}
.team-social a:hover {
  border: 1px solid #1D1D1D;
  background: #1D1D1D;
}
.employe-detail span {
  font-size: 15px;
  color: #666;
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--family-title);
  padding-top: 60px;
  display: block;
  transition: all ease-in-out 0.3s 0s;
}
.employe-box:hover .employe-detail span {
  opacity: 0;
}
.employe-detail h6 {
  font-weight: 600;
  margin-top: 5px;
  transition: all ease-in-out 0.3s 0s;
}
.employe-box:hover .employe-detail h6 {
  color: var(--bs-white);
}
.bac-team .rotating-badge {
  position: absolute;
  width: auto;
  height: auto;
  max-width: 25%;
  top: 10%;
  left: 4%;
}
.bac-team .shape_03 {
  top: auto;
  bottom: 0;
}
video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 700px;
  vertical-align: top;
}
/* Deals News */
ul.news-widget li a {
  justify-content: space-between;
}
ul.news-widget li a div {
  flex: 1;
  width: 100%;
}
.news-post {
  border: 1px solid rgba(201, 201, 201, .6);
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0, 0, 0, .1);
  margin-bottom: 30px;
  background: var(--bs-white);
}
.news-post-image-wrapper {
  border-radius: 6px;
  overflow: hidden;
}
.news-post-image-wrapper img {
  border-radius: 6px;
  transition: all 0.3s 0s;
  height: auto;
}
.news-post-image-wrapper:hover img {
  scale: 1.1;
}
.news-post-body {
  padding: 25px 10px 30px 10px;
  position: relative;
}
.news-category-tag {
  color: #555;
  font-size: 12px;
  text-transform: capitalize;
  font-weight: 600;
  font-family: var(--family-title);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.news-post-body h4 {
  text-transform: capitalize;
}
.category-post-date {
  position: absolute;
  right: 10px;
  top: -40px;
  background: var(--primary);
  color: var(--bs-white);
  height: 80px;
  width: 80px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--family-title);
  font-size: 12px;
  text-transform: uppercase;
}
.category-post-date span {
  display: block;
  font-size: 32px;
  line-height: 1;
}
.load-more {
  background: var(--primary);
  color: var(--bs-white);
  font-size: 18px;
  font-family: var(--family-title);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 50px;
  display: inline-block;
  transition: all ease-in-out 0.3s 0s;
  border: none;
}
.load-more:hover {
  color: var(--bs-white);
}
.load-more img {
  animation: rotate 8s linear infinite;
}
.comment {
  background: #f7f7f7;
  border: 1px solid #EAEAEA;
  border-radius: 10px;
  padding: 50px;
  margin-top: 85px;
}
.comment h4 {
  font-weight: 600;
  margin-bottom: 10px;
}
.form-control {
  min-height: 52px;
  border: 1px solid #EAEAEA;
  border-radius: 10px;
  color: rgba(0, 0, 0, .4);
}
.form-control::placeholder {
  color: rgba(0, 0, 0, .4);
}
.comment textarea.form-control {
  height: 180px;
  resize: none;
}
.comment input[type="submit"] {
  background: var(--primary);
  color: var(--bs-white);
  font-size: 18px;
  font-family: var(--family-title);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 50px;
  display: inline-block;
  border: none;
  transition: all ease-in-out 0.3s 0s;
}
.comment input[type="submit"]:hover, .load-more:hover {
  background: #CA0368;
}
.comment .form-check .form-check-input {
  float: left;
  margin-left: -.51em;
  margin-right: 15px;
  width: 24px;
  height: 24px;
  margin-top: 0;
}
.comment .form-check label {
  font-size: 14px;
  color: #333;
}
.comment .form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}
.comment .form-check-input:focus {
  border-color: rgba(224, 0, 114, .25);
  box-shadow: 0 0 0 .25rem rgba(224, 0, 114, .25);
}
.deals-event, .category-detail {
  background-image: url(../images/globe.svg), url(../assets/wave-shape-right.svg);
  background-repeat: no-repeat, no-repeat;
  background-position: 5% top, right 35%;
}
.detail-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.cat-pagination {
  background: var(--secondary);
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 80px;
  transition: all ease-in-out 0.3s 0s;
}
.cat-pagination:hover {
  background: var(--primary);
}
.cat-post-image-wrapper {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 12px rgba(0, 0, 0, .1);
  border: 1px solid #EAEAEA;
  position: relative;
}
.cat-post-image-wrapper img {
  width: 100%;
}
.category-detail .category-post-date {
  width: 120px;
  height: 120px;
  top: -60px;
  right: 50px;
  font-size: 16px;
}
.category-detail .category-post-date span {
  font-size: 48px;
}
.category-detail .news-category-tag {
  font-size: 15px;
}
.category-detail p {
  line-height: 26px;
}
.category-detail ul {
  margin: 20px 0;
  line-height: 26px;
  color: var(--body-color);
  font-size: 16px;
}
.category-detail ul li {
  padding: 5px 0;
}
.category-detail .quote-block {
  background: url(../assets/line-vector.svg) no-repeat 0 center;
  padding: 20px 50px 20px 100px;
}
.category-detail .welcome-text {
  background: none;
}
.quote-block h5 {
  color: var(--primary);
  line-height: 38px;
}
.category-detail .quote-icon.left {
  max-width: 45px;
  top: 0px;
  left: -70px;
}
.category-detail .quote-icon.right {
  position: absolute;
  bottom: -10px;
  right: -40px;
  max-width: 45px;
}
/* Rates */
.choose-your-service {
  background: url(../images/choose-your-service.jpg) no-repeat center center;
  background-size: cover;
  position: relative;
}
.choose-your-service::before {
  content: "";
  background: rgba(0, 0, 0, .4);
  width: 100%;
  height: 100%;
  position: absolute;
}
.choose-service-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  color: var(--bs-white);
  padding: 50px 0;
  position: relative;
  width: 100%;
}
.choose-service-content h2, .choose-service-content .short-description-title {
  color: var(--bs-white);
}
.choose-service-content h2:after {
  background: var(--bs-white);
}
.rates-wrapper {
  background: url(../images/globe.svg) no-repeat 5% 2.5%;
  padding-top: 20px;
}
.rates-wrapper .welcome-text h5 {
  font-weight: 600;
}
.rates-wrapper .quote-block {
  background: none;
  padding-top: 40px;
  padding-bottom: 50px;
}
.welcome-text {
  background-position: right 125%;
}
.choose-service-box {
  background: var(--bs-white);
  border-radius: 30px;
  padding: 90px 30px 30px 30px;
  height: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  text-align: center;
  color: var(--secondary);
  position: relative;
}
.choose-service-icon {
  width: 127px;
  height: 127px;
  background: var(--primary);
  border-radius: 50%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  border: 7px solid #fff;
  position: absolute;
  top: -63px;
  left: 0;
  right: 0;
}
.choose-service-text {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 700;
  font-family: var(--family-title);
}
.choose-service-text::after {
  display: block;
  content: "";
  height: 2px;
  width: 52px;
  background: var(--primary);
  margin: 10px auto;
}
.choose-service-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.choose-service-box li {
  background: url(../assets/shield-list.svg) no-repeat 0 5px;
  padding-left: 25px;
  text-align: left;
  font-size: 15px;
  margin-bottom: 10px;
}
.choose-service-detail h6 {
  font-size: 18px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 20px;
}
.choose-service-detail {
  position: relative;
  padding-bottom: 63px;
  height: 100%;
}
.choose-service-more-btn {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.choose-service-row {
  margin-bottom: -280px;
  margin-top: 100px;
  position: relative;
  z-index: 1;
}
.choose-service-content .short-description-title {
  font-size: 18px;
  max-width: 800px;
}
.choose-service-row small {
  color: #999;
  width: 100%;
  text-align: center;
  display: block;
  margin-top: 28px;
}
.mail-pricing {
  padding: 360px 0 80px 0;
  position: relative;
  background: url(../images/texture-bg.png) repeat 0 0;
  border-bottom: 1px solid #eaeaea;
}
.mail-pricing .main-title {
  margin-bottom: 120px;
}
.price-cards-info {
  background: var(--bs-white);
  border-radius: 10px 10px 0 0;
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.25);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.prices-head {
  width: calc(100% - 50px);
  border-radius: 10px;
  margin: -40px auto auto auto;
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 4px 4px 13px rgba(0, 0, 0, 0.25);
  background: linear-gradient(to bottom, rgba(189, 21, 106, 1) 0%, rgba(224, 0, 114, 1) 100%);
}
.price-tag {
  border: 1px solid var(--bs-white);
  color: var(--bs-white);
  border-radius: 30px;
  padding: 5px 16px;
  min-width: 120px;
  margin-top: -43px;
  background: linear-gradient(to bottom, rgba(189, 21, 106, 1) 0%, rgba(224, 0, 114, 1) 100%);
  margin-bottom: 16px;
}
.price-cards-info .btn {
  background-color: var(--primary);
}
.price-cards-info .btn-small-outline {
  border: 1px solid var(--bs-white);
  color: var(--bs-white);
}
.price-cards-info .btn .btn-round-shape {
  background-color: var(--bs-white);
}
.price-cards-info .icon-arrow-right img {
  filter: inherit;
}
.price-cards-info .btn::before {
  background-color: var(--primary);
}
.price-cards-info .btn:hover {
  border-color: var(--bs-white);
}
.popular-plan .prices-head, .popular-plan .price-tag {
  background: linear-gradient(to bottom, rgba(6, 176, 215, 1) 0%, rgba(109, 213, 237, 1) 100%);
}
.popular-plan .get-started {
  background: #58CEE9;
}
.popular-plan .btn {
  background-color: #34C1E1;
}
.popular-plan .btn::before {
  background-color: #34C1E1;
}
.invitation-plan .prices-head, .invitation-plan .price-tag {
  background: linear-gradient(to bottom, rgba(212, 126, 3, 1) 0%, rgba(255, 178, 70, 1) 100%);
}
.invitation-plan .get-started {
  background: #F09F2E;
}
.invitation-plan .btn {
  background-color: #EA9824;
}
.invitation-plan .btn::before {
  background-color: #EA9824;
}
.business-plan .prices-head, .business-plan .price-tag {
  background: linear-gradient(to bottom, rgba(5, 190, 147, 1) 0%, rgba(20, 246, 194, 1) 100%);
}
.business-plan .get-started {
  background: #0AD2A3;
}
.business-plan .btn {
  background-color: #0BD5A6;
}
.business-plan .btn::before {
  background-color: #0BD5A6;
}
.prices-head p {
  font-size: 16px;
  text-transform: uppercase;
  color: var(--bs-white);
  font-weight: 700;
  letter-spacing: 1px;
}
.prices-head h3 {
  font-size: 40px;
  color: var(--bs-white);
}
.prices-head span {
  color: var(--bs-white);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  font-family: var(--family-title);
}
.price-features {
  padding: 25px;
  height: calc(100% - 245px);
}
.price-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.price-features ul li {
  background: url(../assets/basil_check-outline.svg) no-repeat 0 0px;
  padding-left: 32px;
  margin: 10px 0;
  color: #555;
  font-size: 15px;
}
.get-started {
  background: var(--primary);
  padding: 38px 25px;
  text-align: center;
  box-shadow: inset 0px 10px 11px rgba(0, 0, 0, .15);
}
/* Ocean Mailbox Start */
.ocean-wrapper {
  position: relative;
  background: url(../assets/wave-shape-right.svg) no-repeat right 540px;
}
.ocean-wrapper .choose-us {
  background-position: 50px 50px;
}
.ocean-wrapper .choose-us .main-title {
  text-align: left;
  max-width: 1000px;
}
.ocean-wrapper .choose-us .main-title h2::after {
  display: none;
}
.ocean-choose-text {
  max-width: 550px;
  padding-left: 50px;
}
.ocean-choose-text h5 {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 30px;
}
.ocean-choose-text h4 {
  line-height: 48px;
  margin-bottom: 20px;
}
.ocean-choose-text p {
  font-size: 18px;
  font-family: var(--family-title);
  color: #2C2C2C;
  line-height: 30px;
}
.ocean-choose-text p a {
  color: var(--primary);
}
.ocean-shipping-wrapper {
  background: linear-gradient(to bottom, rgba(225, 0, 113, 1) 70%, rgba(0, 0, 0, 1) 70%);
  border-radius: 20px;
  padding: 48px;
  margin-top: 110px;
}
.ocean-title {
  text-align: center;
  font-size: 52px;
  color: var(--bs-white);
  line-height: 60px;
  font-weight: 700;
}
.ocean-brand-social {
  background: var(--bs-white);
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px;
  margin: 30px 0;
}
.ocean-social {
  display: flex;
  gap: 20px;
}
.ocean-social a {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all ease-in-out 0.3s 0s;
}
.ocean-social a:hover {
  background: var(--primary);
}
.ocean-shipping-wrapper p {
  text-align: center;
  color: var(--bs-white);
  font-size: 21px;
}
.ocean-feature-box {
  background: var(--bs-white);
  border-radius: 8px;
  padding: 60px 25px 25px 25px;
  height: 100%;
  position: relative;
  text-align: center;
}
.ocean-feature-label {
  position: absolute;
  background: var(--secondary);
  top: -25px;
  margin: auto;
  border-radius: 30px;
  color: var(--bs-white);
  text-align: center;
  min-width: 232px;
  padding: 9px;
  font-size: 21px;
  font-family: var(--family-title);
  left: 50%;
  display: inline-table;
  font-weight: 600;
  transform: translateX(-50%);
}
.ocean-feature-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ocean-feature-box ul li {
  padding: 5px 15px;
  border-bottom: 1px solid #eaeaea;
  width: 100%;
  min-height: 63px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #333;
  gap: 5px;
}
.ocean-feature-box ul li:last-child {
  border-bottom: none;
}
.ocean-wrapper .choose-us .shape_02 {
  left: 0;
  right: auto;
  bottom: 0;
  top: auto;
}
.choose-horizontal-service .choose-service-box {
  background: rgba(255, 255, 255, .3);
  padding: 15px;
}
.choose-service-box-inner {
  background: var(--bs-white);
  height: 100%;
  border-radius: 15px;
  display: flex;
  padding: 32px;
}
.choose-service-box-inner .choose-service-icon {
  position: static;
  margin: 0;
}
.choose-service-box-inner .choose-service-detail {
  height: auto;
  width: 100%;
  flex: 1;
  padding: 0 0 0 60px;
  text-align: left;
}
.choose-service-box-inner .choose-service-more-btn {
  position: static;
  margin-top: 20px;
}
.choose-service-box-inner .choose-service-text {
  color: var(--primary);
}
.choose-service-box-inner .choose-service-text::after {
  margin: 5px 0 16px 0;
}
.choose-service-detail h6 {
  color: var(--secondary);
  margin-bottom: 15px;
}
.choose-your-hr-ser {
  background-image: url(../images/choose-your-service01.jpg);
}
.ship-bulky-section {
  text-align: center;
  padding: 60px 0 50px 0;
  position: relative;
}
.outline-title {
  font-size: 52px;
  font-weight: 700;
  text-transform: capitalize;
}
.bulky-title {
  color: #4C89CA;
  font-size: 90px;
  line-height: 1;
  font-weight: 700;
}
.ship-bulky-section h2 {
  color: #999;
  font-weight: 400;
  font-family: var(--family);
  margin-bottom: 50px;
}
.ship-banner {
  border-radius: 30px;
}
.bulky-item-step {
  border: 1px solid #eaeaea;
  border-radius: 20px;
  padding: 28px;
  height: 100%;
  text-align: left;
}
.step-icon {
  display: flex;
  width: 120px;
  height: 120px;
  background: #fff;
  border-radius: 80px;
  border: 8px solid var(--primary);
  align-items: center;
  justify-content: center;
  margin-bottom: 35px;
}
.bulky-item-step h4 {
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.bulky-item-step p {
  padding: 0;
  max-width: 330px;
  font-size: 21px;
  line-height: 36px;
  color: #333;
}
.ship-bulky-section figure {
  margin-bottom: 66px;
}
.ship-bulky-process {
  background: var(--primary) url(../images/ocean-bulky-bg.png) no-repeat center center;
  background-size: cover;
  padding: 80px 0;
  text-align: center;
}
.ship-bulky-process ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.ship-bulky-process ul li {
  width: 33.33%;
  padding: 19px;
}
/* .bulky-process-box {

  border: 2px dashed #A4CFF2;

  border-radius: 100%;

  padding: 6px;

} */
.bulky-process-box-inner {
  /* border-radius: 100%;

  background: #A4CFF2;

  border: 7px solid var(--bs-white);

  height: 385px;

  padding: 20px; */
  position: relative;
  width: 100%;
}
.ship-bulky-process h2 {
  line-height: 1;
  font-size: 52px;
  color: var(--bs-white);
  font-weight: 700;
  margin-bottom: 50px;
}
.bulky-process-icon {
  margin-bottom: 30px;
}
.bulky-process-content h5 {
  color: var(--bs-white);
  font-weight: 500;
  margin-bottom: 15px;
  font-family: var(--family);
}
.bulky-process-content p {
  color: var(--bs-white);
  font-weight: 500;
  max-width: 225px;
  margin: auto;
}
.bulky-process-content p span {
  color: var(--secondary);
}
.currency {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 15px 0;
}
.currency span {
  color: var(--primary);
  font-size: 42px;
  font-weight: 900;
}
.cost-comparision {
  padding: 60px 0;
}
.cost-comparision h2 {
  color: #1FBBE8;
  font-weight: 800;
  position: relative;
  display: inline-block;
  margin-bottom: 25px;
  font-size: 36px;
}
.cost-comparision h2::before {
  content: "";
  width: 100%;
  height: 20px;
  background: #D9D9D9;
  position: absolute;
  bottom: -4px;
  z-index: -1;
}
.vs {
  color: #333333;
  font-weight: 900;
  font-size: 52px;
  line-height: 72px;
  position: relative;
}
.vs::before {
  width: 94px;
  height: 94px;
  border-radius: 100%;
  content: "";
  position: absolute;
  background: #ddd;
  z-index: -1;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.disclaimer {
  display: flex;
  background: rgba(224, 0, 114, .1);
  padding: 50px;
  border-radius: 10px;
  color: var(--bs-black);
  margin-top: 40px;
  box-shadow: 20px 20px 40px rgba(224, 0, 114, .2);
}
.disclaimer-text {
  width: 100%;
  flex: 1;
  padding: 15px;
}
.disclaimer-text ul {
  padding: 0 0 0 15px;
  margin: 0;
}
.disclaimer-text ul li {
  margin: 5px 0;
}
.disclaimer-logo {
  display: flex;
  background: var(--bs-white);
  border-radius: 0 10px 10px 0;
  width: 270px;
  position: relative;
  margin-left: 80px;
  min-height: 200px;
}
.arrow {
  width: 60px;
  background-color: var(--bs-white);
  clip-path: polygon(100% 100%, 0% 50%, 100% 0%);
  position: absolute;
  top: 0;
  left: -60px;
  height: 100%;
}
.disclaimer-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-right: 15px;
}
.disclaimer-content p {
  font-size: 21px;
  padding: 10px 0 0 0;
  color: var(--primary);
  text-align: center;
  width: 100%;
}
/* Testimonials */
.testimonial-list {
  background: #f7f7f7 url(../assets/wave-shape-right.svg) no-repeat right center;
  padding: 100px 0 80px 0;
}
.testimonials-box {
  padding: 35px 45px;
  background: var(--bs-white);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
  position: relative;
  margin-bottom: 30px;
}
.testimonials-box::before {
  content: "";
  width: 92px;
  height: 64px;
  background: var(--primary);
  position: absolute;
  right: 0;
  top: 0;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0%);
}
.testimonials-box h6 {
  color: var(--primary);
  margin-bottom: 15px;
  font-weight: 600;
}
.client-detail {
  display: flex;
  margin-top: 20px;
}
.client-thumb {
  width: 100px;
}
.client-thumb img {
  width: 100%;
}
.client-text {
  width: 100%;
  flex: 1;
}
.text-top-cli {
  padding: 0 0 12px 20px;
  position: relative;
}
.text-top-cli:after {
  height: 1px;
  left: 0;
  right: -45px;
  background: var(--primary);
  position: absolute;
  content: "";
  bottom: 0;
}
.client-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
}
.client-text span {
  color: #523041;
  display: block;
}
.client-quote {
  position: absolute;
  right: 0px;
  bottom: -25px;
  width: 50px;
  height: 50px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 60px;
  z-index: 1;
}
.client-rate {
  padding: 8px 0 0 15px;
}
.testimonials-wrapper {
  position: relative;
}
.road {
  position: absolute;
  width: 100%;
  overflow: hidden;
  top: 0;
  height: 360px;
}
.cyclist {
  position: absolute;
  bottom: 30px;
  left: -300px;
  width: 285px;
  animation: ride 9s linear infinite;
}
@keyframes ride {
  0% {
    left: -300px;
    transform: scaleX(1) rotate(0deg);
  }
  100% {
    left: 110%;
    transform: scaleX(1) rotate(0deg);
  }
}
.content-team-text {
  max-width: 570px;
  padding-left: 40px;
}
.content-team-text p {
  font-weight: 300;
  color: #333;
  line-height: 30px;
}
.content-team-text p b {
  font-weight: 600;
}
.team-list {
  padding: 160px 0 0 0;
}
.team-list .top-tag {
  min-width: 100px;
  padding: 5px 20px;
}
.team-wrapper .bac-team {
  background: var(--bs-white);
}
.team-wrapper .bac-team .rotating-badge {
  top: 0;
}
.team-flex {
  margin-top: 70px;
  display: flex;
  align-items: flex-end;
  gap: 30px;
  overflow: hidden;
}
.team-member {
  max-width: 190px;
  border-radius: 20px;
}
.team-member img {
  border-radius: 20px;
  filter: grayscale(1);
  transition: all ease-in-out 0.3s 0s;
}
.team-flex:hover .team-member img {
  filter: inherit;
}
.team-member-detail {
  width: 100%;
  flex: 1;
}
.team-member-detail h5 {
  font-weight: 600;
  color: var(--secondary);
  transition: all ease-in-out 0.3s 0s;
}
.team-flex:hover .team-member-detail h5 {
  color: var(--primary);
}
.team-member-detail span {
  font-size: 18px;
  color: #999;
  margin-top: 8px;
  display: block;
  font-family: var(--family-title);
}
.team-member-detail .team-social {
  display: flex;
  opacity: 1;
  position: static;
  gap: 16px;
  transition: all ease-in-out 0.3s 0s;
  position: relative;
  top: auto;
  margin-bottom: -18px;
  justify-content: flex-start;
}
.team-flex:hover .team-member-detail .team-social {
  opacity: 1;
  margin-top: 20px;
  margin-bottom: 0px;
}
.team-member-detail .team-social a {
  width: 18px;
  height: 18px;
  border-radius: 0;
  border: none;
  background: none;
  padding: 0;
}
.team-member-detail .team-social a:hover {
  background: none;
}
.team-member-detail .team-social a img {
  filter: brightness(0);
  transition: all ease-in-out 0.3s 0s;
}
.team-member-detail .team-social a:hover img {
  filter: none;
}
/* Career */
.content-team-text ul {
  padding: 0;
  list-style: none;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin: 0;
}
.content-team-text ul li {
  background: url(../assets/charm_tick.svg) no-repeat 0 4px;
  padding: 0 0 0 30px;
  width: calc(50% - 10px);
  font-size: 18px;
  color: #333;
  margin: 5px 0;
}
.job-position-section {
  background: #EFEFEF;
  padding: 100px 0;
}
.job-position-section h4 {
  font-weight: 500;
  font-family: var(--family);
  font-size: 24px;
}
.table-container {
  overflow-x: auto;
}
.responsive-table {
  width: 100%;
  border-collapse: collapse;
}
.responsive-table th, .responsive-table td {
  padding: 35px 15px;
  border-bottom: 1px solid #ccc;
  font-size: 18px;
}
.responsive-table th {
  font-size: 30px;
  font-weight: 600;
}
.responsive-table th:first-child, .responsive-table td:first-child {
  padding-left: 0;
}
.responsive-table th:last-child, .responsive-table td:last-child {
  padding-right: 0;
}
.responsive-table th:last-child, .responsive-table td:last-child {
  width: 170px;
}
.freight-type {
  padding: 100px 0;
  overflow: hidden;
}
.freight-text-wrapper {
  max-width: 665px;
  margin-right: 0;
  margin-left: auto;
  padding-right: 70px;
  padding-left: 20px;
}
.freight-text-wrapper ul {
  list-style: none;
  padding: 0;
}
.freight-text-wrapper h5 {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  font-weight: 600;
  padding-bottom: 20px;
}
.freight-flex {
  display: flex;
  align-items: center;
  padding: 30px 0 45px 0;
}
.number-freight {
  font-size: 72px;
  font-weight: 600;
  font-family: var(--family-title);
  line-height: 72px;
}
.arrow-freight {
  margin: 0 40px;
}
.text-freight {
  font-size: 18px;
  flex: 1;
}
/* Career-detail */
.contact-form.job-form {
  background: var(--primary) url(../images/fid-bg-pattern.svg) no-repeat right bottom;
  border-radius: 30px;
  padding: 40px;
  max-width: 580px;
  margin-right: 0;
  margin-left: auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}
.contact h3{ width: 100%;}
.job-form h4 {
  color: var(--bs-white);
}
.job-form .btn {
  border: 1px solid var(--bs-white);
}
.job-form input[type="text"], .job-form input[type="email"], .job-form select, .job-form textarea {
  box-shadow: inherit;
  outline: 0;
}
.job-description label {
  font-weight: 600;
  font-size: 18px;
  margin-top: 25px;
  display: block;
}
.job-description p, .job-description li {
  font-weight: 300;
  font-size: 18px;
  color: var(--secondary);
  line-height: 32px;
}
.job-description h5 {
  border-bottom: 1px solid #ddd;
  margin-bottom: 30px;
}
.job-contact-act {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 20px;
  font-size: 18px;
}
.jov-text {
  font-size: 18px;
  font-weight: 300;
  line-height: 32px;
}
.job-description ul {
  margin: 25px 0 0 0;
}
.job-form .btn .button-text {
  color: var(--primary);
}
.job-form .btn:hover .button-text {
  color: var(--bs-white);
}
/* Blog */
.freight-type-service-label {
  position: absolute;
  top: 20px;
  left: 20px;
  color: var(--bs-white);
  font-weight: 300;
  background: rgba(224, 0, 114, .7);
  padding: 8px 17px;
  border-radius: 40px;
}
.blog-post-list {
  padding-bottom: 50px;
  margin-bottom: 50px;
  border-bottom: 1px solid #ccc;
}
.pagination-wrapper .pagination {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;	
}
.pagination-wrapper .pagination li {
  padding: 0;
}
.pagination-wrapper .page-link {
  color: #555;
  font-size: 18px;
  font-weight: 500;
  padding: 0;
  border: none;
  display: flex;
  justify-content: center;
  width: 50px;
  height: 50px;
  align-items: center;
  margin: 0 !important;
  border-radius: 8px;
  font-family: var(--family-title);
}
.pagination-wrapper .page-link.selected, .pagination-wrapper .page-link.current {
  border: 1px solid var(--primary);
  color: var(--secondary);
  background: none;
}
.latest-list {
  display: flex;
  gap: 24px;
  margin: 12px 0 0 0;
}
.latest-post-thumb {
  width: 85px;
  height: 85px;
}
.latest-post-thumb img {
  height: 100%;
  width: 100%;
  border-radius: 5px;
}
.latest-post-detail {
  width: 100%;
  flex: 1;
}
.latest-post-detail date {
  color: #BDBDBD;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--family-title);
  margin-bottom: 10px;
  display: block;
}
.latest-post-detail h6 {
  font-size: 18px;
  font-weight: 600;
}
.latest-post-detail h6 a:hover {
  color: var(--primary);
  text-decoration: underline;
}
.tag-widget {
  gap: 15px;
  display: flex;
  flex-wrap: wrap;
}
.tag-widget a {
  background: #F2F2F2;
  border-radius: 8px;
  color: #333;
  font-weight: 500;
  padding: 4px 18px;
  transition: all ease-in-out 0.3s 0s;
}
.tag-widget a:hover {
  background: var(--secondary);
  color: var(--bs-white);
}
.blog-post-list .btn-small-outline {
  margin-top: 20px;
}
/* blog detail */
.tag-blog-detail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #F7F7F7;
  border: 1px solid #eaeaea;
  border-radius: 10px;
  padding: 32px;
  margin: 90px 0 0 0;
}
.tag-blog-detail > div {
  display: flex;
  gap: 15px;
  align-items: center;
}
.tag-blog-detail label {
  font-size: 21px;
  font-weight: 600;
  font-family: var(--family-title);
}
.tag-blog-detail ul {
  display: flex;
  list-style: none;
  gap: 30px;
  color: var(--secondary);
  padding: 0;
  margin: 0;
  font-size: 18px;
  line-height: normal;
}
.tag-blog-detail .team-social {
  display: flex;
  position: static;
  opacity: 1;
  gap: 10px;
}
.tag-blog-detail .team-social a {
  border: none;
  width: 30px;
  height: 30px;
  background: none;
}
.tag-blog-detail .team-social a img {
  filter: brightness(0) invert(0);
  width: 22px;
}
.tag-blog-detail .team-social a:hover {
  background: none;
}
.tag-blog-detail .team-social a:hover img {
  filter: brightness(1) invert(0);
}
.comment-reply {
  margin-top: 80px;
}
.comment-reply h5 {
  margin-bottom: 50px;
}
.service-post-list {
  background: #FFE5F2 url(../assets/wave-shape-right.svg) no-repeat right bottom;
  background-size: 30%;
  border-radius: 15px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.service-post-image {
  width: 50%;
  position: relative;
  border-radius: 15px 0 0 15px;
  overflow: hidden;
}
.service-post-image a img {
  width: 100%;
  height: 100%;
}
.freight-service-label {
  position: absolute;
  right: 50px;
  top: 50px;
  background: #FFCE09;
  border-radius: 10px;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-post-body {
  width: 50%;
  padding: 50px;
}
.service-post-body p {
  color: #333;
  font-size: 18px;
  line-height: 30px;
}
.service-title {
  font-family: "Poppins", sans-serif;
  font-size: 90px;
  font-weight: 700;
  -webkit-text-stroke: 1px var(--secondary);
  color: transparent;
  line-height: 110px;
}
.best-logistic {
  background: #024E53 url(../images/best-logistic-bg.png) no-repeat center center;
  background-size: cover;
  height: 500px;
  display: flex;
  align-items: center;
  margin-top: 100px;
}
.best-logistic-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.best-logistic-title {
  font-size: 72px;
  color: var(--bs-white);
  line-height: 80px;
  text-align: center;
  font-weight: 700;
  max-width: 950px;
}
.easy-steps {
  background: #F8F9FA;
  padding: 70px 0;
}
.timeline-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  text-align: center;
}
.step {
  width: 25%;
  position: relative;
}
.easy-dot {
  width: 26px;
  height: 26px;
  background-color: #e6007e;
  border-radius: 50%;
  border: 3px solid var(--bs-white);
  margin: auto;
  position: relative;
}
.step-count {
  font-size: 18px;
  margin-top: 20px;
  color: #555;
  font-weight: 500;
  font-family: var(--family-title);
  position: relative;
}
.step-count:after {
  content: "";
  position: absolute;
  bottom: -13px;
  left: 0;
  height: 1px;
  width: 100%;
  background: var(--secondary);
}
.easy-number {
  font-size: 80px;
  color: #F3D9E6;
  margin: 10px 0;
  font-weight: 500;
}
.step h6 {
  margin: 10px auto 5px auto;
  font-weight: 600;
  max-width: 250px;
}
.easy-desc {
  color: #333333;
  margin: 0px auto;
  max-width: 250px;
}
.main-service-wrapper {
  position: relative;
  padding: 80px 0 40px 0;
}
.brochure-download {
  background: var(--primary) url(../images/brochure-bg.png) no-repeat center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px 54px;
  border-radius: 5px;
  color: var(--bs-white);
}
.brochure-download h6 {
  font-size: 18px;
  font-weight: 500;
}
.brochure-download a {
  background: var(--bs-white);
  border-radius: 5px;
  color: var(--secondary);
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--family-title);
  text-transform: uppercase;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 185px;
  transition: all ease-in-out 0.3s 0s;
}
.brochure-download a:hover {
  background: var(--secondary);
  color: var(--bs-white);
}
.category-detail .accordion-body li {
  padding: 0 0 0 25px;
}
.logistic-service-flex {
  display: flex;
  flex-wrap: wrap;
}
.logistic-service-box {
  display: flex;
  flex-direction: column;
  width: 33.33%;
  border-right: 1px solid #000;
  padding: 0 30px;
  margin: 20px 0;
}
.logistic-service-box:first-child {
  padding-left: 0;
}
.logistic-service-box:last-child {
  border: none;
  padding-right: 0;
}
.logistic-service-box h6 {
  font-weight: 600;
  margin-bottom: 25px;
}
.logistic-service-box p {
  font-size: 18px;
  line-height: 30px;
  padding: 0;
}
.related-services {
  padding: 75px 0;
  border-bottom: 10px solid #E3E0E0;
  background: #F8F9FA;
}
.related-services h2 {
  text-align: center;
}
.related-ser-box {
  background: var(--bs-white);
  padding: 40px;
  margin-top: 30px;
  border: 1px solid #EAEAEA;
  border-radius: 20px;
  transition: all ease-in-out 0.3s 0s;
}
.related-ser-box:hover {
  transform: translateY(-5px);
}
.related-service-icon {
  margin-bottom: 20px;
}
.related-service-icon img {
  filter: brightness(0);
  transition: all ease-in-out 0.3s 0s;
}
.related-ser-box:hover .related-service-icon img {
  filter: inherit;
}
.related-ser-box h6 {
  margin-bottom: 20px;
}
.related-ser-box p {
  font-size: 18px;
  line-height: 36px;
  padding-bottom: 20px;
}
/* New Pages */
.shopping-flex-brand {
  display: flex;
  flex-wrap: wrap;
}
.shopping-brand-title {
  width: 30%;
  padding: 30px 30px 30px 0;
  border-right: 1px solid #ccc;
}
.shopping-brand-title h4 {
  margin-bottom: 20px;
}
.shopping-brand-title h6 {
  font-weight: 300;
  color: #666;
}
.shopping-flex-brand ul {
  display: flex;
  flex-wrap: wrap;
  width: 70%;
  margin: 0;
  list-style: none;
}
.shopping-flex-brand ul li {
  width: 25%;
  margin: 15px 0;
}
.shopping-flex-brand ul li img {
  max-height: 100px;
}
.make-payment .quote-block {
  background-size: contain;
}
.payment-btn a {
  background: #E00072;
  background: linear-gradient(0deg, rgba(224, 0, 114, 1) 0%, rgba(215, 66, 142, 1) 100%);
  color: var(--bs-white);
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 250px;
  border-radius: 50px;
  font-size: 21px;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
  transition: all ease-in-out 0.3s 0s;
}
.payment-btn a:hover {
  background: #E00072;
  background: linear-gradient(180deg, rgba(224, 0, 114, 1) 0%, rgba(215, 66, 142, 1) 100%);
}
.payment-opt {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
  background: #f7f7f7;
  padding: 20px;
  border-radius: 15px;
  border: 1px solid #f1f1f1;
  flex-wrap: wrap;
}
.payment-btn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
}
.payment-opt p {
  color: var(--secondary);
}
.payment-opt p b {
  color: var(--primary);
}
/* Dangerous Goods */
.dangerous-goods .col-sm-8 h6 {
  color: var(--primary);
  font-weight: 600;
  line-height: 30px;
  font-size: 18px;
  margin-bottom: 25px;
}
.dangerous-goods .table, .dangerous-goods .table tr, .dangerous-goods .table th, .dangerous-goods .table td {
  border: 1px solid #ccc;
}
.dangerous-goods .table th {
  background: #f1f1f1;
}
.dangerous-goods .ocean-title {
  font-size: 52px;
  line-height: 60px;
}
.ocean-feature-label-sub {
  font-weight: 600;
  color: var(--primary);
  margin-top: -20px;
  display: block;
}
.dangerous-goods {
  position: relative;
}

.apply-modal {
	display: none;
	position: fixed;
	z-index: 9999;
	left: 0; top: 0;
	width: 100%; height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
}
.apply-modal-content {
	background: #fff;
	padding: 30px;
	max-width: 500px;
	margin: 10% auto;
	position: relative;
	border-radius: 8px;
}
.close-modal {
  position: absolute;
  top: -13px;
  right: -13px;
  cursor: pointer;
  background: var(--primary);
  width: 35px;
  height: 35px;
  border-radius: 50px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.apply-modal .form-control {
  min-height: inherit;
  border-radius: 5px;
}
.apply-modal .btn {
  border: 1px solid var(--primary);
  height: 45px;
  padding: 10px 7px 10px 20px;
  font-size: 14px;
}
.apply-modal .btn .btn-round-shape {
  height: 34px;
  width: 34px;
}
.entry-content li {
  color: var(--body-color);
  font-size: var(--body-text);
  line-height: 24px;
}
#table-2 th {
  color: #fff;
  border-width: 1px;
  border-style: solid;
  border-color: #e0e0e0;
  background-color: #e10071;
  padding: 16px 24px;
}
#table-2 td {
  border-width: 1px;
  border-style: solid;
  border-color: #e0e0e0;
  background-color: #fff;
  padding: 16px 24px;
}
.wpb_wrapper ol {
  padding-left: 1.4rem;
}
.entry-content p a, .entry-content li a {
  color: var(--primary);
}

#jobApplicationForm .form-group {
    position: relative;
    margin-bottom: 15px;
}

#jobApplicationForm .error {
    border: 2px solid #e74c3c;
    background-color: #ffe6e6;
}

#jobApplicationForm .error-msg {
    color: #fff;
    font-size: 12px;
    display: block;
}

#jobApplicationForm .form-success {
    margin-top: 15px;
}

/*Calendar css*/
.widget_calendar table {
  width: 100%;
  caption-side: unset;
  border: none;
}

.wp-calendar-nav-prev a {
  width: 23px;
  height: 23px;
  font-size: 0;
  display: block;
  background: url(../assets/cal-left.svg) no-repeat 0 0;
}
.wp-calendar-nav-next a {
  width: 23px;
  height: 23px;
  font-size: 0;
  display: block;
  background: url(../assets/cal-right.svg) no-repeat 0 0;
}
.wp-calendar-nav {
  display: flex;
  gap: 9px;
  align-items: center;
  justify-content: center;
  margin-bottom: 35px;
}
.wp-calendar-nav div {
  font-size: 32px;
  text-transform: uppercase;
  font-weight: 900;
  color: var(--primary);
}
.widget_calendar th {
  font-weight: 700;
  text-align: center;
  padding: 4px;
  border: none;
  font-size: 13px;
  color: var(--primary);
  width: 35px;
  height: 35px;
}
.widget_calendar td {
  text-align: center;
  text-decoration: none;
  padding: 2px;
  border: none;
  font-size: 14px;
  font-weight: 600;
  width: 35px;
  height: 35px;
}
.has-children a {
  color: var(--bs-white);
  opacity: 1;
  background: var(--primary);
  border-radius: 50px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}


/*Blog comment*/
.comment-box {
  display: flex;
  align-items: flex-start;
  gap: 26px;
  margin-bottom: 40px;
}

.comment-author img {
  width: 89px;
  height: 89px;
  border-radius: 15px;
  object-fit: cover;
}

.comment-content {
  flex: 1;
}

.comment-meta {
  margin: 0 0 8px;
  font-size: 14px;
  padding: 0;
}

.comment-meta .by {
  color: #e0007a;
  font-weight: 500;
}

.comment-meta .by strong {
  color: #000;
  font-weight: 600;
	text-transform: capitalize;
}

.comment-meta .time {
  color: #e0007a;
  text-transform: uppercase;
  font-weight: 600;
}

.comment-text {
  background: #F5F5F5;
  border-radius: 10px;
  padding: 25px 25px;
  font-size: 16px;
  line-height: 1.6;
  position: relative;
  color: var(--bs-black);
  font-weight: 300;
}

.comment-text::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 20px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-right: 10px solid #f7f7f7;
  border-bottom: 10px solid transparent;
}
.comment-reply-panel {
  margin-left: 115px;
}
.reply {
  display: inline-block;
  margin-top: 10px;
  color: var(--primary);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s;
  background: url("../images/reply-arrow.svg") no-repeat right 5px;
  padding-right: 5px;
  padding-right: 20px;	
  filter: brightness(0);
}

.reply:hover {
  filter: brightness(1);
  color: var(--primary);
}


/*Comment*/
ul.comment-list {
  padding: 0;
  list-style: none;
  margin: 0;
}
ul.comment-list li.comment {
  margin: 40px 0 0 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
}
.category-detail p {
  line-height: 26px;
  color: var(--bs-black);
}