.header__wrapper {
    width: 100%;
    background-color: rgb(15, 15, 15) ;
}

.header__container {
    padding: 20px 3%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a{
    width: 30px;
    display: flex;
}


.logo a img {
    width: 100%;
}


.choose__lang {
    display: none;
}

.choose__lang.choose__active {
    display: block !important;
}

.lang__button-arrow {
    display: flex;
}

.lang__button-arrow img{
    transform: rotate(-90deg);
    transition: transform 0.5s ease-out;
    
}



.lang__button {
    display: flex;
    align-items: center;
    font-size: 0.5rem;
    gap: 20px;

}

.choose__lang-ul li a{
    color: rgb(190, 190, 190);
}

.choose__lang-ul li a:hover {
    color: white;
    transition: all 0.3s;
}



.dropdown-arrow img {
    width: 100%;
}

.choose__lang-ul{
    display: flex;
    gap: 15px;
    font-size: 0.5rem;
}

.lang {
    display: flex;
    gap: 30px;
}


.footer {
    min-height: 40vh;
    background: rgb(174,16,21);
    background: linear-gradient(0deg, rgba(174,16,21,1) 0%, rgba(255,29,37,1) 100%);
}

.footer__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 100px !important;
}



.footer-social-links {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.footer-social-item-link img {
    width: 70px;
}

.footer-social-item-link p {
    font-size: 0.8rem;
    font-weight: 500;
    color: white;
}


@media (max-width: 800px) {
    .lang__button {
        font-size: 0.8rem;
    }

    .choose__lang-ul {
        font-size: 0.8rem;
    }
}

@media (max-width: 700px) {
    .footer-social-item-link img {
        width: 50px;
    }
}