.header-dropdown {
    width: 300px;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    position: absolute !important;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex !important;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    background-color: white;
    box-shadow: 2px 4px 10px #00000022;
}

.header-dropdown::before {
    content: none !important;
}

.header-dropdown__target {
    position: relative;
}

.header-dropdown__target:hover + .header-dropdown {
    opacity: 1;
    visibility: visible;
}

.header-dropdown:hover {
    opacity: 1;
    visibility: visible;
}

.header-dropdown__link {
}

@media screen and (min-width: 768px) {
    .screen {
        overflow: visible;
    }
}

@media screen and (max-width: 768px) {
    .header-dropdown {
        position: relative !important;
        max-height: 0;
        opacity: 1;
        visibility: visible;
        background-color: inherit;
        top: 0;
        left: 0;
        box-shadow: none;
        transform: none;
        overflow: hidden;
        padding: 0;
    }

    .header-dropdown__target:hover + .header-dropdown {
        max-height: 400px;

    }

    #mobile-menu {
        overflow-y: auto;
    }
}

.seo {
    padding: 0;
    margin: -50px 0 80px 0;
}

.seo-text {
    margin: 0px 15px;
    text-align: left;
    line-height: 1.5;
}

.seo-text p {
    text-align: left;
}

.seo-text ul {
    list-style: disc;
}

.payment-text {
    margin-top: 70px;
}

.payment-text h1 {
   font-size: 46px;
}

.payment-text h2 {
   font-size: 36px;
}

.payment__images {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
}

.payment__images img {
    width: 200px;
}


.sss {
    font-size: 40px;
    top: -20px;
}

@media screen and (max-width: 768px) {
    .seo-text p {
        font-size: 14px;
    }

    .seo-text h1 {
        font-size: 30px;
        line-height: 1.2;
    }

    .seo-text h2 {
        font-size: 24px;
        line-height: 1.2;
    }

    .seo-text ul li {
        font-size: 14px;
    }

    .seo-text ul {
        font-size: 14px;
        padding-left: 20px;
    }

    .payment__images {
        gap: 10px;

    }

    .payment__images img {
        width: 75px;
    }
    .sss {
        font-size: 24px;
    }
}

