/* StyleRef for all Pages */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'jost'; 
    src: url(fonts/Jost/Jost-VariableFont_wght.ttf) format('truetype'),
         url(fonts/Jost/Jost-Italic-VariableFont_wght.ttf) format('truetype');
         
    font-weight: 100 900; 
    font-style: normal; 
    }

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    background-color: #181a29;
    color: #fff;
    font-family: 'jost','arial',sans-serif;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%; height: 150px;
    padding: 70px;
    background-repeat: no-repeat;
    background-size: cover ;
    background-position: center;
    background-image: url(images/Banner2.png);
}

.icon-border {
    border: 2px solid #DE7043;
    border-radius: 100%;
}

nav {
    position: sticky;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    border-bottom: 1px solid #63749E;
    border-top: 1px solid #63749E;
    background-color: #1D2434;
    z-index: 99 !important;
}

.navi {
    display: flex;
    position: relative;
    gap: 0.5rem;
    justify-content: center;
    width: 20%;
    max-width: 600px;
    text-transform: uppercase;
    text-align: center;

}

.btn1 {
    display: flex;
    position: relative;
    width: 130px;
    height: 40px;
    background-color: #363F55;
    border-radius: 7px;
    justify-content: center;
    align-items: center;   
    border: 2px solid #444e69;
    z-index: 1;
    transition: 0.2s;
}

.btn1:hover .dropdown-content {
  display: block;
}

.btn1:hover {
    background-color: #ff9c62 ;
    cursor: pointer;
    transition: 0.2s;
    transform: scale(1.05);
}
.navi a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
}
.navi span {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
}

.dropdown {
    position: relative;
    display: inline-block;
    z-index: 10;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 90%;
    right: -50px;
    background-color:#1d2434fa;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.4);

    padding: 1px 0;
    border-radius: 5px;
}

.dropdown-content a {
    display: block;
    position: relative;
    padding: 10px 0;
    width: 100%;
    margin: 5px auto;
    background-color:#2B3244;
    border-radius: 5px;
    border: 2px solid #181a29;
    z-index: 10;
}

.dropdown-content a:hover {
    background-color: #ff9c62 ;
    color: #fff !important;
    scale: 1.1;
    transition: 0.5s;
    border-radius: 10px;
    z-index: 10;
}
/*White Overlay for Hover*/
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    background-color: rgba(212, 224, 255, 0.43);
    transition: 0.5s;
    color: white;
    border-radius: 10px;
}

.squirrel {
    display: flex;
    align-items: center;
    height: auto;
    margin: auto;

}
.squirrel img {
    height: 150px;
    width: 150px;
    margin: auto;

}
.back-btn {

    background-color: #363F55;
    border-radius: 15px;
    margin: auto;
    width: 300px;
    padding: 10px;
    border: 2px solid #444e69; 
    transition: 0.2s;
}

.back-btn:hover {
    background-color: #ff9c62 ;
    cursor: pointer;
    transition: 0.2s;
    transform: scale(1.05);


}

footer {
    position: relative;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 20px;
    background-color: #1D2434;
    border-top: 1px solid #63749E;
}

.contact {
    text-transform: uppercase;
    text-align: center;
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: 0.2rem;
    line-height: 2;
    margin: auto;
}
#bold {
    border-bottom: dotted #363F55;
    padding: 0px 30px 8px;
}
a:link {
    text-decoration: none;
  }

.contact-light span{
    font-size: 0.8rem;
    font-weight: 400;
    margin-top: 10px; 
    color: #fff;
}

.contact-light-dark span{
    font-size: 1rem;
    font-weight: 400;
    margin-top: 10px; 
    color: #c7c7c7;
}
.socials {
    margin: 30px auto 10px;
}

.socials img {
    width: 30px; height: 30px;
    margin: 0 5px;
}

@media screen and (max-width: 1100px) {

    .navi {
        width: 85%;
    }

    .btn1 {
        width: 100px;
    }
    .squirrel img {
        height: 150px;
        width: 150px;
        margin: 20px auto 0px;
    }
    
} 

@media (hover: none) { 
    .dropdown-content a {
        background-color: #2B3244 ;
        color: #fff !important;
        margin: 2px;
     }
}