header{
    font-family: "Alice", serif;
    font-weight: 400;
    font-style: normal;
}
.ddos{
    font-size: 100px;
    color: red;
    background: #fff;
}
.seo-header-container {
    display: flex;
    justify-content: center;
}

.seo-logo-header {
    max-width: 250px;
    height: 60px;
    padding: 0 20px;
}

.seo-header-contacts {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background-color: inherit;
    border-radius: 4px;
    position: absolute;
    right:0px;
    top: 120px;
    padding: 5px 10px;
    
}

.seo-header-contact {
    width: 80px;
    height: 80px;
    background-color: #198754;
    cursor: pointer;
    border-radius: 50%;
    transition: all 300ms ease-in-out;
}
.seo-nav_wrapper {
    width: 100%;
}

.seo-header-contact > span {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
} 

.seo-icon-header {
    width: 40px;
    height: 40px;
}

.seo-favorite-desctop{
    display: none;
}
.seo-desktop-menu {
    display: flex;
    max-width: 1400px;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.seo-logo img {
    width: 160px;
    height: 60px;
    object-fit: cover;
}
.seo-desktop-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.seo-desktop-menu .seo-nav-left,
.seo-desktop-menu .seo-nav-right {
    display: flex;
}



.language-menu {
    display: none;
    position: absolute;
    left: -17px;
    z-index: 99999;
}

.switcher-menu-class {
    position: relative;
    cursor: pointer;
}

.menu-switcher-container .switcher-menu-class li {
    text-align: center;
    border-radius: 5px;
    background: #0d0d0d;
    padding: 7px 2px; 
    transition: background 0.4s ease-in-out;
}


.seo-favorite-mobile {
    display: none;
    align-items: center;
    gap: 10px;
}

/*==================*/
.seo-fancy-border {
    background-size: 40% 50px;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 50px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.seo-mobile-nav .seo-fancy-border {
    max-width: 180px;

}

.seo-logo {
    display: flex;
    align-items: center;
}

/*ul.seo-submenu li .seo-submenu{*/
/*    right: 205px;*/
/*}*/
.seo-fancy-border:hover {
    transition: transform 0.3s ease;
}

.seo-hover-line {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 105px;
    word-wrap: break-word;
    max-height: 50px;
    font-size: 1.1rem;
}

.seo-hover-line::before {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 2px;
    background-color: var(--golden-color);
    transition: width 0.2s ease-in-out;
}

.seo-hover-line:hover:before {
    width: 50%;
}


.seo-mobile-menu {
    display: none;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
}

.seo-mobile-logo {
    text-align: center;
    flex: 1;
}

.seo-mobile-logo a {
    text-decoration: none;
    font-size: 24px;
}

.seo-burger-menu {
    font-size: 30px;
    border: none;
    cursor: pointer;
    background: none;
    padding: 0;
    position: relative;
}

.seo-burger-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 20px;
}

.seo-burger-line {
    width: 25px;
    height: 3px;
    background-color: var(--golden-color);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.seo-mobile-nav {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, linear 0.5s;
    position: absolute;
    top: 100%;
    width: 100%;
    border-top: 2px solid var(--golden-color);
    padding: 10px;
    font-weight: bold;
    box-sizing: border-box;
    text-align: center;
    background: var(--darker-black-color);
    color: var(--white-color);
    visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.seo-mobile-nav.open {
    max-height: 500px;
    visibility: visible;
    transition: max-height 0.5s ease, visibility 0s linear 0s;

}


.seo-mobile-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.seo-mobile-nav a {
    text-decoration: none;
    display: block;
    padding: 10px;
    font-size: 1.1rem;
    font-weight: lighter;
}


.seo-burger-menu.open .seo-burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    margin-bottom: 0px;
}

.seo-burger-menu.open .seo-burger-line:nth-child(2) {
    opacity: 0;
}

.seo-burger-menu.open .seo-burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    margin-top: 0px;
}

.seo-burger-menu .seo-burger-line:nth-child(1),
.seo-burger-menu .seo-burger-line:nth-child(3) {
    transition: transform 0.3s ease, margin 0.3s ease;
}



.favorite-header {
    display: flex;
    align-items: center;
    position: relative;
    width: 35px;
    height: 35px;
    transition: transform 0.3s ease, filter 0.3s ease;
}



.favorite-header-icon {
    width: 30px;
    height: 30px;
    display: block;
    margin-bottom: 5px;
}

.favorite-number {
    position: absolute;
    top: 0px;
    left: 15px;
    transform: translate(-50%, -50%);
    font-size: 14px;
    font-weight: bold;
}

.favorite-header:hover {
    transform: scale(1.2);
}

.seo-logo-header {
    height: 80px;
}


@media (max-width:1580px) {
    .seo-header-contacts {
        position:fixed;
        top: auto;
        bottom: 0;
        right: 100px;
        flex-direction: row;
    }
    .seo-header-contact {
        width: 50px;
        height: 50px;
    }
}

@media only screen and (max-width: 1340px) {
    .seo-header-menu-favorite {
        display: flex;
        gap: 20px;
        padding: 0 20px;
        align-items: center;
    }
    .seo-favorite-desctop{
        display: flex;
    }
    
    .seo-mobile-menu {
        display: flex;
    }
    .seo-desktop-menu {
        display: none;
    }


}
@media only screen and (max-width: 756px) {
    .seo-icon-header{
        width: 20px;
        height: 20px;
    }
    .seo-mobile-nav a {
        padding: 3px;
    }
    .seo-header-contacts {
        padding: 5px;
        
    }
}
@media only screen and (max-width: 450px) {
    .seo-favorite-mobile{
        display: flex;
    }
    .seo-favorite-desctop{
        display: none;
    }
    .seo-header-contacts{
        /* flex-direction: column; */
    }
    
}