/*
Theme Name: Mildura
Author: Redstar Media 
Author URI: http://www.redstarmedia.com.au/
Version: 1.0.0
License: Private License
*/

/* -------------------------------------------------------*/

/* Resets */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  line-height: 1;
  text-decoration: none;
  font: inherit;
}

*::before,
*::after {
  box-sizing: border-box;
}

ul,
ol {
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: inherit;
}

img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
}

input,
textarea,
button,
select {
  font: inherit;
}

button {
  border: none;
  /* background-color: transparent; */
  cursor: pointer;
  line-height: 1;
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  background-color: transparent !important;
  -webkit-box-shadow: 0 0 0 30px rgba(0, 0, 0, 0.5) inset !important;
  -webkit-text-fill-color: #fff !important;
  -internal-autofill-selected: transparent;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  transition: background-color 5000s ease-in-out 0s;
}

*:focus {
  outline: none;
}

/* Hide Chrome cast icon on video element */
video::-webkit-media-controls-cast-button {
  display: none;
}

video::-webkit-media-controls-overlay-cast-button {
  display: none !important;
}

video::-webkit-media-controls-start-playback-button:not([disabled]) {
  -webkit-transform: translateX(-10px) !important;
  transform: translateX(-10px) !important;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

em {
  font-style: italic;
}

/* ------------------------------------------------------ */

/* COLORS */

:root {
  --primary-navy: #22405d;
  --primary-blue-dark: #3f8fc2;
  --primary-blue-soft: #5acaf4;
  --primary-orange: #f96932;
  --secondary-orange: #ff9874;
}

/*** FONTS ***/
/* @font-face {
  font-family: "Poppins";
  src: url("fonts/poppins/poppins-regular.woff2") format("woff2"),
    url("fonts/poppins/poppins-regular.woff") format("woff");
  font-weight: normal;
}

@font-face {
  font-family: "Poppins";
  src: url("fonts/poppins/poppins-bold.woff2") format("woff2"),
    url("fonts/poppins/poppins-bold.woff") format("woff");
  font-weight: bold;
} */

/*** HEADINGS ***/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  font-style: normal;
  /* line-height: 1;
  margin: 0; */
  color: var(--primary-navy);
}

h1 {
  font-size: 59px;
}
h2 {
  font-size: 4.5rem;
}
h3 {
  font-size: 4rem;
}
h4 {
  font-size: 3.5rem;
}
h5 {
  font-size: 2.8rem;
}
h6 {
  font-size: 2.5rem;
}

/* @media screen and (max-width: 991px) {
  h1 {
    font-size: 4.7rem;
  }
  h2 {
    font-size: 3.6rem;
  }
  h3 {
    font-size: 40px;
  }
  h4 {
    font-size: 3rem;
  }
  h5 {
    font-size: 2.8rem;
  }
  h6 {
    font-size: 2.5rem;
  }
} */

/*** BUTTONS ***/

/* .btn-lg {
  color: #fff !important;
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 10px 20px;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  background-color: var(--orange-primary);
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
} */

/* .btn-lg:hover {
  color: #fff;
} */

/***/

/* .btn-md {
  color: #fff !important;
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 10px 20px;
  margin-top: 15px;
  font-weight: 600;
  font-style: normal;
  font-size: 2rem;
  text-transform: uppercase;
  background-color: var(--orange-primary);
  border: none !important;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
} */

/* .btn-md::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #af471a;
  z-index: -1;
  border-radius: 30px;
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
} */

/* .btn-md:hover {
  color: #fff;
}

.btn-md:hover::before {
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
} */

/**** BODY *****/

body {
  display: flex;
  position: relative;
  flex-direction: column;
  min-height: 100vh;
  /* color: #353535; */
  font-size: 1.6rem;
  font-family: Arial, Helvetica, sans-serif;
  /* line-height: 1.3; */
  overflow-x: hidden;
}

.page-wrapper {
  flex: 1;
  /* overflow: hidden; */
}

.disable-scroll {
  overflow: hidden;
}

.full-width-container {
  width: calc(100% - 100px);
  margin-inline: auto;
}

@media screen and (max-width: 767px) {
  .full-width-container {
    width: calc(100% - 40px);
  }
}

/*** SLIDE MENU ***/

.slide-menu-container {
  background-color: #fff;
  position: fixed;
  z-index: 200;
  top: 0;
  left: 0;
  width: 270px;
  height: 100%;
  padding: 40px 20px 60px 20px;
  transform: translate(-100%, 0);
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  /* overflow-y: scroll; */
}

@media (orientation: landscape) and (max-device-width: 991px) {
  .slide-menu-container {
    /* background-color:red; */
    overflow-y: scroll;
  }
}

.slide-menu-container.open {
  transform-origin: 0% 0%;
  transform: translate(0, 0);
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  -webkit-transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  -moz-transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  -ms-transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  -o-transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
}

.slide-menu-container .close-btn {
  position: absolute;
  top: 35px;
  right: 20px;
  width: 25px;
  height: 25px;
  padding-left: 4px;
  background-color: var(--primary-navy);
  cursor: pointer;
}

.slide-menu-container .close-btn span {
  background-color: #fff;
  width: 70%;
  height: 2px;
  display: block;
  position: absolute;
  top: 48%;
}

/* .slide-menu-container .close-btn:hover {
  background-color: var(--orange-primary);
} */

.slide-menu-container .close-btn:hover span {
  /* background:var(--green-primary); */
}

.slide-menu-container .close-btn span:nth-child(1) {
  transform: rotate3d(0, 0, 1, 45deg);
}

.slide-menu-container .close-btn span:nth-child(2) {
  transform: rotate3d(0, 0, 1, -45deg);
}

/* .slide-menu-container ul.social-media-links {
  margin-top: 20px;
} */

.slide-menu-container .slide-menu-logo {
  display: block;
  margin-top: -13px;
  width: 160px;
}

/***/

.slide-menu-container ul.social-media-links li a i {
  background-color: var(--blue-primary);
}

.slide-menu-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: all 0.4s;
  visibility: hidden;
  opacity: 0;
}

.slide-menu-overlay.active {
  visibility: visible;
  opacity: 1;
  transition: all 0.4s;
  z-index: 9;
}

.slide-menu-container .social-media-links ul {
  list-style: none;
  display: flex;
  gap: 15px;
  justify-content: center;
  border-top: 1px solid var(--primary-navy);
  padding-top: 20px;
}

.slide-menu-container .social-media-links ul li a i {
  font-size: 2.6rem;
  color: var(--primary-navy);
}

/***** DESKTOP MAIN NAV *****/

.nav-bar {
  position: absolute;
  width: 100%;
  z-index: 10;
  padding-block: 60px;
  /* min-height: 180px; */
  /* margin-bottom: -180px; */
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  /* background-color: #3b9aa7; */
}

@media screen and (max-width: 1280px) {
  .nav-bar {
    padding-block: 30px;
  }
}

@media screen and (max-width: 767px) {
  .nav-bar {
    padding-block: 20px;
  }
}

/*** sticky nav ***/

/* .nav-bar.sticky {
  position: fixed;
  width: 100%;
  background-color: #fff;
  top: 0;
  min-height: 130px;
  box-shadow: 0px 0px 9px 4px rgba(0, 0, 0, 0.1);
  z-index: 150;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
} */

/* @media (max-width:991px) {
	.nav-bar{
		position: fixed;
		z-index: 999;
		width:100%;
		top:0;
	}
} */

.nav-bar .full-width-container {
  display: flex;
  gap: 40px;
  /* justify-content: space-evenly; */
  align-items: center;
}

.nav-bar a.logo {
  width: 260px;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}

@media screen and (max-width: 1199px) {
  .nav-bar a.logo {
    width: 250px;
  }
}

@media screen and (max-width: 767px) {
  .nav-bar a.logo {
    width: 180px;
  }
}

/* @media screen and (max-width: 1199px) {
  .nav-bar .social-media-links {
    display: none;
  }
} */

.nav-bar.sticky a.logo {
  width: 240px;
}

/***/

.navigation-main {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: end;
  gap: 10px 2.2vw;
  flex-wrap: wrap;
  /* flex-grow: 1; */
  text-transform: uppercase;
  /* position: relative; */
  /* z-index: 99; */
  line-height: 1;
}

@media screen and (min-width: 1400px) {
  .navigation-main {
    column-gap: 40px;
  }
}

.navigation-main li a {
  color: #fff;
  font-size: 1.7rem;
  font-style: normal;
  font-weight: 600;
  transition: all 0.4s;
  display: block;
  white-space: nowrap;
  padding: 3px 0px;
  position: relative;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}

@media screen and (min-width: 1400px) {
  .navigation-main li a {
    font-size: 1.8rem;
  }
}

.navigation-main li > a:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  opacity: 1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s;
}

.navigation-main li a:hover {
  /* color: var(--primary-navy); */
  /* text-shadow: 0px 0px 10px #fff; */
}

.navigation-main li a:hover::after {
  opacity: 1;
  transform: scaleX(1);
  transform-origin: left;
}

/***/

.navigation-main li {
  display: inline-block;
  position: relative;
  text-align: left;
}

.navigation-main ul {
  min-width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  position: absolute;
  top: -999em;
  left: -999em;
}

.navigation-main ul li a {
  font-weight: normal;
}

.navigation-main li.focus > ul,
.navigation-main li:hover > ul {
  top: auto;
  left: auto;
}

.navigation-main li li {
  display: block;
}

.navigation-main li li.focus > ul,
.navigation-main li li:hover > ul {
  left: 100%;
  top: 0;
}

.navigation-main .current-menu-item > a {
  /* color: var(--orange-primary); */
}

.navigation-main .menu-item-has-children > a {
  /* padding-left: 10px; */
  padding-right: 20px;
  padding-bottom: 10px;
}

.navigation-main .menu-item-has-children > a::before {
  content: "";
  position: absolute;
  right: 0px;
  top: 45%;
  transform: translateY(-55%);
  border: 4px solid transparent;
  border-top-color: currentColor;
}

/* .navigation-main ul .menu-item-has-children > a::before {
  right: 2px;
  border-top-color: transparent;
  border-left-color: currentColor;
} */

.navigation-main ul {
  background-color: var(--primary-navy);
  padding: 10px 10px 15px 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0px 0px 2px #000000;
}

.navigation-main .sub-menu li a {
  font-size: 1.5rem;
}

.navigation-main .sub-menu li a:hover {
  color: #fff;
  /* background-color: #0b3439; */
}

.menu-wrapper {
  flex: 1;
}

@media screen and (max-width: 1340px) {
  .menu-wrapper {
    display: flex;
  }
}

/* .primary-menu-container.desktop {
  width: 100%;
} */

@media screen and (max-width: 1340px) {
  .primary-menu-container.desktop {
    display: none;
  }
}

/*** Hamburger toggle btn ***/

.hamburger-toggle-btn {
  cursor: pointer;
  display: none;
  margin-left: auto;
}

@media screen and (max-width: 1340px) {
  .hamburger-toggle-btn {
    display: inline-block;
  }
}

.hamburger-toggle-btn span {
  display: block;
  width: 30px;
  height: 3px;
  margin-top: 4px;
  border-radius: 2px;
  background-color: #fff;
  transition: all 0.3s;
}

.hamburger-toggle-btn span:first-child {
  margin-top: 0;
}

.hamburger-toggle-btn:hover span {
  /* margin-top: 4px; */
  background-color: var(--primary-navy);
}

/*** MOBILE SIDE MENU ***/

.menu-top-menu-container {
  margin-top: 40px;
  text-align: left;
}

.menu-top-menu-container li {
  list-style-type: none;
}
/* do not remove - this makes the submenu open / close */

.menu-top-menu-container ul ul {
  display: none;
}

.menu-top-menu-container li.active > ul {
  display: block;
}

/* first level menu item */

.menu-top-menu-container > ul > li > a {
  position: relative;
  display: block;
  background-color: var(--blue-primary);
  /*background: linear-gradient(#dbedcc, #bfcfb3);*/
  padding: 15px;
  /* margin-top: 5px; */
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--primary-navy);
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

.menu-top-menu-container > ul > li > a:hover {
  color: #fff;
  background-color: var(--primary-navy);
}

/* second level menu item */

.menu-top-menu-container ul ul {
  padding: 7px 0 4px 0;
}

.menu-top-menu-container ul ul {
  display: none !important;
}

.menu-top-menu-container ul ul li a {
  color: white;
  text-decoration: none;
  font-size: 13px;
  line-height: 27px;
  display: block;
  padding: 0 15px;
  transition: all 0.15s;
  position: relative;
}

.menu-top-menu-container ul ul li a:hover {
  background: #003545;
  border-left: 5px solid lightgreen;
}
/* third level menu item */

.menu-top-menu-container ul ul ul {
  margin-left: 15px;
  border-left: 1px dotted rgba(254, 254, 254, 0.5);
}
/* arrows after closed / open menu items that have children */

.menu-top-menu-container a:not(:only-child):after {
  position: absolute;
  right: 12px;
  content: "\207A";
  top: 10px;
  font-size: 26px;
  display: none;
}

.menu-top-menu-container .active > a:not(:only-child):after {
  content: "\207B";
  top: 10px;
  font-size: 26px;
  display: none;
}

/*** PAGE HEADER ***/

.page-header {
  position: relative;
  /* height: 1065px; */
  /* height: 90vw; */
  height: 60vw;
  min-height: 385px;
  background-color: #ccc;
}

body.home .page-header {
  min-height: 320px;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40vw;
  height: 60%;
  background: #e4622e;
  background: linear-gradient(
    270deg,
    rgba(228, 98, 46, 1) 0%,
    rgba(242, 162, 131, 1) 100%
  );
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  z-index: 2;
}

.page-header::after {
  content: "";
  position: absolute;
  inset: 0 0 -1px 0;
  width: 100%;
  /* height: 100%; */
  background: #ffffff;
  /* clip-path: polygon(0 0, 100% 100%, 0 100%);*/
  clip-path: polygon(100% 60%, 0% 100%, 100% 100%);
  z-index: 1;
}

@media screen and (max-width: 991px) {
  .page-header::after {
    opacity: 0.6;
  }
}

.page-header .overlay {
  position: absolute;
  width: 100%;
  inset: 0;
  background-color: #000;
  z-index: 1;
  opacity: 0.5;
}

.page-header img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.page-header img.front {
  z-index: 2;
  object-fit: unset;
  width: 85%;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.page-header .content-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: 3;
}

.page-header .content-wrapper .content {
  width: calc(100% - 30px);
  /* max-width: 760px; */
  margin-inline: auto;
  /* background-color: red; */
  margin-top: 15px;
  text-align: center;
  color: #fff;
  /* text-wrap: pretty; */
}

@media screen and (min-width: 1400px) {
  .page-header .content-wrapper .content {
    /* background-color: red; */
    margin-top: 60px;
  }
}

@media screen and (max-width: 1280px) {
  .page-header .content-wrapper .content {
    /* background-color: red; */
    margin-top: 0;
  }
}

@media screen and (max-width: 767px) {
  .page-header .content-wrapper .content {
    /* background-color: red; */
    margin-top: 25px;
  }
}

/* @media screen and (max-width: 640px) {
  .page-header .content-wrapper .content {
    margin-top: 20px;
  }
} */

.page-header .content-wrapper .content h2 {
  color: #fff;
  text-transform: uppercase;
  text-shadow: 0px 0px 25px rgba(0, 0, 0, 0.6);
  font-size: clamp(3rem, 4vw, 8rem);
}

.page-header .content-wrapper .content h1 {
  color: #fff;
  text-transform: uppercase;
  font-size: clamp(2.7rem, 6vw, 10rem);
  line-height: 0.8;
  white-space: nowrap;
  text-shadow: 0px 0px 25px rgba(0, 0, 0, 0.6);
}

@media screen and (max-width: 991px) {
  .page-header .content-wrapper .content h1 {
    max-width: 90vw;
    margin-inline: auto;
  }
}

.home .page-header .content-wrapper .content h1 {
  font-size: clamp(3.2rem, 7vw, 10rem);
}

.page-header .content-wrapper .content p {
  width: calc(100% - 40px);
  max-width: 860px;
  margin-top: 20px;
  margin-inline: auto;
  font-size: clamp(2.1rem, 0.8vw, 3.2rem);
  line-height: 1.3;
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.9);
  letter-spacing: 0.06rem;
}

@media screen and (max-width: 991px) {
  .page-header .content-wrapper .content p {
    max-width: 80vw;
    font-size: 2.1rem;
    font-size: clamp(1.8rem, 2.2vw, 2.1rem);
    line-height: 1.2;
  }
}

.page-header .content-wrapper .buttons-wrapper {
  display: flex;
  justify-content: center;
  gap: 35px;
  margin-top: 180px;
}

@media screen and (max-width: 1280px) {
  .page-header .content-wrapper .buttons-wrapper {
    margin-top: 120px;
  }
}

@media screen and (max-width: 767px) {
  .page-header .content-wrapper .buttons-wrapper {
    /* display: inline-flex;
    flex-direction: column; */
    margin-top: 80px;
    gap: 15px;
    /* margin-left: 15px; */
  }
}

.traffic-btn {
  position: relative;
  color: var(--primary-navy);
  background-color: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: bold;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .traffic-btn {
    padding: 8px 8px;
    font-size: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .traffic-btn span {
    display: none;
  }
}

.traffic-btn:hover {
  background-color: var(--primary-navy);
  color: #fff;
}

.traffic-btn i {
  color: #fff;
  background-color: var(--primary-navy);
  padding: 7px 5px;
  border-radius: 5px;
  margin-right: 10px;
}

.traffic-btn:hover i {
  background-color: #fff;
  color: var(--primary-navy);
}

@media screen and (max-width: 767px) {
  .traffic-btn i {
    margin-right: 0;
  }
}

.traffic-btn:nth-child(2) {
  color: #fff;
  background-color: var(--primary-navy);
}

.traffic-btn:nth-child(2):hover {
  color: var(--primary-navy);
  background-color: #fff;
}

.traffic-btn:nth-child(2) i {
  color: var(--primary-navy);
  background-color: #fff;
  /* padding: 7px 5px; */
  /* border-radius: 5px; */
  /* margin-right: 10px; */
}

.traffic-btn:nth-child(2):hover i {
  color: #fff;
  background-color: var(--primary-navy);
}

.page-header .content-wrapper .call-to-action {
  display: flex;
  justify-content: center;
  gap: 20px;
  text-align: center;
  color: #fff;
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .page-header .content-wrapper .call-to-action {
    gap: 10px;
  }
}

.page-header .content-wrapper .call-to-action a {
  text-transform: uppercase;
  border: 1px solid #fff;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 3.2rem;
  font-size: clamp(1.4rem, 2vw, 2.4rem);
  font-weight: bold;
  transition: all 0.3s;
}

.page-header .content-wrapper .call-to-action a:hover {
  background-color: var(--primary-navy);
  /* color: var(--primary-blue-soft); */
  border-color: var(--primary-navy);
}

.guide {
  z-index: 1;
  position: absolute;
  inset: 0;
  width: 100%;
  opacity: 0.5;
  /* height: 500px; */
  display: none;
}

/***/

.page-header .content-wrapper .social-media-links {
  display: flex;
  justify-content: end;
  margin-top: -55px;
}

@media screen and (max-width: 767px) {
  .page-header .content-wrapper .social-media-links {
    display: none;
  }
}

.page-header .content-wrapper .social-media-links ul {
  list-style: none;
  color: #fff;
  font-size: 2.2rem;
}

.page-header .content-wrapper .social-media-links ul li a {
  transition: all 0.3s;
}

.page-header .content-wrapper .social-media-links ul li a:hover {
  color: var(--primary-navy);
}

/*** HOMEPAGE ***/

.carousel-home-section {
  position: relative;
  width: calc(100% - 30px);
  max-width: 950px;
  margin-inline: auto;
  z-index: 4;
  /* margin-top: -28vw; */
}

@media screen and (max-width: 992px) {
  .carousel-home-section {
    margin-top: -24vw;
  }
}

@media screen and (min-width: 992px) {
  .carousel-home-section {
    margin-top: -22vw;
  }
}

.carousel-home-section .swiper-carousel {
  position: relative;
}

.carousel-home-section .swiper-carousel .navigation-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  gap: 300px;
  pointer-events: none;
}

@media screen and (max-width: 991px) {
  .carousel-home-section .swiper-carousel .navigation-wrapper {
    gap: 30vw;
  }
}

.carousel-home-section .swiper-carousel .swiper-slide {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #007db7;
  color: #fff;
  height: 300px;
  border-radius: 15px;
  overflow: hidden;
}

@media screen and (max-width: 991px) {
  .carousel-home-section .swiper-carousel .swiper-slide {
    height: 35vw;
  }
}

.carousel-home-section .swiper-carousel .swiper-slide::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  background-color: #0e2849;
  z-index: -1;
  opacity: 0.5;
}

.carousel-home-section .swiper-carousel .swiper-slide .bg-image {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  object-fit: cover;
  z-index: -1;
  transition: all 0.5;
}

.carousel-home-section .swiper-carousel .swiper-slide-active::after {
  opacity: 0.8;
}

.carousel-home-section .swiper-carousel .swiper-slide-active .bg-image {
  filter: grayscale();
  mix-blend-mode: luminosity;
}

.carousel-home-section .swiper-slide .content-wrapper .title {
  font-size: 5rem;
  font-size: clamp(1.6rem, 6vw, 5rem);
  transition: all 0.3s;
  color: #fff;
}

.carousel-home-section .swiper-slide .content-wrapper .title:hover {
  transform: scale(1.05);
}

.carousel-home-section .navigation-wrapper .swiper-carousel-button-prev,
.carousel-home-section .navigation-wrapper .swiper-carousel-button-next {
  /* position: static; */
  /* --swiper-navigation-size: 20px; */
  /* --swiper-navigation-top-offset: none; */
  /* --swiper-navigation-sides-offset: 10px; */
  /* --swiper-navigation-color: #ad8b4b; */
  --arrow-size: 35px;
  width: var(--arrow-size);
  height: var(--arrow-size);
  border: 1px solid #ffffff;
  border-radius: 50%;
  pointer-events: all;
  color: #fff;
  text-align: center;
  line-height: var(--arrow-size);
  transition: all 0.3s;
}

@media screen and (max-width: 991px) {
  .carousel-home-section .navigation-wrapper .swiper-carousel-button-prev,
  .carousel-home-section .navigation-wrapper .swiper-carousel-button-next {
    --arrow-size: 20px;
    width: var(--arrow-size);
    height: var(--arrow-size);
    line-height: var(--arrow-size);
    font-size: 1rem;
  }
}

.carousel-home-section .navigation-wrapper .swiper-carousel-button-prev:hover,
.carousel-home-section .navigation-wrapper .swiper-carousel-button-next:hover {
  background-color: #ffffff;
  color: var(--primary-navy);
}

/*** PAGES ***/

/*** SECTIONS ***/

.section-heading {
  width: calc(100% - 40px);
  max-width: 850px;
  margin-inline: auto;
}

@media screen and (min-width: 992px) {
  .section-heading:first-child {
    padding-top: 0;
  }
}

.section-heading h2 {
  color: var(--primary-navy);
  text-align: center;
  text-transform: uppercase;
  font-size: 50px;
  font-size: clamp(3.2rem, 5vw, 5.4rem);
  text-wrap: balance;
}

/*** TWO COLUMNS PARKING TRANSPORT - SECTION ***/
.two-col-wrapper .container {
  display: flex;
  gap: 50px;
  /* color: #808080; */
}

@media screen and (max-width: 767px) {
  .two-col-wrapper .container {
    display: block;
  }
}

.two-col-wrapper table th {
  text-transform: uppercase;
  font-weight: bold;
  padding-bottom: 10px;
  vertical-align: top;
  width: 33.33%;
  color: var(--primary-navy);
}

.two-col-wrapper table tr {
  vertical-align: top;
}

/* .two-col-wrapper table tr:not(:first-child) {
  color: red;
  margin-top: 100px;
} */

.two-col-wrapper table th:first-child {
  padding-right: 5px;
  /* width: fit-content; */
  /* width: 25%; */
  min-width: 160px;
}

.two-col-wrapper .left-col {
  width: calc(50% - 50px);
}

.two-col-wrapper .right-col {
  width: calc(50%);
}

@media screen and (min-width: 768px) {
  .two-col-wrapper .right-col {
    border-left: 1px solid var(--primary-blue-soft);
    padding-left: 40px;
  }
}

/* .two-col-wrapper .right-col {
  margin-top: 40px;
} */

@media screen and (max-width: 767px) {
  .two-col-wrapper .left-col,
  .two-col-wrapper .right-col {
    width: auto;
  }

  .two-col-wrapper .right-col {
    margin-top: 25px;
  }
}

/* @media screen and (max-width: 991px) {
  .two-col-wrapper .right-col {
    margin-top: 0;
    z-index: 1;
  }
} */

@media screen and (min-width: 992px) {
  .two-col-wrapper .right-col {
    margin-top: -11vw;
    z-index: 1;
  }
}

.two-col-wrapper h2 {
  font-size: 3.4rem;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  margin-bottom: 15px;
}

.two-col-wrapper ul {
  margin-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

/*** HERO SECTION ***/

/*** DESTINATIONS CAROUSEL - SECTION ***/

.destinations-carousel {
  /* background-color: rgb(85, 93, 214); */
  /* min-height: 500px; */
  position: relative;
}

.destinations-carousel::before,
.destinations-carousel::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  /* inset: 0; */
  opacity: 0.8;
  z-index: 2;
  pointer-events: none;
}

.destinations-carousel::before {
  background: url(img/clouds-bg-1.png) no-repeat;
  background-size: 300px;
  top: 20;
}

@media screen and (max-width: 767px) {
  .destinations-carousel::before {
    background-size: 180px;
  }
}

.destinations-carousel::after {
  background: url(img/clouds-bg-2.png) no-repeat right bottom;
  background-size: 300px;
  bottom: 50px;
}

@media screen and (max-width: 767px) {
  .destinations-carousel::after {
    background-size: 180px;
  }
}

.swiper-destination .swiper-wrapper .swiper-slide {
  position: relative;
  display: flex;
  padding-inline: 15px;
  align-items: center;
  /* background-color: #649cad; */
  background: linear-gradient(#ff997481, var(--primary-orange));
  height: 35vw;
  height: clamp(300px, 35vw, 600px);
  border-radius: 20px;
  overflow: hidden;
  color: #fff;
  text-align: center;
  transition: all 0.5s;
}

.swiper-destination .swiper-wrapper .swiper-slide:hover {
  border: 1px #fff solid;
}

@media screen and (max-width: 890px) {
  .swiper-destination .swiper-wrapper .swiper-slide {
    height: 80vw;
  }
}

/* .swiper-destination .swiper-wrapper .swiper-slide::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  background: linear-gradient(#ff997481, var(--primary-orange));
  z-index: -2;
  transition: all 0.3s;
  display: none;
} */

.swiper-destination .swiper-wrapper .swiper-slide .bg-image {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  object-fit: cover;
  z-index: -1;
  /* -webkit-filter: grayscale(100%);
  filter: grayscale(100%); */
  transition: all 0.5s;
  /* opacity: 0.5; */
}

.swiper-destination .swiper-wrapper .swiper-slide:hover .bg-image {
  mix-blend-mode: luminosity;
  opacity: 0.3;
}

.swiper-destination .swiper-wrapper .swiper-slide .content-wrapper {
  position: relative;
  width: 100%;
}

.swiper-destination .swiper-wrapper .swiper-slide .content-wrapper .title {
  color: #fff;
  font-size: 5rem;
  font-size: clamp(2rem, 3vw, 5rem);
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 890px) {
  .swiper-destination .swiper-wrapper .swiper-slide .content-wrapper .title {
    font-size: 7vw;
    /* font-size: clamp(2rem, 3vw, 5rem); */
  }
}

.swiper-destination .swiper-wrapper .swiper-slide .slide-btn {
  border: 2px solid #fff;
  border-radius: 15px;
  text-transform: uppercase;
  padding: 10px 30px;
  margin-top: 0px;
  font-size: 1.2rem;
  font-size: clamp(1.2rem, 1.6vw, 1.8rem);
  white-space: nowrap;
  transition: all 0.5s;
  display: inline-block;
  opacity: 0;
}

.swiper-destination .swiper-wrapper .swiper-slide:hover .slide-btn {
  margin-top: 10px;
  opacity: 1;
}

.destinations-carousel .navigation-wrapper {
  width: calc(100% - 30px);
  max-width: 100px;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}

.destinations-carousel .navigation-wrapper .swiper-button-prev,
.destinations-carousel .navigation-wrapper .swiper-button-next {
  position: static;
  --swiper-navigation-size: 20px;
  --swiper-navigation-top-offset: none;
  --swiper-navigation-sides-offset: 10px;
  --swiper-navigation-color: #fff;
  width: 35px;
  height: 35px;
  border: 1px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}

.destinations-carousel .navigation-wrapper .swiper-button-prev:hover,
.destinations-carousel .navigation-wrapper .swiper-button-next:hover {
  color: var(--primary-navy);
  border-color: var(--primary-navy);
}

.destinations-carousel .navigation-wrapper .swiper-button-prev::after,
.destinations-carousel .navigation-wrapper .swiper-button-next::after {
  content: "";
}

.destinations-carousel .navigation-wrapper .swiper-button-prev {
  left: unset;
}

.destinations-carousel .navigation-wrapper .swiper-button-next {
  right: unset;
}

/*** CORPORATE GRID - SECTION ***/

.corporate-grid-wrapper {
  width: calc(100% - 40px);
  max-width: 1100px;
  margin-inline: auto;
  /* margin-top: calc(18vw * -1); */
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 991px) {
  .corporate-grid-wrapper {
    margin-top: calc(10vw * -1);
  }
}

.corporate-grid {
  --grid-gap-col: 80px;
  --border-offset: calc((var(--grid-gap-col) / 2));

  display: grid;
  /* grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); */
  grid-template-columns: repeat(3, 1fr);
  gap: 100px var(--grid-gap-col);
  overflow: hidden;
}

@media screen and (max-width: 991px) {
  .corporate-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .corporate-grid {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 30px;
  }
}

.corporate-grid .grid-box .profile-image {
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 991px) {
  .corporate-grid .grid-box .profile-image {
    padding-inline: 60px;
  }
}

.corporate-grid .grid-box .content {
  position: relative;
  margin-top: 30px;
}

.corporate-grid .grid-box .content::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(var(--border-offset) * -1);
  width: 2px;
  height: 100%;
  background-color: #b8cad9;
}

.corporate-grid .grid-box .content .profile-name > * {
  font-size: 3.2rem;
  font-size: clamp(3.2rem, 3.4vw, 3.2rem);
}

.corporate-grid .grid-box .content .title {
  font-size: 1.8rem;
  /* font-weight: lighter; */
  color: var(--primary-navy);
  margin-top: -7px;
  /* font-size: clamp(3.2rem, 3.4vw, 3.2rem); */
}

.corporate-grid .grid-box .content .bio {
  overflow: hidden;
  /* text-overflow: ellipsis; */
  height: 100px;
  transition: all 0.5s;
}

.corporate-grid .grid-box .content .bio.expanded {
  height: unset;
}

.corporate-grid .grid-box .content .read-more-btn {
  color: var(--primary-navy);
  font-weight: bold;
  cursor: pointer;
  text-transform: uppercase;
  display: inline-block;
  margin-top: 10px;
  /* background-color: var(--primary-navy);
  color: #fff;
  padding: 10px 12px;
  border-radius: 5px;
  font-size: 1.4rem; */
}

.corporate-grid .grid-box .content .read-more-btn.less {
  position: relative;
}

/* .corporate-grid .grid-box .content .read-more-btn.less::after {
  content: "Read Less";
  position: absolute;
  visibility: visible;
  top: 0;
  left: 0;
} */

/*** FACILITIES & SERVICES - SECTION ***/

.facilities-services {
  width: calc(100% - 30px);
  max-width: 1200px;
  margin-inline: auto;
  /* padding-inline: 20px; */
}

@media screen and (max-width: 1040px) {
  .facilities-services {
    max-width: 300px;
  }
}

.facilities-services .cards-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media screen and (max-width: 1040px) {
  .facilities-services .cards-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .facilities-services .cards-wrapper {
    gap: 15px;
  }
}

.facilities-services .cards-wrapper .card-item .front {
  overflow: hidden;
  position: relative;
  height: 40vw;
  max-height: 550px;
  border-radius: 15px;
}

@media screen and (max-width: 1040px) {
  .facilities-services .cards-wrapper .card-item .front {
    height: 123vw;
    max-height: 550px;
  }
}

.facilities-services .cards-wrapper .card-item .front .img-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  object-fit: cover;
  /* mix-blend-mode: overlay; */
  transition: all 0.5s;
}

.facilities-services .cards-wrapper .card-item .front .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  /* background-color: red; */
  background: linear-gradient(#ff997481, var(--primary-orange));
  transition: all 0.5s;
  align-content: center;
  text-align: center;
  opacity: 0;
  overflow: hidden;
}

.facilities-services .cards-wrapper .card-item .overlay h3 {
  color: #fff;
  font-size: 3.8rem;
  font-size: clamp(2rem, 8vw, 3.8rem);
  margin-top: 10px;
  transition: all 0.5s;
  /* white-space: nowrap; */
}

.facilities-services .cards-wrapper .card-item:hover .overlay {
  opacity: 1;
}

.facilities-services .cards-wrapper .card-item:hover .img-bg {
  mix-blend-mode: overlay;
  transform: scale(1.02);
}

.facilities-services .cards-wrapper .card-item:hover .overlay h3 {
  margin-top: 0;
}

.facilities-services .cards-wrapper .card-item .back {
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(#ff9974bb, var(--primary-orange));
  border-radius: 15px;
  height: 100%;
  overflow: hidden;
}

.facilities-services .cards-wrapper .card-item .back .content {
  padding: 20px;
  color: #fff;
}

@media screen and (min-width: 1199px) {
  .facilities-services .cards-wrapper .card-item .back .content p {
    font-size: 1.8rem;
  }
}

.flip-container {
  perspective: 1000px;
}

.flip-card {
  transform-style: preserve-3d;
  transition: transform 0.6s;
  /* cursor: pointer; */
}

.flip-card .front,
.flip-card .back {
  backface-visibility: hidden;
}

.flip-card .back {
  transform: rotateY(180deg);
}

/*** MAP - SECTION ***/

.interactive-map {
  position: relative;
  z-index: 1;
  margin-top: -20vw;
  filter: drop-shadow(5px 5px 20px rgba(0, 0, 0, 0.7));
}

@media screen and (max-width: 991px) {
  .interactive-map {
    margin-top: -19vw;
  }
}

@media screen and (max-width: 767px) {
  .interactive-map {
    margin-top: -9vw;
  }
}

/*** PARKING MAP - SECTION ***/

.parking-map {
  width: calc(100% - 30px);
  max-width: 700px;
  margin-inline: auto;
  text-align: center;
}

.parking-map .map-thumb {
  margin-top: 15px;
  margin-inline: auto;
  cursor: zoom-in;
}

/*** ACCESSIBILITY - SECTION ***/

.accessibility-section {
  width: calc(100% - 30px);
  max-width: 1200px;
  margin-inline: auto;
}

@media screen and (max-width: 1220px) {
  .accessibility-section {
    max-width: 900px;
  }
}

.accessibility-section .cards-wrapper {
  display: flex;
  justify-content: center;
  /* flex-wrap: wrap; */
  gap: 30px;
}

@media screen and (max-width: 1220px) {
  .accessibility-section .cards-wrapper {
    flex-wrap: wrap;
  }
}

.accessibility-section .cards-wrapper .card-item {
  width: calc(33.333% - 15px);
  aspect-ratio: 4/3;
  border-radius: 15px;
  background-color: #ffffff;
}

@media screen and (max-width: 1220px) {
  .accessibility-section .cards-wrapper .card-item {
    width: calc(50% - 15px);
    aspect-ratio: 4/3;
  }
}

@media screen and (max-width: 820px) {
  .accessibility-section .cards-wrapper .card-item {
    width: calc(100% - 30px);
    max-width: 500px;
    flex-wrap: nowrap;
    min-height: 330px;
  }
}

.accessibility-section .cards-wrapper .card-item .front {
  position: relative;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 15px;
  overflow: hidden;
}

.accessibility-section .cards-wrapper .card-item .front .overlay {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}

.accessibility-section .cards-wrapper .card-item .front .overlay h3 {
  font-size: 2rem;
  font-weight: normal;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.2);
  border: 1px solid #fff;
  padding: 10px 15px;
  border-radius: 10px;
  min-width: 130px;
  text-align: center;
}

.accessibility-section .cards-wrapper .card-item .front .img-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  object-fit: cover;
}

.accessibility-section .cards-wrapper .card-item .back {
  background: linear-gradient(#ff9974bb, var(--primary-orange));
  backface-visibility: hidden;
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 15px;
}

.accessibility-section .cards-wrapper .card-item .back .content {
  padding: 20px;
  color: #fff;
}

.accessibility-section .cards-wrapper .card-item .back .content a:hover {
  color: var(--primary-navy);
}

.accessibility-section .flip-card:hover {
  transform: rotateY(180deg);
}

/*** CARDS - SECTION ***/
.cards-section {
  width: calc(100% - 30px);
  max-width: 1200px;
  margin-inline: auto;
}

.cards-section .cards-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  gap: 40px;
}

@media screen and (max-width: 1199px) {
  .cards-section .cards-wrapper {
    gap: 15px;
  }
}

@media screen and (max-width: 1085px) {
  .cards-section .cards-wrapper {
    grid-template-columns: 1fr;
  }
}

.cards-section .cards-wrapper .card-item {
  /* background-color: #ccc; */
  height: 38vw;
  max-height: 550px;
}

@media screen and (max-width: 1199px) {
  .cards-section .cards-wrapper .card-item {
    /* background-color: #ccc; */
    height: 44vw;
  }
}

@media screen and (max-width: 1085px) {
  .cards-section .cards-wrapper .card-item {
    width: 100%;
    max-width: 300px;
    height: 510px;
    margin-inline: auto;
  }
}

.cards-section .cards-wrapper .card-item .front {
  position: relative;
  backface-visibility: hidden;
  overflow: hidden;
  border-radius: 20px;
  width: 100%;
  height: 100%;
}

.cards-section .cards-wrapper .card-item .img-bg {
  background-color: #ccc;
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  object-fit: cover;
  transition: all 0.5s;
  /* z-index: 0; */
}

.cards-section .cards-wrapper .card-item .overlay {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  /* background-color: rgba(215, 33, 46, 0.5); */
  inset: 0;
  opacity: 0;
  transition: all 0.5s;
  /* display: none; */
  /* z-index: 1; */
}

.cards-section .cards-wrapper .card-item .overlay .title-wrapper {
  border-radius: 25%;
  background-color: #d7212e;
  padding: 40px 10px;
  min-width: 35%;
  text-align: center;
  /* max-width: 100px;
  */
}

@media screen and (max-width: 767px) {
  .cards-section .cards-wrapper .card-item .overlay .title-wrapper {
    padding-block: 20px;
    min-width: 60%;
  }
}

.cards-section .cards-wrapper .card-item .overlay h3 {
  color: #fff;
  text-transform: uppercase;
  font-size: 3rem;
  font-size: clamp(1.6rem, 2vw, 3rem);
}

.cards-section .cards-wrapper .card-item .overlay img.logo {
  width: 40%;
  height: auto;
  border-radius: 15px;
}

/* @media screen {
  .cards-section .cards-wrapper .card-item .overlay h3 {
    font-size: 3rem;
  }
} */

.cards-section .cards-wrapper .card-item:hover .overlay {
  opacity: 1;
}

.cards-section .cards-wrapper .card-item:hover .img-bg {
  transform: scale(1.03);
}

.cards-section .cards-wrapper .card-item .back {
  color: #fff;
  background: linear-gradient(#ff9974bb, var(--primary-orange));
  backface-visibility: hidden;
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 20px;
  padding: 25px;
}

.cards-section .cards-wrapper .card-item .back a[href*="tel"]::before {
  content: "\f095";
  font-family: "fontAwesome";
  margin-right: 7px;
}

.cards-section .cards-wrapper .card-item .back a[href*="http"]::before {
  content: "\f0ac";
  font-family: "fontAwesome";
  margin-right: 7px;
}

.cards-section .cards-wrapper .card-item .back a:hover {
  color: var(--primary-navy);
}

/*** FAQ - SECTION ***/

.project-cards {
  width: calc(100% - 30px);
  max-width: 1060px;
  margin-inline: auto;
}

@media screen and (min-width: 1400px) {
  .project-cards {
    max-width: 1160px;
  }
}

.project-cards .cards-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.project-cards .cards-wrapper .card-item {
  background-color: #fff;
  width: 30%;
  border-radius: 15px;
  overflow: hidden;
}

@media screen and (max-width: 991px) {
  .project-cards .cards-wrapper .card-item {
    width: calc(50% - 60px);
  }
}

@media screen and (max-width: 767px) {
  .project-cards .cards-wrapper .card-item {
    width: 100%;
    max-width: 400px;
  }
}

.project-cards .cards-wrapper .card-item .card-header {
  position: relative;
  background-color: #dddddd;
  aspect-ratio: 2/1.2;
  overflow: hidden;
}

.project-cards .cards-wrapper .card-item .card-header::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(#ff9974bb, var(--primary-orange));
  opacity: 0.2; */
}

.project-cards .cards-wrapper .card-item .card-header .bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-cards .cards-wrapper .card-item .card-body {
  padding: 20px;
  aspect-ratio: 2/2;
  /* color: #fff;
  background: linear-gradient(#ff9974bb, var(--primary-orange)); */
}

@media screen and (max-width: 767px) {
  .project-cards .cards-wrapper .card-item .card-body {
    aspect-ratio: unset;
  }
}

.project-cards .cards-wrapper .card-item .card-body .title {
  font-size: 3.2rem;
  margin-bottom: 10px;
}

#sustainability {
  max-width: 1220px;
}

/*** AVIATION - SECTION ***/

.aviation-cards .cards-wrapper {
  width: calc(100% - 30px);
  max-width: 1015px;
  margin-inline: auto;
  display: flex;
  gap: 40px 30px;
  flex-wrap: wrap;
}

@media screen and (min-width: 1400px) {
  .aviation-cards .cards-wrapper {
    max-width: 1105px;
  }
}

@media screen and (max-width: 767px) {
  .aviation-cards .cards-wrapper {
    justify-content: center;
  }
}

.aviation-cards .cards-wrapper .card-item {
  position: relative;
  background-color: #fff;
  background: linear-gradient(#ff9974bb, var(--primary-orange));
  width: calc(33.333% - 20px);
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 2/2.8;
}

@media screen and (max-width: 1080px) {
  .aviation-cards .cards-wrapper .card-item {
    width: calc(50% - 20px);
  }
}

@media screen and (max-width: 767px) {
  .aviation-cards .cards-wrapper .card-item {
    width: 100%;
    max-width: 500px;
  }
}

.aviation-cards .cards-wrapper .card-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  /* background: linear-gradient(#ff9974bb, var(--primary-orange)); */
  /* z-index: 0; */
  /* opacity: 0.9; */
}

.aviation-cards .cards-wrapper .card-item .cover {
  transition: all 0.3s;
}

.aviation-cards .cards-wrapper .card-item .cover img {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
}

.aviation-cards .cards-wrapper .card-item .cover .title {
  position: absolute;
  z-index: 1;
  color: #fff;
  width: 100%;
  padding-inline: 20px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3.2rem;
  font-size: clamp(2rem, 8vw, 3.2rem);
  text-align: center;
}

.aviation-cards .cards-wrapper .card-item .cover .icon {
  position: absolute;
  z-index: 1;
  color: #fff;
  top: 20px;
  right: 20px;
  font-size: 2.6rem;
}

.aviation-cards .cards-wrapper .card-item .overlay {
  position: absolute;
  inset: 0;
  padding: 15px 20px;
  color: #fff;
  background: linear-gradient(#ffa482, var(--primary-orange));
  transition: all 0.5s;
  opacity: 0;
  z-index: 1;
}

.aviation-cards .cards-wrapper .card-item:hover .overlay {
  opacity: 1;
}

/*** FAQ - SECTION ***/

.accordion-section {
  width: calc(100%);
  max-width: 700px;
  margin-inline: auto;
}

@media screen and (max-width: 767px) {
  .accordion-section {
    margin-top: 40px;
  }
}

.accordion-section .group-heading {
  color: var(--primary-navy);
  font-size: 4rem;
  font-size: clamp(2rem, 3vw, 3.6rem);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.accordion-section .group-heading:not(:first-child) {
  margin-top: 25px;
}

.accordion-section .accordion-button {
  background-color: #fff;
  color: var(--primary-blue-dark);
  font-size: 1.8rem;
  font-size: clamp(1.6rem, 2vw, 1.8rem);
  line-height: 1.3;
  font-weight: lighter;
  padding-block: 15px;
}

.accordion-section .accordion-body p {
  margin: 0;
}

/*** PUBLIC TRANSPORT - SECTION ***/

.public-transport-section .cards-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  width: calc(100% - 30px);
  /* max-width: 750px; */
  max-width: 400px;
  margin-inline: auto;
}

/* @media screen and (max-width: 991px) {
  .public-transport-section .cards-wrapper {
    max-width: 760px;
  }
} */

@media screen and (max-width: 767px) {
  .public-transport-section .cards-wrapper {
    gap: 15px;
  }
}

.public-transport-section .cards-wrapper .card-item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 24vw;
  max-height: 360px;
  border: 3px solid #fff;
  background-color: #ccc;
  background: radial-gradient(#ccc, #cccccc7a);
  border-radius: 30px;
  overflow: hidden;
}

@media screen and (min-width: 1399px) {
  .public-transport-section .cards-wrapper .card-item {
    height: 20vw;
  }
}

@media screen and (max-width: 991px) {
  .public-transport-section .cards-wrapper .card-item {
    height: 40vw;
    border-radius: 25px;
  }
}

.public-transport-section .cards-wrapper .card-item .card-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  object-fit: cover;
}

.public-transport-section .cards-wrapper .card-item .logo-wrapper {
  position: relative;
  width: 30%;
  aspect-ratio: 1;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.9);
  /* box-shadow: 0px 0px 25px var(--primary-orange); */
}

@media screen and (max-width: 991px) {
  .public-transport-section .cards-wrapper .card-item .logo-wrapper {
    width: 35%;
    border-radius: 18%;
  }
}

/* .public-transport-section .logo-item-wrapper {
  overflow: hidden;
  border-radius: 50px;
} */

.public-transport-section .logo-item-wrapper .logo {
  border-radius: 45px;
  margin-inline: auto;
  /* width: 250px; */
}

@media screen and (max-width: 767px) {
  .public-transport-section .logo-item-wrapper .logo {
    border-radius: 37px;
    width: 150px;
  }
}

/*** CONTACT US - SECTION ***/

.contact-us-form {
  width: calc(100% - 30px);
  max-width: 850px;
  margin-inline: auto;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 991px) {
  .contact-us-form {
    margin-top: -3vw;
  }
}

/*** ABOUT - SECTION ***/

/* .about-us-section .intro {
  color: #fff;
  position: relative;
  background: url(img/curved-shap-1.svg) no-repeat bottom,
    linear-gradient(
      90deg,
      rgba(195, 82, 34, 1) 0%,
      rgba(236, 130, 50, 1) 36%,
      rgba(235, 166, 63, 1) 100%
    );
  padding-bottom: 14vw;
  font-size: 3.2rem;
}

@media screen and (max-width: 767px) {
  .about-us-section .intro {
    padding-bottom: 30vw;
    font-size: 2.6rem;
  }
}

.about-us-section .intro h2 {
  margin-bottom: 20px;
}

.about-us-section .sub-section .box {
  text-align: center;
}

.about-us-section .sub-section .box img {
  height: 120px;
  width: auto;
  margin-inline: auto;
}

.about-us-section .sub-section .box:hover img {
  filter: invert(27%) sepia(51%) saturate(1473%) hue-rotate(345deg)
    brightness(85%) contrast(85%);
  -webkit-filter: invert(27%) sepia(51%) saturate(1473%) hue-rotate(345deg)
    brightness(85%) contrast(85%);
}

.about-us-section .sub-section .box .heading {
  margin-block: 40px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}

.about-us-section .sub-section .box:hover .heading {
  transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
}

.about-us-section .sub-section .box:hover p {
  transform: translateY(-20px);
  -webkit-transform: translateY(-20px);
  -moz-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  -o-transform: translateY(-20px);
}

.about-us-section .sub-section .box p {
  font-size: 1.8rem;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}

.about-us-section .sub-section.our-values {
  padding-top: 0 !important;
} */

/*** Content Container ***/

/* .content-container a {
  color: var(--orange-primary);
}

.content-container a:hover {
  border-bottom: 1px solid var(--orange-primary);
} */

/*** CONTACT US - SECTION ***/

/* .contact-us-section {
  position: relative;
}

.contact-us-section .featured-img-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  height: 100%;
}

.contact-us-section .featured-img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
} */

/***/

/*** BLOCKS ***/

/*** CONTACT FORM ***/

/* remove padding to fields group */
.wpforms-field.wpforms-field-layout {
  padding: 0 !important;
}

.wpforms-confirmation-container-full {
  background-color: #e4f9ff !important ;
  border: none !important;
}

.div.wpforms-container-full button[type="submit"]:not(:hover):not(:active),
div.wpforms-container-full button[type="submit"] {
  background-color: var(--primary-navy) !important;
}

/*** DEPARTURES & ARRIVALS MODAL ***/

.departures-arrivals-modal .iframe-wrapper {
  position: relative;
}

.departures-arrivals-modal .loading {
  position: absolute;
  top: 0;
  z-index: 1;
}

.departures-arrivals-modal #form1 {
  background-color: red;
}

/*** FOOTER ***/

.footer-columns {
  display: flex;
  gap: 60px;
  border-top: 1px solid #ffffff;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .footer-columns {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .footer-columns .left-col {
    /* background-color: #af471a; */
    width: 500px;
  }
}

.footer-columns .left-col .footer-logo img {
  max-width: 280px;
}

@media screen and (max-width: 991px) {
  .footer-columns .left-col .footer-logo img {
    max-width: 220px;
  }
}

.footer-columns .left-col .content {
  margin-top: 30px;
}

.footer-columns .left-col .content p:not(:first-child) {
  margin-top: 15px;
}

.footer-columns .left-col .content a:hover {
  text-decoration: underline;
}

/***/

.footer-columns .right-col {
  /* background-color: #a58071; */
  display: flex;
  justify-content: end;
  flex-grow: 1;
}

.footer-columns .right-col .content {
  /* margin-top: 100px; */
  max-width: 540px;
}

.footer-columns .right-col a {
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .footer-columns .right-col .content {
    margin-top: 30px;
  }
}

.footer-columns .right-col .content {
  position: relative;
  overflow: hidden;
}

.footer-columns .right-col .content .overlay {
  position: absolute;
  inset: 0;
  /* width: 100%;
  height: 100%;
  top: 0;
  left: 0; */
  padding: 20px;
  background: linear-gradient(#ff9974d7, var(--primary-orange));
  font-size: 1.47rem;
  transition: all 0.3s;
  transform: translate(0, 100%);
  opacity: 0;
}

@media screen and (max-width: 767px) {
  .footer-columns .right-col .content .overlay {
    padding: 15px;
    font-size: 0.9rem;
  }
}

.footer-columns .right-col .content:hover .overlay {
  transform: translate(0, 0);
  opacity: 1;
}

/***/

.footer-credits-wrapper {
  color: #fff;
  padding-bottom: 15px;
}

.footer-credits-wrapper .social-media-links ul {
  list-style: none;
  display: flex;
  gap: 15px;
  margin-top: 30px;
  font-size: 2rem;
}

@media screen and (min-width: 768px) {
  .footer-credits-wrapper .social-media-links ul {
    justify-content: end;
  }
}

.footer-credits-wrapper .social-media-links ul li a:hover {
  color: var(--primary-navy);
}

.footer-credits p {
  margin: 0;
}

.footer-credits a:hover {
  text-decoration: underline;
}

@media screen and (min-width: 768px) {
  .footer-credits {
    text-align: right;
  }
}

.footer-credits em {
  font-size: 1.4rem;
}

/*** Utilities ***/

.gradient-bg {
  background: #007db7;
  background: linear-gradient(
    0deg,
    rgba(0, 125, 183, 1) 0%,
    rgba(255, 255, 255, 1) 100%
  );
}

.section-padding {
  padding-block: 60px;
}

.section-padding-top {
  padding-top: 60px;
}

.section-padding-bottom {
  padding-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .section-padding {
    padding-block: 40px;
  }

  .section-padding-top {
    padding-top: 40px;
  }

  .section-padding-bottom {
    padding-bottom: 40px;
  }
}

.remove-top-padding {
  padding-top: 0;
}

.container {
  padding-inline: 15px;
}

img.aligncenter {
  margin: 0 auto;
}

img.alignleft {
  float: left;
}

img.alignright {
  float: right;
}

/*
strong {
  font-weight: 700;
} */

/* @media screen and (min-width: 768px) {
  .remove-left-padding {
    padding-left: 0;
  }
  .remove-right-padding {
    padding-right: 0;
  }
} */

/* .wpforms-recaptcha-container {
  opacity: 0;
  z-index: 100;
  position: fixed !important;
} */
