@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');
*{
    color: #fff5e9;
}

.left img{
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* .right{
    width: 50%;
}

.left{
    width: 50%;
} */

.info{
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
}

body{
    background: #16302B;
    font-family: 'Nunito Sans';
    font-size: clamp(1rem, 0.9712rem + 0.1282vw, 1.125rem);
    font-weight: 400;
    padding: 40px;
}

a{
    font-weight: 700;
    padding: 15px 30px;
    border: 1px solid #FFFFFF33;
    font-family: 'Source Sans 3';
    border-radius: 512px 512px 512px 512px;
    text-decoration: unset;
}

a:hover .normal-display{
    opacity: 0;
    position: absolute;
}

a:hover .hover-display{
    display: block;
    position: relative;
    opacity: 1;
}

a .hover-display{
    display: none;
    position: absolute;
    opacity: 0;
}

p{
    text-align: center;
    margin-bottom: 20px;
    max-width: 650px;
    margin: 0 auto 20px;
    
}

a:hover{
    border-color: #ffffff;
}

.footer img{

    width: 200px;
    object-fit: contain;
    text-align: center;
    filter: brightness(100);
    text-align: center;

}

.footer{
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.footer::before{
    content: "";
    position: relative;
    top: 0;
    left: 0%;

    width: 50vw;
    background-color: #ffffff;
    height: 1px;
}

.flex{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 80px;
    margin-bottom: 20px;
}

header{
    display: flex;
    flex-direction: row;
    justify-content: end;
    margin-bottom: 20px;
}

.lang-selector{
    display: flex;
    flex-direction: row;
    gap: 0 20px;
    font-size: 14px;
}

.lang-selector a{
    border: none;
    padding: 0;
    
}

.lang-selector a.active{
    text-decoration: underline;
}

.lang{
    display: none;
}

.lang.active{
    display: block;
}

@media screen and (max-width: 991px) {
    .flex{
        flex-direction: column;
        gap: 40px;
    }
}

