
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

@font-face {
    font-family: SfProDisplay;
    src: url(./fonts/SFPRODISPLAYMEDIUM.OTF);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    align-items:flex-start;
    justify-content: center;
    min-height: 100%;
    background: #2A3C49;
    font-family: SfProDisplay;
    font-weight: 500;
    margin-top: 10%;
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: .5px;
}

.container {
    position: relative;
    width: 500px;
    height: auto;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;

}

.header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 35px;
}
.header-img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;

    clip-path: border-box;
}

.header-img img {
    width: 100%;
    margin-top: 20px;
}

.title p {
    text-align: center;
    margin-bottom: 15px;
    font-size: 17px;
}

.links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    max-width: 580px;
    width: 100%;
    gap: 25px;
}


.content {
    width: 100%;
    height: auto;
    background: rgba(28, 28, 28, 0.5);
    z-index: 10;
    padding: 15px 30px;
    border-radius: 50px;
    text-transform: uppercase;
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content:space-between;
    transition: .5s;
    text-align: center;
}
.content:hover {
    transform: scale(1.05);
}

.content div {
    width: 25px;
}

a {
    text-decoration: none;
    color: #fff;
    
}

.fa-brands {
    display: inline-block;
}
.img-menu {
    filter: invert(1);
}

.fa-icon {
    font-size: 25px;
}
@media (max-width: 900px) {

    .container span {
        left: 35%;

    }
}

@media (max-width: 480px) {
    .container {
        width: calc(100% - 10%);
        height: auto;
    }
    .body {
        font-size: 12px;
    }

}

.img {
    max-width: 100%;
    width: 650px;
    object-fit: cover;
    touch-action: pinch-zoom;
}
.modal {
    inset: 0;
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 100;
    background: rgba(28, 28, 28, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: none;
    transition: all .5s;
    
}

.language-modal-root {
    padding: 40px;
    max-height: 100vh;
    height: 100%;
    overflow: auto;
    scrollbar-width: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    transform: translateY(100%);
    transition: all 0.8s ease-in-out ; 
    opacity: 0;
}

.modal-container {
    padding: 0px 30px 80px 30px;
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    touch-action: pinch-zoom;
}

.modal.show .language-modal-root {
    transform: translateY(0); 
    opacity: 1;
}


.close-btn-container {
    position: sticky;
    top: 4px;
    right: 4px;
    z-index: 100;
    float: right;
    width: 34px;
    height: 34px;

}
.close {
    background: #19242b;
    color: #fff;
    border-radius: 50%;
    padding: 6px;
    cursor: pointer;
    transition: .1s;
}

.close:hover {
        background: #0d1216;

}

 .locale-label-container {
    display: flex;
    flex-direction: column;
}

 @media (max-width: 767px) {
    .img {
        width: 100%;
    }

    .language-modal-root {
    position: relative;
    display: flex;
    }
    .close-btn-container {
    position: absolute;
    top: 25px;
    right: 25px;


}
 }

 @media (max-width: 440px) {
    .language-modal-root {
        padding: 25px;
    }
    .modal-container {
        padding: 0;
    }

 }

