@import "./reset.css";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;500;700&display=swap');

@font-face {
    font-family: 'MTS';
    src: local('fonts'), local('MTS-Ultra-Extended-Regular'),
        url('../fonts/MTSUltraExtended-Regular.woff2') format('woff2'),
        url('../fonts/MTSUltraExtended-Regular.woff') format('woff'),
        url('../fonts/MTSUltraExtended-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

:root {
    --bg-image: linear-gradient(45deg, #8a0073, #d5005c);
    --bg-header: linear-gradient(90deg, rgba(82,29,83,1) 9%, rgba(28,18,52,1) 52%);
    --bg-header-reverse: linear-gradient(90deg, rgb(25, 18, 34) 9%, rgb(52, 18, 47) 52%);
    --main-color: #c50163;
    --bg-light: rgba(225,225,225,.95);
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

a {
    color: #fff;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: #000;

    background: var(--bg-header);
}

.container {
    padding: 50px 80px;
}

.nav__toggle {
    display: none;

    background-color: #000;
    border-radius: 50%;
    margin-top: 20px;
}

.menu-icon-wrapper {
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: none;
}
  
.menu-icon {
    position: relative;
    width: 30px;
    height: 4px;
    background-color: rgb(255, 255, 255);
}

header.sticky .menu-icon,
header.sticky .menu-icon::after,
header.sticky .menu-icon::before {
    background-color: #000;
}
  
.menu-icon::before {
    position: absolute;
    right: 0;
    top: -10px;
    content: '';
    width: 20px;
    height: 4px;
    background-color: rgb(255, 255, 255);
    transition: transform 0.2s ease-in, top 0.2s Linear 0.2s;
}
  
.menu-icon::after {
    position: absolute;
    left: 0;
    top: 10px;
    content: '';
    width: 30px;
    height: 4px;
    background-color: rgb(255, 255, 255);
    transition: transform 0.2s ease-in, top 0.2s Linear 0.2s;
}
  
.menu-icon.menu-icon-active {
    height: 0;
}
  
.menu-icon.menu-icon-active::before {
    transform: rotate(45deg);
    width: 30px;
    top: 0;
    transition: top 0.2s Linear, transform 0.2s ease-in 0.2s;
}
  
.menu-icon.menu-icon-active::after {
    transform: rotate(-45deg);
    top: 0;
    transition: top 0.2s Linear, transform 0.2s ease-in 0.2s;
}

.title {
    font-family: 'MTS', sans-serif;
    font-size: 40px;
    font-weight: 600;
    letter-spacing: 1px;

    text-align: center;
    text-transform: uppercase;

    background-color: red;
    background-image: linear-gradient(45deg, #5e0750, #c3197c);
    
    background-size: 100%;
    background-repeat: repeat;
  
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; 
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;

    margin-bottom: 100px;
}

.title_white {
    background-color: #fff;
    background-image: linear-gradient(45deg, #f4eaf2, #ffffff);
}

.title_descr {
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;

    opacity: 0.8;
    text-align: center;
}

.none {
    display: none;
}

.btn {
    font-weight: 600;
    border: 2px solid #ba0051;
    
    background-size: 100%;
    background-repeat: repeat;
    
    display: flex;
    padding: 25px 30px;
    border-radius: 50px;

    font-size: 18px;
    letter-spacing: 1px;

    transition: background-color 0.1s ease-in, top 0.2s ease-in;
}

.btn_purple {
    border: none;
    color: #fff;
    background: var(--bg-image);
    transition: all 0.2s ease-in-out;
}

.btn_purple:hover {
    filter: brightness(120%);
}

.btn_list {
    display: flex;
}

.btn_list a {
    margin-right: 20px;
}

.btn_list a:last-child {
    margin-right: 0;
}

.header {
    color: #fff;
    background-repeat: no-repeat;
    background-size: cover;

    overflow-y: hidden;
    position: relative;
}

.header_mobile_logo {
    display: none;
    width: 100%;
}

.header_mobile_logo img {
    width: 40px;
    background-color: #fff;
    padding: 5px;
    border-radius: 50%;
}

.header_nav {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0px 80px;
    
    background-color: #fff;

    position: fixed;
    width: 100%;

    z-index: 800;
    transition: 0.3s ease-in-out;
}

header.sticky .header_nav {
    background: #fff;
}

header.sticky .header_nav a {
    color: #000;
    font-weight: 600;
}

.header_links {
    margin-right: 10px;
    width: 10vw;
}

.header_links i {
    color: #fff;
    font-size: 25px;
    border-radius: 50%;
    background: var(--main-color);
    padding: 10px;
}

.header_links a {
    margin-right: 10px;
}

.header_links a:last-child {
    margin-right: 0;
}

.header_nav_logo {
    font-family: 'MTS', sans-serif;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    margin: -5px 20px -5px 20px;
    padding: 35px 20px;

    font-weight: 700;
    font-size: 14px;
    line-height: 1;

    border-radius: 50px;

    background: var(--main-color);
    color: #fff;
}

.header_nav_menu {
    display: flex;
    justify-content: space-between;
    align-items: center;

    width: 80vw;
    overflow-y: hidden;
}

.header_nav_menu a {
    color: #000;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.2s ease-in-out;
}

.header_nav_menu a:nth-child(1),
.header_nav_menu a:nth-child(2) {
    margin-right: 30px;
}

.header_nav_menu a:nth-child(6),
.header_nav_menu a:nth-child(7) {
    margin-left: 30px;
}

.header_nav_menu a:hover {
    color: var(--main-color);
}

.header_mail {
    display: flex;
    justify-content: flex-end;
    width: 10vw;
    margin-left: 10px;
}

.header_mail i {
    color: #fff;
    font-size: 25px;

    border-radius: 50%;
    background: var(--main-color);
    padding: 10px;
}

.header_middle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 80px 0px 0px;
    margin: 250px 0px 150px 0px;
}

.header_middle_text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-weight: 700;
    flex: 1 1 50%;
    margin-left: 20px;
}

.header_middle_text h2 {
    font-family: 'MTS', sans-serif;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 10px;

    padding: 15px;
    border-radius: 10px;

    background-color: rgba(0, 0, 0, 0.3);
}

.header_middle_text h2 img {
    width: 35px;
    margin-left: 10px;
}

.header_middle_text h1 {
    font-family: 'MTS', sans-serif;
    letter-spacing: 3px;
    font-size: 70px;
    line-height: 75px;
    text-transform: uppercase;

    background-color: red;
    background-image: linear-gradient(45deg, #b01396, #d995bd);
    
    background-size: 100%;
    background-repeat: repeat;
  
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; 
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;

    margin-bottom: 20px;
}

.header_middle_text p {
    font-size: 18px;
    line-height: 25px;
    margin-bottom: 40px;
    font-weight: 500;
    color: #ffffffc5;
}

.header_middle_text p span {
    color: var(--main-color);
    text-transform: uppercase;
    font-weight: 700px;
}

.header_middle_text a {
    overflow-y: hidden;
}

.header_middle .btn_list {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
}

.header_middle .btn_list img {
    width: 50px;
    height: 50px;
    margin-left: 20px;
    transform: scale(-1, 1);
}

.header_middle_text a {
    animation: 3s infinite alternate slidein;
}

.header_middle_text a .btn {
    font-family: 'MTS', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 200px;
    border-radius: 50%;
}

@keyframes slidein {
    from {
      transform: translateY(-10px);
    }
  
    to {
        transform: translateY(10px);
    }
}

.header_middle_image {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex: 1 1 50%;
}

.header_middle_image img {
    max-width: 600px;
    position: absolute;
    bottom: 0px;
    left: 0px;

    filter: brightness(80%);
}

.links::before {
    top: -140px;
    z-index: 1;
    -webkit-clip-path: polygon(0 140px,100% 0,100% 100%,0 100%);
    clip-path: polygon(0 140px,100% 0,100% 100%,0 100%);
    content: '';
    background-color: var(--bg-light);
    position: absolute;
    height: 140.5px;
    width: 100%;
    left: 0;
}

.links {
    background-color: var(--bg-light);
    position: relative;
    padding: 50px 30px 50px 30px;
}

.links_list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
}

.links_block {
    display: flex;
    margin-right: 30px;
}

.links_block:last-child {
    margin-right: 0;
}

.links_block svg {
    filter: grayscale(1);
    height: 50px;
}

.apple,
.vk {
    fill: rgb(90, 90, 90);
}

.youtube svg {
    height: 30px;
}

.tiktok {
    width: 150px;
    overflow-x: hidden;

    fill: #515151;
}

.about {
    background: var(--bg-header-reverse);
    color: #fff;

    position: relative;
}

.about_list {
    display: flex;
}

.about_block_text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1 1 50%;
    
    margin: 50px 0 50px 0;
}

.about_block_text h3 {
    font-family: 'MTS', sans-serif;
    font-size: 30px;
    text-transform: uppercase;

    margin-bottom: 40px;
}

.about_block_text p {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 30px;
}

.about_block_image {
    display: flex;
    flex: 1 1 50%;
}

.about_block_image img {
    position: absolute;

    bottom: 0;
    right: 0;

    width: 600px;
}

.products {
    background: #ffffff;
}

.products_list {
    display: flex;
    flex-direction: column;
    margin: 100px auto 200px auto;
}

.products_block {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 80px;
}

.products_block:last-child {
    margin-bottom: 0;
}

.products_block_text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-right: 100px;
}

.products_block_text h3 {
    font-family: 'MTS', sans-serif;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 30px;
}

.products_block_text p {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 30px;
}

.products_block_price {
    display: flex;
    align-items: center;
    font-size: 25px;
    font-weight: 600;
}

.products_block_price span {
    text-decoration: line-through;
    margin-bottom: 30px;
    margin-right: 30px;
}

.products_block_price p {
    font-size: 25px;
}

.products_block_image {
    display: flex;
    justify-content: flex-end;
}

.products_block_image img {
    max-width: 300px;
}

.why_us::before {
    content: '';
    background-color: #161719;
    position: absolute;
    height: 140px;
    width: 100%;
    left: 0;

    top: -138px;
    -webkit-clip-path: polygon(0 0,0 140px,100% 140px);
    clip-path: polygon(0 0,0 140px,103% 140px);
}

.why_us {
    background: #161719;
    color: #fff;

    position: relative;
}

.why_us::after {
    content: '';
    background-color: #161719;
    position: absolute;
    height: 141px;
    width: 100%;
    left: 0;

    bottom: -140px;
    z-index: 1;
    -webkit-clip-path: polygon(0 0,0 140px,100% 0);
    clip-path: polygon(0 0,0 140px,103% 0);
}

.why_list {
    display: flex;
}

.why_block_text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    flex: 1 1 50%;
    margin: 50px 0 50px 0;
}

.why_block_text h3 {
    font-family: 'MTS', sans-serif;
    font-size: 35px;
    font-weight: 600;
    text-transform: uppercase;

    background-color: red;
    background-image: linear-gradient(45deg, #a30489, #c3197c);
    
    background-size: 100%;
    background-repeat: repeat;
  
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; 
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;

    margin-bottom: 40px;
}

.why_block_text p {
    font-size: 20px;
    line-height: 30px;
}

.why_block_image {
    display: flex;
    flex: 1 1 50%;
}

.why_block_image img {
    position: absolute;

    bottom: 20px;
    left: 0;

    width: 400px;
    transform: scale(-1, 1);
}

.reviews {
    margin-top: 100px;
    color: #fff;
}

.reviews_list {
    display: flex;
    align-items: stretch;
    justify-content: center;
    margin: 150px 0px 100px 0px;
}

.reviews_block {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 20px;
    padding: 30px 0px;
    flex: 1 1 33%;
    margin-right: 30px;
}

.reviews_block:last-child {
    margin-right: 0;
}

.reviews_block_light {
    background: linear-gradient(90deg, rgb(41, 22, 42) 9%, rgba(28,18,52,1) 52%);
    padding: 30px;
}

.reviews_block svg {
    fill: #ff50e2;
    margin-bottom: 40px;
}

.reviews_block_text p {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 40px;
}

.reviews_block_people {
    display: flex;
    align-items: center;
}

.reviews_block_people_avatar img {
    width: 50px;
    height: 50px;

    border-radius: 50%;
    object-fit: cover;
    object-position: 50%;
    margin-right: 20px;
}

.reviews_block_people_info {
    display: flex;
    flex-direction: column;
}

.reviews_block_people_info h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.reviews_block_people_info p {
    font-size: 18px;
    line-height: 28px;
    opacity: 0.8;
}

.contacts {
    background-color: #161719;
    color: #fff;

    position: relative;
}

.contacts_list {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.contacts_list a {
    margin-right: 30px;
}

.contacts_list a:last-child {
    margin-right: 0;
}

.contacts_bumble {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contacts_bumble img {
    width: 40px;
    margin-bottom: 15px;
}

.contacts_bumble h3 {
    font-size: 15px;
    opacity: 0.8;
    margin-bottom: 15px;
}

.contacts_bumble h3 a {
    color: #33bbcf;
    font-weight: 600;
}

.contacts_bumble_list {
    display: flex;
    align-items: center;
}

.contacts_bumble_list a {
    margin-right: 15px;
}

.contacts_bumble_list a:last-child {
    margin-right: 0;
}

.contacts_bumble_list img {
    width: 20px;
    cursor: pointer;
}

.contacts_btn {
    position: absolute;

    bottom: 30px;
    right: 30px;
}

.contacts_btn img {
    width: 50px;
}

/* Куки */

.cookie_notice {
    display: none;
    position: fixed;
    z-index: 9999999;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 14px;
    color: #ffffffdf;
    background: #161719;
    padding: 20px; 
}

/* Оформление кнопок */

.cookie_btn {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 20px;
}

.cookie_btn:hover {
    background: var(--main-color);
    color: #fff;
}

@media (max-width: 1300px) {
    .header_nav_logo,
    .header_mail,
    .header_links,
    .header_nav_menu,
    .header_nav_btn {
        display: none;
    }

    .header_mobile_logo {
        display: flex;
    }

    .header_nav {
        padding: 20px 40px;
        background: transparent;
    }

    .nav__toggle {
        position: absolute;
        right: 40px;
        top: 20px;
        display: block;
        border: none;
    }
    
    .nav--mobile {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 99;
    
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 40px;
        padding-bottom: 40px;
    
        background: linear-gradient(90deg, rgba(82,29,83,1) 9%, rgba(28,18,52,1) 52%);;
    }

    .header.sticky .nav--mobile {
        background: linear-gradient(90deg, rgba(82,29,83,1) 9%, rgba(28,18,52,1) 52%);;
    }

    .header.sticky .nav--mobile .header_nav_menu a {
        color: #fff;
    }

    .header.sticky .nav--mobile .menu-icon,
    .header.sticky .nav--mobile .menu-icon::after,
    .header.sticky .nav--mobile .menu-icon::before {
        background-color: #fff;
    }

    .nav--mobile .header_nav_menu a {
        color: #fff;
        font-size: 16px;
        font-family: 'MTS', sans-serif;
        text-align: center;
        letter-spacing: 3px;
        margin-right: 0;
        margin-left: 0;
    }
    
    .nav--mobile .header_nav_menu {
        display: flex;
        flex-direction: column;
        align-items: center;
        row-gap: 40px;    
    }

    .nav--mobile .header_nav_menu img {
        max-width: 60px;

        transform: translateX(10px);
    }

    .nav--mobile .header_mobile_logo {
        display: none;
    }

    .nav--mobile .header_nav_info {
        display: flex;
        flex-direction: column;
        row-gap: 20px;
        
        font-size: 20px;
    }
    
    .nav--mobile .header_nav_menu a.active::after,
    .nav--mobile .header_nav_menu a:hover::after {
        display: none;
    }
    
    .nav--mobile .nav__toggle {
        position: fixed;
        top: 20;
        right: 40px;
        z-index: 999;
    }

    .header_nav {
        position: fixed;
        width: 100%;

        z-index: 999;
        justify-content: center;
    }

    .header_middle {
        padding: 0px 50px 0px 0px;
    }

    .header_middle_image img {
        max-width: 450px;
    }

    .reviews_list {
        flex-wrap: wrap;
    }

    .reviews_block {
        padding: 30px;
        margin: 30px;
    }
}

@media (max-width: 1200px) {
    .about_list {
        flex-direction: column;
    }

    .about_block_text {
        margin: 50px 0px 450px 0px;
    }

    .reviews_list {
        flex-direction: column;
    }

    .reviews_block_light {
        background: linear-gradient(90deg, rgb(41, 22, 42) 9%, rgb(25, 16, 46) 52%);
    }
}

@media (max-width: 1100px) {
    .container {
        padding: 50px;
    }

    .header_middle {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px;
        margin: 150px 0px 600px 0px;
    }

    .products_block {
        flex-direction: column-reverse;
        align-items: flex-start;
        margin-bottom: 80px;
    }

    .products_block_text {
        margin-right: 0;
        margin-top: 40px;
    }

    .why_list {
        flex-direction: column;
    }

    .why_block_text {
        margin: 50px 0px 550px 0px;
    }

    .why_block_image img {
        bottom: 0;
    }
}

@media (max-width: 900px) {
    .contacts_list {
        flex-direction: column;
        align-items: center;
    }

    .contacts_list a {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .contacts_list a .btn {
        justify-content: center;
        width: 300px;
    }
}

@media (max-width: 800px) {
    .links {
        padding: 10px 20px 20px 20px;
    }

    .links_list {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .links_block {
        margin-right: 0;
        margin-bottom: 40px;
    }

    .links_block:last-child {
        margin-bottom: 30px;
    }

    .about_block_text {
        margin: 50px 0px 420px 0px;
    }

    .about_block_image img {
        max-width: 500px;
    }

    .btn_list {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn_list a {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .btn_list a:last-child {
        margin-bottom: 0;
    }

    .header_middle {
        padding: 40px 20px 40px 0px;
    }

    .header_middle_text h1 {
        font-size: 55px;
        line-height: 62px;
    }

    .header_middle_text a .btn {
        height: 180px;
        width: 180px;
    }

    .products_list {
        margin: 100px auto 150px auto;
    }
}

@media (max-width: 600px) {
    .nav--mobile .nav__toggle {
        position: fixed;
        top: 50;
        right: 40px;
    }

    .container {
        padding: 50px 30px;
    }

    .title {
        font-size: 30px;
        margin-bottom: 60px;
    }

    .nav__toggle {
        right: 40px;
    }

    .header_middle_text h2 {
        font-size: 18px;
    }

    .header_middle_text h1 {
        font-size: 45px;
        line-height: 52px;
        background-color: red;
        background-image: linear-gradient(45deg, #ffffff, #ffffff);
    }

    .header_middle {
        margin: 150px 0px 550px 0px;
    }

    .header_middle_image img {
        max-width: 400px;
    }

    .about_block_text p {
        font-size: 18px;
    }

    .about_block_text h3 {
        font-size: 20px;
        max-width: 400px;
    }

    .why_block_text {
        margin: 10px 0px 400px 0px;
    }

    .why_block_text h3 {
        font-size: 30px;
    }

    .why_block_image img {
        width: 300px;
    }

    .products_block_image img {
        width: 200px;
        height: 200px;
    }

    .products_block_text h3 {
        font-size: 20px;
    }

    .products_block_text p {
        font-size: 18px;
    }

    .why_block_text p {
        font-size: 18px;
    }

    .reviews_block_people_info h3 {
        font-size: 20px;
    }

    .reviews_block {
        padding: 20px 15px;
        margin: 20px 0px;
    }
}

@media (max-width: 500px) {
    .header_middle_text h2 {
        font-size: 16px;
    }

    .header_middle_text h1 {
        font-size: 40px;
        line-height: 48px;
    }

    .header_middle_text h1 br {
        display: none;
    }

    .about_block_text {
        margin: 50px 0px 350px 0px;
    }

    .about_block_image img {
        max-width: 400px;
    }

    .contacts {
        padding-bottom: 50px;
    }
}

@media (max-width: 450px) {
    .title {
        font-size: 25px;
        margin-bottom: 50px;
    }

    .container {
        padding: 40px 20px;
    }

    .header_middle {
        margin: 150px 0px 500px 0px;
    }

    .header_middle .btn_list .btn {
        width: 150px;
        height: 150px;
        font-size: 14px;
    }

    .header_middle .btn_list img {
        width: 40px;
        height: 40px;
    }

    .header_middle_image img {
        max-width: 350px;
    }

    .header_middle_text h2 {
        font-size: 14px;
    }

    .header_middle_text h1 {
        font-size: 35px;
        line-height: 42px;
    }

    .about_block_text {
        margin: 50px 0px 300px 0px;
    }

    .about_block_image img {
        max-width: 350px;
    }

    .products_block_text {
       margin-top: 30px;
    }

    .products_block_text h3 {
        margin-bottom: 20px;
    }

    .products_block_text p {
        margin-bottom: 20px;
    }
}

@media (max-width: 410px) {
    .header_middle_text h2 {
        font-size: 12px;
    }

    .header_middle_text h1 {
        font-size: 32px;
        line-height: 40px;
    }
}





