@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');

*,
*::after,
*::before {
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    line-height: normal;
    color: #333;
    overflow: hidden;
}

.wrapper {
    margin: 0 auto;
    max-width: 1280px;
    padding: 2.6rem 6.31rem;
}

h1 {
    color: #FEA150;
    font-size: 3rem;
    font-weight: 500;
}

h2 {
    font-size: 36px;
    font-weight: 500;
}

h3 {
    font-size: 1.125rem;
    font-weight: 500;
}

button {
    padding: 0.8rem 2rem;
    color: #FFF;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius:25px;
    border:0;
    background:#5CAC0E;
    width: max-content;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
}

header .logo {
    display: flex;
    gap: 1rem;
    align-items: center;
}

header nav {
    display: flex;
    gap: 4.18rem;
    align-items: center;
}

header nav li a {
    color: #333;
    font-size: 0.875rem;
    font-weight: 400;
}

header .logo svg {
    fill: #5CAC0E;
}

header .lock {
    height: 1.5rem;
    width: 1.5rem;
}
.hero {
    margin-top: 30vh;
    display: flex;
    width: 100%;
    position: relative;
    
}
.hero .content{
    width: 341px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.hero .container .circle{
    width: 1176px;
    height: 1176px;
    border-radius: 50%;
    background:#5CAC0E;
    position:absolute;
    top: -232%;
    right: -21%;
    overflow: hidden;
    z-index: -999;

}
.hero .container .circle .dashed-line{
    width: 560px;
    height: 560px;
    border-radius: 560px;
    border: 2px dashed #333;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);   
    position: absolute; 
    display: flex;
    justify-content: center;
    align-items:center;
    bottom: -20%;
    left: 25%;
    transition: all 1s;
    transform: rotate(90deg);
}
.hero .container .circle .dashed-line img:nth-child(1){
    top: 50%;
    left: 67%;
    position: relative;
}
.hero .container .circle .dashed-line img:nth-child(2){
    top: 36%;
    left: 15%;
    position: relative;
}
.hero .container .circle .dashed-line img:nth-child(3){
    top: 0%;
    left: -17%;
    position: relative;
}
.hero .container .circle .dashed-line img:nth-child(4){
    top: -38%;
    left: -19%;
    position: relative;
}
.hero .container .circle .dashed-line img:nth-child(5){
    bottom: 50%;
    left: 0%;
    position: relative;
}
.hero .container .circle .dashed-line img:nth-child(6){
    bottom: 33%;
    left: 11%;
    position: relative;
}
.hero .container .circle .dashed-line img:nth-child(7){
    bottom: -4%;
    left: 0%;
    position: relative;
}
.hero .container .circle .dashed-line img:nth-child(8){
    bottom: -38%;
    right: 34%;
    position: relative;
}
.main-food{
    background-image: url("./images/main1.png");
    width: 256px;
    height: 256px;
    background-size: cover;
    position: absolute;
    right: 16%;
    top: 30%;
}

.hero .container svg.backward{
    position: relative;
    top: 85%;
    left: 300%;
    cursor: pointer;
}

.hero .container svg.forward{
    position: relative;
    top: 85%;
    left: 800%;
    cursor: pointer;
}

.hero .container svg circle{
    fill:#5CAC0E;
}
