@charset "UTF-8";
html,
body {
  overflow-x: hidden;
}

html.safari {
  height: auto;
}

body {
  position: relative;
  font-family: "aeonik";
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  line-height: 1.1;
  font-weight: 400;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #EAEEF1;
}

img {
  max-width: 100%;
  height: auto;
}

a,
a:hover,
a:focus {
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
}

.container {
  max-width: 1550px;
  margin: 0 auto;
}

.max-content {
  max-width: max-content;
}

.text-justify {
  text-align: justify;
}

.text-underline {
  text-decoration: underline;
}

.underline-offset-5 {
  text-underline-offset: 5px;
}

div#content mark {
  padding: 0;
}

a,
.transition,
#languages li a.wpml-ls-link .wpml-ls-native {
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
}

.grecaptcha-badge {
  z-index: 999;
}

.cn-button.bootstrap {
  border-radius: 0;
  padding: 10px 20px;
}

.img-reveal {
  visibility: hidden;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.z-index--1 {
  z-index: -1;
}

.z-index-1 {
  z-index: 1;
}

.z-index-2 {
  z-index: 2;
}

.z-index-10 {
  z-index: 10;
}

.t-border {
  border-top: 1px solid;
}

.b-border {
  border-bottom: 1px solid;
}

.border-radius-15 {
  border-radius: 15px;
}

.border-radius-25 {
  border-radius: 25px;
}

.rt-r-15 {
  border-top-right-radius: 15px;
}

.rt-l-15 {
  border-top-left-radius: 15px;
}

.rb-r-15 {
  border-bottom-right-radius: 15px;
}

.rb-l-15 {
  border-bottom-left-radius: 15px;
}

.fit-img img,
.fit-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

a.link {
  position: relative;
  padding-bottom: 2.5px;
}
a.link span.link-underline {
  width: 0%;
  height: 2px;
}
a.link:hover span.link-underline {
  width: 100%;
}

.layout-link-wrapper a.link {
  padding-bottom: 3.5px;
}
.layout-link-wrapper a.link span.link-underline {
  height: 4px;
}

.border,
.border-top,
.border-bottom,
.border-left,
.border-right {
  border-color: #D9D9D9;
}

#languages span:last-child {
  opacity: 0.65;
}

span.language-div {
  height: 100%;
  width: 2px;
  background-color: #fff;
}

.clearfix {
  clear: both;
}

.mix-blend-overlay {
  mix-blend-mode: overlay;
}

.ruler-latest-posts .ruler-latest-post-item span.ruler-latest-post-num {
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
}
.ruler-latest-posts .ruler-latest-post-item:hover, .ruler-latest-posts .ruler-latest-post-item:focus {
  cursor: pointer;
}
.ruler-latest-posts .ruler-latest-post-item:hover span.ruler-latest-post-num, .ruler-latest-posts .ruler-latest-post-item:focus span.ruler-latest-post-num {
  color: #fff;
  background-color: #231F20;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
}

div#breadcrumbs ul li a {
  opacity: 0.5;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
}
div#breadcrumbs ul li:hover a, div#breadcrumbs ul li:focus a {
  opacity: 1;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
}
div#breadcrumbs ul li:not(:last-child)::after {
  content: " ";
  width: 1px;
  height: 20px;
  position: absolute;
  right: 0.5rem;
  background-color: #231F20;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.earth {
  max-width: clamp(90px, 18.281vw, 351px);
  margin: 0 auto;
  height: auto;
}

.search-item {
  margin-bottom: 20px;
  background: #eaeef1;
  border: 0.5px dashed #0052AC;
  padding: clamp(25px, 2.135vw, 41px) clamp(25px, 2.135vw, 41px) clamp(25px, 2.135vw, 41px) clamp(30px, 3.49vw, 67px);
}

.search-item span:hover svg path {
  animation: arrowDiagonalSlide 0.5s ease forwards;
  pointer-events: pointer;
}
@keyframes arrowDiagonalSlide {
  0% {
    opacity: 1;
    transform: translate(0, 0);
  }
  49% {
    opacity: 0;
    transform: translate(15px, -15px);
  }
  50% {
    opacity: 0;
    transform: translate(-15px, 15px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.search-item span:not(:hover) svg path {
  animation: arrowReverseSlide 0.5s ease forwards;
}
@keyframes arrowReverseSlide {
  0% {
    opacity: 1;
    transform: translate(0, 0);
  }
  49% {
    opacity: 0;
    transform: translate(-15px, 15px);
  }
  50% {
    opacity: 0;
    transform: translate(15px, -15px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.search-item span svg {
  height: clamp(40px, 5.2vw, 50px);
}

.article-thumbnail {
  position: relative;
  border: 0.5px dashed #0052AC;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  border-bottom: none;
}

.article-content {
  position: relative;
  border: 0.5px dashed #0052AC;
  border-top: 0.5px solid #0052AC;
}
.article-content:before, .article-content:after {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  border-radius: 50%;
  background: #0052AC;
  top: 0;
}
.article-content:before {
  left: 0;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.article-content:after {
  right: 0;
  -webkit-transform: translate(50%, -50%);
  -moz-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  -o-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
}

.article-info-bottom span:hover svg path {
  animation: arrowDiagonalSlide 0.5s ease forwards;
}
@keyframes arrowDiagonalSlide {
  0% {
    opacity: 1;
    transform: translate(0, 0);
  }
  49% {
    opacity: 0;
    transform: translate(15px, -15px);
  }
  50% {
    opacity: 0;
    transform: translate(-15px, 15px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.article-info-bottom span:not(:hover) svg path {
  animation: arrowReverseSlide 0.5s ease forwards;
}
@keyframes arrowReverseSlide {
  0% {
    opacity: 1;
    transform: translate(0, 0);
  }
  49% {
    opacity: 0;
    transform: translate(-15px, 15px);
  }
  50% {
    opacity: 0;
    transform: translate(15px, -15px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.article-info-bottom span svg {
  height: clamp(40px, 5.2vw, 50px);
}

#port-locations .desc {
  position: relative;
  padding-right: 10px;
  overflow: auto;
  overscroll-behavior: contain;
  scrollbar-width: 4px;
  scrollbar-color: #fff transparent; /* thumb | track */
}
#port-locations .desc::-webkit-scrollbar {
  width: 4px;
}
#port-locations .desc::-webkit-scrollbar-track {
  background: transparent;
}
#port-locations .desc::-webkit-scrollbar-thumb {
  background: #fff;
  border-radius: 20px;
  border: 2px solid transparent; /* creates “padding” */
  background-clip: content-box;
}
#port-locations .desc::-webkit-scrollbar-thumb:hover {
  background: #fff;
  background-clip: content-box;
}

div#portsCursor {
  pointer: none;
  opacity: 0;
  border-radius: 10px;
  pointer-events: none;
  will-change: transform, opacity;
  transform: translate3d(calc(var(--x, -100) * 1px), calc(var(--y, -100) * 1px), 0) scale(var(--s, 1));
  -webkit-transform: translate3d(calc(var(--x, -100) * 1px), calc(var(--y, -100) * 1px), 0) scale(var(--s, 1));
  -moz-transform: translate3d(calc(var(--x, -100) * 1px), calc(var(--y, -100) * 1px), 0) scale(var(--s, 1));
  -ms-transform: translate3d(calc(var(--x, -100) * 1px), calc(var(--y, -100) * 1px), 0) scale(var(--s, 1));
  -o-transform: translate3d(calc(var(--x, -100) * 1px), calc(var(--y, -100) * 1px), 0) scale(var(--s, 1));
  transform-origin: 50% 50%;
  transition: opacity 0.3s linear;
  -webkit-transition: opacity 0.3s linear;
  -moz-transition: opacity 0.3s linear;
  -ms-transition: opacity 0.3s linear;
  -o-transition: opacity 0.3s linear;
  z-index: 9999;
}
div#portsCursor.is-visible {
  opacity: 1;
}

.page-content {
  color: #0052AC;
}
.page-content h2 {
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  font-size: clamp(21px, 1.667vw, 32px);
  margin-block: clamp(10px, 1vw, 20px);
}
.page-content p {
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  font-size: clamp(17px, 1.198vw, 23px);
  line-height: 1.2;
}
.page-content p strong {
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
}

#search-content.pad-inline-110 {
  padding-inline: clamp(20px, 5.7vw, 110px);
}

.horizontal-line {
  width: 100%;
  height: 1px;
  background: #0052AC;
}

.gradient-title,
body.page-template-template-about #big-description .desc p,
body.page-template-template-about #enquiry .desc p,
body.page-template-template-about #team h2,
body.page-template-template-services section .big-desc-wrapper p.c-blue,
body.page-template-template-services #additional-services h2,
body.page-template-template-industries #intro-area h1.c-blue,
body.page-template-template-industries #enquiry div.c-blue,
body.page-template-template-industries #partners h2.c-blue,
body.page-template-template-industries #testimonials h2.c-blue {
  display: inline-block;
  width: auto;
  color: transparent;
  background: linear-gradient(135deg, #0052AC, #7ea3cf);
  background-size: 100%;
  background-repeat: repeat;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

body.page-template-template-about #key-achievements .col-12.reveal.reveal-top,
body.page-template-template-industries #intro-area .inner {
  text-align: center;
}

body.page-template-template-industries #intro-area h1.c-blue {
  line-height: 1.3;
}

.realvh {
  height: calc(var(--vh, 1vh) * 100) !important;
}

.rfc-btn.rfc-save {
  background-color: #215ba3;
}

.rfc-btn.rfc-reject-all {
  color: #215ba3;
  background-color: #fff;
}

#form-page .wpforms-field.wpforms-field-checkbox ul {
  list-style: none;
  padding-left: 0;
}

.white-fill {
  fill: #fff;
}

.black-fill {
  fill: #231F20;
}

.white-bg {
  background-color: #fff;
}

.black-bg {
  background-color: #231F20;
}

.blue-bg {
  background-color: #0052AC;
}

.navy-blue-bg {
  background-color: #194780;
}

.c-light-grey {
  color: #D9D9D9;
}

.c-white {
  color: #fff;
}

.c-black {
  color: #231F20;
}

.c-orange {
  color: #F09751;
}

.c-blue {
  color: #0052AC;
}

.c-op-blue {
  color: rgba(33, 91, 163, 0.5);
}

.c-navy-blue {
  color: #194780;
}

.font-aeonik {
  font-family: "aeonik";
}

.font-100 {
  font-weight: 100;
  -webkit-font-smoothing: antialiased;
}

.font-200 {
  font-weight: 200;
  -webkit-font-smoothing: antialiased;
}

.font-300 {
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

.font-400 {
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

.font-500 {
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
}

.font-600 {
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
}

.font-800 {
  font-weight: 800;
  -webkit-font-smoothing: antialiased;
}

.line-height1 {
  line-height: 1;
}

.line-height1-2 {
  line-height: 1.2;
}

.line-height1-3 {
  line-height: 1.3;
}

.line-height1-5 {
  line-height: 1.5;
}

.line-height1-8 {
  line-height: 1.8;
}

.line-height2 {
  line-height: 2;
}

.text-300 {
  font-size: clamp(60px, 15.625vw, 300px);
}

.text-150 {
  font-size: clamp(45px, 7.813vw, 150px);
}

.text-100 {
  font-size: clamp(60px, 5.208vw, 100px);
}

.text-70 {
  font-size: clamp(40px, 3.646vw, 70px);
}

.text-60 {
  font-size: clamp(35px, 3.125vw, 60px);
}

.text-50 {
  font-size: clamp(32px, 2.604vw, 50px);
}

.text-42,
.text-42 p {
  font-size: clamp(30px, 2.188vw, 42px);
}

.text-40 {
  font-size: clamp(28px, 2.083vw, 40px);
}

.text-35 {
  font-size: clamp(22px, 1.823vw, 35px);
}

.text-32 {
  font-size: clamp(21px, 1.667vw, 32px);
}

.text-30 {
  font-size: clamp(20px, 1.563vw, 30px);
}

.text-24 {
  font-size: clamp(18px, 1.25vw, 24px);
}

.text-23 {
  font-size: clamp(17px, 1.198vw, 23px);
}

.text-20 {
  font-size: clamp(16px, 1.042vw, 20px);
}

.text-18 {
  font-size: clamp(15px, 0.938vw, 18px);
}

.text-15 {
  font-size: clamp(14px, 0.781vw, 15px);
}

#search-btn {
  cursor: pointer;
}

#search-icon.opened .search_open {
  display: none;
  opacity: 0;
}
#search-icon.opened .search_close {
  display: block;
  opacity: 1;
}

#searchOverlay {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
}

#search-icon {
  cursor: pointer;
  transition: all 0.3s linear;
}
#search-icon:hover {
  opacity: 0.6;
}

#search-wrapper {
  /* width: 100%; */
  /* padding-inline: 84px; */
  right: clamp(65px, 4.4vw, 85px);
}

#s {
  height: 50px;
  color: #fff;
  border-color: #fff;
  background: none;
  box-shadow: none;
  border-left: none;
  border-radius: 0;
  border-right: 0;
  border-top: 0;
}
#s::placeholder {
  color: #fff;
}
#s:focus-visible {
  outline: none;
  box-shadow: 0 0 0 1px rgb(255, 240, 42);
}

.search-close-btn-wrapper {
  cursor: pointer;
}
.search-close-btn-wrapper svg {
  height: 45px;
  height: width;
  cursor: pointer;
}

.pad-inline-20 {
  padding-inline: 20px;
}

.pad-inline-xsm {
  padding-inline: clamp(15px, 1.6vw, 30px);
}

.pad-inline-small {
  padding-inline: clamp(20px, 2.7vw, 52px);
}

.pad-inline-110 {
  padding-inline: clamp(55px, 5.7vw, 110px);
}

.pad-inline-medium {
  padding-inline: clamp(80px, 7.813vw, 150px);
}

.pad-inline-large {
  padding-inline: clamp(150px, 13vw, 250px);
}

.pad-block-xsm {
  padding-block: clamp(15px, 1.6vw, 30px);
}

.pad-block-small {
  padding-block: clamp(20px, 2.7vw, 52px);
}

.pad-block {
  padding-block: clamp(40px, 4.2vw, 80px);
}

.pad-block-medium {
  padding-block: clamp(80px, 7.813vw, 150px);
}

.pad-block-large {
  padding-block: clamp(100px, 10.4vw, 200px);
}

.l-l-padding {
  padding-left: clamp(50px, 13vw, 250px);
}

.l-padding {
  padding-left: clamp(110px, 11.5vw, 220px);
}

.r-padding {
  padding-right: clamp(110px, 11.5vw, 220px);
}

.pt-60 {
  padding-top: clamp(30px, 3.125vw, 60px);
}

.pt-80 {
  padding-top: clamp(40px, 4.167vw, 80px);
}

.pt-100 {
  padding-top: 100px;
}

.pt-150 {
  padding-top: clamp(80px, 7.813vw, 150px);
}

.pb-50 {
  padding-bottom: clamp(20px, 2.7vw, 52px);
}

.pb-70 {
  padding-bottom: clamp(30px, 3.646vw, 70px);
}

.mt-30 {
  margin-top: clamp(15px, 1.6vw, 30px);
}

.mt-50 {
  margin-top: clamp(25px, 2.6vw, 50px);
}

.mt-70 {
  margin-top: clamp(30px, 3.646vw, 70px);
}

.mt-100 {
  margin-top: clamp(50px, 5.2vw, 100px);
}

.mt-150 {
  margin-top: clamp(80px, 7.813vw, 150px);
}

.mt-250 {
  margin-top: clamp(150px, 13.021vw, 250px);
}

.mt-350 {
  margin-top: 350px;
}

.mb-30 {
  margin-bottom: clamp(15px, 1.6vw, 30px);
}

.mb-50 {
  margin-bottom: clamp(25px, 2.6vw, 50px);
}

.mb-70 {
  margin-bottom: clamp(30px, 3.646vw, 70px);
}

.mb-100 {
  margin-bottom: clamp(50px, 5.2vw, 100px);
}

.mb-150 {
  margin-bottom: clamp(80px, 7.813vw, 150px);
}

.mb-250 {
  margin-bottom: 250px;
}

.ms-30 {
  margin-left: clamp(15px, 1.6vw, 30px);
}

.me-30 {
  margin-right: clamp(15px, 1.6vw, 30px);
}

.height-920 {
  height: 920px;
}

.height-750 {
  height: 750px;
}

.height-450 {
  height: 450px;
}

.min-h-550 {
  min-height: clamp(220px, 28.6vw, 550px);
}

.mw-362 {
  max-width: 362px;
}

div.pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  line-height: 0;
  margin: 0;
  padding: 0;
}
div.pagination .page-numbers,
div.pagination .number-separator a {
  pointer-events: fill;
  margin: 0 clamp(10px, 1vw, 20px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: rgba(33, 91, 163, 0.5);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
div.pagination .page-numbers:hover,
div.pagination .number-separator a:hover {
  color: #0052AC;
}
div.pagination .page-numbers:hover svg,
div.pagination .number-separator a:hover svg {
  stroke: #fff;
}
div.pagination .page-numbers.active,
div.pagination .number-separator a.active {
  color: #F09751;
  pointer-events: none;
  font-weight: 600;
  font-size: 16px;
}
div.pagination .page-numbers svg,
div.pagination .number-separator a svg {
  stroke: #0052AC;
}
div.pagination .page-numbers.prev svg,
div.pagination .number-separator a.prev svg {
  transform: rotate(-136deg);
  -webkit-transform: rotate(-136deg);
  -moz-transform: rotate(-136deg);
  -ms-transform: rotate(-136deg);
  -o-transform: rotate(-136deg);
}
div.pagination .page-numbers.next svg,
div.pagination .number-separator a.next svg {
  transform: rotate(42deg);
  -webkit-transform: rotate(42deg);
  -moz-transform: rotate(42deg);
  -ms-transform: rotate(42deg);
  -o-transform: rotate(42deg);
}
div.pagination .page-numbers.prev, div.pagination .page-numbers.next,
div.pagination .number-separator a.prev,
div.pagination .number-separator a.next {
  width: 50px;
  height: 50px;
  border: 1px solid;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-left: 10px;
  background-color: transparent;
  border: 0;
  color: #0052AC;
  border: 1px dashed #0052AC;
}
div.pagination .page-numbers.prev:hover, div.pagination .page-numbers.next:hover,
div.pagination .number-separator a.prev:hover,
div.pagination .number-separator a.next:hover {
  background-color: #0052AC;
  color: #fff;
  border: 0;
}
div.pagination .page-numbers.prev:hover svg, div.pagination .page-numbers.next:hover svg,
div.pagination .number-separator a.prev:hover svg,
div.pagination .number-separator a.next:hover svg {
  stroke: #fff;
}

.home #header {
  padding: 30px clamp(20px, 2.604vw, 50px);
}
.home #header .right .button-wrapper {
  display: none !important;
}

#header {
  padding: 30px clamp(10px, 2.604vw, 50px);
  /* Modal Menu */
  /* Menu & Submenu */
}
#header #logo img.custom-logo {
  height: 66px;
  width: auto;
}
#header #mobile-menu {
  width: 50px;
  height: 50px;
  padding: 4px;
  border-radius: 50px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#header #mobile-open {
  background: white;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed #F09751;
}
#header .menu-line {
  height: 2px;
  width: 25px;
  margin: 2px 0;
  background-color: #F09751;
  transition: all 0.3s linear;
}
#header #mobile-menu.opened .menu-line.mid {
  opacity: 0;
}
#header #mobile-menu.opened .menu-line {
  width: 30px;
}
#header #mobile-menu.opened .menu-line.top {
  -webkit-transform: rotate(40deg) translate(4.5px, 4.5px);
  -moz-transform: rotate(40deg) translate(4.5px, 4.5px);
  -ms-transform: rotate(40deg) translate(4.5px, 4.5px);
  -o-transform: rotate(40deg) translate(4.5px, 4.5px);
  transform: rotate(40deg) translate(4.5px, 4.5px);
}
#header #mobile-menu.opened .menu-line.bot {
  -webkit-transform: rotate(-40deg) translate(3.5px, -4.5px);
  -moz-transform: rotate(-40deg) translate(3.5px, -4.5px);
  -ms-transform: rotate(-40deg) translate(3.5px, -4.5px);
  -o-transform: rotate(-40deg) translate(3.5px, -4.5px);
  transform: rotate(-40deg) translate(3.5px, -4.5px);
}
#header #mobile-menu-modal {
  border-radius: 0px 21px 21px 0px;
  box-shadow: 1px 1px 3px 2px rgba(0, 0, 0, 0.09);
  width: 350px;
  margin-top: 10px;
  height: 0;
  opacity: 0;
  visibility: hidden;
}
#header #mobile-menu-modal #menu-social {
  font-size: 10px;
  font-weight: normal;
}
#header #menu-social li {
  margin-right: 10px;
}
#header #menu-social li:last-child {
  margin-right: 0px;
}
#header #menu-modal-menu {
  flex-direction: column;
}
#header #menu-modal-menu li {
  border-bottom: 1px solid rgba(120, 153, 4, 0.2);
  width: 100%;
  padding: 7px 0;
}
#header #menu-modal-menu li:last-child {
  border: none;
}
#header #modal-navigation,
#header .menu-modal-menu-container {
  width: 100%;
}
#header #mobile-close {
  cursor: pointer;
  right: 10px;
  top: 20px;
  height: 30px;
}
#header #mobile-close svg {
  transition: 0.3s all linear;
  height: 30px;
  width: auto;
}
#header #mobile-close:hover svg {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
#header .sub-menu {
  list-style: none;
  padding-left: 10px;
  font-size: 70%;
}
#header span.accordion-btn {
  cursor: pointer;
  width: 12.5px;
  height: 12.5px;
}
#header span.accordion-btn span.accordion-line {
  width: 100%;
  height: 2px;
  left: 0;
  top: calc(50% - 1px);
}
#header span.accordion-btn span.accordion-line.top {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
#header span.accordion-btn span.accordion-line.active.top {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
}
#header .button-wrapper {
  background: white;
  padding: 4px;
  border-radius: 16px;
}
#header .button-wrapper:hover {
  background: #F09751;
}
#header .search-btn {
  background: white;
  padding: 4px;
  border-radius: 50px;
}
#header .search-btn .inner {
  width: clamp(40px, 3.125vw, 60px);
  height: clamp(40px, 3.125vw, 60px);
  background: white;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed #F09751;
}
#header .search-btn .inner svg {
  max-width: clamp(12px, 0.885vw, 17px);
}
#header #menu-main-menu li a {
  color: #215BA3;
}
#header #menu-main-menu li a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1.5px;
  width: 100%;
  background-color: #F09751;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s ease;
}
#header #menu-main-menu li a:hover {
  color: #F09751;
}
#header #menu-main-menu li a:hover::after {
  transform: scaleX(1);
}
#header #menu-main-menu li.active a {
  color: #F09751;
}
#header #menu-main-menu li.active a::after {
  transform: scaleX(1);
}
#header #main-navigation {
  position: relative;
}

.home #header #menu-main-menu li a, .error404 #header #menu-main-menu li a {
  color: #fff;
}
.home #header #menu-main-menu li a:after, .error404 #header #menu-main-menu li a:after {
  background-color: #fff;
}

.shipping-timeline-wrapper {
  --desc-outer-gap: 760;
}

#shipping-agencies .shipping-timeline-wrapper .bold-circle-wrapper svg:not(.outline-circle) {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 1545px;
}

#shipping-agencies .shipping-timeline-wrapper .bold-circle-wrapper {
  position: relative;
  width: 100%;
  max-width: 1545px; /* keep your original cap */
  aspect-ratio: 1/1; /* make it a square */
  margin: 0 auto;
}

#shipping-agencies .shipping-timeline-wrapper .bold-circle-wrapper svg:not(.outline-circle) {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

#shipping-agencies .shipping-timeline-wrapper .bold-circle-wrapper svg.outline-circle {
  position: absolute;
  top: 50%;
  left: -8.25%; /* keep your artistic offset */
  transform: translateY(-50%) rotate(-180deg);
  width: 116.5%; /* 100% + 16.5% ≈ your -8.25% shift “room” */
  height: 116.5%;
  max-width: none;
}

@media (max-width: 1199.98px) {
  #header #main-navigation {
    width: 500px;
    height: 0;
    position: absolute;
    top: 85px;
    left: 50%;
    padding: 20px;
    padding-bottom: 5px;
    border-radius: 25px;
    background-color: rgba(255, 255, 255, 0.65);
    overflow: hidden;
    opacity: 0;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(33, 91, 163, 0.25);
    backdrop-filter: blur(5px);
    z-index: 2;
  }
  #header #menu-main-menu li {
    width: 50%;
    margin-bottom: 15px;
  }
  #header #menu-main-menu li a {
    color: #215BA3;
  }
  .home #header #menu-main-menu li a {
    color: #215BA3;
  }
}
@media (max-width: 992.98px) {
  #header #main-navigation {
    border-radius: 20px;
  }
}
@media (max-width: 767.98px) {
  #header #main-navigation {
    width: 320px;
  }
  #header #menu-main-menu li {
    width: 100%;
  }
}
@media (max-width: 575.98px) {
  #header #main-navigation {
    width: 300px;
  }
}
footer {
  /* Back to Top Button Styles */
}
footer #backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  opacity: 0;
  display: block;
  color: #fff;
  background: #0052AC;
  font-size: 24px;
  padding: 15px 16px;
  border-radius: 50%;
  text-align: center;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
footer #backToTop svg {
  width: 30px;
  height: 30px;
}
footer h2 {
  mix-blend-mode: overlay;
}
footer .menu-copyright-menu-container ul {
  gap: 40px;
}
footer .menu-copyright-menu-container li a {
  color: #fff;
}
footer .half-circle-up {
  bottom: -4px;
  position: absolute;
  left: 0;
  right: 0;
  width: 100vw;
}
footer .half-circle-up svg {
  width: 90%;
  height: auto;
  display: block;
  max-width: 1667px;
  margin: 0 auto;
}
footer .earth {
  max-width: clamp(220px, 18.281vw, 351px);
  margin: 0 auto;
  height: auto;
}
footer section {
  overflow-x: hidden;
}

.sphere-wrapper::before {
  content: " ";
  width: clamp(100px, 15.6vw, 300px);
  height: clamp(100px, 15.6vw, 300px);
  position: absolute;
  left: 50%;
  top: 50%;
  background: radial-gradient(#0052AC, #7ea3cf);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  opacity: 0.65;
}
.sphere-wrapper .sphere {
  position: relative;
  width: clamp(100px, 15.6vw, 300px);
  height: clamp(100px, 15.6vw, 300px);
  animation: rotate 20s infinite linear;
  transform-origin: center center;
  transform-style: preserve-3d;
  -webkit-transform: rotateY(0deg);
  -moz-transform: rotateY(0deg);
  -ms-transform: rotateY(0deg);
  -o-transform: rotateY(0deg);
  transform: rotateY(0deg);
}

@keyframes rotate {
  from {
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
  to {
    -webkit-transform: rotateY(360deg);
    -moz-transform: rotateY(360deg);
    -ms-transform: rotateY(360deg);
    -o-transform: rotateY(360deg);
    transform: rotateY(360deg);
  }
}
.circle {
  position: absolute;
  width: clamp(100px, 15.6vw, 300px);
  height: clamp(100px, 15.6vw, 300px);
  border-radius: 50%;
  border: 0.5px dashed #fff;
  background-color: rgba(255, 255, 255, 0.005);
  top: 50%;
  left: 50%;
}

/* Positioning circles in the 'wireframe sphere' using rotateY() */
.circle:nth-of-type(1) {
  -webkit-transform: translate(-50%, -50%) rotateY(0deg);
  -moz-transform: translate(-50%, -50%) rotateY(0deg);
  -ms-transform: translate(-50%, -50%) rotateY(0deg);
  -o-transform: translate(-50%, -50%) rotateY(0deg);
  transform: translate(-50%, -50%) rotateY(0deg);
}

.circle:nth-of-type(2) {
  -webkit-transform: translate(-50%, -50%) rotateY(40deg);
  -moz-transform: translate(-50%, -50%) rotateY(40deg);
  -ms-transform: translate(-50%, -50%) rotateY(40deg);
  -o-transform: translate(-50%, -50%) rotateY(40deg);
  transform: translate(-50%, -50%) rotateY(40deg);
}

.circle:nth-of-type(3) {
  -webkit-transform: translate(-50%, -50%) rotateY(80deg);
  -moz-transform: translate(-50%, -50%) rotateY(80deg);
  -ms-transform: translate(-50%, -50%) rotateY(80deg);
  -o-transform: translate(-50%, -50%) rotateY(80deg);
  transform: translate(-50%, -50%) rotateY(80deg);
}

.circle:nth-of-type(4) {
  -webkit-transform: translate(-50%, -50%) rotateY(120deg);
  -moz-transform: translate(-50%, -50%) rotateY(120deg);
  -ms-transform: translate(-50%, -50%) rotateY(120deg);
  -o-transform: translate(-50%, -50%) rotateY(120deg);
  transform: translate(-50%, -50%) rotateY(120deg);
}

.circle:nth-of-type(5) {
  -webkit-transform: translate(-50%, -50%) rotateY(160deg);
  -moz-transform: translate(-50%, -50%) rotateY(160deg);
  -ms-transform: translate(-50%, -50%) rotateY(160deg);
  -o-transform: translate(-50%, -50%) rotateY(160deg);
  transform: translate(-50%, -50%) rotateY(160deg);
}

.circle:nth-of-type(6) {
  -webkit-transform: translate(-50%, -50%) rotateY(200deg);
  -moz-transform: translate(-50%, -50%) rotateY(200deg);
  -ms-transform: translate(-50%, -50%) rotateY(200deg);
  -o-transform: translate(-50%, -50%) rotateY(200deg);
  transform: translate(-50%, -50%) rotateY(200deg);
}

.circle:nth-of-type(7) {
  -webkit-transform: translate(-50%, -50%) rotateY(240deg);
  -moz-transform: translate(-50%, -50%) rotateY(240deg);
  -ms-transform: translate(-50%, -50%) rotateY(240deg);
  -o-transform: translate(-50%, -50%) rotateY(240deg);
  transform: translate(-50%, -50%) rotateY(240deg);
}

.circle:nth-of-type(8) {
  -webkit-transform: translate(-50%, -50%) rotateY(280deg);
  -moz-transform: translate(-50%, -50%) rotateY(280deg);
  -ms-transform: translate(-50%, -50%) rotateY(280deg);
  -o-transform: translate(-50%, -50%) rotateY(280deg);
  transform: translate(-50%, -50%) rotateY(280deg);
}

.circle:nth-of-type(9) {
  -webkit-transform: translate(-50%, -50%) rotateY(320deg);
  -moz-transform: translate(-50%, -50%) rotateY(320deg);
  -ms-transform: translate(-50%, -50%) rotateY(320deg);
  -o-transform: translate(-50%, -50%) rotateY(320deg);
  transform: translate(-50%, -50%) rotateY(320deg);
}

.single-post #main-content .post-content {
  margin-bottom: clamp(80px, 13.542vw, 260px);
}
.single-post #main-content .post-img {
  width: 833px;
  height: 440px;
}
.single-post #main-content p {
  font-size: clamp(32px, 2.604vw, 50px);
  color: #0052AC;
}
.single-post #main-content .wp-block-columns {
  margin-top: clamp(30px, 5.208vw, 100px);
  gap: clamp(20px, 3.385vw, 65px);
}
.single-post #main-content .wp-block-columns p {
  font-size: clamp(21px, 1.667vw, 32px);
  text-align: justify;
}
.single-post #main-content h2 {
  color: #0052AC;
  font-size: clamp(35px, 3.125vw, 60px);
}
.single-post #main-content h3 {
  color: #0052AC;
  font-size: clamp(32px, 2.604vw, 50px);
}
.single-post #main-content h4 {
  color: #0052AC;
  font-size: clamp(30px, 2.188vw, 42px);
}
.single-post #main-content h5 {
  color: #0052AC;
  font-size: clamp(28px, 2.083vw, 40px);
}
.single-post #main-content h6 {
  color: #0052AC;
  font-size: clamp(22px, 1.823vw, 35px);
}

#job-item-content .special-title-wrapper .secondLine {
  margin-left: clamp(30px, 6.771vw, 130px);
}
#job-item-content .job-single-content {
  padding-left: clamp(20px, 7.813vw, 150px);
}
#job-item-content h2:first-child {
  font-size: clamp(32px, 2.604vw, 50px);
  font-weight: 400;
  margin-bottom: clamp(50px, 5.2vw, 100px);
  line-height: normal;
}
#job-item-content h3, #job-item-content p {
  margin: clamp(15px, 1.6vw, 30px);
}
#job-item-content p, #job-item-content li {
  font-size: clamp(18px, 1.25vw, 24px);
  font-weight: 400;
  line-height: normal;
}
#job-item-content .apply-btn {
  margin-top: clamp(20px, 1.6vw, 30px);
  font-weight: 400;
  font-size: 18px;
  color: #F09751;
  padding: clamp(13px, 1.2vw, 23px) clamp(35px, 3.4vw, 65px);
  float: left;
  background: white;
  border: none;
  border-radius: 16px;
  position: relative;
  transition: all 0.5s ease-in-out;
}
#job-item-content .apply-btn:hover {
  background: #F09751;
  color: white;
}
#job-item-content .apply-btn:after {
  content: "";
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  border: 1px dashed #F09751;
  border-radius: 15px;
  position: absolute;
  top: 4px;
  left: 4px;
}
#job-item-content .vertical-line svg {
  height: clamp(50px, 13.3vw, 255px);
}
#job-item-content .vertical-line {
  margin-top: -80px;
}

#scroll-slider {
  padding-top: clamp(60px, 5.208vw, 100px);
  padding-bottom: clamp(60px, 13.542vw, 260px);
}
#scroll-slider .numbers-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  gap: 20px;
  right: clamp(40px, 3.646vw, 70px);
}
#scroll-slider .img-wrapper {
  width: clamp(500px, 54.688vw, 1050px);
  height: clamp(300px, 28.385vw, 545px);
  border-radius: 15px;
}
#scroll-slider .slide {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: opacity 0.5s ease-in-out;
}
#scroll-slider .slide.active {
  max-height: 2000px;
  opacity: 1;
}
#scroll-slider .number {
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}
#scroll-slider .number .number-separator {
  color: #194780 !important;
}
#scroll-slider .number svg {
  opacity: 0;
}
#scroll-slider .number.active {
  opacity: 1;
}
#scroll-slider .number.active svg {
  opacity: 1;
}
#scroll-slider .number.active .number-separator {
  color: #F09751 !important;
}
#scroll-slider .desc {
  max-width: clamp(100px, 15.208vw, 292px);
  transform: translateY(-50%);
  text-align: justify;
}

#services-operations .support-title {
  color: #f09751;
}
#services-operations .desc {
  max-width: 582px;
}
#services-operations .img-desc {
  max-width: 372px;
  margin-right: clamp(20px, 4.688vw, 90px);
}
#services-operations .support-img-wrapper {
  width: 202px;
  height: 292px;
  margin-bottom: 20px;
}
#services-operations .service-box {
  border-radius: 15px;
  border: 0.5px dashed #FFF;
  padding: clamp(20px, 1.563vw, 30px);
  margin-bottom: 24px;
  height: clamp(350px, 27.708vw, 532px);
}
#services-operations .down-wrapper {
  margin-bottom: 23px;
}

#port-locations .inner {
  background-size: 100% 100%;
  background-position: top left;
  background-repeat: no-repeat;
  width: 100%;
  aspect-ratio: 16/9;
  position: relative;
}
#port-locations .intro-data {
  max-width: 600px;
}
#port-locations .ports-wrapper {
  gap: 16px;
  z-index: 999;
  bottom: 50px;
  width: 100%;
}
#port-locations .port-box {
  min-width: 504px;
  min-height: 250px;
  padding: 55px 22px clamp(20px, 5.544vw, 55px) 22px;
  background: rgba(50, 142, 255, 0.3);
  border-radius: 15px 15px 0 0;
  border: 0.5px dashed #FFF;
  display: flex;
  flex-direction: column-reverse;
  transition: all 0.3s ease;
}
#port-locations .port-box .desc {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}
#port-locations .port-box .close {
  display: none;
}
#port-locations .port-box.active {
  background: #0052AC;
  flex-direction: column;
}
#port-locations .port-box.active .desc {
  max-height: clamp(80px, 8.333vw, 160px);
  opacity: 1;
  overflow-y: scroll;
  margin-top: clamp(30px, 5.208vw, 100px);
}
#port-locations .port-box.active .name,
#port-locations .port-box.active a {
  color: #fff;
}
#port-locations .port-box.active .close {
  display: block;
  max-width: clamp(30px, 2.813vw, 54px);
  max-height: clamp(30px, 2.813vw, 54px);
}
#port-locations .port-box.active .icon-open {
  display: none;
}
#port-locations .icon-wrapper {
  top: clamp(15px, 1.302vw, 25px);
  right: clamp(15px, 1.302vw, 25px);
}
#port-locations .master-hotspot {
  transform: translate(-50%, -50%);
  cursor: pointer;
}
#port-locations .master-hotspot .pin-label {
  color: #8B8D90;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  max-width: max-content;
  width: max-content;
  font-size: clamp(10px, 0.781vw, 15px);
}
#port-locations .master-hotspot.left .pin-label {
  right: 120%;
}
#port-locations .master-hotspot.right .pin-label {
  left: 120%;
}
#port-locations .master-hotspot .pin-wrapper svg {
  max-width: clamp(30px, 2.813vw, 54px);
  max-height: clamp(30px, 2.813vw, 54px);
}
#port-locations .portSwiper {
  width: 100%;
}
#port-locations .portSwiper .expertise-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 20px;
  margin-top: 32px;
  max-width: clamp(90px, 7.292vw, 140px);
  gap: 10px;
}
#port-locations .portSwiper .expertise-prev,
#port-locations .portSwiper .expertise-next {
  width: clamp(40px, 2.813vw, 54px);
  height: clamp(40px, 2.813vw, 54px);
  border-radius: 50%;
  border: 1px dashed #0052AC;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
#port-locations .portSwiper .expertise-prev svg {
  transform: rotate(180deg);
}
#port-locations .portSwiper .expertise-prev:hover,
#port-locations .portSwiper .expertise-next:hover {
  background: #0052AC;
}
#port-locations .portSwiper .expertise-prev:hover svg path,
#port-locations .portSwiper .expertise-next:hover svg path {
  fill: #fff;
}
#port-locations .swiper-wrapper {
  display: flex;
  min-height: clamp(400px, 23.958vw, 460px);
}
@media screen and (max-width: 1200px) {
  #port-locations .swiper-wrapper {
    min-height: clamp(350px, 23.958vw, 460px);
  }
}
@media screen and (max-width: 992px) {
  #port-locations .swiper-wrapper {
    min-height: clamp(300px, 23.958vw, 460px);
  }
}
#port-locations .swiper-slide {
  min-width: 300px;
}
#port-locations .master-hotspot.active svg rect {
  fill: #0052AC;
  stroke: #0052AC;
}
#port-locations .master-hotspot.active svg path {
  fill: #fff;
  stroke: #fff;
}

#port-locations.ports-template-part .master-hotspot:hover svg {
  background: #0052AC;
  border-radius: 50%;
}
#port-locations.ports-template-part .master-hotspot:hover svg rect {
  fill: #0052AC;
}
#port-locations.ports-template-part .master-hotspot:hover svg path {
  stroke: #fff;
  fill: #fff;
}

.home #port-locations {
  overflow: hidden;
}
.home #port-locations .inner {
  transform: translateY(-10%);
}
.home #port-locations .ports-wrapper {
  margin-top: clamp(-200px, -10.417vw, -100px);
  margin-bottom: 50px;
}

/* Buttons */
.button-wrapper {
  border-radius: 40px;
}
.button-wrapper:hover .button {
  color: white !important;
  background: #F09751 !important;
  transition: background-color 0.5s ease, color 0.5s ease;
}
.button-wrapper .button {
  padding: clamp(12px, 1.146vw, 22px) clamp(30px, 3.854vw, 74px);
  border-radius: 16px;
  font-size: clamp(15px, 0.938vw, 18px);
  border: 1px dashed #F09751;
  transition: background-color 0.5s ease, color 0.5s ease;
}
.button-wrapper .button.border-orange {
  border-color: #F09751;
}
.button-wrapper .button.border-white {
  border-color: #fff;
}
.button-wrapper .button.border-blue {
  border-color: #0052AC;
}
.button-wrapper.style2 .button {
  border-radius: 35px;
}
.button-wrapper .btn-icon {
  border: 1px dashed #0052AC;
  width: clamp(33px, 2.813vw, 54px);
  height: clamp(33px, 2.813vw, 54px);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 50%;
  right: 6px;
  transform: translateY(-50%);
}
.button-wrapper .btn-icon:hover svg path {
  animation: arrowDiagonalSlide 0.5s ease forwards;
}
@keyframes arrowDiagonalSlide {
  0% {
    opacity: 1;
    transform: translate(0, 0);
  }
  49% {
    opacity: 0;
    transform: translate(15px, -15px);
  }
  50% {
    opacity: 0;
    transform: translate(-15px, 15px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.button-wrapper .btn-icon:not(:hover) svg path {
  animation: arrowReverseSlide 0.5s ease forwards;
}
@keyframes arrowReverseSlide {
  0% {
    opacity: 1;
    transform: translate(0, 0);
  }
  49% {
    opacity: 0;
    transform: translate(-15px, 15px);
  }
  50% {
    opacity: 0;
    transform: translate(15px, -15px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.button-wrapper .btn-icon svg {
  max-width: clamp(15px, 1.563vw, 30px);
}
.button-wrapper.hasicon .button {
  padding-right: clamp(60px, 5.208vw, 100px);
}

.more-posts-btn span:hover svg path {
  animation: arrowDiagonalSlide 0.5s ease forwards;
}
@keyframes arrowDiagonalSlide {
  0% {
    opacity: 1;
    transform: translate(0, 0);
  }
  49% {
    opacity: 0;
    transform: translate(15px, -15px);
  }
  50% {
    opacity: 0;
    transform: translate(-15px, 15px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.more-posts-btn span:not(:hover) svg path {
  animation: arrowReverseSlide 0.5s ease forwards;
}
@keyframes arrowReverseSlide {
  0% {
    opacity: 1;
    transform: translate(0, 0);
  }
  49% {
    opacity: 0;
    transform: translate(-15px, 15px);
  }
  50% {
    opacity: 0;
    transform: translate(15px, -15px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.more-posts-btn span svg {
  height: clamp(40px, 5.2vw, 50px);
}

.more-posts-btn svg {
  height: clamp(40px, 5.2vw, 50px);
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
}
.more-posts-btn:hover svg {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}

.swiper-controls {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  justify-items: center;
}

.swiper-pagination {
  margin-top: 15px;
  margin-left: 20px;
  margin-right: 20px;
  position: relative;
  display: flex;
}

.swiper-pagination-bullet {
  border: 1px solid;
  width: 10px;
  height: 10px;
  background: transparent;
  opacity: 1;
}

.swiper-button {
  border: 1px solid;
  border-radius: 100%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  justify-items: center;
  flex-wrap: wrap;
  flex-direction: column;
  transition: all 0.3s linear;
}
.swiper-button:hover {
  background: #fff;
}
.swiper-button:hover path {
  background: #fff;
  stroke: yellow;
}

.swiper-button-disabled {
  opacity: 0.5;
}

.number-separator {
  width: 64px;
  height: 42px;
}
.number-separator svg {
  top: 0;
  left: 0;
}

.number-isBig svg {
  max-width: clamp(90px, 6.719vw, 129px);
}

.special-title-wrapper h1, .special-title-wrapper h2, .special-title-wrapper h3, .special-title-wrapper h4, .special-title-wrapper h5, .special-title-wrapper h6 {
  font-size: clamp(40px, 3.646vw, 70px);
  font-weight: 400;
  margin-top: -5px;
}
.special-title-wrapper .firstLine {
  color: rgba(0, 82, 172, 0.5);
  margin-left: 0;
  display: block;
}
.special-title-wrapper .secondLine {
  margin-left: clamp(70px, 10.417vw, 200px);
  display: block;
}

#home-hero .inner {
  padding: 20px;
}
#home-hero .hero-file-wrapper {
  height: 100%;
  border-radius: clamp(16px, 1.719vw, 33px);
}
#home-hero .hero-file-wrapper h1 {
  color: rgba(255, 255, 255, 0.8);
  opacity: 0;
  max-width: 1920px;
}
#home-hero .hero-file-wrapper h1 span {
  margin-bottom: 5px;
  line-height: 1;
  position: relative;
}
#home-hero .hero-file-wrapper h1 span:first-child {
  padding-left: 15%;
}
#home-hero .hero-file-wrapper h1 span:nth-child(2) {
  padding-left: 30%;
}
#home-hero .hero-file-wrapper h1 span:nth-child(3) {
  padding-left: 46%;
}
#home-hero .hero-file-wrapper h1 img {
  max-width: clamp(100px, 15.365vw, 295px);
  height: auto;
  object-fit: unset;
  object-position: unset;
  border-radius: 16px;
  position: absolute;
  z-index: -1;
  top: 2.5%;
  left: 12.5%;
}
#home-hero .video-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(25, 71, 128, 0.39) 0%, rgba(25, 71, 128, 0.39) 25.99%, rgba(198, 198, 198, 0) 100%);
}

#about-horizon .inner {
  max-width: 1230px;
}
#about-horizon .about-img-wrapper {
  margin-top: clamp(-40px, -2.083vw, -20px);
  z-index: -1;
}
#about-horizon .about-img {
  border-radius: 15px;
  width: 573px;
  height: 306px;
}
#about-horizon .about-img {
  margin-bottom: 60px;
}
#about-horizon .vertical-line-wrapper {
  top: 40%;
  height: 514px;
}
#about-horizon .vertical-line-wrapper .inner {
  position: relative;
  width: auto;
  height: 100%;
}
#about-horizon .vertical-line-wrapper .inner .line {
  height: 100%;
  width: 1px;
  position: absolute;
  top: 0;
  left: 2px;
  background: #0052AC;
}
#about-horizon .vertical-line-wrapper .inner:before, #about-horizon .vertical-line-wrapper .inner:after {
  content: "";
  width: 5px;
  height: 5px;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  background: #0052AC;
}
#about-horizon .vertical-line-wrapper .inner:after {
  bottom: 0;
  top: unset;
}

#about-horizon-description .inner {
  max-width: clamp(650px, 64.063vw, 1230px);
}
#about-horizon-description .desc {
  max-width: clamp(280px, 22.083vw, 424px);
  text-align: justify;
  margin-top: 25px;
}
#about-horizon-description .number-separator {
  width: 100%;
  margin-bottom: 20px;
}
#about-horizon-description .half-circle-down {
  position: absolute;
  left: 0;
  right: 0;
  top: -3px;
  width: 100vw;
  z-index: -1;
}
#about-horizon-description .half-circle-down svg {
  width: 90vw;
  max-width: 1782px;
  margin: 0 auto;
  height: auto;
  display: block;
  z-index: -1;
}

#shipping-agencies .shipping-timeline-wrapper {
  width: 1545px;
  height: 1545px;
}
#shipping-agencies .shipping-timeline-wrapper .bold-circle-wrapper {
  aspect-ratio: 1/1;
}
#shipping-agencies .shipping-timeline-wrapper .bold-circle-wrapper svg:not(.outline-circle) {
  display: block;
  width: 100%;
  height: 100%;
}
#shipping-agencies .shipping-timeline-wrapper .bold-circle-wrapper svg.outline-circle {
  top: 50%;
  left: -8.25%;
  -webkit-transform: translateY(-50%) rotate(-180deg);
  -moz-transform: translateY(-50%) rotate(-180deg);
  -ms-transform: translateY(-50%) rotate(-180deg);
  -o-transform: translateY(-50%) rotate(-180deg);
  transform: translateY(-50%) rotate(-180deg);
  width: 116.5%;
  height: 116.5%;
}
#shipping-agencies .shipping-timeline-wrapper .bold-circle-wrapper-dates {
  width: 70%;
  height: 100%;
  top: 50%;
  left: 15%;
  pointer-events: none;
  z-index: 2;
}
#shipping-agencies .shipping-timeline-wrapper .bold-circle-wrapper-descriptions {
  position: absolute;
  inset: 0;
  top: 50%;
  overflow: visible;
  pointer-events: none;
  z-index: 2;
}
#shipping-agencies .shipping-timeline-wrapper .bold-circle-wrapper-descriptions .bold-circle-active {
  content: " ";
  width: 30px;
  height: 30px;
  position: absolute;
  right: -35px;
  background-color: #0052AC;
  top: -15px;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
}
#shipping-agencies .shipping-timeline-wrapper .bold-circle-wrapper-descriptions .bold-circle-active.active {
  opacity: 1;
}
#shipping-agencies .shipping-timeline-wrapper .dates-ring,
#shipping-agencies .shipping-timeline-wrapper .descriptions-ring {
  inset: 0;
  transform-origin: 50% 50%;
}
#shipping-agencies .shipping-timeline-wrapper .circle-slide-item,
#shipping-agencies .shipping-timeline-wrapper .circle-slide-description-item {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: auto;
  will-change: transform;
  opacity: 0.35;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
}
#shipping-agencies .shipping-timeline-wrapper .circle-slide-item.is-active,
#shipping-agencies .shipping-timeline-wrapper .circle-slide-description-item.is-active {
  opacity: 1;
  z-index: 10;
}
#shipping-agencies .shipping-timeline-wrapper .circle-slide-description-item {
  left: 50%;
  top: 50%;
  opacity: 0.35;
}
#shipping-agencies .shipping-timeline-wrapper .circle-slide-description-item.is-active {
  opacity: 1;
}
#shipping-agencies .shipping-timeline-wrapper .circle-slide-description-item .circle-slide-description {
  max-width: 700px;
  width: 100%;
}
#shipping-agencies .shipping-timeline-wrapper .bold-circle-wrapper {
  left: -772.5px;
}
#shipping-agencies .shipping-timeline-wrapper .bold-circle-wrapper::before, #shipping-agencies .shipping-timeline-wrapper .bold-circle-wrapper::after {
  content: " ";
  width: 102.26%;
  height: 102.26%;
  position: absolute;
  top: 50%;
  right: -1.29%;
  border-radius: 50%;
  border: 1px dashed rgba(0, 82, 172, 0.2);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
#shipping-agencies .shipping-timeline-wrapper .bold-circle-wrapper::before {
  width: 73.79%;
  height: 73.79%;
  right: 13.27%;
}
#shipping-agencies .shipping-timeline-wrapper .outline-circle {
  pointer-events: none;
}
#shipping-agencies .shipping-timeline-wrapper #agencies-outline {
  opacity: 1;
  stroke: #0052AC;
  stroke-width: 1;
  stroke-linecap: round;
  will-change: stroke-dashoffset;
}

.page-template-template-about-php .vertical-line-wrapper {
  top: 0;
}
.page-template-template-about-php .vertical-line-wrapper .inner {
  position: relative;
  width: auto;
  height: 133px;
}
.page-template-template-about-php .vertical-line-wrapper .inner .line {
  height: 100%;
  width: 1px;
  position: absolute;
  top: 0;
  left: 2px;
  background: #0052AC;
}
.page-template-template-about-php .vertical-line-wrapper .inner:before, .page-template-template-about-php .vertical-line-wrapper .inner:after {
  content: "";
  width: 5px;
  height: 5px;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  background: #0052AC;
}
.page-template-template-about-php .vertical-line-wrapper .inner:after {
  bottom: 0;
  top: unset;
}
.page-template-template-about-php #key-achievements .half-circle-down {
  position: absolute;
  left: 0;
  right: 0;
  top: -3px;
  width: 100vw;
  margin-top: -2px;
  z-index: -1;
}
.page-template-template-about-php #key-achievements .half-circle-down svg {
  width: 95vw;
  max-width: 1782px;
  margin: 0 auto;
  height: auto;
  display: block;
  z-index: -1;
}
.page-template-template-about-php #key-achievements-list .desc {
  max-width: 410px;
}
.page-template-template-about-php #key-achievements-list .title {
  max-width: clamp(155px, 15.104vw, 290px);
}
.page-template-template-about-php #key-achievements-list .subtitle {
  max-width: 190px;
}
.page-template-template-about-php #mission-vision-values .item {
  border-bottom: 1.2px solid rgba(0, 82, 172, 0.4);
}
.page-template-template-about-php #mission-vision-values .item:before, .page-template-template-about-php #mission-vision-values .item:after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: -6px;
  width: 6px;
  height: 6px;
  background: rgba(0, 82, 172, 0.4);
  border-radius: 50%;
}
.page-template-template-about-php #mission-vision-values .item:after {
  right: -6px;
  left: unset;
}
.page-template-template-about-php #mission-vision-values .item:last-child {
  border-bottom: 0;
}
.page-template-template-about-php #mission-vision-values .item:last-child:before, .page-template-template-about-php #mission-vision-values .item:last-child:after {
  display: none;
}
.page-template-template-about-php .file-wrapper {
  width: clamp(300px, 21.198vw, 407px);
  height: clamp(400px, 28.438vw, 546px);
}
.page-template-template-about-php .file-wrapper svg {
  right: clamp(-50px, -2.604vw, -20px);
}
.page-template-template-about-php #italmar-horizon-turkey .secondLine {
  margin-left: clamp(20px, 5.208vw, 100px);
}
.page-template-template-about-php #scroll-slider {
  padding-bottom: 104px;
}
.page-template-template-about-php #enquiry .sep {
  position: relative;
  padding-top: clamp(80px, 12.917vw, 248px);
  border-top: 1.2px solid rgba(0, 82, 172, 0.4);
}
.page-template-template-about-php #enquiry .sep:before, .page-template-template-about-php #enquiry .sep:after {
  content: "";
  position: absolute;
  top: -3.2px;
  left: -6px;
  width: 6px;
  height: 6px;
  background: rgba(0, 82, 172, 0.4);
  border-radius: 50%;
}
.page-template-template-about-php #enquiry .sep:after {
  right: -6px;
  left: unset;
}
.page-template-template-about-php #enquiry .desc strong {
  color: #F09751;
  font-weight: 400;
}
.page-template-template-about-php #enquiry .button-wrapper:hover .btn-icon svg path {
  animation: arrowDiagonalSlide 0.5s ease forwards;
}
@keyframes arrowDiagonalSlide {
  0% {
    opacity: 1;
    transform: translate(0, 0);
  }
  49% {
    opacity: 0;
    transform: translate(15px, -15px);
  }
  50% {
    opacity: 0;
    transform: translate(-15px, 15px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.page-template-template-about-php #enquiry .button-wrapper:not(:hover) .btn-icon svg path {
  animation: arrowReverseSlide 0.5s ease forwards;
}
@keyframes arrowReverseSlide {
  0% {
    opacity: 1;
    transform: translate(0, 0);
  }
  49% {
    opacity: 0;
    transform: translate(-15px, 15px);
  }
  50% {
    opacity: 0;
    transform: translate(15px, -15px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.page-template-template-about-php #enquiry .button-wrapper svg {
  height: clamp(40px, 5.2vw, 50px);
}
.page-template-template-about-php #team .team-members .member h3 {
  color: #328EFF;
}
.page-template-template-about-php #team .team-members .member .img-wrapper {
  width: 180px;
  height: 180px;
}
.page-template-template-about-php #team .team-members .member:hover h3 {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.page-template-template-about-php .modal-dialog {
  max-width: clamp(380px, 56.458vw, 1084px);
  width: 100%;
  margin: 0 auto;
}
.page-template-template-about-php .modal-dialog .teamModalImgWrapper {
  width: 90px;
  height: 90px;
  background: #0052AC;
}
.page-template-template-about-php .modal-dialog #teamModalBio p {
  color: #0052AC;
}
.page-template-template-about-php .modal-dialog .modal-body {
  padding: clamp(40px, 4.792vw, 92px) clamp(30px, 6.771vw, 130px) !important;
}
.page-template-template-about-php .modal-dialog #teamModalJob {
  color: #328EFF;
}
.page-template-template-about-php .modal-dialog button {
  z-index: 999;
  position: absolute;
  top: 30px;
  right: 30px;
  --bs-btn-close-bg: none;
  width: clamp(26px, 1.875vw, 36px);
  height: clamp(26px, 1.875vw, 36px);
  border: 1px dashed #0052AC;
  border-radius: 50%;
}

.page-template-template-services #intro-area .inner,
#service-item #intro-area .inner {
  max-width: max-content;
}
.page-template-template-services #intro-area .about-img-wrapper,
#service-item #intro-area .about-img-wrapper {
  margin-top: -40px;
  z-index: -1;
}
.page-template-template-services #intro-area .about-img,
#service-item #intro-area .about-img {
  border-radius: 15px;
  width: 573px;
  height: 306px;
}
.page-template-template-services #intro-area .about-img,
#service-item #intro-area .about-img {
  margin-bottom: 60px;
}
.page-template-template-services #intro-area .vertical-line-wrapper,
#service-item #intro-area .vertical-line-wrapper {
  top: 80%;
}
.page-template-template-services #intro-area .vertical-line-wrapper .inner,
#service-item #intro-area .vertical-line-wrapper .inner {
  position: relative;
  width: auto;
  height: clamp(100px, 26.771vw, 514px);
}
.page-template-template-services #intro-area .vertical-line-wrapper .inner .line,
#service-item #intro-area .vertical-line-wrapper .inner .line {
  height: 100%;
  width: 1px;
  position: absolute;
  top: 0;
  left: 2px;
  background: #0052AC;
}
.page-template-template-services #intro-area .vertical-line-wrapper .inner:before, .page-template-template-services #intro-area .vertical-line-wrapper .inner:after,
#service-item #intro-area .vertical-line-wrapper .inner:before,
#service-item #intro-area .vertical-line-wrapper .inner:after {
  content: "";
  width: 5px;
  height: 5px;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  background: #0052AC;
}
.page-template-template-services #intro-area .vertical-line-wrapper .inner:after,
#service-item #intro-area .vertical-line-wrapper .inner:after {
  bottom: 0;
  top: unset;
}
.page-template-template-services #intro-area-description,
#service-item #intro-area-description {
  position: relative;
}
.page-template-template-services #intro-area-description .inner,
#service-item #intro-area-description .inner {
  max-width: 900px;
}
.page-template-template-services #intro-area-description .half-circle-down,
#service-item #intro-area-description .half-circle-down {
  position: absolute;
  left: 0;
  right: 0;
  top: -3px;
  width: 100vw;
  z-index: -1;
}
.page-template-template-services #intro-area-description .half-circle-down svg,
#service-item #intro-area-description .half-circle-down svg {
  width: 90vw;
  max-width: 1782px;
  margin: 0 auto;
  height: auto;
  display: block;
  z-index: -1;
}
.page-template-template-services #intro-area-description .desc-wrapper,
#service-item #intro-area-description .desc-wrapper {
  gap: 10px;
}
.page-template-template-services #intro-area-description .desc-wrapper .desc,
#service-item #intro-area-description .desc-wrapper .desc {
  max-width: clamp(260px, 17.448vw, 335px);
  min-width: clamp(260px, 17.448vw, 335px);
  max-width: 335px;
  min-width: 335px;
}
.page-template-template-services .big-desc-wrapper,
#service-item .big-desc-wrapper {
  max-width: 660px;
}
.page-template-template-services .file-wrapper,
#service-item .file-wrapper {
  width: 407px;
  height: 546px;
}
.page-template-template-services .file-wrapper svg,
#service-item .file-wrapper svg {
  right: -50px;
}
.page-template-template-services #additional-services .item,
#service-item #additional-services .item {
  border-bottom: 1px solid rgba(0, 82, 172, 0.4);
}
.page-template-template-services #additional-services .item h3,
#service-item #additional-services .item h3 {
  max-width: 230px;
}
.page-template-template-services #additional-services .item:before, .page-template-template-services #additional-services .item:after,
#service-item #additional-services .item:before,
#service-item #additional-services .item:after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 6px;
  height: 6px;
  background: rgba(0, 82, 172, 0.4);
  border-radius: 50%;
}
.page-template-template-services #additional-services .item:after,
#service-item #additional-services .item:after {
  right: 0;
  left: unset;
}

#faq-list {
  /* εξαφανίζει το default arrow */
  /* styling του custom icon */
  /* Μηδενίζουμε το Bootstrap arrow */
  /* Wrapper του icon */
  /* Οριζόντια γραμμή του + */
  /* Οριζόντια γραμμή */
  /* Κάθετη γραμμή (η οποία θα περιστραφεί) */
  /* Όταν το accordion είναι ΑΝΟΙΧΤΟ → η κάθετη γραμμή περιστρέφεται 90° */
}
#faq-list .accordion-body {
  padding: 0;
  max-width: 94%;
}
#faq-list .faq {
  padding: 40px 66px;
  border: 0.5px dashed #0052AC;
}
#faq-list .accordion-button::after {
  display: none !important;
}
#faq-list .faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
}
#faq-list .accordion-button::after {
  display: none !important;
}
#faq-list .faq-icon {
  position: relative;
  width: 16px;
  height: 16px;
  display: inline-block;
  border: 1px dashed #0052AC;
  padding: 20px;
  border-radius: 50%;
}
#faq-list .faq-icon::before,
#faq-list .faq-icon::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #215BA3;
  transition: transform 0.3s ease;
}
#faq-list .faq-icon::before {
  top: 50%;
  width: 16px;
  height: 2px;
  transform: translateY(-50%);
}
#faq-list .faq-icon::after {
  top: 50%;
  width: 2px;
  height: 16px;
  transform: translateY(-50%) rotate(0deg);
}
#faq-list .accordion-button:not(.collapsed) .faq-icon::after {
  transform: translateY(-50%) rotate(90deg);
}
#faq-list .accordion-button {
  background: #eaeef1;
  border-radius: 15px;
  box-shadow: none;
  padding: 0;
}
#faq-list .accordion-button:focus {
  box-shadow: none;
}
#faq-list .accordion-item {
  background: #eaeef1;
  border: 0.5px dashed #0052AC;
  padding: clamp(25px, 2.135vw, 41px) clamp(30px, 3.49vw, 67px);
}
#faq-list .vertical-line-wrapper {
  top: 0;
}
#faq-list .vertical-line-wrapper .inner {
  position: relative;
  width: auto;
  height: 115px;
}
#faq-list .vertical-line-wrapper .inner .line {
  height: 100%;
  width: 1px;
  position: absolute;
  top: 0;
  left: 2px;
  background: #0052AC;
}
#faq-list .vertical-line-wrapper .inner:before, #faq-list .vertical-line-wrapper .inner:after {
  content: "";
  width: 5px;
  height: 5px;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  background: #0052AC;
}
#faq-list .vertical-line-wrapper .inner:after {
  bottom: 0;
  top: unset;
}

#careers-page .dashed-b {
  border-radius: 15px;
  border: 0.5px dashed #0052AC;
}
#careers-page .job-card span:hover svg path {
  animation: arrowDiagonalSlide 0.5s ease forwards;
}
@keyframes arrowDiagonalSlide {
  0% {
    opacity: 1;
    transform: translate(0, 0);
  }
  49% {
    opacity: 0;
    transform: translate(15px, -15px);
  }
  50% {
    opacity: 0;
    transform: translate(-15px, 15px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
#careers-page .job-card span:not(:hover) svg path {
  animation: arrowReverseSlide 0.5s ease forwards;
}
@keyframes arrowReverseSlide {
  0% {
    opacity: 1;
    transform: translate(0, 0);
  }
  49% {
    opacity: 0;
    transform: translate(-15px, 15px);
  }
  50% {
    opacity: 0;
    transform: translate(15px, -15px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
#careers-page .job-card span svg {
  height: clamp(40px, 5.2vw, 50px);
}
#careers-page .more-jobs-btn svg {
  height: clamp(40px, 5.2vw, 50px);
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
}
#careers-page .more-jobs-btn:hover svg {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
#careers-page .job-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
#careers-page .job-filters .job-filter {
  position: relative;
  text-decoration: none;
  color: #215BA3;
  font-weight: 400;
  padding-bottom: 2px;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
}
#careers-page .job-filters .job-filter::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0%;
  background-color: #215BA3;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
}
#careers-page .job-filters .job-filter.active::after {
  width: 100%;
}
#careers-page .job-filters .job-filter:hover::after {
  width: 100%;
}

.page-template-template-industries #intro-area-description .intro-inner {
  max-width: 900px;
  margin: 0 auto;
  gap: 202px;
}
.page-template-template-industries #intro-area-description .desc {
  max-width: 335px;
}
.page-template-template-industries #intro-area-description .vertical-line-wrapper {
  top: -60px;
  height: clamp(100px, 15.625vw, 300px);
}
.page-template-template-industries #intro-area-description .vertical-line-wrapper .inner {
  position: relative;
  width: auto;
  height: 100%;
}
.page-template-template-industries #intro-area-description .vertical-line-wrapper .inner .line {
  height: 100%;
  width: 1px;
  position: absolute;
  top: 0;
  left: 2px;
  background: #0052AC;
}
.page-template-template-industries #intro-area-description .vertical-line-wrapper .inner:before, .page-template-template-industries #intro-area-description .vertical-line-wrapper .inner:after {
  content: "";
  width: 5px;
  height: 5px;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  background: #0052AC;
}
.page-template-template-industries #intro-area-description .vertical-line-wrapper .inner:after {
  bottom: 0;
  top: unset;
}
.page-template-template-industries #expertise-carousel .expertise-card {
  border-radius: 15px;
  border: 0.5px dashed #0052AC;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.page-template-template-industries #expertise-carousel .inner {
  padding: 34px 26px;
}
.page-template-template-industries #expertise-carousel .expertise-carousel-img {
  width: 100%;
  height: 318px;
}
.page-template-template-industries #expertise-carousel .expertise-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  max-width: clamp(90px, 6.25vw, 120px);
}
.page-template-template-industries #expertise-carousel .expertise-prev,
.page-template-template-industries #expertise-carousel .expertise-next {
  width: clamp(40px, 2.813vw, 54px);
  height: clamp(40px, 2.813vw, 54px);
  border-radius: 50%;
  border: 1px dashed #0052AC;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.page-template-template-industries #expertise-carousel .expertise-prev svg {
  transform: rotate(180deg);
}
.page-template-template-industries #expertise-carousel .expertise-prev:hover,
.page-template-template-industries #expertise-carousel .expertise-next:hover {
  background: #0052AC;
}
.page-template-template-industries #expertise-carousel .expertise-prev:hover svg path,
.page-template-template-industries #expertise-carousel .expertise-next:hover svg path {
  fill: #fff;
}
.page-template-template-industries #expertise-carousel .expertise-carousel {
  padding-left: clamp(20px, 5.208vw, 100px);
}
.page-template-template-industries #expertise-carousel .expertise-carousel .swiper-wrapper {
  align-items: stretch;
}
.page-template-template-industries #expertise-carousel .expertise-carousel .swiper-slide {
  height: auto;
  display: flex;
}
.page-template-template-industries .partners-carousel .swiper-wrapper {
  padding-block: clamp(15px, 1.823vw, 35px);
  padding-left: 20px;
}
.page-template-template-industries .partners-carousel img {
  border-radius: 16px;
}
.page-template-template-industries .testimonialsSwiper {
  border-bottom: 1px solid #0052AC;
  height: clamp(400px, 26vw, 500px);
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
}
.page-template-template-industries .testimonial-box {
  cursor: pointer;
  max-width: clamp(350px, 26.3vw, 504px);
  height: clamp(150px, 10.4vw, 200px);
  padding: clamp(35px, 2.865vw, 55px) 22px;
  background: rgba(50, 142, 255, 0.3);
  border-radius: 15px 15px 0 0;
  border: 0.5px dashed #FFF;
  display: flex;
  flex-direction: column-reverse;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
}
.page-template-template-industries .testimonial-box .title {
  padding-top: clamp(10px, 2.865vw, 55px);
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
}
.page-template-template-industries .testimonial-box .desc,
.page-template-template-industries .testimonial-box .person {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  overscroll-behavior: contain;
  scrollbar-width: 4px;
  scrollbar-color: #fff transparent;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
}
.page-template-template-industries .testimonial-box .rate {
  top: clamp(15px, 1.354vw, 26px);
  right: clamp(15px, 1.458vw, 28px);
  border-radius: 50%;
  border: 1px solid #fff;
  width: clamp(35px, 2.813vw, 54px);
  height: clamp(35px, 2.813vw, 54px);
  opacity: 0;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
}
.page-template-template-industries .testimonial-box.swiper-slide-active, .page-template-template-industries .testimonial-box.is-selected {
  background: #215BA3;
  flex-direction: column;
  height: fit-content;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
}
.page-template-template-industries .testimonial-box.swiper-slide-active .desc, .page-template-template-industries .testimonial-box.is-selected .desc {
  max-height: 160px;
  opacity: 1;
  overflow-y: scroll;
  margin-top: 50px;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
}
.page-template-template-industries .testimonial-box.swiper-slide-active .person, .page-template-template-industries .testimonial-box.swiper-slide-active .title, .page-template-template-industries .testimonial-box.is-selected .person, .page-template-template-industries .testimonial-box.is-selected .title {
  color: #fff;
}
.page-template-template-industries .testimonial-box.swiper-slide-active .rate, .page-template-template-industries .testimonial-box.is-selected .rate {
  opacity: 1;
}

.page-template-template-ports #port-locations .pin-wrapper svg {
  max-width: clamp(20px, 2.813vw, 54px);
  max-height: clamp(20px, 2.813vw, 54px);
}
.page-template-template-ports #port-locations .master-hotspot {
  transform: translate(-50%, -50%);
  cursor: pointer;
}
.page-template-template-ports #port-locations .master-hotspot .pin-label {
  color: #8B8D90;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  max-width: max-content;
  width: max-content;
  font-size: clamp(10px, 0.781vw, 15px);
}
.page-template-template-ports #port-locations .master-hotspot.left .pin-label {
  right: 120%;
}
.page-template-template-ports #port-locations .master-hotspot.right .pin-label {
  left: 120%;
}
.page-template-template-ports #port-locations .master-hotspot .pin-wrapper svg {
  max-width: clamp(30px, 2.813vw, 54px);
  max-height: clamp(30px, 2.813vw, 54px);
}
.page-template-template-ports #port-locations .port-boxes-wrapper .port-box {
  flex-direction: column;
  margin-bottom: 22px;
  min-width: 100%;
  width: 100%;
}
.page-template-template-ports #port-locations .port-boxes-wrapper .port-box .name {
  opacity: 1;
  display: block;
  padding-top: 20px;
  padding-right: 50px;
}
.page-template-template-ports #port-locations .port-boxes-wrapper .port-box .desc {
  max-height: 150px;
  height: 100%;
  opacity: 1;
  display: block;
  margin-top: clamp(30px, 6.048vw, 60px);
  margin-bottom: clamp(15px, 4.032vw, 40px);
  padding-right: 30px;
}
.page-template-template-ports #port-locations .port-boxes-wrapper .port-box .icon-open {
  display: block !important;
  max-width: clamp(30px, 2.813vw, 54px);
  max-height: clamp(30px, 2.813vw, 54px);
}
.page-template-template-ports #port-locations .port-boxes-wrapper .port-box .icon-open path {
  fill: white;
}
.page-template-template-ports #port-locations .port-boxes-wrapper .port-box .icon-open rect {
  stroke: white;
}
.page-template-template-ports #port-locations .port-boxes-wrapper .port-box.active .desc {
  color: white;
}

#form-page {
  color: #215BA3;
}
#form-page h1 {
  max-width: 300px;
  width: 100%;
}
#form-page h2 {
  font-size: 14px;
  font-weight: 400;
}
#form-page p {
  font-size: clamp(15px, 0.938vw, 18px);
  font-weight: 400;
  text-align: justify;
}
#form-page p.has-large-font-size {
  font-size: clamp(18px, 1.25vw, 24px) !important;
}
#form-page .content {
  flex: 0 0 63%;
}

#contact-form label {
  font-size: clamp(18px, 1.25vw, 24px);
  font-weight: 400;
  color: #215BA3;
}
#contact-form ::placeholder {
  color: rgba(33, 91, 163, 0.5);
  line-height: 100px;
}
#contact-form input,
#contact-form textarea,
#contact-form .wpforms-uploader {
  color: #215BA3;
  margin-top: clamp(16px, 1.4vw, 26px);
  padding-bottom: 10px;
  background: transparent;
  border: unset;
  border-bottom: 1px solid rgba(33, 91, 163, 0.5);
}
#contact-form input:focus-visible,
#contact-form textarea:focus-visible,
#contact-form .wpforms-uploader:focus-visible {
  border: unset;
  border-bottom: 1px solid rgb(33, 91, 163);
  outline: none;
}
#contact-form .wpforms-uploader {
  background: #E6EBEE;
  border-radius: 18px 18px 0 0;
}
#contact-form button {
  margin-top: clamp(20px, 1.6vw, 30px);
  font-weight: 400;
  font-size: 18px;
  color: #F09751;
  padding: clamp(13px, 1.2vw, 23px) clamp(35px, 3.4vw, 65px);
  float: right;
  background: white;
  border: none;
  border-radius: 16px;
  position: relative;
  transition: all 0.5s ease-in-out;
}
#contact-form button:hover {
  background: #F09751;
  color: white;
}
#contact-form button:after {
  content: "";
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  border: 1px dashed #F09751;
  border-radius: 15px;
  position: absolute;
  top: 4px;
  left: 4px;
}

.single-port .port-boxes-wrapper {
  padding-left: clamp(20px, 7.813vw, 150px);
}
.single-port #port-locations .master-hotspot {
  cursor: auto;
}
.single-port #port-locations .master-hotspot .pin-label, .single-port #port-locations .master-hotspot .pin-wrapper {
  pointer-events: none;
}
.single-port #port-locations .swiper-slide {
  height: clamp(350px, 23.958vw, 460px);
}
.single-port #port-locations .port-box {
  flex-direction: column;
  min-width: 100%;
}
.single-port #port-locations .port-box .name {
  padding-right: clamp(10px, 3.125vw, 60px);
}
.single-port #port-locations .port-box .desc {
  max-height: 160px;
  opacity: 1;
  overflow-y: scroll;
  margin-top: clamp(20px, 3.125vw, 60px);
  margin-bottom: clamp(20px, 2.083vw, 40px);
}
.single-port #port-locations .port-box .icon-open {
  max-width: clamp(30px, 2.813vw, 54px);
  max-height: clamp(30px, 2.813vw, 54px);
}
.single-port .has-popup h2.related-ports {
  margin-top: clamp(100px, 15.625vw, 300px);
}
.single-port .port-details-box {
  min-width: clamp(400px, 46.354vw, 890px);
  max-width: clamp(400px, 46.354vw, 890px);
  z-index: 3;
  background: #0052AC;
  z-index: 10;
  color: #fff;
  padding: clamp(30px, 3.906vw, 75px) 40px clamp(30px, 3.906vw, 75px) clamp(20px, 3.229vw, 62px);
}
.single-port .port-details-box .box-inner {
  max-height: clamp(200px, 20.833vw, 400px);
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 30px;
}
.single-port .port-details-box ul {
  list-style-type: none;
  padding-left: 6px;
}
.single-port .port-details-box ul li {
  font-size: clamp(18px, 1.25vw, 24px);
  font-weight: 400;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.5);
  padding: 20px 8px;
  position: relative;
}
.single-port .port-details-box ul li:last-child {
  border-bottom: 0;
}
.single-port .port-details-box ul li:last-child:before, .single-port .port-details-box ul li:last-child:after {
  display: none;
}
.single-port .port-details-box ul li:before, .single-port .port-details-box ul li:after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: -5px;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}
.single-port .port-details-box ul li:after {
  right: -5px;
  left: unset;
}
.single-port .port-details-box h2 {
  font-size: 14px;
  margin-bottom: clamp(15px, 1.979vw, 38px);
  font-weight: 400;
  text-transform: uppercase;
}
.single-port .port-details-box h3 {
  font-size: 12px;
  margin-bottom: clamp(10px, 1.563vw, 30px);
  font-weight: 400;
  text-transform: uppercase;
}

@media (max-width: 1799.98px) {
  .page-template-template-about-php #key-achievements .half-circle-down svg,
  .page-template-template-about-php #key-achievements .half-circle-down {
    width: 110vw;
    top: 120% !important;
  }
}
@media (max-width: 1699.98px) {
  #about-horizon-description .half-circle-down svg {
    width: 99vw;
  }
}
@media (max-width: 1599.98px) {
  #shipping-agencies .shipping-timeline-wrapper .bold-circle-wrapper {
    left: -850px;
  }
  #shipping-agencies .shipping-timeline-wrapper .circle-slide-description-item::before {
    left: -57.5px;
  }
  #shipping-agencies .shipping-timeline-wrapper .circle-slide-description-item .circle-slide-description {
    max-width: 600px;
  }
  .shipping-timeline-wrapper {
    --desc-outer-gap: 700;
  }
  .single-post .container {
    padding: 0 20px;
  }
}
@media (max-width: 1499.98px) {
  #shipping-agencies .shipping-timeline-wrapper .bold-circle-wrapper {
    left: -950px;
  }
  #shipping-agencies .shipping-timeline-wrapper .circle-slide-description-item::before {
    left: -60px;
  }
  .shipping-timeline-wrapper {
    --desc-outer-gap: 688;
  }
  .page-template-template-services #intro-area-description .half-circle-down svg {
    width: 100vw;
  }
}
@media (max-width: 1399.98px) {
  .page-template-template-about-php #key-achievements .half-circle-down svg,
  .page-template-template-about-php #key-achievements .half-circle-down {
    width: 110vw;
    top: 130% !important;
  }
  #shipping-agencies .shipping-timeline-wrapper .bold-circle-wrapper {
    left: -925px;
  }
  #shipping-agencies .shipping-timeline-wrapper .circle-slide-description-item .circle-slide-description {
    max-width: 500px;
  }
  .shipping-timeline-wrapper {
    --desc-outer-gap: 607;
  }
  #about-horizon-description .half-circle-down {
    left: -10%;
  }
  #about-horizon-description .half-circle-down,
  #about-horizon-description .half-circle-down svg {
    width: 120vw;
  }
}
@media screen and (max-width: 1299px) {
  #scroll-slider .numbers-wrapper {
    gap: 10px;
  }
  #job-item-content .job-single-content {
    padding-left: 0;
  }
  #shipping-agencies .shipping-timeline-wrapper .bold-circle-wrapper {
    max-width: 1145px;
    aspect-ratio: 1/1;
  }
  #shipping-agencies .shipping-timeline-wrapper {
    height: 1145px;
  }
  #shipping-agencies .shipping-timeline-wrapper .bold-circle-wrapper {
    left: -700px;
  }
  #shipping-agencies .shipping-timeline-wrapper .bold-circle-wrapper-descriptions .bold-circle-active {
    right: -31px;
  }
}
@media screen and (max-width: 1199px) {
  .page-template-template-about-php #key-achievements .half-circle-down svg,
  .page-template-template-about-php #key-achievements .half-circle-down {
    display: none;
  }
  .single-port .intro-section {
    padding: 80px 35px;
  }
  #port-locations .inner {
    transform: translateX(-20%);
    width: 150%;
    z-index: 1;
  }
  .port-boxes-wrapper,
  .single-port .port-boxes-wrapper,
  .single-port #port-locations h2.related-ports {
    padding-inline: 30px;
  }
  .single-port .port-details-box {
    max-width: 80%;
    min-width: 80%;
    padding: 30px 25px;
    position: relative !important;
    margin-top: -50px;
  }
  .single-port .port-details-box.text-24, .single-port .port-details-box ul li {
    font-size: 15px;
  }
  .single-port .port-details-box h2 {
    margin-bottom: 10px;
  }
  .single-port .has-popup h2.related-ports {
    margin-top: 50px;
  }
  .home #port-locations .inner {
    transform: translate(-20%, -10%);
  }
  .home .pt-60.pad-inline-medium {
    padding-inline: 30px;
  }
  #about-horizon-description .half-circle-down {
    display: none;
  }
  #about-horizon-description .desc {
    max-width: 100%;
  }
  #about-horizon-description .desc-wrapper {
    flex-direction: column;
    margin-top: 100px;
  }
  #about-horizon .vertical-line-wrapper {
    top: 70%;
    height: 200px;
  }
}
@media screen and (max-width: 1099px) {
  #port-locations .master-hotspot .pin-label {
    display: none;
  }
  #shipping-agencies .shipping-timeline-wrapper .bold-circle-wrapper {
    max-width: 1080px;
    aspect-ratio: 1/1;
  }
  #shipping-agencies .shipping-timeline-wrapper {
    height: 900px;
  }
  #shipping-agencies .shipping-timeline-wrapper .bold-circle-wrapper {
    left: -650px;
  }
  #shipping-agencies .shipping-timeline-wrapper .bold-circle-wrapper-descriptions .bold-circle-active {
    width: 25px;
    height: 25px;
    right: -27px;
  }
}
@media screen and (max-width: 991px) {
  #global-hub-capabilities {
    padding-top: 40px;
  }
  .page-template-template-services #intro-area-description {
    margin-top: 80px;
  }
  .page-template-template-services #intro-area-description .desc-wrapper {
    flex-direction: column;
  }
  .page-template-template-services #intro-area-description .desc-wrapper .desc {
    max-width: 100%;
  }
  .page-template-template-services #intro-area .vertical-line-wrapper .inner {
    height: 100px;
  }
  #scroll-slider .numbers-wrapper {
    right: 0;
  }
  .job-single-content {
    padding-left: 0 !important;
    padding-top: 50px;
  }
  .no-r-md-padding {
    padding-right: 0;
  }
  .no-t-md-padding {
    padding-top: 0;
  }
  #global-hub-capabilities .file-wrapper svg {
    display: none;
  }
  #italmar-horizon-turkey .file-wrapper {
    margin: 0 auto;
  }
  #scroll-slider .desc {
    position: relative !important;
    max-width: 100%;
    transform: translateY(0);
    margin-top: 30px;
  }
  #scroll-slider .img-wrapper {
    width: auto;
    height: auto;
  }
  #scroll-slider .numbers-wrapper {
    flex-direction: row;
    justify-content: center;
    position: relative !important;
    margin-top: 40px;
  }
  #scroll-slider .inner {
    flex-direction: column-reverse;
    margin-top: 50px;
  }
  .archive-content {
    padding-inline: 20px;
  }
  .single-post #main-content .post-img {
    width: 100%;
    height: auto;
  }
  .single-post .related-articles {
    padding-inline: 20px;
  }
  #job-item-content .vertical-line {
    margin-top: 0;
  }
  .page-template-template-industries #intro-area-description .intro-inner {
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 100%;
  }
  #shipping-agencies .shipping-timeline-wrapper .bold-circle-wrapper {
    max-width: 800px;
    aspect-ratio: 1/1;
  }
  #shipping-agencies .shipping-timeline-wrapper .bold-circle-wrapper {
    left: -600px;
  }
  .shipping-timeline-wrapper {
    --desc-outer-gap: 55%;
  }
  #shipping-agencies .pin-spacer {
    margin-top: 50px !important;
  }
  #shipping-agencies .pt-150 {
    padding-top: 50px;
  }
  #shipping-agencies .shipping-timeline-wrapper {
    height: 700px;
  }
  #shipping-agencies .shipping-timeline-wrapper .bold-circle-wrapper-descriptions .bold-circle-active {
    width: 22px;
    height: 22px;
    right: -22px;
  }
  #search-content .search-header {
    margin-bottom: 40px;
  }
  #careers-page.pad-inline-110 {
    padding-inline: 20px;
  }
  footer .menu-copyright-menu-container ul {
    gap: 10px;
  }
  .page-template-template-about-php .file-wrapper svg {
    right: 30% !important;
    -webkit-transform: translateY(-50%) !important;
    -moz-transform: translateY(-50%) !important;
    -ms-transform: translateY(-50%) !important;
    -o-transform: translateY(-50%) !important;
    transform: translateY(-50%) !important;
    top: 90% !important;
    -webkit-transform: rotate(90deg) !important;
    -moz-transform: rotate(90deg) !important;
    -ms-transform: rotate(90deg) !important;
    -o-transform: rotate(90deg) !important;
    transform: rotate(90deg) !important;
  }
}
@media screen and (max-width: 767px) {
  .page-template-template-industries .testimonialsSwiper {
    padding: 0 20px;
  }
  .page-template-template-industries .testimonial-box {
    max-width: 100%;
    width: 100%;
  }
  .page-template-template-services #intro-area-description {
    margin-top: 60px;
  }
  .page-template-template-services #intro-area-description .container {
    padding-inline: 20px;
  }
  .mob-pad-inline-20 {
    padding-inline: 20px;
  }
  #intro-area-description .half-circle-down {
    display: none;
  }
  .search-btn {
    position: unset !important;
  }
  #search-wrapper {
    right: unset;
    left: 50%;
    bottom: -50px;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 9999;
  }
  .autoComplete_wrapper > ul {
    left: 50%;
    transform: translateX(-50%);
  }
  .page-template-template-industries #intro-area-description .intro-inner {
    margin-top: 30px;
  }
  .page-template-template-industries #intro-area-description .intro-inner .desc {
    max-width: 435px;
  }
  .page-template-template-industries #intro-area-description .vertical-line-wrapper {
    top: -85px;
    height: clamp(100px, 15.625vw, 300px);
  }
  #partners .row.pad-inline-medium {
    padding-inline: 20px;
  }
  #testimonials .row.pad-inline-medium {
    padding-inline: 20px;
  }
  #enquiry.pad-inline-medium {
    padding-inline: 20px;
  }
  #port-locations .inner {
    transform: translateX(-20%);
    width: 200%;
  }
  #port-locations .intro-data h2 {
    font-size: 25px;
  }
  #port-locations .intro-data .text-20 {
    font-size: 13px;
    margin-top: 10px;
  }
  #port-locations .intro-section {
    padding: 60px 25px;
  }
  #port-locations .port-box .desc {
    font-size: 13px;
  }
  #port-locations .pin-wrapper {
    width: 10px;
    height: 10px;
    background: rgba(50, 142, 255, 0.5);
    border-radius: 50%;
  }
  #port-locations .pin-wrapper svg {
    display: none;
  }
  #port-locations .master-hotspot.active .pin-wrapper {
    background: #0052AC;
  }
  #home-hero .hero-file-wrapper h1 {
    margin-bottom: 0px;
    line-height: 1.25;
  }
  #home-hero .hero-file-wrapper h1 span:first-child,
  #home-hero .hero-file-wrapper h1 span:nth-child(2),
  #home-hero .hero-file-wrapper h1 span:nth-child(3) {
    padding-left: 0;
    display: block;
    margin-bottom: 0px;
    line-height: 1.25;
  }
  #home-hero .hero-file-wrapper h1 span:first-child {
    margin-bottom: 10px;
  }
  #home-hero .hero-file-wrapper h1 img {
    position: relative;
    left: unset;
  }
  #shipping-agencies .shipping-timeline-wrapper .bold-circle-wrapper {
    max-width: 700px;
    aspect-ratio: 1/1;
  }
  .circle-slide-description.text-40 {
    font-size: clamp(18px, 2.083vw, 40px);
  }
  #shipping-agencies .shipping-timeline-wrapper .bold-circle-wrapper {
    left: -500px;
  }
  .shipping-timeline-wrapper {
    --desc-outer-gap: 62%;
  }
  #shipping-agencies .shipping-timeline-wrapper {
    height: 700px;
  }
  #shipping-agencies .shipping-timeline-wrapper .bold-circle-wrapper-descriptions .bold-circle-active {
    width: 15px;
    height: 15px;
    right: -15.5px;
  }
}
@media screen and (max-width: 625px) {
  #shipping-agencies .shipping-timeline-wrapper .bold-circle-wrapper {
    max-width: 700px;
    aspect-ratio: 1/1;
  }
  .circle-slide-description.text-40 {
    font-size: clamp(18px, 2.083vw, 40px);
  }
  #shipping-agencies .shipping-timeline-wrapper .bold-circle-wrapper {
    left: -400px;
  }
  .shipping-timeline-wrapper {
    --desc-outer-gap: 62%;
  }
  #shipping-agencies .shipping-timeline-wrapper {
    height: clamp(300px, 36.5vw, 700px);
  }
  #shipping-agencies .shipping-timeline-wrapper .bold-circle-wrapper-descriptions .bold-circle-active {
    width: 15px;
    height: 15px;
    right: -15px;
  }
}
@media screen and (max-width: 575px) {
  .mw-362 {
    max-width: 100%;
  }
  .special-title-wrapper .secondLine {
    margin-left: 20px;
  }
  #port-locations .inner {
    transform: translateX(-25%);
    width: 250%;
  }
  #port-locations .port-boxes-wrapper,
  #port-locations .single-port .port-boxes-wrapper,
  #port-locations .single-port #port-locations h2.related-ports {
    padding-inline: 20px;
  }
  #port-locations .text-40 {
    font-size: 25px;
  }
  .single-port .port-details-box {
    max-width: 89%;
    min-width: 89%;
  }
  .page-template-template-ports #port-locations .port-boxes-wrapper .port-box .name {
    padding-top: 0;
  }
  .page-template-template-ports .port-boxes-wrapper.pad-inline-medium {
    padding-inline: 10px !important;
  }
  .home #port-locations .inner {
    transform: translate(-25%, -10%);
  }
  .page-template-template-about-php .modal-dialog #teamModalBio p {
    font-size: 15px;
  }
}
@media screen and (max-width: 499px) {
  #shipping-agencies .shipping-timeline-wrapper .bold-circle-wrapper {
    max-width: 700px;
    aspect-ratio: 1/1;
  }
  #shipping-agencies .shipping-timeline-wrapper .bold-circle-wrapper {
    left: -300px;
  }
  .circle-slide-description.text-40 {
    font-size: 15px;
  }
  .shipping-timeline-wrapper {
    --desc-outer-gap: 62%;
  }
  #shipping-agencies .shipping-timeline-wrapper {
    height: 300px;
  }
  #shipping-agencies .shipping-timeline-wrapper .bold-circle-wrapper-descriptions .bold-circle-active {
    width: 8px;
    height: 8px;
    right: -9px;
  }
}
@media screen and (max-width: 400px) {
  #shipping-agencies .shipping-timeline-wrapper .bold-circle-wrapper {
    max-width: 600px;
    aspect-ratio: 1/1;
  }
  #shipping-agencies .shipping-timeline-wrapper .bold-circle-wrapper {
    left: -250px;
  }
  .shipping-timeline-wrapper {
    --desc-outer-gap: 62%;
  }
  #shipping-agencies .shipping-timeline-wrapper {
    height: clamp(400px, 36.5vw, 700px);
  }
  #port-locations .intro-data .text-20 {
    font-size: 12px;
  }
  #port-locations .inner {
    width: 270%;
    transform: translateX(-26%);
  }
  .home #port-locations .inner {
    transform: translate(-26%, 0%);
  }
  .home #port-locations .ports-wrapper {
    margin-top: -50px;
  }
}