/*------ СТИЛИ ГЛАВНОГО МЕНЮ НАЧАЛО ------*/

#main-menu__box-one {
    transition: top 0.3s;
}

.main-menu__box {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
}

.main-menu__block {
    padding: 8px 0;
}

.thy-main-menu {
    margin: 0 auto;
    background: transparent;
}

.custom-logo-link {
    display: flex;
}

.main-menu__logo-box img {
    max-height: 56px;
    width: auto;
}

nav.main-navigation ul {
    margin-block-start: 0px;
    margin-block-end: 0px;
    padding-inline-start: 0px;
    list-style-type: none;
    display: flex;
    gap: 16px;
}

nav.main-navigation ul a {
    color: var(--mm-link-color, #fff);
    font-size: 18px;
    text-decoration: none;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
}

nav.main-navigation ul li a:hover {
    color: var(--mm-link-hover-color, #FDA038);
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
}

.main-menu__social-lang {
    gap: 17px;
}

.main-menu-social__box {
    gap: 8px;
}

.main-menu-social__box a {
     border-radius:50%;
     overflow:hidden;
     transition: all .3s;
     -webkit-transition: all .3s;
     -moz-transition: all .3s;
     -ms-transition: all .3s;
     -o-transition: all .3s;
     transform: perspective(400px) translate3d(0, 0, 0px);
     -webkit-transform: perspective(400px) translate3d(0, 0, 0px);
     -moz-transform: perspective(400px) translate3d(0, 0, 0px);
     -ms-transform: perspective(400px) translate3d(0, 0, 0px);
     -o-transform: perspective(400px) translate3d(0, 0, 0px);
}

.main-menu-social__box a:hover {
     transition: all .3s;
     -webkit-transition: all .3s;
     -moz-transition: all .3s;
     -ms-transition: all .3s;
     -o-transition: all .3s;
     filter:brightness(.85);
     -webkit-filter:brightness(.85);
     transform: perspective(400px) translate3d(0, 0, 20px);
     -webkit-transform: perspective(400px) translate3d(0, 0, 20px);
     -moz-transform: perspective(400px) translate3d(0, 0, 20px);
     -ms-transform: perspective(400px) translate3d(0, 0, 20px);
     -o-transform: perspective(400px) translate3d(0, 0, 20px);
}

.main-menu__lang-switcher {
    font-size: 14px;
    line-height: 17px;
    margin-right: 4px;
    position: relative;
}

.main-menu__lang-switch:hover .main-menu__lang-switcher__options {
    max-height: 70px;
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
    -moz-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -o-transform: scaleY(1);
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    opacity: 1;
}

.main-menu__lang-switcher__options {
    position: absolute;
    left: -10px;
    bottom: -60px;
    width: 56px;
    padding: 10px;
    color: #000;
    opacity: 0;
    max-height: 0px;
    transform: scaleY(0);
    -webkit-transform: scaleY(0);
    -moz-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -o-transform: scaleY(0);
    transform-origin: top;
    z-index: 10000;
}

.main-menu__lang-switcher__options-box {
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    overflow: hidden;
    background: #fff;
}

.main-menu__lang-switcher__thy-lang {
    padding: 3px 5px;
    font-size: 14px;
    text-align: center;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    cursor: pointer;
}

.main-menu__lang-switcher__thy-lang:hover {
    background: blue;
    color: #fff;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
}

.thy-main-menu__contacts-box {
    width: 100%;
    padding: 12px;
    display: none;
    font-size: var(--medium-font-size, 22px);
    color: var(--mm-link-color, #fff);
}

.thy-main-menu__contacts-box a {
    color: var(--mm-link-color, #fff);
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    text-decoration: none;
}

.thy-main-menu__contacts-box a:hover {
    color: var(--mm-link-hover-color,#FDA038 );
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
}

.main-menu__hamburger {
    display: none;
    cursor: pointer;
    padding: 8px 0;
}

.main-menu__hamb-btn {
    margin-left: 23px;
    margin-right: 4px;
    width: 20px;
    height: 2px;
    background: var(--hamb-btn-color, #fff);
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    position: relative;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
}

.main-menu__hamb-btn:before {
    position: absolute;
    content: '';
    width: 24px;
    height: 2px;
    top: 6px;
    left: 0;
    background: var(--hamb-btn-color, #fff);
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
}

.main-menu__hamb-btn:after {
    position: absolute;
    content: '';
    width: 24px;
    height: 2px;
    bottom: 6px;
    left: 0;
    background: var(--hamb-btn-color, #fff);
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
}

.main-menu__hamb-btn.menu-clicked {
    background: transparent;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
}

.main-menu__hamb-btn.menu-clicked:before {
    top: 0px;
    transform: rotate(45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transform-origin: center;
}

.main-menu__hamb-btn.menu-clicked:after {
    bottom: 0px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transform-origin: center;
}




@media only screen and (max-width: 1272px) {
  
}

@media only screen and (max-width: 1172px) {
  
    
}

@media only screen and (max-width: 1045px) {

    .main-menu__hamburger {
        display: block;
    }
    
    .thy-main-menu {
        display: flex;
        flex-wrap: wrap;
        position: absolute;
        left: -150%;
        top: 72px;
        width: 100%;
        height: calc(100dvh - 72px);
        background: var(--thy-main-menu-mobile-bg, #212A28);
        z-index: 9999;
        overflow: hidden;
        transition: all .3s;
        -webkit-transition: all .3s;
        -moz-transition: all .3s;
        -ms-transition: all .3s;
        -o-transition: all .3s;
    }

    .thy-main-menu.menu-clicked {
        left: 0;
        transition: all .3s;
        -webkit-transition: all .3s;
        -moz-transition: all .3s;
        -ms-transition: all .3s;
        -o-transition: all .3s;
        overflow-y: scroll;
    }

    .thy-main-menu.menu-clicked::-webkit-scrollbar {
        display: none;
    }

    nav.main-navigation {
        width: 100%;
    }

    nav.main-navigation ul {
        display: block;
    }

    nav.main-navigation ul li {
        display: flex;
    }

    nav.main-navigation ul li a {
        width: 100%;
        height: 52px;
        padding: 12px;
        font-size: 24px;
        line-height: 21px;
        transition: all .3s;
        -webkit-transition: all .3s;
        -moz-transition: all .3s;
        -ms-transition: all .3s;
        -o-transition: all .3s;
        display: flex;
        align-items: center;
        justify-content: space-around;
        text-align: center;
    }

    nav.main-navigation ul li a:hover {
        background: var(--mob-menu-li-bg, #373f3d);
        transition: all .3s;
        -webkit-transition: all .3s;
        -moz-transition: all .3s;
        -ms-transition: all .3s;
        -o-transition: all .3s;
    }

    .main-menu__social-lang {
        margin-left: auto;
    }

    .thy-main-menu__contacts-box {
        display: block;
    }
   

}

@media only screen and (max-width: 819px) {
    
  
}

@media only screen and (max-width: 767px) {
   
}

@media only screen and (max-width: 640px) {
    .main-menu-social__box {
        display: none;
    }
}

@media only screen and (max-width: 560px) {
    
   
}


/*------ СТИЛИ ГЛАВНОГО МЕНЮ КОНЕЦ ------*/


