@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root { 
    --main-font-size: 20px;
    --main_line-height: 30px;
    --header-font-size: 40px;
    --header_line-height: 60px;

    --small-margin: 20px;
    --medium-margin: 40px;
    --big-margin: 80px;
    --section_margin_bottom: 80px;

    --border-radius: 8px;

    --disk-diametr: 1100px;
    --border-width: 200px;
    --border-width-50: 100px;
}
html{
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body{
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #000000;
    font-family: "Noto Sans", serif;
    overflow-x: hidden;
}
a{
    text-decoration: none;
    color: #000000;
}
p{
    color: #000000;
    font-size: var(--main-font-size);
}
h1,h2,h3{
    font-size: var(--header-font-size);
}

button{
    width: 220px;
    height: 50px;
    
    border: 3px solid transparent;
    border-radius: var(--border-radius);
    background-color: #414390;
    color: #FFFFFF;
    font-size: var(--main-font-size);
    text-decoration: none;
    font-weight: 700;
    line-height: 50px;
    
    display: flex;
    justify-content: center;
    align-items: center;
    
    transition: 0.2s;
}
button:hover{
    cursor: pointer;
    color: #414390;
    border: 3px solid #414390;
    background-color: #ffffff;
}

.line{
    width: 70px;
    height: 5px;
    background-color: #414390;
    margin-bottom: var(--medium-margin);
}

.mobile{
    display: none;
}
/* ---------------------------------- */

#Header{
    width: 100%;
    height: 60px;
    margin-bottom: 0;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10%;
    z-index: 10;
}
#Header .left-side{
    
}
#Header .logo{
    font-family: "Times New Roman", Times, serif;
}
#Header .logo h1{
    color: #414390;
    font-size: 40px;
    letter-spacing: 1px;
}
#Header .logo h1 span{
    font-size: 25px;
}
#Header .right-side{
    
}
#Header .right-side ul{
    display: flex;
    align-items: center;
    list-style: none;
}
#Header .right-side ul li{
    margin-left: 100px;
    font-size: var(--main-font-size);
}
#Header .right-side ul li:hover{
    cursor: pointer;
}

#Header .right-side ul li a{

}
#Header .right-side ul li button{
    margin: 0;
}

.language_btn {
    width: 180px;
    height: 40px;
    border: none;
    border-radius: var(--border-radius);
    
    color: #ffffff;
    background-color: #414390;

    text-transform: uppercase;
    font-weight: 500;
    font-size: var(--main-font-size);
    letter-spacing: 2px;
    line-height: 40px;
}
.language_btn:hover{
    cursor: pointer;
    
    border: none;
    background-color: #414390;
    color: #FFFFFF;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.active_li{
    font-weight: 700 !important;
    color: #000000 !important;
  }
  
  .bold, .active_language{
    font-weight: 700 !important;
  }
  .active_language{
    text-shadow: 0 0 2px black;
  }


#Main{
    width: 100%;
    margin-bottom: var(--section_margin_bottom);
}
.wrap{
    max-width: 1200px;
}

#Header .btn_menu{
    display: none;
}
#Menu{
    display: none;
}
.fixed{
    position: fixed;
}

/* --------------ALL_section-------------- */

#First_section, 
#Second_section, 
#Third_section,
#Fourth_section,
#Fifth_section,
#Sixth_section,
#Seventh_section,
#Eighth_section,
#Ninth_section{
    width: 100%;
    padding: var(--big-margin);
    display: flex;
    justify-content: center;
}
/* --------------First_section-------------- */

#First_section .wrap{
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
#First_section .wrap .left-side{
    width: 40%;
}
#First_section .wrap .left-side img{
    width: 100%;
}
#First_section .wrap .right-side{
    width: 40%;
}

#First_section .wrap .right-side h1{
    margin-bottom: var(--medium-margin);
    font-family: "Oswald", serif;
    letter-spacing: 2px;
}
#First_section .wrap .right-side p{
    margin-bottom: var(--medium-margin);
    line-height: var(--main_line-height);
}
#First_section .wrap .right-side button a{
    color: #FFFFFF;
    width: 100%;
}
#First_section .wrap .right-side button:hover a{
    color: #414390;
}

/* --------------Second_section-------------- */

#Second_section{
    background-color: #f3cb2b;
}
#Second_section .wrap{

}
#Second_section .wrap h2{
    color: #414390;
    margin-bottom: var(--medium-margin);
}
#Second_section .wrap .card-case{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
#Second_section .wrap .card-case .card{
    width: 32%;
    height: auto;
    padding: var(--small-margin);
    background-color: #FFFFFF;
    margin-bottom: var(--small-margin);
}
#Second_section .wrap .card-case .card img{
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-bottom: var(--small-margin);
}
#Second_section .wrap .card-case .card h3{
    color: #414390;
    font-size: var(--main-font-size);
    margin-bottom: var(--small-margin);
}
#Second_section .wrap .card-case .card p{
    
}



/* --------------Third_section-------------- */

#Third_section .wrap{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
#Third_section .wrap .disk1, 
#Third_section .wrap .disk2{
    width: var(--disk-diametr);
    height: var(--disk-diametr);
    border-radius: 50%;
    box-shadow: inset 0 0 0 var(--border-width) #f3cb2b;

    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    position: absolute;
    z-index: 0;
}
#Third_section .wrap .disk2{
    box-shadow: none;
}
#Third_section .wrap .disk1 .card,
#Third_section .wrap .disk2 .card{
    position: absolute;
    z-index: 1;
    opacity: 0;
    animation: round 18s linear infinite;
    transform: rotate(180deg) translateX(calc(var(--disk-diametr) / 2 - var(--border-width))) rotate(180deg);
}
#Third_section .wrap .disk2 .card{
    animation: round2 18s linear infinite;
    transform: rotate(0deg) translateX(calc(var(--disk-diametr) / 2 - var(--border-width))) rotate(180deg);
}

#Third_section .wrap .disk1 .card img,
#Third_section .wrap .disk2 .card img{
    width: var(--border-width);
    height: var(--border-width);
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 0 15px 15px #FFFFFF50;
}
#Third_section .wrap .disk1 .card:nth-child(1),
#Third_section .wrap .disk2 .card:nth-child(1){
    animation-delay: 0s;
}
#Third_section .wrap .disk1 .card:nth-child(2),
#Third_section .wrap .disk2 .card:nth-child(2){
    animation-delay: 3s;
}
#Third_section .wrap .disk1 .card:nth-child(3),
#Third_section .wrap .disk2 .card:nth-child(3){
    animation-delay: 6s;
}
#Third_section .wrap .disk1 .card:nth-child(4),
#Third_section .wrap .disk2 .card:nth-child(4){
    animation-delay: 9s;
}
#Third_section .wrap .disk1 .card:nth-child(5),
#Third_section .wrap .disk2 .card:nth-child(5){
    animation-delay: 12s;
}
#Third_section .wrap .disk1 .card:nth-child(6),
#Third_section .wrap .disk2 .card:nth-child(6){
    animation-delay: 15s;
}


#Third_section .wrap .disk1 .card p{
    text-align: center;
}
@keyframes round {
    0%{
        opacity: 0;
        transform: rotate(180deg) translateX(calc(var(--disk-diametr) / 2 - var(--border-width-50) )) rotate(180deg);
    }
    1%{
        opacity: 1;
        transform: rotate(183deg) translateX(calc(var(--disk-diametr) / 2 - var(--border-width-50) )) rotate(177deg);
    }
    49%{
        opacity: 1;
        transform: rotate(357deg) translateX(calc(var(--disk-diametr) / 2 - var(--border-width-50) )) rotate(3deg);
    }
    50%{
        opacity: 0;
        transform: rotate(360deg) translateX(calc(var(--disk-diametr) / 2 - var(--border-width-50) )) rotate(0deg);
    }
    100% {
        opacity: 0;
        transform: rotate(360deg) translateX(calc(var(--disk-diametr) / 2 - var(--border-width-50) )) rotate(0deg);
    }
}
@keyframes round2 {
    0%{
        opacity: 0;
        transform: rotate(0deg) translateX(calc(var(--disk-diametr) / 2 - var(--border-width-50) )) rotate(0deg);
    }
    1%{
        opacity: 1;
        transform: rotate(3deg) translateX(calc(var(--disk-diametr) / 2 - var(--border-width-50) )) rotate(-3deg);
    }
    49%{
        opacity: 1;
        transform: rotate(177deg) translateX(calc(var(--disk-diametr) / 2 - var(--border-width-50) )) rotate(-177deg);
    }
    50%{
        opacity: 0;
        transform: rotate(180deg) translateX(calc(var(--disk-diametr) / 2 - var(--border-width-50) )) rotate(-180deg);
    }
    100% {
        opacity: 0;
        transform: rotate(180deg) translateX(calc(var(--disk-diametr) / 2 - var(--border-width-50) )) rotate(-180deg);
    }
}

#Third_section .wrap .disk1 .card::after,
#Third_section .wrap .disk2 .card::after{
    content: " ";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: var(--header-font-size);
    font-weight: 700;
    color: #FFFFFF;
}
#Third_section .wrap .disk1 .card:nth-child(1)::after{
    content: "Фрукты";
}
#Third_section .wrap .disk1 .card:nth-child(2)::after{
    content: "Овощи";
}
#Third_section .wrap .disk1 .card:nth-child(3)::after{
    content: "Мясо";
}
#Third_section .wrap .disk1 .card:nth-child(4)::after{
    content: "Супы";
}
#Third_section .wrap .disk1 .card:nth-child(5)::after{
    content: "Крупы";
}
#Third_section .wrap .disk1 .card:nth-child(6)::after{
    content: "Молочное";
}

#Third_section .wrap .disk2 .card:nth-child(1)::after{
    content: "Алкоголь";
}
#Third_section .wrap .disk2 .card:nth-child(2)::after{
    content: "Фастфуд";
}
#Third_section .wrap .disk2 .card:nth-child(3)::after{
    content: "Сладкое";
}
#Third_section .wrap .disk2 .card:nth-child(4)::after{
    content: "Острое";
}
#Third_section .wrap .disk2 .card:nth-child(5)::after{
    content: "Маринат";
}
#Third_section .wrap .disk2 .card:nth-child(6)::after{
    content: "Жирное";
}

#Third_section .wrap .line_full{
    width: 100%;
    height: calc(var(--border-width) + 10px);
    background-color: #414390;
    position: absolute;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}
#Third_section .wrap .line_full P{
    color: #FFFFFF;
    font-size: var(--header-font-size);
    font-weight: 700;
    text-align: center;
}
#Third_section .wrap .line_full::before,
#Third_section .wrap .line_full::before{
    content: "Что нравится";
    position: absolute;
    width: calc( var(--disk-diametr) / 2 );
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #414390;
    font-weight: 700;
    font-size: var(--header-font-size);
}
#Third_section .wrap .line_full::after,
#Third_section .wrap .line_full::after{
    content: "Что не нравится";
    position: absolute;
    width: calc( var(--disk-diametr) / 2 );
    bottom: -50%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #414390;
    font-weight: 700;
    font-size: var(--header-font-size);
}



/* --------------Fourth_section-------------- */


#Fourth_section{
    display: flex;
    justify-content: center;
}
#Fourth_section .wrap{
    display: flex;
    flex-direction: column;
    margin-top: var(--section_margin_bottom);
}
#Fourth_section .wrap h2{
    color: #414390;
    text-align: center;
    margin-bottom: var(--medium-margin);
}
#Fourth_section .wrap ul{
    margin-left: var(--small-margin);
    list-style: square;
    margin-bottom: var(--medium-margin);
}
#Fourth_section .wrap ul li{
    color: #000000;
    font-weight: 700;
    margin-bottom: var(--small-margin);
    font-size: var(--main-font-size);
}
#Fourth_section .wrap p{
    margin-bottom: var(--small-margin);
    text-align: justify;
}
#Fourth_section .wrap p:last-child{
    margin-bottom: 0;
}


/* --------------Fifth_section-------------- */

#Fifth_section .wrap, #Sixth_section .wrap{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
#Fifth_section .wrap h2, #Sixth_section .wrap h2{
    color: #414390;
    margin-bottom: var(--medium-margin);
}
#Fifth_section .wrap img{
    width: 100%;
}

#Sixth_section .wrap ul{
    list-style: square;
    align-self: start;
    margin-left: var(--small-margin);
}
#Sixth_section .wrap ul li{
    text-align: left;
    color: #000000;
    font-weight: 700;
    margin-bottom: var(--small-margin);
    font-size: var(--main-font-size);
}


/* --------------Seventh_section-------------- */

#Seventh_section{
    background-color: #f3cb2b;
}
#Seventh_section .wrap{
    width: 100%;
}
#Seventh_section .wrap h2{
    color: #414390;
    margin-bottom: var(--medium-margin);
    text-align: center;
}
#Seventh_section .wrap .case .card-case h3{
    color: #414390;
    font-size: var(--main-font-size);
    width: 100%;
    padding: var(--small-margin);
    background-color: #FFFFFF;
    margin-bottom: var(--small-margin);
    text-align: center;
}
#Seventh_section .wrap .case .card-case h3 span{
    color: #e4363a;
}
#Seventh_section .wrap .case{
    width: 100%;
    display: flex;
    align-items: center;
}
#Seventh_section .wrap .case .card-case{
    width: 50%;
}
#Seventh_section .wrap .case .card-case .card{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: calc( var(--small-margin) / 2 );
    background-color: #FFFFFF;
}
#Seventh_section .wrap .case .card-case .card img{
    width: 100%;
}
#Seventh_section .wrap .case .card-case .card p{
    text-align: left;
}
#Seventh_section .wrap .case .img-case{
    width: 50%;
    display: flex;
    justify-content: left;
    align-items: center;
}
#Seventh_section .wrap .case .img-case img{
    width: 80%;
}

/* --------------Eighth_section-------------- */

#Eighth_section{
    background-color: #414390;
    color: #FFFFFF;
}
#Eighth_section .wrap{
    width: 100%;
}
#Eighth_section .wrap h2{
    margin-bottom: var(--medium-margin);
    text-align: center;
}
#Eighth_section .wrap .case{
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
#Eighth_section .wrap .case .card-case{
    width: 48%;
    padding: var(--small-margin);
    background-color: #f3cb2b;
    margin-bottom: var(--small-margin);
}
#Eighth_section .wrap .case .card-case h3{
    color: #414390;
    margin-bottom: calc( var(--small-margin) / 2 );
    font-size: var(--main-font-size);
}


/* --------------Ninth_section-------------- */

#Ninth_section{
    background-color: #ffffff;
    color: #414390;
}
#Ninth_section .wrap{
    width: 100%;
}
#Ninth_section .wrap h2{
    margin-bottom: var(--medium-margin);
    text-align: center;
}
#Ninth_section .wrap .case{
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--big-margin);
}
#Ninth_section .wrap .case p{
    width: 32%;
    text-align: center;
    padding: var(--small-margin);
    background-color: #f3cb2b;
    color: #414390;
}
#Ninth_section .wrap .sell_case{
    width: 100%;
    display: flex;
    justify-content: space-between;
}
#Ninth_section .wrap .sell_case .img_side{
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
#Ninth_section .wrap .sell_case .img_side img{
    width: 80%;
}
#Ninth_section .wrap .sell_case .text_side{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--small-margin);
}
#Ninth_section .wrap .sell_case .text_side h3{
    margin-bottom: var(--small-margin);
    font-size: var(--main-font-size);
}
#Ninth_section .wrap .sell_case .text_side p{
    margin-bottom: var(--small-margin);
}
#Ninth_section .wrap .sell_case .text_side button{
    text-transform: uppercase;
    letter-spacing: 2px;
}
#Ninth_section .wrap .sell_case .text_side button a{
    color: #FFFFFF;
    width: 100%;
}
#Ninth_section .wrap .sell_case .text_side button:hover a{
    color: #414390;
}



/* --------------Footer-------------- */

#Footer{
    width: 100%;
    background-color: #414390;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
}
#Footer a{
    text-align: center;
    color: #FFFFFF;
    padding: var(--medium-margin);
}