.navBar
{
    position: fixed;
    top: 0%;
    left: 0%;
    display: flex;
    width: 100%;
    height: 60px;
    background-color: #ffffff;
    color: white;
    justify-content: space-evenly;
    align-items: center;
    border: none;
    z-index: 4;
    border-bottom: 1px solid grey;
}

.navBarBtn
{
    height: 60px;
    width: 20%;
    background-color: #ffffff;
    color: black;
    justify-content: center;
    align-items: center;
    z-index: 2;
    border: none;
    font-size: 14px;
    font-family: Arial, Helvetica, sans-serif;
}

.navMenuV
{
    position: fixed;
    top: 60px;
    left: 0%;
    width: 100%;
    height: auto;
    color: black;
    background-color: #ffffff;
    flex-direction: column;
    border: none;
    z-index: 3;
    justify-content: center;
    border-bottom: 1px solid grey;
  
  /* 1. Move it off-screen */
    transform: translateY(-150%);
    
    /* 2. Define the transition speed and timing */
    transition: transform 0.4s ease-in-out;
}

    /* 3. The class that triggers the slide-in */
.navMenuV.is-open
{
    transform: translateY(0);
}

.navMenuV button
{
    width: 100%;
    border-top: 1px solid white;
}

.navBarV
{
    justify-content: center;
    transition: 2s;
    transition-property: top;
}

.infoBtn
{
    height: auto;
    width: 100%;
    background-color: white;
    color: white;
    z-index: 2;
    font-size: 12px;
    font-family: Arial, Helvetica, sans-serif;
    border-radius: 10px;
    margin: 20px;
    display: flex;
    text-align: left;
    padding: 10px;
    flex-wrap: wrap;
    border: 1px solid grey;
}

.infoBtn:hover
{
    background-color: #e0e0e0
}

button
{
    cursor: pointer;
    transition-duration: 0.5s;
}


.page
{
    position: absolute;
    top: 60px;
    height: auto;
    display: flex;
    flex-direction: column;
    width: 100%;
    left: 0%;
    justify-content: center;
}
		
.content-area
{
    top: 0%;
    left: 0%;
    width: 100%;
    height: auto;
    z-index: 2;
    min-height: 80vh;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
    background-color: #ffffff;
    justify-content: center;
}

.card
{
    height: auto;
    width: 100%;
    background-color: white;
    color: white;
    z-index: 2;
    font-size: 12px;
    font-family: Arial, Helvetica, sans-serif;
    border-radius: 10px;
    margin: 20px;
    display: flex;
    text-align: left;
    padding: 10px;
    flex-wrap: wrap;
    border: 1px solid grey;
}

h1
{
    font-family: Arial, Helvetica, sans-serif;
    width: 100%;
    text-align: center;
}
h3
{
    color: black;
    font-family: Arial, Helvetica, sans-serif;
    margin-left: 5px;
    margin-right: 5px;
}

h4
{
    color: black;
    font-size: 12px;
    font-family: Arial, Helvetica, sans-serif;
    margin-left: 5px;
    margin-right: 5px;
}

p
{
    color: black;
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
    margin: 10px;
}

a
{
    color: black;
    font-size: 12px;
    font-family: Arial, Helvetica, sans-serif;
    margin: 10px;
}

h2
{
    color: black;
    font-family: Arial, Helvetica, sans-serif;
}
        
.footer
{
    bottom: 0%;
    height: auto;
    background-color: #ffa500;
    color: white;
    z-index: 2;
    font-size: 12px;
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    flex: 1;
    text-align: left;
    padding: 10px;
    flex-wrap: wrap;
}

.image
{
    aspect-ratio: auto;
    object-fit: contain;
    margin: 2%;
    min-width: 300px;
    flex: 1;
    border: 10px solid black;
    border-radius: 20px;
    align-self: center;
    height: auto;
}


.title
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: auto;
    width: 100%;
}

.aircraftLabel
{
    background-color: #f0f0f0;
    padding: 5px;
}

.tag
{
    display: flex;
    padding: 10px;
    height: auto;
    width: auto;
    background-color: #0088ff;
    color: white;
    border-radius: 50px;
    margin-left: 5px;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.opeTag
{
    background-color: #800000;
}

.tagContainer
{
    display: flex;
}


html, body
{
    background-color: white;
}

.row
{
    display:flex;
    justify-content: space-between;
    flex-direction: row;
    margin-top: 5px;
    flex-wrap: wrap;
}

.column
{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex: 1;
    min-width: 300px;
    margin: 20px;
}

.pricing
{
    width: 320px;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.link
{
    font-size: 16px;
    margin: 0;
    color: blue;
}

.logo-button
{
    height: auto;
    width: 150px;
    z-index: 2;
    font-size: 12px;
    font-family: Arial, Helvetica, sans-serif;
    border-radius: 10px;
    display: flex;
    text-align: left;
    padding: 0;
    border: none;
    margin: 10px;
}

.logo-button-image
{
    aspect-ratio: auto;
    object-fit: contain;
    align-self: center;
    height: auto;
    width: 150px;
    margin: 0;
    border: none;
}

  