/*
Theme Name: meltheme-1
Author: Your Name
Description: meltheme-1
Version: 1.0
*/

@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    outline: none;
}

body {
    background: #031723;
    font-family: Roboto, Helvetica Neue, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

.container {
    max-width: 1500px;
    margin: 0 auto;
    box-sizing: border-box;
}

#header {
    margin-top: 66px;
}

.header__container {
    display: flex;
    background: #363c3f;
    padding: 10px 20px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    justify-content: space-between;
    align-items: center;
}

.header__logo {
    flex: 0%;
}

.header__menu {
    display: flex;
    gap: 15px;
    flex: 50%;
    justify-content: center;
}

.header__menu-item {
    color: #f6ce60;
    text-decoration: blink;
    font-size: 17px;
    font-weight: 500;

    &:hover {
        text-decoration: underline;
    }
}

.header__btns {
    flex: 0%;
}

.header__logo-img {
    max-width: 200px;
}

.custom-language-switcher {
    margin-bottom: 10px;
}

.language-list {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.language-item {
    color: #ffbe00;
    text-decoration: blink;
    font-weight: 100;
    font-size: 13px;
}

.language-item.active {
    font-weight: 600;
}

.language-item img {
}

.main {
}

.editor-styles-wrapper, .main__container {
    background: #fff;
    padding: 20px;
}

.content {
}


.content {

    font-size: 17px;

    letter-spacing: -.03em;

    line-height: 28px;

    padding-top: 50px;


    h1 {
        border-bottom: 1px solid #ebebeb;
        font-weight: 500;
        color: #1d3a48;
        margin-bottom: 35px;

        &:after {
            content: "";
            border-bottom: 2px solid #1d3a48;
            width: 140px;
            display: block;
            margin-top: 14px;
            margin-bottom: -2px;
        }

    }

    h2 {
        font-size: 29px;
        margin-bottom: 20px;
        line-height: 1.2em;
        font-weight: 400;
        text-transform: none;
        margin-top: 29px;
    }

    p {
        font-size: 17px;
        letter-spacing: -.03em;
        line-height: 28px;
        margin-bottom: 10px;
    }

    img {
        max-width: 100% !important;
        margin-bottom: 15px;
    }

    .aligncenter {
        text-align: center;
    }

    table {
        width: 100%;
        margin-bottom: 30px;
        border-collapse: collapse;

        td {
            padding: 10px 20px;
            border: 1px solid #4f4f4f;
        }
    }

    ul {
        list-style: square inside;
        margin: 0 0 .8em 1.5em;
    }

    ol {
        margin: 0 0 .8em 1.5em;
    }


}

.btn__group {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.btn {
    font-size: 14px;
    text-decoration: none;
    background-color: #ffdd3a;
    color: #1d3a50;
    padding: 9.5px 28px;
    border-radius: 5px;
    display: inline-block;
    -webkit-transition-duration: .1s;
    transition-duration: .1s;

    &.btn-red {
        background-image: linear-gradient(90deg, #e91e63, #e91e63);
        color: #fff;
        box-shadow: rgb(0 0 0 / 20%) 0 25px 20px -20px;

    }

    &.btn-orange {
        background-image: linear-gradient(90deg, #e95d1e, #e95d1e);
        color: #fff;
    }

    &.btn-yellow {
        background-image: linear-gradient(90deg, #ffce50, #ffce50);
        color: #000;
    }


    &:hover {
        -webkit-animation: .3s pulse 3;
        animation: .3s pulse 3;
    }
}

#footer {
}

.footer__container {
    background: #363c3f;
    padding: 20px;
    margin-bottom: 20px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    color: #9ba1a7;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
    font-size: 13px;
}

.footer__logo {
    font-size: 13px;
    flex: calc(100% / 3);
}

.footer__logo-img {
    width: 100px;
    margin-bottom: 20px;
}

.footer__links {
    flex: calc(100% / 3);
}

.footer__contacts {
    flex: calc(100% / 3);
}

.footer__links {
}

.footer__title {
    color: #fff;
    margin-bottom: 10px;
}

.footer__items {
    display: flex;
    gap: 13px;
    flex-wrap: wrap;
}

.footer__item {
    color: #9ba1a7;
    text-decoration: auto;
    /* flex-basis: 50%; */
    max-width: 46%;
    white-space: nowrap;

    &:hover {
        text-decoration: underline;
    }
}

.footer__title {
}

.footer__contact {
}

.footer__copyright {
    color: #9ba1a7;
    font-size: 12px;
    text-align: center;
    margin-bottom: 15px;
}


.schema-faq-section {
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

.schema-faq-question {
    cursor: pointer;
    font-weight: bold;
    color: #0073aa;
    margin: 0;
    display: block;
    transition: color 0.3s ease;
}

.schema-faq-question:hover {
    color: #005177;
}

.schema-faq-answer {
    display: none; /* Скрываем ответы по умолчанию */
    margin: 10px 0 0;
    color: #333;
    transition: max-height 0.3s ease;
}

.schema-faq-section.active .schema-faq-answer {
    display: block; /* Показываем ответ, если родитель активен */
}

.anim{

    &:hover {
        -webkit-animation: .3s pulse 3;
        animation: .3s pulse 3;
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }
    100% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
}

.hamburger {
    padding: 15px 15px;
    display: inline-block;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
}


.hamburger-box {
    width: 40px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 40px;
    height: 4px;
    background-color: #ffce50;
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}

.hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block;
}

.hamburger-inner::before {
    top: -10px;
}

.hamburger-inner::after {
    bottom: -10px;
}

/*
 * Squeeze
 */
.hamburger--squeeze .hamburger-inner {
    transition-duration: 0.1s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze .hamburger-inner::before {
    transition: top 0.1s 0.14s ease, opacity 0.1s ease;
}

.hamburger--squeeze .hamburger-inner::after {
    transition: bottom 0.1s 0.14s ease, transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze.is-active .hamburger-inner {
    transform: rotate(45deg);
    transition-delay: 0.14s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--squeeze.is-active .hamburger-inner::before {
    top: 0;
    opacity: 1;
    transition: top 0.1s ease, opacity 0.1s 0.14s ease;
}

.hamburger--squeeze.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease, transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.lg-none {
    display: none;
}

.md-block, .md-flex {
    display: none;
}



@media (max-width: 1023px) {

    .md-block {
        display: block;
    }

    .md-flex {
        display: flex;
    }

    .mb-none {
        display: none;
    }

    .header__container {
        align-items: center;
        flex-wrap: wrap;
        text-align: center;
    }

    .footer__container {
        flex-wrap: wrap;
    }

    .language-list {
        padding: 0 8px;
    }

    .footer__logo {
        flex: 100%;
    }

    .footer__links {
        flex: 100%;
    }

    .footer__contacts {
        flex: 100%;
    }

    .header__btns .btn__group {
        display: flex;
        gap: 15px;
        align-items: center;
        justify-content: center;
        margin-top: 20px;
    }

    .header__btns .btn {
        flex: 50%;
    }

    .header__logo {
        flex: 0%;
        text-align: left;

    }

    .header__menu.open-mb-menu {
        display: flex;
        flex-direction: column;
        padding: 20px 0px;
    }

    #header{
        z-index: 555;
        position: relative;
        margin-top: 0;
    }

    #header.open-mb-menu{
        position: fixed;
    }

    .overlay.open-mb-menu{
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        height: 100dvh;
        background: #363c3f;
    }


}