/*Website designed by Daniel Strathearn (takeflight@flight-sim.co.uk). Copyright © DS Flight Simulator 2023. All rights reserved.*/

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Sharp:opsz,wght,FILL,GRAD@48,400,0,0");
@import url("branding.css");

body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  /* overflow-x: auto; */
  font-family: 'Quicksand', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  scroll-behavior: smooth;
}
h1{
  font-size: 72px;
  color: var(--colour-primary); 
  background: -webkit-linear-gradient(#ff0000, #990b0b);
  background: linear-gradient(#ff0000, #990b0b);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
h2{
  font-size: 52px;
  font-weight: 600;
  margin-top: 20px;
}
h3{
  font-size: 32px;
  font-weight: 400;
  margin-top: 4px;
}
h4{
  font-size: 28px;
  font-weight: 300;
}


/* Menu */

  #navbar {
    position: fixed;
    display: flex;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    height: 70px;
    background-image: transparent;
    overflow: hidden;
    transition: all 0.6s ease;
    z-index: 9999;
    justify-content: space-around;
  }
  .scroll-background {
    /* var(--gradient-secondary-variant) */
      background: -moz-linear-gradient(#090b0f, #0c274b); /* FF 3.6+ */
      background: -webkit-linear-gradient(#090b0f, #0c274b); /* Safari 5.1+, Chrome 10+ */
      background: -o-linear-gradient(#090b0f, #0c274b); /* Opera 11.10 */
      background: linear-gradient(to right, #090b0f, #0c274b); /* the standard */
  }


/* Desktop Menu */

  #navbar-logo-desktop{
    display: block;
  }
  #navbar-logo-mobile{
    display: none;
  }
  #navbar img {
    max-height: 62px;
    margin: 4px 0px;
  }
  .anchor{
    display: block;
    position: relative;
    top: -69px;
    visibility: hidden;
  }
  .desktop-menu{
    display: flex;
    gap: 20px;
    margin: 15px 10px 0px 10px;
    align-items: flex-start;
  }
  .nav-link{
    display: flex;
    align-items: center;
  }
  .nav-link a{
    text-decoration: none;
    font-weight: 500;
    color: var(--colour-white);
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: .15s;
    padding: 8px;
    border-radius: var(--border-radius-2);
    max-height: 70px;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
  }
  .nav-link-active{
    background-color: var(--colour-primary);
    border-radius: var(--border-radius-2);
  }
  .nav-link a:hover{
    background-color: var(--colour-primary-variant);
    font-weight: 600;
  }
  .nav-link a:active{
    background-color: var(--colour-primary);
  }
  .link-banner{
    display: flex;
    gap: 18px;
  }
  .nav-group{
    display: flex;
    align-items: center;
  }
  .nav-group .header{
    font-weight: 500;
    color: var(--colour-white);
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: .15s;
    padding: 0px 4px 0px 8px;
    border-radius: var(--border-radius-2);
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    display: flex;
    align-items: center;
  }
  .nav-group .header p{
    margin: 8px 0px 8px 0px;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
  }
  .nav-group .header svg{
    margin-left: 3px;
    transition: all 0.3s ease;
  }
  .nav-group .content{
    display: none;
  }
  .nav-group#RealOpsPlanning .header:hover, body:has(.nav-group#RealOpsPlanning .header:hover) .nav-group#RealOpsPlanning .header, body:has(.nav-group#RealOpsPlanning .content:hover) .nav-group#RealOpsPlanning .header{
    color: var(--colour-info-light);
    font-weight: 600;
    cursor: default;
    
    /* var(--gradient-primary-variant) */
      background: -moz-linear-gradient(#990b0b, #610606); /* FF 3.6+ */
      background: -webkit-linear-gradient(#990b0b, #610606); /* Safari 5.1+, Chrome 10+ */
      background: -o-linear-gradient(#990b0b, #610606); /* Opera 11.10 */
      background: linear-gradient(#990b0b, #610606); /* the standard */
  }
  .nav-group#RealOpsPlanning .header svg:hover, body:has(.nav-group#RealOpsPlanning .header:hover) .nav-group#RealOpsPlanning .header svg, body:has(.nav-group#RealOpsPlanning .content:hover) .nav-group#RealOpsPlanning .header svg{
    transform: rotate(180deg);
  }
  body:has(.nav-group#RealOpsPlanning .header:hover) .nav-group#RealOpsPlanning .content, body:has(.nav-group#RealOpsPlanning .content:hover) .nav-group#RealOpsPlanning .content{
    display: flex;
    flex-direction: column;
    position: absolute;
    margin-top: 200px;
    border-radius: var(--border-radius-2);
    border-top-left-radius: 0px;
    padding: 10px;
    
    /* var(--gradient-primary) */
      background: -moz-linear-gradient(#990b0b, #610606); /* FF 3.6+ */
      background: -webkit-linear-gradient(#990b0b, #610606); /* Safari 5.1+, Chrome 10+ */
      background: -o-linear-gradient(#990b0b, #610606); /* Opera 11.10 */
      background: linear-gradient(to right, #990b0b, #610606); /* the standard */
  }
  body:has(.nav-group#RealOpsPlanning .header:hover) #navbar, body:has(.nav-group#RealOpsPlanning .content:hover) #navbar{
    height: 228px;
  }
  .nav-group#Legal .header:hover, body:has(.nav-group#Legal .header:hover) .nav-group#Legal .header, body:has(.nav-group#Legal .content:hover) .nav-group#Legal .header{
    color: var(--colour-info-light);
    font-weight: 600;
    cursor: default;
    
    /* var(--gradient-primary-variant) */
      background: -moz-linear-gradient(#990b0b, #610606); /* FF 3.6+ */
      background: -webkit-linear-gradient(#990b0b, #610606); /* Safari 5.1+, Chrome 10+ */
      background: -o-linear-gradient(#990b0b, #610606); /* Opera 11.10 */
      background: linear-gradient(#990b0b, #610606); /* the standard */
  }
  .nav-group#Legal .header svg:hover, body:has(.nav-group#Legal .header:hover) .nav-group#Legal .header svg, body:has(.nav-group#Legal .content:hover) .nav-group#Legal .header svg{
    transform: rotate(180deg);
  }
  body:has(.nav-group#Legal .header:hover) .nav-group#Legal .content, body:has(.nav-group#Legal .content:hover) .nav-group#Legal .content{
    display: flex;
    flex-direction: column;
    position: absolute;
    margin-top: 126px;
    border-radius: var(--border-radius-2);
    border-top-left-radius: 0px;
    padding: 10px;
    
    /* var(--gradient-primary) */
      background: -moz-linear-gradient(#990b0b, #610606); /* FF 3.6+ */
      background: -webkit-linear-gradient(#990b0b, #610606); /* Safari 5.1+, Chrome 10+ */
      background: -o-linear-gradient(#990b0b, #610606); /* Opera 11.10 */
      background: linear-gradient(to right, #990b0b, #610606); /* the standard */
  }
  body:has(.nav-group#Legal .header:hover) #navbar, body:has(.nav-group#Legal .content:hover) #navbar{
    height: 154px;
  }


/* Mobile Navbar */

  .mobile-menu {
    display: none;
    transition: all 0.6s ease;
  }

  /* Hamburger Icon */
  .hamburger {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    z-index: 1000;
  }
  .hamburger span {
    display: none;
    width: 30px;
    height: 4px;
    background-color: var(--colour-primary-variant);
    margin-bottom: 5px;
    transition: all 0.3s ease;
  }
  .hamburger span:nth-child(1),.hamburger span:nth-child(3) {
    transform: rotate(0deg);
  }
  .hamburger span:nth-child(2) {
    width: 30px;
  }

  /* Mobile Menu Open */
  .mobile-menu.open {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.975;
    /* var(--gradient-secondary-variant) */
      background: -moz-linear-gradient(#090b0f, #0c274b); /* FF 3.6+ */
      background: -webkit-linear-gradient(#090b0f, #0c274b); /* Safari 5.1+, Chrome 10+ */
      background: -o-linear-gradient(#090b0f, #0c274b); /* Opera 11.10 */
      background: linear-gradient(to right, #090b0f, #0c274b); /* the standard */
      z-index: 999;
  }
  .mobile-menu.open .hamburger span {
    background-color: transparent;
  }
  body:has(.mobile-menu.open) .hamburger span:nth-child(1){
    transform: translateY(9px) rotate(45deg) !important;
  }
  body:has(.mobile-menu.open) .hamburger span:nth-child(3){
    transform: translateY(-9px) rotate(-45deg) !important;
  }
  body:has(.mobile-menu.open) .hamburger span:nth-child(2){
    opacity: 0;
  }
  .mobile-menu-items {
    position: absolute;
    top: calc(50% + 20px);
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }
  .mobile-menu-items a {
    display: block;
    padding: 15px;
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s ease;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
  }
  .mobile-menu-items a:hover {
    background-color: rgba(255, 255, 255, 0.7);
    color: var(--colour-primary-variant);
    font-weight: 600;
  }


/* Links */

  .std_link{
    text-decoration: none;
    color: var(--colour-primary-variant);
    font-weight: 600;
  }
  .std_link:hover{
    text-decoration: underline;
    color: var(--colour-primary);
    font-weight: 600;
  }

  .std_link.variant{
    text-decoration: underline;
    color: var(--colour-white);
    font-weight: 600;
  }
  .std_link.variant:hover{
    text-decoration: none;
    font-weight: 600;
  }


  a.showcase-link{
    text-decoration: none;
    color: var(--colour-white);
    padding: 20px;
    border-radius: var(--border-radius-3);
    border-color: var(--colour-white);
    width: fit-content;
    min-width: 125px;
    text-align: center;
    font-size: 20px;
    margin: 12px 2px 2px 2px !important;
    display: block;
    transition: none;
    
    /* var(--gradient-primary) */
      background: -moz-linear-gradient(#990b0b, #610606); /* FF 3.6+ */
      background: -webkit-linear-gradient(#990b0b, #610606); /* Safari 5.1+, Chrome 10+ */
      background: -o-linear-gradient(#990b0b, #610606); /* Opera 11.10 */
      background: linear-gradient(to right, #990b0b, #610606); /* the standard */
  }
  a.showcase-link:hover{
    margin: 10px 0px 0px 0px !important;
    border: solid var(--colour-white);
    border-width: 2px;
  }
  a.showcase-link:active{
    /* var(--gradient-primary-variant) */
      background: -moz-linear-gradient(#990b0b, #610606); /* FF 3.6+ */
      background: -webkit-linear-gradient(#990b0b, #610606); /* Safari 5.1+, Chrome 10+ */
      background: -o-linear-gradient(#990b0b, #610606); /* Opera 11.10 */
      background: linear-gradient(#990b0b, #610606); /* the standard */
  }
  a.showcase-link.variant{
    margin: 10px 0px 0px 0px !important;
    background-image: none;
    border: solid var(--colour-white);
    border-width: 2px;
  }
  a.showcase-link.variant:hover{
    /* var(--gradient-primary-variant) */
      background: -moz-linear-gradient(#990b0b, #610606); /* FF 3.6+ */
      background: -webkit-linear-gradient(#990b0b, #610606); /* Safari 5.1+, Chrome 10+ */
      background: -o-linear-gradient(#990b0b, #610606); /* Opera 11.10 */
      background: linear-gradient(#990b0b, #610606); /* the standard */
  }
  a.showcase-link.variant:active{
    /* var(--gradient-primary) */
      background: -moz-linear-gradient(#990b0b, #610606); /* FF 3.6+ */
      background: -webkit-linear-gradient(#990b0b, #610606); /* Safari 5.1+, Chrome 10+ */
      background: -o-linear-gradient(#990b0b, #610606); /* Opera 11.10 */
      background: linear-gradient(to right, #990b0b, #610606); /* the standard */
  }
  a.showcase-link.variant2{
    margin: 10px 0px 0px 0px !important;
    border: solid var(--colour-white);
    border-width: 2px;

    /* var(--gradient-secondary) */
      background: -moz-linear-gradient(#0f131a, #0c274b); /* FF 3.6+ */
      background: -webkit-linear-gradient(#0f131a, #0c274b); /* Safari 5.1+, Chrome 10+ */
      background: -o-linear-gradient(#0f131a, #0c274b); /* Opera 11.10 */
      background: linear-gradient(to right, #0f131a, #0c274b); /* the standard */
  }
  a.showcase-link.variant2:hover{
    /* var(--gradient-primary) */
      background: -moz-linear-gradient(#990b0b, #610606); /* FF 3.6+ */
      background: -webkit-linear-gradient(#990b0b, #610606); /* Safari 5.1+, Chrome 10+ */
      background: -o-linear-gradient(#990b0b, #610606); /* Opera 11.10 */
      background: linear-gradient(to right, #990b0b, #610606); /* the standard */
  }
  a.showcase-link.variant2:active{
    /* var(--gradient-primary-variant) */
      background: -moz-linear-gradient(#990b0b, #610606); /* FF 3.6+ */
      background: -webkit-linear-gradient(#990b0b, #610606); /* Safari 5.1+, Chrome 10+ */
      background: -o-linear-gradient(#990b0b, #610606); /* Opera 11.10 */
      background: linear-gradient(#990b0b, #610606); /* the standard */
  }


/* Buttons */
  .button-grid{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    justify-content: center;
    justify-items: center;
    padding: 12px;
  }
  button.button1{
    font-family: 'Quicksand', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--colour-white);
    padding: 15px;
    border-radius: var(--border-radius-2);
    border-color: var(--colour-white);
    border-width: 0px;
    width: fit-content;
    min-width: 275px;
    text-align: center;
    font-size: 18px;
    display: block;
    cursor: pointer;
    grid-column: span 2;

    /* var(--gradient-primary) */
      background: -moz-linear-gradient(#990b0b, #610606); /* FF 3.6+ */
      background: -webkit-linear-gradient(#990b0b, #610606); /* Safari 5.1+, Chrome 10+ */
      background: -o-linear-gradient(#990b0b, #610606); /* Opera 11.10 */
      background: linear-gradient(to right, #990b0b, #610606); /* the standard */

    /* Dealing with 2 orphan items */
    &:last-child:nth-child(3n - 1) {
      grid-column-end: -2;
    }
    
    &:nth-last-child(2):nth-child(3n + 1) {
      grid-column-end: 4;
    }

    /* Dealing with single orphan */
    &:last-child:nth-child(3n - 2) {
      grid-column-end: 5;
    }
  }
  button.button1:hover{
    /* var(--gradient-primary-variant) */
      background: -moz-linear-gradient(#990b0b, #610606); /* FF 3.6+ */
      background: -webkit-linear-gradient(#990b0b, #610606); /* Safari 5.1+, Chrome 10+ */
      background: -o-linear-gradient(#990b0b, #610606); /* Opera 11.10 */
      background: linear-gradient(#990b0b, #610606); /* the standard */
  }
  button.button1.selected {
    border: solid var(--colour-white);
    border-width: 2px;

    /* var(--gradient-secondary) */
    background: -moz-linear-gradient(#0f131a, #0c274b); /* FF 3.6+ */
    background: -webkit-linear-gradient(#0f131a, #0c274b); /* Safari 5.1+, Chrome 10+ */
    background: -o-linear-gradient(#0f131a, #0c274b); /* Opera 11.10 */
    background: linear-gradient(to right, #0f131a, #0c274b); /* the standard */
  }
  button.button2{
    font-family: 'Quicksand', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--colour-white);
    padding: 15px;
    border-radius: var(--border-radius-2);
    border-color: transparent;
    border-width: 0px;
    width: 100px;
    min-width: 275px;
    text-align: center;
    font-size: 18px;
    display: block;
    cursor: pointer;
    float: right;

    /* var(--gradient-secondary) */
      background: -moz-linear-gradient(#0f131a, #0c274b); /* FF 3.6+ */
      background: -webkit-linear-gradient(#0f131a, #0c274b); /* Safari 5.1+, Chrome 10+ */
      background: -o-linear-gradient(#0f131a, #0c274b); /* Opera 11.10 */
      background: linear-gradient(to right, #0f131a, #0c274b); /* the standard */
  }
  button.button2:hover{
    /* var(--gradient-secondary-variant) */
      background: -moz-linear-gradient(#090b0f, #0c274b); /* FF 3.6+ */
      background: -webkit-linear-gradient(#090b0f, #0c274b); /* Safari 5.1+, Chrome 10+ */
      background: -o-linear-gradient(#090b0f, #0c274b); /* Opera 11.10 */
      background: linear-gradient(to right, #090b0f, #0c274b); /* the standard */
  }

/* General Content */
  #departure-img-desktop {
    display: block;
    transition: all 0.5s ease-in-out;
    border-radius: var(--border-radius-3);
  }
  #departure-img-mobile {
    display: none;
    transition: all 0.5s ease-in-out;
    border-radius: var(--border-radius-3);
    margin-bottom: 40px;
  }
  #video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;

    /* var(--gradient-secondary-variant) */
      background: -moz-linear-gradient(#090b0f, #0c274b); /* FF 3.6+ */
      background: -webkit-linear-gradient(#090b0f, #0c274b); /* Safari 5.1+, Chrome 10+ */
      background: -o-linear-gradient(#090b0f, #0c274b); /* Opera 11.10 */
      background: linear-gradient(to right, #090b0f, #0c274b); /* the standard */
  }
  #video-container video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0.1;
  }
  #video-container .background{
    /* var(--gradient-secondary) */
      background: -moz-linear-gradient(#0f131a, #0c274b); /* FF 3.6+ */
      background: -webkit-linear-gradient(#0f131a, #0c274b); /* Safari 5.1+, Chrome 10+ */
      background: -o-linear-gradient(#0f131a, #0c274b); /* Opera 11.10 */
      background: linear-gradient(to right, #0f131a, #0c274b); /* the standard */
  }
  #video-overlay {
    margin: 200px 20px 20px 50px;
    height: calc(100vh - 290px);
  }
  .content {
    position: relative;
    padding: 70px 0px 0px 0px;
    transition: all 300ms ease;
  }
  .primary-content {
    padding: 20px;
    color: var(--colour-white);
    font-size: 18px;

    /* var(--gradient-primary) */
      background: -moz-linear-gradient(#990b0b, #610606); /* FF 3.6+ */
      background: -webkit-linear-gradient(#990b0b, #610606); /* Safari 5.1+, Chrome 10+ */
      background: -o-linear-gradient(#990b0b, #610606); /* Opera 11.10 */
      background: linear-gradient(to right, #990b0b, #610606); /* the standard */
  }
  .light-content {
    padding: 20px;
    background-color: var(--colour-background);
    font-size: 18px;
    color: var(--colour-dark);
  }
  .dark-content {
    padding: 20px;
    color: var(--colour-white);
    font-size: 18px;

    /* var(--gradient-secondary) */
      background: -moz-linear-gradient(#0f131a, #0c274b); /* FF 3.6+ */
      background: -webkit-linear-gradient(#0f131a, #0c274b); /* Safari 5.1+, Chrome 10+ */
      background: -o-linear-gradient(#0f131a, #0c274b); /* Opera 11.10 */
      background: linear-gradient(to right, #0f131a, #0c274b); /* the standard */
  }
  .transparent-content {
    padding: 20px;
    color: var(--colour-white);
    font-size: 18px;
    background: none;
  }
  .std-div{
    padding: 40px;
  }
  .split{
    display: flex;
    flex-direction: row;
    margin: 20px;
    gap: 40px;
  }
  .split-div{
    width: 50%;
    margin: 0px;
  }
  .container {
    margin: 1rem;
    padding: 2rem;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius);
    background: var(--colour-white);
  }
  .content-img{
    width: 100%;
    opacity: 1;
  }
  .footer{
    padding: 20px 50px;
  }


/* Calculator */

  #calculator-section {
    /* var(--gradient-primary-variant) */
      background: -moz-linear-gradient(#990b0b, #610606); /* FF 3.6+ */
      background: -webkit-linear-gradient(#990b0b, #610606); /* Safari 5.1+, Chrome 10+ */
      background: -o-linear-gradient(#990b0b, #610606); /* Opera 11.10 */
      background: linear-gradient(#990b0b, #610606); /* the standard */
    
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    color: var(--colour-white) !important;
  }

  #flight-planning-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
  }

  #flight-planning-form input {
    width: 100px;
    margin-bottom: 10px;
    font-family: 'Quicksand', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: transparent;
    color: var(--colour-white) !important;
    border-color: var(--colour-white);
    border-radius: var(--border-radius-2);
    padding: 8px;
    margin: 8px;
    font-size: 18px;
  }

  input::-webkit-outer-spin-button,
  input::-webkit-inner-spin-button {
     -webkit-appearance: none;
  }

  #flight-planning-form label{
    font-size: 20px;
    width: calc(100% - 136px) !important;
    margin-bottom: 10px;
    font-family: 'Quicksand', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: transparent;
    color: var(--colour-white) !important;
  }

  .input-with-unit {
    position: relative;
    display: inline-block;
  }

  .input-with-unit input {
    padding-right: 40px;
    text-align: center;
  }

  .input-with-unit .unit {
    position: absolute;
    top: 49%;
    right: 20px;
    transform: translateY(-50%);
    pointer-events: none;
  }

  #reset-btn span{
    transition: all 300ms ease;
  }

  #reset-btn span:hover, body:has(#reset-btn:hover) #reset-btn span{
    transform: rotate(-360deg);
  }

  #output {
    margin-top: 20px;
  }

  #output p {
    font-size: 20px;
  }


/* Loading Animation */

  .loading-spinner {
    border: 8px solid #f3f3f3; /* Light grey */
    border-top: 8px solid var(--colour-primary);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    padding: 16px;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  .loading-overlay {
    width: 100%;
    height: 100%;
    min-height: 150px;
    border-radius: var(--border-radius-3);
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px 0px;

    /* var(--gradient-secondary-variant) */
      background: -moz-linear-gradient(#090b0f, #0c274b); /* FF 3.6+ */
      background: -webkit-linear-gradient(#090b0f, #0c274b); /* Safari 5.1+, Chrome 10+ */
      background: -o-linear-gradient(#090b0f, #0c274b); /* Opera 11.10 */
      background: linear-gradient(to right, #090b0f, #0c274b); /* the standard */
  }  


/* Custom Scrollbar */

  ::-webkit-scrollbar {
    width: 12px;
  }
  ::-webkit-scrollbar-track {
    background: var(--colour-secondary);
  }
  ::-webkit-scrollbar-thumb {
    background: var(--colour-primary);
    border-radius: 10px;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: var(--colour-primary-variant); 
  }
  ::-webkit-scrollbar-corner{
    background: var(--colour-secondary);
  }


/* Media Queries */

  @media screen and (max-width:768px){
    .split{
      flex-direction: column;
    }
    .split.inverse{
      flex-direction: column-reverse;
    }
    .split-div{
      width: 100%;
    }
    .std-div{
      padding: 20px;
    }
    #video-overlay{
      margin: 20px 20px 195px 20px;
      height: calc(100vh - 308px);
    }
    a.showcase-link{
      width: calc(100% - 44px);
      margin-bottom: 20px;
    }
    .link-banner{
      flex-direction: column;
      gap: 8px;
    }
    #departure-img-desktop {
      display: none;
    }
    #departure-img-mobile {
      display: block;
    }
    h1{
      font-size: 64px !important;
    }
    .container{
      margin: 0px -25px 0px -15px;
      width: calc(100% - 34px);
    }
    .primary-content, .light-content, .dark-content{
      padding-left: 20px;
      padding-right: 20px;
    }
    #contact_div_hr{
      margin: -20px -20px -20px 0px;
    }
    #calculator-section{
      background: transparent !important;
      padding: 0px;
      margin: 0px;
    }
    button.button2{
      width: 100%;
    }
    .footer{
      padding: 0;
    }
  }
  
  @media screen and (max-width:1450px){
    .desktop-menu{
      display: none;
    }
    #navbar-logo-desktop{
      display: none;
    }
    #navbar-logo-mobile{
      display: grid;
      align-items: center;
    }
    #navbar-logo-mobile img{
      width: calc(100% - 80px);
      z-index: 1000;
    }
    .hamburger{
      display: block;
    }
    .hamburger span{
      display: block;
    }
  }
  
  @media screen and (max-width:1750px){
    button.button1{
    grid-column: span 3;
    min-width: 0px !important;
    
    /* Dealing with 2 orphan items */
    &:last-child:nth-child(3n - 1),
    &:nth-last-child(2):nth-child(3n + 1) {
      grid-column: span 3;
    }

    /* Dealing with single orphan */
    &:last-child:nth-child(3n - 2) {
      grid-column-end: 4;
    }
    }
    #departure-button-grid{
      margin-bottom: -10px !important;
    }
  }
