ul.plain {
  list-style-type: none;
  padding-left: 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 100%;
  grid-template-columns: 100%;
  gap: 15px;
  font-weight: 700;
  margin-block: 0 30px; }
  ul.plain.two-column {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr); }

ul.square {
  list-style-type: square;
  padding-left: 20px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 100%;
  grid-template-columns: 100%;
  gap: 15px;
  margin-block: 0 30px; }
  ul.square.bold {
    font-weight: 700; }
  ul.square.two-column {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr); }

.hero-btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 10px clamp(20px, 2.2vw, 40px);
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  /*@media only screen and (max-width: 1200px) {
		display: grid;
		grid-template-columns: auto;
	}*/ }
  @media only screen and (max-width: 1000px) {
    .hero-btn-wrap {
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center; } }
  .hero-btn-wrap .hero-btn {
    padding: 15px 10px;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 700;
    font-size: clamp(17px, 1.4vw, 21px);
    text-decoration: none;
    position: relative;
    z-index: 1;
    display: block;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content; }
    .hero-btn-wrap .hero-btn:after {
      content: '';
      display: block;
      width: 100%;
      height: 6px;
      background: #ea9438;
      border-radius: 5px;
      bottom: 0;
      position: absolute;
      left: 0;
      -webkit-transition: .3s all ease;
      -o-transition: .3s all ease;
      transition: .3s all ease;
      z-index: -1; }
    .hero-btn-wrap .hero-btn:hover:after, .hero-btn-wrap .hero-btn:active .hero-btn-wrap .hero-btn:focus:after {
      height: 100%; }
    @media only screen and (max-width: 650px) {
      .hero-btn-wrap .hero-btn.hide-btn {
        display: none; } }

.banner .hero-btn-wrap {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }

.banner h1 {
  text-align: center;
  color: #ffffff;
  max-width: 1100px;
  margin-inline: auto;
  line-height: 1.5; }

.split-banner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr; }
  @media only screen and (max-width: 1000px) {
    .split-banner {
      -ms-grid-columns: 100%;
      grid-template-columns: 100%; } }
  .split-banner .content h2 {
    font-size: clamp(18px, 1.7vw, 33px);
    margin-block: 0 20px;
    line-height: 1.2;
    color: #ffffff;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: .1em; }
    .split-banner .content h2 span {
      font-size: clamp(30px, 2.6vw, 50px);
      text-transform: uppercase;
      display: block; }
    @media only screen and (max-width: 1000px) {
      .split-banner .content h2 {
        text-align: center; } }
  .split-banner .img-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 200px; }
    @media only screen and (max-width: 1000px) {
      .split-banner .img-wrapper {
        min-height: 36vw; } }
    .split-banner .img-wrapper img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
      object-fit: cover; }

.body-split {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 35%;
  grid-template-columns: 1fr 35%;
  gap: 60px;
  width: 100%; }
  @media only screen and (max-width: 1100px) {
    .body-split {
      -ms-grid-columns: 100%;
      grid-template-columns: 100%;
      gap: 40px; } }
  .body-split .content {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center; }
  .body-split .img-wrapper img {
    width: 100%;
    height: auto;
    display: block; }

.body-split-small {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 250px;
  grid-template-columns: 1fr 250px;
  gap: 60px;
  width: 100%; }
  @media only screen and (max-width: 1000px) {
    .body-split-small {
      -ms-grid-columns: 100%;
      grid-template-columns: 100%;
      gap: 40px; } }
  .body-split-small .img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 250px;
    margin-inline: auto; }

.content-split {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 50%;
  grid-template-columns: 1fr 50%;
  gap: 70px;
  width: 100%; }
  @media only screen and (max-width: 1100px) {
    .content-split {
      -ms-grid-columns: 100%;
      grid-template-columns: 100%;
      gap: 40px; } }
  .content-split h2 {
    font-size: clamp(20px, 2.1vw, 24px); }
  .content-split .img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 8px;
    overflow: hidden;
    position: -webkit-sticky;
    position: sticky;
    top: 0; }
    @media only screen and (max-width: 1100px) {
      .content-split .img-wrapper {
        position: relative;
        aspect-ratio: 2/1; } }
    .content-split .img-wrapper img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
      object-fit: cover; }

.location-list {
  list-style-type: none;
  padding: 0;
  margin-block: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  @media only screen and (max-width: 800px) {
    .location-list li {
      width: 100%; } }
  .location-list li a {
    position: relative;
    padding: 20px;
    font-size: clamp(16px, 1.3vw, 22px);
    text-transform: uppercase;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #f2f2f2;
    text-decoration: none;
    font-weight: 700;
    gap: 10px;
    border-radius: 5px;
    width: clamp(320px, 26.25vw, 420px);
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease; }
    @media only screen and (max-width: 800px) {
      .location-list li a {
        width: 100%; } }
    .location-list li a:before {
      position: relative;
      height: clamp(24px, 2.5vw, 40px);
      width: clamp(16px, 1.65vw, 26px);
      background-image: url("/Content/images/mapmarker.png");
      background-size: contain;
      background-position: center;
      background-repeat: no-repeat;
      content: '';
      display: block; }
    .location-list li a:hover, .location-list li a:active, .location-list li a:focus {
      background: #e5e5e5;
      -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
      box-shadow: 0 0 5px rgba(0, 0, 0, 0.6); }

.location-list-geo {
  list-style-type: none;
  padding: 0;
  margin-block: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  @media only screen and (max-width: 400px) {
    .location-list-geo li {
      width: 100%; } }
  .location-list-geo li a {
    position: relative;
    padding: 12px;
    font-size: 16px;
    text-transform: uppercase;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #f2f2f2;
    text-decoration: none;
    font-weight: 700;
    gap: 8px;
    border-radius: 5px;
    width: 255px;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease; }
    @media only screen and (max-width: 400px) {
      .location-list-geo li a {
        width: 100%; } }
    .location-list-geo li a:before {
      position: relative;
      height: 24px;
      width: 16px;
      background-image: url("/Content/images/mapmarker.png");
      background-size: contain;
      background-position: center;
      background-repeat: no-repeat;
      content: '';
      display: block; }
    .location-list-geo li a:hover, .location-list-geo li a:active, .location-list-geo li a:focus {
      background: #e5e5e5;
      -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
      box-shadow: 0 0 5px rgba(0, 0, 0, 0.6); }

.img-list {
  list-style-type: none;
  padding: 0;
  margin-block: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }
  .img-list li {
    width: calc(20% - 8px); }
    @media only screen and (max-width: 1300px) {
      .img-list li {
        width: calc(33.3% - (20px/3)); } }
    @media only screen and (max-width: 800px) {
      .img-list li {
        width: calc(50% - 5px); } }
    .img-list li a {
      position: relative;
      aspect-ratio: 11/10;
      border-radius: 8px;
      overflow: hidden;
      display: block;
      padding: clamp(15px, 3.65vw, 30px);
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: end;
      -ms-flex-align: end;
      align-items: flex-end;
      text-decoration: none;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center; }
      .img-list li a img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        -webkit-transition: .3s all ease;
        -o-transition: .3s all ease;
        transition: .3s all ease; }
      .img-list li a span {
        position: relative;
        z-index: 1;
        text-align: center;
        color: #ffffff;
        font-weight: 700;
        font-size: clamp(15px, 2vw, 20px); }
      .img-list li a:hover img, .img-list li a:focus img, .img-list li a:active img {
        -webkit-filter: brightness(0.5);
        filter: brightness(0.5); }

.info-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40%;
  grid-template-columns: 1fr 40%;
  gap: 20px;
  width: 100%;
  margin-block: 60px; }
  @media only screen and (max-width: 1200px) {
    .info-grid {
      -ms-grid-columns: 100%;
      grid-template-columns: 100%; } }
  .info-grid .airport-info {
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff; }
    .info-grid .airport-info .info-header {
      background: #322044;
      padding: 20px 30px; }
      .info-grid .airport-info .info-header p {
        color: #ffffff;
        margin: 0;
        text-align: center;
        font-size: 17px;
        font-weight: 700;
        text-wrap: balance; }
        @media only screen and (max-width: 800px) {
          .info-grid .airport-info .info-header p {
            font-size: 15px; } }
    .info-grid .airport-info .underline-btn {
      margin-inline: auto; }
    .info-grid .airport-info .info-inner {
      padding: 30px 30px 60px; }
      .info-grid .airport-info .info-inner .info-inner-grid {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: auto 1fr;
        grid-template-columns: auto 1fr;
        gap: 30px 40px;
        margin-bottom: 40px; }
        @media only screen and (max-width: 800px) {
          .info-grid .airport-info .info-inner .info-inner-grid {
            -ms-grid-columns: 100px 1fr;
            grid-template-columns: 100px 1fr;
            gap: 20px 30px; } }
        @media only screen and (max-width: 500px) {
          .info-grid .airport-info .info-inner .info-inner-grid {
            -ms-grid-columns: 100%;
            grid-template-columns: 100%;
            gap: 0;
            margin-bottom: 20px; } }
        .info-grid .airport-info .info-inner .info-inner-grid span {
          font-size: clamp(15px, 1vw, 18px);
          line-height: 1.7; }
          @media only screen and (max-width: 500px) {
            .info-grid .airport-info .info-inner .info-inner-grid span:nth-child(even) {
              margin-bottom: 15px; } }
  .info-grid .info-iframe-wrapper {
    width: 100%;
    height: 100%; }
    @media only screen and (max-width: 1200px) {
      .info-grid .info-iframe-wrapper {
        height: 40vw; } }
    .info-grid .info-iframe-wrapper iframe {
      width: 100%;
      height: 100%; }

.location-iframe-wrapper {
  width: 100%;
  height: 100%;
  min-height: 400px; }
  @media only screen and (max-width: 1200px) {
    .location-iframe-wrapper {
      height: 40vw; } }
  .location-iframe-wrapper iframe {
    width: 100%;
    height: 100%; }

.airport-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[5];
  grid-template-columns: repeat(5, 1fr);
  gap: 50px;
  width: 100%;
  list-style-type: none;
  padding: 0;
  margin-block: 40px 0; }
  @media only screen and (max-width: 1100px) {
    .airport-grid {
      -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
      gap: 40px; } }
  @media only screen and (max-width: 800px) {
    .airport-grid {
      -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr); } }
  @media only screen and (max-width: 500px) {
    .airport-grid {
      -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
      gap: 30px; } }
  .airport-grid li img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 320px;
    margin-inline: auto; }

#time-list-section ul {
  display: -ms-grid;
  display: grid;
  gap: 20px;
  -ms-grid-columns: (1fr)[5];
  grid-template-columns: repeat(5, 1fr);
  padding: 0;
  list-style-type: none; }
  @media only screen and (max-width: 1450px) {
    #time-list-section ul {
      -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr); } }
  @media only screen and (max-width: 900px) {
    #time-list-section ul {
      -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr); } }
  @media only screen and (max-width: 650px) {
    #time-list-section ul {
      -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr); } }
  @media only screen and (max-width: 650px) {
    #time-list-section ul {
      -ms-grid-columns: 100%;
      grid-template-columns: 100%;
      gap: 10px; } }
  #time-list-section ul li {
    padding: 15px;
    background: #ffffff;
    border-radius: 5px;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    line-height: 1.5; }
    @media only screen and (max-width: 900px) {
      #time-list-section ul li {
        font-size: 13px; } }
    #time-list-section ul li span {
      display: block;
      font-weight: 700;
      font-size: 18px; }
      @media only screen and (max-width: 900px) {
        #time-list-section ul li span {
          font-size: 16px; } }

.grid-2 {
  gap: 30px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 30px; }
  @media only screen and (max-width: 1000px) {
    .grid-2 {
      -ms-grid-columns: 100%;
      grid-template-columns: 100%; } }
  .grid-2 ul {
    list-style-type: disc !important;
    padding-left: 20px !important; }

.split-contact .form-wrapper h1 {
  text-wrap: balance;
  color: #ffffff;
  max-width: 1400px;
  margin-inline: auto; }

.split-contact .form-wrapper #ContactForm {
  width: 100%;
  max-width: 1400px;
  margin-inline: auto; }
  .split-contact .form-wrapper #ContactForm .banner {
    background: rgba(255, 255, 255, 0.2);
    padding: 15px 20px;
    border-radius: 10px; }
    .split-contact .form-wrapper #ContactForm .banner p {
      margin: 0;
      font-size: 18px; }
      @media only screen and (max-width: 1000px) {
        .split-contact .form-wrapper #ContactForm .banner p {
          font-size: 15px; } }
      .split-contact .form-wrapper #ContactForm .banner p a {
        font-weight: 700; }
  .split-contact .form-wrapper #ContactForm .contact-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 10px 60px; }
    @media only screen and (max-width: 1000px) {
      .split-contact .form-wrapper #ContactForm .contact-grid {
        -ms-grid-columns: 100%;
        grid-template-columns: 100%; } }
  .split-contact .form-wrapper #ContactForm p {
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    margin-block: 20px; }
  .split-contact .form-wrapper #ContactForm label {
    display: block;
    font-weight: 600;
    color: #ffffff;
    margin-block: 20px 5px;
    font-size: 18px; }
    .split-contact .form-wrapper #ContactForm label.radio-label {
      margin-block: 10px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      gap: 10px; }
      .split-contact .form-wrapper #ContactForm label.radio-label:first-of-type {
        margin-top: 20px; }
  .split-contact .form-wrapper #ContactForm input[type="text"], .split-contact .form-wrapper #ContactForm input[type="email"], .split-contact .form-wrapper #ContactForm input[type="tel"], .split-contact .form-wrapper #ContactForm input[type="number"], .split-contact .form-wrapper #ContactForm input[type="datetime-local"], .split-contact .form-wrapper #ContactForm textarea {
    border: 1px solid #ffffff;
    border-radius: 5px;
    background: #ffffff;
    color: #444;
    font-size: 16px;
    padding: 10px 15px;
    width: 100%; }
  .split-contact .form-wrapper #ContactForm textarea {
    height: 100px;
    resize: none; }
  .split-contact .form-wrapper #ContactForm input[type="radio"] {
    accent-color: #ea9438;
    height: 20px;
    width: 20px; }
  .split-contact .form-wrapper #ContactForm label.error {
    display: inline;
    color: #f00;
    font-weight: 400;
    font-size: 13px; }
  .split-contact .form-wrapper #ContactForm input.error, .split-contact .form-wrapper #ContactForm textarea.error {
    border: 1px solid #e00;
    color: #f00;
    background-color: #fadcdc; }
  .split-contact .form-wrapper #ContactForm .btn {
    margin-top: 30px;
    margin-inline: auto; }

.responsive-table {
  width: 100%;
  margin-block: 30px;
  border-collapse: collapse; }
  @media (max-width: 800px) {
    .responsive-table thead {
      display: none; }
    .responsive-table tr {
      margin-bottom: 15px;
      border: 1px solid #ddd;
      border-radius: 6px;
      overflow: hidden;
      display: block; } }
  .responsive-table th, .responsive-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left; }
    @media (max-width: 800px) {
      .responsive-table th, .responsive-table td {
        display: block;
        width: 100%;
        font-size: 15px; } }
  .responsive-table th {
    background: #322044;
    font-weight: bold;
    color: #ffffff; }
  .responsive-table td {
    background: #ffffff; }
    @media (max-width: 800px) {
      .responsive-table td {
        text-align: left;
        padding-left: 150px;
        position: relative;
        border: none;
        border-bottom: 1px solid #eee; }
        .responsive-table td:last-child {
          border-bottom: none; }
        .responsive-table td::before {
          content: attr(data-label);
          position: absolute;
          left: 0;
          top: 0;
          font-weight: bold;
          white-space: nowrap;
          height: 100%;
          background: #322044;
          color: #ffffff;
          padding: 10px;
          width: 130px;
          font-size: 12px;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center; } }
    @media (max-width: 400px) {
      .responsive-table td {
        padding-left: 125px;
        font-size: 14px; }
        .responsive-table td::before {
          width: 115px;
          font-size: 10px; } }

.news-list {
  list-style-type: none;
  padding: 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[5];
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  margin-block: 60px; }
  @media (max-width: 1500px) {
    .news-list {
      -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr); } }
  @media (max-width: 1200px) {
    .news-list {
      -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
      gap: 20px; } }
  @media (max-width: 850px) {
    .news-list {
      -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 500px) {
    .news-list {
      -ms-grid-columns: 100%;
      grid-template-columns: 100%; } }
  .news-list li {
    height: 100%;
    min-height: 170px; }
    @media (max-width: 500px) {
      .news-list li {
        min-height: 0px; } }
    .news-list li a {
      text-decoration: none;
      display: -ms-grid;
      display: grid;
      -webkit-box-align: start;
      -ms-flex-align: start;
      align-items: start;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -ms-grid-columns: 100%;
      grid-template-columns: 100%;
      background: #f2f2f2;
      border-radius: 5px;
      padding: 30px 20px;
      height: 100%;
      -webkit-transition: .3s all ease;
      -o-transition: .3s all ease;
      transition: .3s all ease; }
      .news-list li a p {
        margin-bottom: 20px;
        text-align: center;
        line-height: 1.3; }
        @media (max-width: 500px) {
          .news-list li a p {
            margin: 0;
            text-align: left; } }
      .news-list li a span {
        -ms-flex-item-align: end;
        -ms-grid-row-align: end;
        align-self: end;
        display: inline-block;
        margin-inline: auto;
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        padding: 8px 10px;
        border-radius: 5px;
        background: #322044;
        font-size: 14px;
        color: #f2f2f2;
        font-weight: 500;
        line-height: 1;
        border-radius: 5px; }
        @media (max-width: 500px) {
          .news-list li a span {
            margin: 10px 0 0; } }
      .news-list li a:hover, .news-list li a:active, .news-list li a:focus {
        background: #e5e5e5; }
        .news-list li a:hover span, .news-list li a:active span, .news-list li a:focus span {
          background: #000000; }
