.hero-container {
  position: absolute;

  top: 50%;

  transform: translateY(-50%);

  z-index: 1000;
}

.page-hero {
  height: 350px;

  background-size: cover;

  background-repeat: no-repeat;

  background-position: center;

  border-radius: 50px;

  padding: 50px;

  position: relative;

  overflow: hidden;
}

.page-hero::before {
  content: "";

  z-index: 998;

  background: rgba(0, 0, 0, 0.2);

  position: absolute;

  inset: 0;
}

.page-hero h1 {
  color: #fff;

  font-weight: 600;

  font-style: normal;

  font-size: 30px;

  max-width: 400px;
}

.page-hero h1 em {
  font-style: italic;

  color: var(--greencolour);

  font-weight: 700;
}

.page-subheading p {
  background-color: var(--bluecolour);

  color: #fff;

  padding: 70px 50px 20px;

  margin-top: -50px;

  border-radius: 0 0 50px 50px;

  display: flex;

  align-items: center;

  justify-content: space-between;
}

.page-subheading em strong {
  color: #fff;
}

.page-subheading * {
  font-size: 20px;
}

.page-wrap {
  padding: 100px 0;
}

.normal {
  font-style: normal !important;

  font-weight: 400 !important;
}

.dark-blue {
  color: #0f3862;
}

.blue {
  color: var(--bluecolour);
}

.green {
  color: var(--greencolour);
}

.white {
  color: #fff;
}

.italic {
  font-style: italic !important;
}

.btn-black {
  background-color: #000;

  color: #fff;

  border-radius: 50px;

  padding: 11px 22px;

  position: relative;

  padding-right: 75px;
}

.btn-black::after {
  content: url(https://bermudaforwarders26.je-hosting.co.uk/wp-content/uploads/2026/05/black-btn-after.png);

  position: absolute;

  right: 12px;
}

.btn-blue {
  background: linear-gradient(
    to bottom right,

    #005072 0%,

    #0091d0 50%,

    #c3edff 100%
  );

  color: #fff;

  border-radius: 50px;

  padding: 11px 22px;

  position: relative;

  padding-right: 75px;
}

.btn-blue::after {
  content: url(https://bermudaforwarders26.je-hosting.co.uk/wp-content/uploads/2026/05/btn-blue-after.png);

  position: absolute;

  right: 12px;

  top: 58%;

  transform: translateY(-50%);
}

.btn-blue:hover {
  background: linear-gradient(
    to bottom right,

    #000 0%,

    #005072 50%,

    #0091d0 100%
  );

  color: #fff;
}

.background-section {
  background-repeat: no-repeat;

  height: 1000px;

  background-size: cover;

  background-position: 50% 50%;

  display: flex;

  flex-direction: column;

  justify-content: space-between;
}

.services-box {
  display: flex;

  flex-direction: column;

  margin: 0 10px;
}

.services-img {
  overflow: hidden;

  border-radius: 25px 25px 0 0;
}

.services-desc {
  background: var(--DarkestBlue);

  border-radius: 0 0 25px 25px;

  padding-top: 0;

  margin-top: 0;

  z-index: 99;

  position: relative;

  min-height: 115px;
}

.services-desc .icon-list li {
  color: #fff;

  padding: 20px 0;

  align-items: center;

  justify-content: center;

  font-weight: 600;

  opacity: 1;

  transition: opacity 0.3s ease-in-out;
}

.services-desc .icon-list,
.services-desc p {
  position: absolute;

  top: 20px;

  left: 20px;

  right: 20px;

  margin: 0;
}

.services-desc .icon-list-stationary li {
  color: #fff;

  padding: 20px 0;

  align-items: center;

  justify-content: center;

  font-weight: 600;

  opacity: 1;

  transition: opacity 0.3s ease-in-out;
}

.services-desc .icon-list-stationary,
.services-desc p {
  position: absolute;

  top: 20px;

  left: 20px;

  right: 20px;

  margin: 0;
}

.services-box img {
  display: block;

  width: 100%;

  transform: scale(1.1);

  transition: transform 0.3s ease-in-out;

  aspect-ratio: 380 / 291;
}

.services-box:hover img {
  transform: scale(1);
}

.services-box:hover .services-desc {
  background: linear-gradient(
    to bottom right,

    #005072 0%,

    #0091d0 50%,

    #c3edff 100%
  );
}

.services-desc p {
  color: #fff;

  opacity: 0;

  transition: opacity 0.3s ease-in-out;

  text-align: center;
}

.services-box:hover .services-desc p {
  opacity: 1;
}

.services-box:hover .services-desc .icon-list li {
  opacity: 0;
}

.services-box:hover .services-desc .icon-list.stationary li {
  opacity: 1 !important;
}

.related-services-container {
  display: flex;

  gap: 40px;

  margin: 75px 0;

  justify-content: center;
}

.related-service {
  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 20px;

  position: relative;

  background: #fff;

  border-radius: 25px;

  z-index: 1;

  max-width: 400px;

  padding: 40px;
}

.related-service::before {
  content: "";

  position: absolute;

  inset: 0;

  padding: 3px;

  border-radius: 25px;

  background: linear-gradient(
    to bottom right,

    #005072 0%,

    #0091d0 50%,

    #c3edff 100%
  );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;

  mask-composite: exclude;

  pointer-events: none;
}

.related-service p {
  text-align: center;
}

.footer-awards {
  display: flex;

  align-items: center;

  justify-content: space-around;

  margin: 100px 300px;
}

.footer-links {
  display: flex;

  flex-direction: column;

  align-items: center;

  margin-top: 100px;
}

.footer-link {
  display: flex;

  align-items: center;

  justify-content: space-between;

  max-width: 1175px;

  width: 100%;

  gap: 20px;
}

.footer-link .Button_Center {
  width: 640px;
  justify-content: flex-end;
}

.footer-links hr {
  width: 100%;

  border: 1.5px solid #e4e4e4;

  margin: 40px 0;

  width: 1175px;
}

.link-header {
  font-size: 20px;

  font-weight: 500;

  color: var(--bluecolour);

  margin-bottom: 20px;
}

.related-services-header {
  background: linear-gradient(
    to bottom right,

    #005072 0%,

    #0091d0 50%,

    #c3edff 100%
  );

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

  font-weight: 900;

  text-transform: uppercase;

  font-size: 20px;
}

.large-container {
  max-width: 1300px;
}

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

.gform-page-footer input[type="button"] {
  color: #fff !important;
}

.bf-nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 100;
}

.bf-search-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.bf-search-toggle {
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: inherit;
  padding: 0;
  position: relative;
  z-index: 3;
}

.bf-search-panel {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  transition:
    width 0.35s ease,
    padding 0.35s ease,
    box-shadow 0.35s ease;
  z-index: 2;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.is-inner-header .bf-search-panel {
  width: 40px;
  height: 40px;
  background: var(--bluecolour);
}

.is-inner-header .bf-search-toggle {
  width: 40px;
  height: 40px;
  font-size: 1.25rem;
  color: #fff;
}

.bf-search-wrapper.active .bf-search-panel {
  width: 735px;
  padding: 0 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.bf-search-wrapper.active .bf-search-toggle i {
  opacity: 0;
}

.is-inner-header .bf-search-wrapper.active .bf-search-panel {
  background: #fff;
}

.is-inner-header .bf-search-wrapper.active .bf-search-toggle {
  color: #073146;
}

.home .bf-search-wrapper.active .bf-search-panel {
  width: 765px;
}

.bf-search-panel .search-form {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  transition: opacity 0.2s ease;
  transition-delay: 0s;
}

.bf-search-wrapper.active .search-form {
  opacity: 1;
  transition-delay: 0.15s;
}

.bf-search-panel .search-field {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-size: 1rem;
  padding: 0;
  color: #000;
}

.bf-search-panel .search-submit {
  border: none;
  background: none;
  cursor: pointer;
  font-size: 0.95rem;
  padding: 0;
  color: #000;
  white-space: nowrap;
}

.bf-search-panel label {
  width: 100%;
  margin: 0;
}

#searchsubmit {
  display: none;
}

.search main.intro-content .intro-text {
  padding-top: 200px;
}

.search #ContentWrap {
  padding: 70px 0;
}

.bf-home-hero {
  margin: 0 16px;
}

.vc_tta.vc_tta-accordion
  .vc_tta-controls-icon-position-left.vc_tta-panel-title
  > a {
  color: #fff !important;
  display: flex;
  padding: 20px;
}

.vc_tta-color-grey.vc_tta-style-classic .vc_tta-panel .vc_tta-panel-heading {
  background-color: var(--bluecolour) !important;
  border-color: var(--DarkestBlue) !important;
}

span.vc_tta-title-text {
  font-size: 22px !important;
}

.vc_tta-color-grey.vc_tta-style-classic .vc_tta-controls-icon:before,
.vc_tta-color-grey.vc_tta-style-classic .vc_tta-controls-icon:after {
  border-color: #fff !important;
}

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

.group-heading {
  color: #fff;
  background: #f1573d;
  text-align: center;
}

.group-subheading {
  color: #fff;
  background: var(--bluecolour);
  text-align: center;
}

.group-destination {
  background: #f8e1dd;
  text-align: center;
}

.group-info {
  text-align: center;
}

table th,
table td {
  border: 1px solid #fff;
}

.testimonial-slide {
  background-color: var(--bluecolour);
  text-align: center;
  width: 600px;
  max-width: 600px;
  padding: 50px 20px 70px;
  border-radius: 25px;
}

.testimonials-slider .slick-track {
  display: flex !important;
  justify-content: center;
}

.testimonials-slider .slick-slide {
  display: flex !important;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}

.testimonials-slider {
  width: 600px;
}

.testimonial-slide p {
  color: #fff;
}

.testimonial-slide i {
  font-size: 3rem;
}

.errorpage {
  padding-bottom: 100px;
}

.error404 * {
  text-align: center;
}

.error404 .search-field {
  border: 1px solid grey !important;
  padding: 10px 22px !important;
  border-radius: 25px !important;
  text-align: left !important;
}

.error404 .search-submit {
  background-color: var(--bluecolour) !important;
  color: #fff !important;
  border-radius: 25px !important;
  padding: 10px 22px !important;
  border: 1px solid var(--bluecolour) !important;
}