.intro{
    display: flex;
    width: 100%;
    height: 500px;
    overflow: visible;
    justify-content: center;
    align-items: center;
}
.intro img{
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 500px;
    position: absolute;
    opacity: 0.8;
}
.intro-text{
    opacity: 1;
    color: goldenrod;
    position: relative;
}
header{
    display: flex;
    justify-content: center;
    background-color: rgb(21, 21, 22);
    width: 100%;
    height: 100px;
}
.logo{
    width: 20%;
    display: flex;
    align-items: center;
    margin-left: 2%;
}
.logo img{
    width: 120px;
    height: 70px;
}

nav{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 77%;

}
nav a{
    color: goldenrod;
    text-decoration: none;
    display: flex;
    margin-right: 2%;
}
nav a:hover{
    color: gold;
    text-decoration: underline;
    text-underline-offset: 10px;
    text-decoration-thickness: 3px;
    transition: 0.5s;
}
.we-are{
    display: flex;
    width: 100%;
    height: 500px;
    background-color: rgb(21, 21, 22);
    font-size: 20px;
    border-top: solid goldenrod 2px;

}
.we-are-text{
    width:30%;
    animation-duration: 2s;
    animation-fill-mode: both;
    animation-name: slideInFromLeft;
    visibility: hidden;
}
.we-are-text h1{
    width:95%;
    margin-left: 5%;
    margin-bottom: 2%;
    margin-top: 5%;
    color: gold;
    animation-duration: 2s;
    animation-fill-mode: both;
    animation-name: slideInFromLeft;
    visibility: hidden;
}
.we-are-text p{
    width:95%;
    margin-left: 5%;
    margin-top: 10%;
    color: white;
    font-size: medium;
    animation-duration: 2s;
    animation-fill-mode: both;
    animation-name: slideInFromLeft;
    visibility: hidden;
}
.we-are-img{
    width: 70%;
    height: auto;
    display: flex;
    justify-content: end;
}
.we-are-img img{
    width: 90%;
    height: auto;
    image-resolution: from-image;
}
.we-are-vid{
    width: 70%;
    height: auto;
    display: flex;
    justify-content: end;
}
.we-are-vid video{
    width: 90%;
    height: auto;
    margin-left: 10%;
}
.credit{
    font-size: 0.5em;
    background-color: rgb(21, 21, 22);
    color: whitesmoke;
}
.en{
    width: 10%;
    height: auto;
    margin-right: 1%;
}
.en img{
    width: 50%;
    height: auto;
}
.en img:hover{
    cursor: pointer;
    border-style: solid 1px goldenrod;
}
@keyframes slideInFromLeft {
    0% {
      transform: translateX(-100%);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }
/*
.private-flying{
    display: flex;
    flex-direction: column;
    background-image: url("interior-2.jpeg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right;
    width: 100%;
    height: 500px;
    background-color: rgb(21, 21, 22);
    font-size: 20px;
}
.private-flying-text{
    width:48%;
    margin-left: 2%;
    margin-top: 2%;
}
.private-flying h1{
    color: gold;
}
.private-flying p{
    color: white;
    font-size: medium;
}*/
.focus{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    border-top: solid goldenrod 5px;
}
.focus-text  h1{
    text-align: center;
    margin: 5% 0% 5% 0%
}
.main-areas{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-content: space-evenly;
    width: 100%;
    background-color: white;
    align-items: center;
    text-align: center;
}
.main-areas .image-container img {
    margin-bottom: 5%;
}
.image-container:hover img {
    border: solid 3px goldenrod;
}
.main-areas h1{
    font-size: 30px;
    color: goldenrod;
    margin-top: 5%;
}

.circle{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 21%;
    height: 550px;
    margin-right: 2%;
    margin-left: 2%;
}
.image-container {
    position: relative;
    width: 250px;
    height: 250px;
}

.image-container img {
    width: 100%;
    height: 100%;
    border: 3px solid goldenrod;
    border-radius: 100%;
}

.image-container .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 100%;
    background-color: black; /* The overlay color */
    opacity: 0;
    transition: opacity 0.5s ease;
    border: 3px solid goldenrod;
}

.image-container:hover .overlay {
    opacity: 0.5;
}
.image-container .image-button {
    position: absolute;
    top: 50%; /* Center vertically */
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Adjust to exact center */
    display: none; /* Hide by default */
    padding: 10px 20px;
    text-decoration: none;
    background-color: goldenrod;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.6s ease;
}

.image-container:hover .image-button {
    display: block;
}

/* Optional: Style for hover effect on the button itself */
.image-container .image-button:hover {
    background-color: darkgoldenrod;
}

.slideshow{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-content: center;
    width: 80%;
    height: auto;
    background-color: white;
    color: black;
    text-align: center;
    margin-bottom: 5%;
    margin-left: 10%;
    margin-right: 10%;
    margin-top: 5%;
    border-top: solid goldenrod 5px;
   
}
.slideshow h1{
    margin: 5% 0% 5% 0%;
}
.slideshow .carousel-item {
height: 500px; /* Adjust the height as needed */
}

.slideshow .carousel-item img {
width: 70%;
height: 100%;
object-fit:cover; /* This will ensure images cover the whole area */
}

footer{
    display: flex;
    flex-direction: row;
    justify-content: baseline;
    align-items: center;
    background-color: rgb(21, 21, 22);
    width: 100%;
    height: 170px;
    font-size: 15px;
}
footer img{
    width: 120px;
    height: 70px;
    margin-left: 2%;
}
.foot-col{
    color: goldenrod;
    height: 100px;
    overflow: visible;
    margin-left: 5%;
    width: 20%;
}
.foot-col h1{
    font-size: 20px;
}

@media screen and (max-width: 600px) {
    .intro{
        display: none;
    }
    header{
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        height: auto;
        flex-direction: row;
        padding-top: 10px;
        padding-bottom: 20px;
        border-bottom: 2px solid goldenrod;
    }
    .logo{
        width: 50%;
        margin-top: 5%;
    }
    .logo img{
        width: 100px;
        height: auto;
    }
    nav{
        flex-wrap: wrap;
        flex-direction: column;
        width: 100%;
        overflow: visible;
    }
    
    nav a{
        width: 100%;
        justify-content: center;
        align-items: center;
        text-align: center;

        padding-bottom: 15px;
        border-bottom: 1px solid goldenrod;

    }
    #myButton {
        display: none;

    }
    #myButton img{
        width: 30px;
        height: 30px;
    }
    header button {
        width: 50px;
        height: 50px;
        margin-right: 3%;
        margin-top: 5%;
    }
    .nav-mobile{
        background-color: black;
    
    }
    .nav-mobile a{
        padding: 10px 0px 10px 0px;
        height: 50px;
    }
    .nav-mobile a:hover{
        background-color: grey;
        text-decoration: none;
    }
    .we-are{
        display: flex;
        flex-direction: column;
        width: 100%;
        height: auto;
    }
    .we-are-text{
        width: 100%;
        margin: 0;
    }
    .we-are-text h1{
        margin-bottom: 5%;
        text-align: center;
        margin-left: 0;
        margin-right: 0;
    }
    .we-are-text p{
        width: 94%;
        margin-left: 2%;
        margin-right: auto;
        margin-top: 2%;
    }
    .we-are p{
        margin: 5%;
        color: white;
        overflow: hidden;
        text-align: center;
        font-size: 0.75rem;

    }
    .we-are-img{
        width: 100%;
    }
    .we-are-img img{
        width: 100%;
    }
    .we-are-vid{
        width: 100%;
        height: auto;
        margin: 0;
        
    }
    .we-are-vid video{
        width: 100%;
        margin: 0;
    }
    .main-areas{
        display: flex;
        flex-direction: column;
    }
    .circle{
        width: auto;
        padding-top: 30px;
        padding-bottom: 30px;
        margin-left: 0;
        margin-right: 0;
    }
    .circle h1{
        margin-top: 0.1%;
    }
    .circle p{
        margin-left: 2%;
        margin-right: 2%;
    }
    .image-container:hover .image-button {
        display: block;
    }
    .overlay{
        display: none;
    }
    .image-container img {
        width: 75%;
        height: 75%;
        border-radius: 50%;
    }
    
    .image-container .overlay {
        border-radius: 50%;
        background-color: black; /* The overlay color */
    }
    .lm{
        text-decoration: none;
        background-color: goldenrod;
        margin-top: 3%;
        padding: 10px 20px 10px 20px;
        color: black;
    }
    .lm:hover{
        background-color: gold;
        color: white;
    }
    #bl{
        background-color: rgb(21, 21, 22);
        color: white;
    }
    .slideshow{
        display: none;
    }
    .fleet{
        width: 100%;
        height: auto;
        border-top: 5px solid goldenrod;
        position: relative;
    }
    .fleet img{
        width: 100%;
        height: auto;
    }
    .overlay-fleet {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
        color: white;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.5s ease;
    }
    
   .fleet:hover .overlay-fleet {
        opacity: 1;
    }
    
    .button {
        background-color: goldenrod;
        color: white;
        padding: 10px 20px;
        text-decoration: none;
        border: none;
        border-radius: 5px;
        transition: background-color 0.3s;
    }
    
    .button:hover {
        background-color: darkgoldenrod;
    }
    footer{
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        align-items: baseline;
    }
    footer img{
        width: 30%;
        height: 20%;
        margin-top: 5%;
        margin-bottom: 5%;
    }
    .foot-col{
        width: 90%;
        height: auto;
        font-size: small;
    }
    .foot-col h1{
        font-size: small;
    }
    .foot-col p{
        font-size: 10px;
    }
    
}
@media only screen and (min-width: 601px) and (max-width: 900px) {
    /* Your styles for small devices */
    .intro{
        height: 250px;
    }
    .intro img{
        height: 250px;
    }
    .intro{
        display: none;
    }
    header{
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        height: auto;
        flex-direction: row;
        padding-top: 10px;
        padding-bottom: 20px;
        border-bottom: 2px solid goldenrod;
    }
    .logo{
        width: 50%;
        margin-top: 5%;
    }
    .logo img{
        width: 100px;
        height: auto;
    }
    nav{
        flex-wrap: wrap;
        flex-direction: column;
        width: 100%;
        overflow: visible;
    }
    
    nav a{
        width: 100%;
        justify-content: center;
        align-items: center;
        text-align: center;

        padding-bottom: 15px;
        border-bottom: 1px solid goldenrod;

    }
    #myButton {
        display: none;

    }
    #myButton img{
        width: 30px;
        height: 30px;
    }
    header button {
        width: 50px;
        height: 50px;
        margin-right: 3%;
        margin-top: 5%;
    }
    .nav-mobile{
        background-color: black;
    
    }
    .nav-mobile a{
        padding: 10px 0px 10px 0px;
        height: 50px;
    }
    .nav-mobile a:hover{
        background-color: grey;
        text-decoration: none;
    }
    .we-are{
        display: flex;
        flex-direction: column;
        width: 100%;
        height: auto;
    }
    .we-are-text{
        width: 100%;
        margin: 0;
    }
    .we-are-text h1{
        margin-bottom: 5%;
        text-align: center;
        margin-left: 0;
        margin-right: 0;
    }
    .we-are-text p{
        width: 94%;
        margin-left: 2%;
        margin-right: auto;
        margin-top: 2%;
    }
    .we-are p{
        margin: 5%;
        color: white;
        overflow: hidden;
        text-align: center;
        font-size: 0.75rem;

    }
    .we-are-img{
        width: 100%;
    }
    .we-are-img img{
        width: 100%;
    }
    .main-areas{
        display: flex;
        flex-direction: column;
    }
    .circle{
        width: auto;
        padding-top: 30px;
        padding-bottom: 30px;
        margin-left: 0;
        margin-right: 0;
    }
    .circle h1{
        margin-top: 1%;
    }
    .circle p{
        margin-left: 2%;
        margin-right: 2%;
    }
    .image-container:hover .image-button {
        display: block;
    }
    .overlay{
        display: none;
    }
    .image-container img {
        width: 85%;
        height: 90%;
        border-radius: 50%;
    }
    
    .image-container .overlay {
        border-radius: 50%;
        background-color: black; /* The overlay color */
    }
    .lm{
        text-decoration: none;
        background-color: goldenrod;
        margin-top: 3%;
        padding: 10px 20px 10px 20px;
        color: black;
    }
    .lm:hover{
        background-color: gold;
        color: white;
    }
    #bl{
        background-color: rgb(21, 21, 22);
        color: white;
    }
    .fleet{
        width: 100%;
        height: auto;
        border-top: 5px solid goldenrod;
        position: relative;
    }
    .fleet img{
        width: 100%;
        height: auto;
    }
    .overlay-fleet {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
        color: white;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.5s ease;
    }
    
   .fleet:hover .overlay-fleet {
        opacity: 1;
    }
    
    .button {
        background-color: goldenrod;
        color: white;
        padding: 10px 20px;
        text-decoration: none;
        border: none;
        border-radius: 5px;
        transition: background-color 0.3s;
    }
    
    .button:hover {
        background-color: darkgoldenrod;
    }
    .slideshow{
        display: none;
    }
    footer{
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        align-items: baseline;
    }
    footer img{
        width: 30%;
        height: 20%;
        margin-top: 5%;
        margin-bottom: 5%;
    }
    .foot-col{
        width: 90%;
        height: auto;
        font-size: small;
    }
    .foot-col h1{
        font-size: small;
    }
    .foot-col p{
        font-size: 10px;
    }
  }
  @media only screen and (min-width: 901px) and (max-width: 1200px) {
    .main-areas{
        display: flex;
        flex-wrap: wrap;
    }
    .circle{
        width: 46%;
    }
  }