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

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


body,html{

height: 100%;
width: 100%;
}


button{
    outline: none;
    border: none;
}


/* Header */

header{
width: 100%;
}

nav{
display: flex;
padding: 55px 164px;
justify-content: space-between;
min-width: 1200px;
}

nav h2{
    color: #333;
font-family: Inter;
font-size: 24px;

}

nav ul{
display: flex;
gap: 32px;
}


nav ul li {
    list-style: none;
    color: #333;
    font-family: Inter;
    font-size: 18px;

}

nav ul li a{
    color:black;    
    text-decoration: none;
}

nav ul li a:hover{
    color: #44B564; 
    font-weight: bold;
}





/*  Main */


main{
    display: flex;
    padding: 0 164px;
    height: 500px;
    align-items: center;
    justify-content: space-between;
    min-width: 1200px;
   
    
}

.texts{
    display: flex;
    flex-direction: column;
    width: 50%;
    gap: 20px;
}


.texts .title{
    color: #333;
    font-family: Inter;
    font-size: 42px;
 
}

.texts i{
    width: 400px;
    color: rgba(51, 51, 51, 0.65);
    font-family: Inter;
    font-size: 22px;

}

.texts button{
    width: 264px;
    padding: 10px;
    border-radius: 24px;
    background: #44B564;
    color: white;
    cursor: pointer;
    font-family: Inter;
    font-size: 24px;

}


main img{
    width: 30%;


}


/*  Stat  */


.stat{
    margin: 64px auto;
    width: 50%;
    height: 231px;
    border-radius: 24px;
    box-shadow: 0px 0px 57px -7px rgba(119, 119, 119, 0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}


.data{
    display: flex;
    gap: 40px;
    margin: auto ;
}



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


.data p{
    color: #555;
    font-family: Inter;
    font-size: 20px;

}


.data b{
    color: #484848;
    font-family: Inter;
    font-size: 28px;
}



.country{
    color: #777;
font-family: Inter;
font-size: 18px;
padding: 20px
}





/*  Önlem  */

.önlem{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    margin: 100px auto;
    width: 60%;
}



.önlem h3{
    color: #333;
    text-align: center;
    font-family: Inter;
    font-size: 36px;
}

.önlem .elements{
    display: flex;
    gap: 100px;
    flex-wrap: wrap;
    margin: auto;
}

.önlem .element{
    display: flex;
    flex-direction: column;
    border-radius: 25px;
    box-shadow: 0px 0px 44px -5px rgba(102, 102, 102, 0.10);
    align-items: center;
    width: 300px;
    text-align: center;
    gap: 20px;
    padding: 30px;
}


.önlem p{
    color: #555;
    font-family: Inter;
    font-size: 20px;
}


.element b{
    color: #333;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
}


.element i{
    color: #777;
    font-family: Inter;
    font-size: 14px;
}




/* Belirtiler */


.belirti{
    display: flex;
    flex-direction: column;
    width: 60%;
    margin: auto;
    align-items: center;
    gap: 50px;
}


.belirti div{
    width: 100%;
    display: flex;
    justify-content: space-around;

}


.belirti div ul li{
    color: #777;
    font-family: Inter;
    font-size: 20px;
    margin: 20px 0;
}




.belirti b{
    color: #333;
    text-align: center;
    font-family: Inter;
    font-size: 36px;
}

.belirti i{
    color: #777;
    text-align: center;
    font-family: Inter;
    font-size: 20px;
}


/* Footer */

footer{
    height: 100%;
    background: linear-gradient(340deg, #64CF83 47.7%, #FFF 47.71%);
    margin-top: 100px;

}

.iletişim{
    border-radius: 6px;
    box-shadow: 0px 0px 50px -1px rgba(82, 82, 82, 0.10), 0px 52px 0px -24px #4DB76B, 0px 29px 0px -14px #5BC378;
    width: 50%;
    align-items: center;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    background-color: white;
    gap: 20px;
    padding: 20px;
}


.iletişim b{
    color: #333;
    font-family: Inter;
    font-size: 36px;

}

.iletişim i{
    color: #777;
    font-family: Inter;
    font-size: 20px;
    width: 50%;
}


.iletişim form{
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px auto;
    padding: 30px;
}

.iletişim form input, textarea{
    width: 500px;
    height: 40px;
    outline: none;
    border: none;
    background-color: #F4F4F4;
    padding: 20px;
    border-radius: 5px ;
}


textarea{
    padding: 13px 20px;
    max-width: 500px;
    min-width: 500px;
    max-height: 180px;
    min-height: 40px;
}


.iletişim form input:last-child{
    width: 100px;
    text-align: center;
    padding: 0;
    margin: auto    ;
}



.iletişim form input:last-child:hover{

background-color: #44B564;
cursor: pointer;


}