.footer {
    background-color: #003366;
    color: #fff;
    padding: 40px 0;

}

.footer-container {


    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-logo {
    margin: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo img {
    width: 250px;
    max-width: 100%;
}

.footer-logo-text {
    color: #fff;
    font-size: 24px;
    margin-left: 10px;
    text-align: right;
}

.footer-links {

    display: grid;
    justify-content: space-between;

    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    padding: 10px;
}

.footer-links a {
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 35px;
    cursor: pointer;

    color: #fff;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 30px;
}

.footer-links ul li a {
    color: #fafafa;
    font-size: 12px;
    cursor: pointer;
    text-decoration: none;
}

.footer-social {
    flex: 1;
    text-align: right;
    padding: 10px;
}

.footer-social img {
    height: 25px;
}

.footer-bottom {
    margin-top: 30px;
    text-align: center;
    font-size: 14px;
}

.middle {
    margin: 0;
    padding: 0;


    text-align: right;
}

.btn {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: #f1f1f1;
    margin: 5px;
    border-radius: 5px;

    overflow: hidden;
    position: relative;
    transition: 0.3s linear;
}

.btn img {
    width: 100%;

    transition: 0.3s linear;
}

.btn:nth-child(1) i {
    opacity: 0.8;
    color: #3b5998;
}

.btn:nth-child(2) i {
    opacity: 0.8;
    color: #1da1f2;
}

.btn:nth-child(3) i {
    opacity: 0.8;
    color: #c32aa3;
}

.btn:nth-child(4) i {
    opacity: 0.8;
    color: #db4437;
}

.btn:hover {
    transform: scale(1.1);
}

.btn:hover i {
    transform: scale(1.2);
    color: #fff;
}

.btn:before {
    content: "";
    position: absolute;
    width: 140%;
    height: 140%;
    transform: rotate(45deg);
    left: -110%;
    top: 90%;
}

.footer-img {

    width: 30px;
    margin: 5px;

}


@media (max-width: 1023px) {


    @media (max-width: 700px) {

        .footer-links{
            display: none;
        }
        .btn {
            height: 50px !important;
            width: 50px !important;
        }

        .footer-logo {
            display: block !important;

        }

        .footer-logo-text {
            text-align: left;
        }
    }
}
.VIpgJd-ZVi9od-aZ2wEe-wOHMyf{
    opacity: 0;
}


.terms-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    display: none;


}

.terms-modal-content {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    width: 90%;
    padding: 20px;
}

.terms-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.hidea-logo {

    height: 40px;
}

.lang-login {
    display: flex;
    gap: 10px;
}

.lang-btn, .login-btn {
    padding: 6px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    cursor: pointer;
}

.terms-title {
    font-size: 24px;
    margin-bottom: 16px;
}

.terms-body {
    margin-bottom: 20px;
    line-height: 1.6;
}

.terms-list {
    list-style-type: none;
    padding-left: 20px;
    margin: 10px 0;
}

.terms-list li {
    margin-bottom: 8px;
    position: relative;
}

.terms-list li::before {
    content: "•";
    position: absolute;
    left: -20px;
}

.terms-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.reject-btn, .accept-btn, .more-options-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    font-weight: bold;
}

.reject-btn {
    background-color: #fff;
    color: #333;
    border: 1px solid #ddd;
}

.accept-btn {
    background-color: #014983;
}

.more-options-btn {
    background-color: #f5f5f5;
    color: #333;
}

.privacy-terms {
    margin-top: 15px;
    font-size: 12px;
    text-align: center ;
    cursor: pointer;
}

.privacy-terms a {
    color: #014983;
    text-decoration: none;
}

.privacy-terms a:hover {
    text-decoration: underline;
}
.back-to-top {
    bottom: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
}
.back-to-top {
    position: fixed;
    bottom: 40%;
    right: 5px;
    background-color: #004f91;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.back-to-top.active {
    opacity: 1;
    pointer-events: auto;
}