@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter-VariableFont_opsz,wght.woff2') format('woff2'),
        url('fonts/Inter-VariableFont_opsz,wght.woff') format('woff'),
        url('fonts/Inter-VariableFont_opsz,wght.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
    font-family: "Inter", sans-serif;
    color: #FFF;
    box-sizing: border-box;

}

html,
body {
    margin: 0;
    padding: 0;
    position: relative;
    background: #fff;
    overflow-x: hidden;

}

body {}

button {
    outline: none;
    border: none;
}

ul,
ol {
    display: flex;
    padding: 0;
    margin: 0;
}

li {
    display: flex;
    margin: 0;
    padding: 0;
}

img {
    display: block;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

a {
    text-decoration: none;

}

.post,
.page {
    margin: 0;
}

input,
textarea {
    margin: 0;
    padding: 0;
    outline: none;
    border: none;
    font-family: "Inter", sans-serif;
}

section {
    position: relative;
    overflow: hidden;
}

/* хром, сафари */
body::-webkit-scrollbar {
    width: 0;
}

/* ie 10+ */
body {
    -ms-overflow-style: none;
    overflow: -moz-scrollbars-none;
}


h1,
h2,
h3,
h4,
h5,
h6,
input {
    display: block;
    padding: 0;
    margin: 0;
    font-family: "Inter", sans-serif;
}

input {
    cursor: pointer;
}

.container {
    max-width: 1160px;
    margin: 0 auto;
    position: relative;
}


header {
    padding: 18px 0;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: auto;
    z-index: 5;
}

.header-box {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

header .custom-logo {
    width: 77px;
}

header .custom-logo img {
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.25);
}

header nav ul {
    display: flex;
    align-items: center;
    gap: 40px;
}

header nav ul a,
header nav ul a:visited {
    color: #FFF;
    font-family: 'Inter';
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    transition: color .5s ease;

    line-height: normal;
}

header nav ul a:hover {
    color: #E95095;
}

.burger {
    width: 30px;
    height: 2px;
    background: #fff;
    position: relative;
    transition: margin-top .5s ease, rotate .5s ease, top .5s ease;

    margin-top: 10px;
}

.burger::after,
.burger::before {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    background: #fff;
    width: 100%;
    height: 2px;
    opacity: 1;
    transition: opacity .5s ease, rotate .5s ease, top .5s ease;
}

.burger::after {
    top: -8px;
}

.burger::before {
    top: -16px;
}

.burger.active::after {
    opacity: 0;
}

.burger.active {
    rotate: 45deg;
    margin-top: 0;
}

.burger.active::before {
    rotate: -90deg;
    top: 0;
}

.burger {
    display: none;
}

.mob-menu {
    position: absolute;
    right: -100%;
    top: 0;
    left: auto;
    bottom: 0;
    width: 100%;
    height: 100%;
    transition: right 1s ease;
    z-index: 4;
}

.mob-menu .overlay {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 3;

    background: rgba(0, 0, 0, 0.4);
}

#primary-menu-mob {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    width: 100%;
    padding-top: 15px;
    border-top: 1px solid #fff;

}

#primary-menu-mob li {
    color: #FFF;
    font-family: 'Inter';
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    width: 100%;
    line-height: normal;
    text-align: right;
}

#primary-menu-mob li a {
    color: #FFF;
    font-family: 'Inter';
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    width: fit-content;
    line-height: normal;
    margin: 0 0 0 auto;
    text-align: right;
}

.mob-menu .menu-menu-1-container {
    max-width: 180px;
    z-index: 3;
    position: relative;
    margin: 0 0 0 auto;
}

@media screen and (max-width: 1200px) {
    .container {
        max-width: 95%;
    }

    header nav ul {
        gap: 30px;
    }
}

@media screen and (max-width: 1000px) {
    .menu-menu-1-container {
        display: none;
    }

    .burger {
        display: block;
    }

    .mob-menu.active {
        right: 0;
    }

    .mob-menu .menu-menu-1-container {
        display: flex;
        background: #BE205F;
        background: linear-gradient(90deg, rgba(190, 32, 95, 1) 0%, rgba(244, 73, 150, 1) 100%);
        flex-wrap: wrap;
        padding: 80px 20px 30px;
    }

}