@font-face {
  font-family: 'Kennedy Small Caps Book';
  src: url('assets/fonts/Kennedy Sm Caps Book GD W01 Rg.ttf') format('truetype'); 
  font-weight: normal;
  font-style: normal;
}


body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #DDDDDD;
    height: 100%;
    position: relative;
}

header {
    background-color: #0d3793;
    color: white;
    text-align: left;
    padding: 0;
    margin: 0;
    margin-bottom: 20px;
    z-index: 99;
}

header img {
    display: block !important;
}

.profile_picture img {
    float: right;
  }

.background_video {
        position: fixed;
        top: 0;
        left: 0;
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        z-index: -1000;
        overflow: hidden;
}

header div {
    box-shadow: 0 0 20px rgba(0,0,0,0.8);
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    /*padding: 1em;*/
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
}

h1, h2, h3, h4 {
    margin: 0;
    padding: 0;
}

h2 {
    font-size: 1.2em;
}

.content {
    max-width: 800px;
    margin: auto;
    padding: 0;
}

img {
    max-width: 50%;
    height: auto;
    max-height: 40em;
}

form {
    display: grid;
    gap: 10px;
    padding: 3em;
}


label {
    display: inline-block;
    margin-bottom: 5px;
}

input[type="checkbox"] {
    margin-right: 5px;
    vertical-align: middle;
    display: inline-block !important;
    width: unset !important;
}

fieldset {
    border: none;
    padding: 0;
    margin: 0;
}

legend {
    font-weight: bold;
    margin-bottom: 10px;
}

.checkbox-label {
    display: inline-block;
    margin-right: 15px;
}


/* Adjust layout for small screens */
@media screen and (max-width: 600px) {
    .checkbox-label {
        display: block;
        margin-bottom: 5px;
    }
    
    
    .profile_picture img {
        max-width: px;
    }

    
}

/* Arrange checkboxes in columns */
@media screen and (min-width: 600px) {
    fieldset {
        columns: 2;
    }
}

@media screen and (min-width: 800px) {
    fieldset {
        columns: 3;
    }
    .mobile {
        display: none;
    }
}

section > *:not(img){
    padding: 1em;
    margin: 0;
}

form input,
form textarea,
form button {
    display: block;
    width: 100%;
    margin-bottom: 15px;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
}
form button {
    background-color: #0d3793;
    color: #fff;
    cursor: pointer;
}
    
.myfont {
    font-family: 'KennedySmCapsBookGDW01-Rg', sans-serif; /* Use the font */
}

.flight-services li {
    /*font-weight: bold;*/
}

.flight-services li:hover {
    color: #0d3793;
    transition: all 0.5s ease;
}


/* Media query for mobile devices */
@media only screen and (max-width: 600px) {
  body {
    font-size: 14px;
  }
  
  header img {
    height: 5em;
}
  
  footer {
 
  }
  
  .desktop {
      display: none;
  }
  
 .image-container {
      display: flex;
      justify-content: center; /* Aligns the image horizontally to the center */
      margin: 0;
      padding: 0;
      backdrop-filter: blur(10px); /* Adjust the blur radius as needed */
      z-index: 1;
    }
    
    .image {
      max-width: 100%; /* Ensures the image does not exceed its container's width */
    }
}


.header-background {
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1
}

.header-background:before {
    background: linear-gradient(to bottom,#0c223f 70%,rgba(0,0,0,0));
    background: linear-gradient(to bottom,var(--c-brand-blue) 70%,rgba(0,0,0,0));
    content: "";
    height: 100%;
    left: 0;
    opacity: .8;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1
}

.header-background img,.header-background video {
    height: 100%;
    left: 0;
    min-height: 790px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top center;
    object-position: top center;
    position: absolute;
    top: 0;
    width: 100%
}

.header-background img {
    display: block
}

@media (min-width: 69.75em) {
    .header-background img {
        display:none
    }
}

.header-background video {
    display: none
}

@media (min-width: 69.75em) {
    .header-background video {
        display:block
    }
}