#kontakt_section{
    padding: 100px 0;
    background-color: var(--secondery-color);
    display: flex;
    justify-content:center;
    align-items: center;
    gap: 100px;
    flex-wrap: wrap;
   
}

#kontakt_section h1{
    font-size: 80px;
    
}

*{
    margin: 0;
    padding:0;
}
html{
    height: 100%;
}
body{
    height: 100%;
}

form{
    height: 800px;
    width: 500px;
    padding: 40px;
    border-radius: 8px;
    background-color: var(--primary-color);
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

select {

    height: 64px;
    width: 290px;
    margin: 10px;
    padding: 0px 25px;
    padding-left: 20px;
    border-radius: 10px;
    border: none;
    background-color: #373e49;
    box-shadow: 3px 3px 6px rgba(0,0,0,0.212);
    color: white;
    text-align: left;
    font-size: 20px;
    transition: 0.2s;
    display: flex;
    flex-direction:row;  
}

select:hover{
    background-color: #47505f;
}

select:focus{
    outline: none;
    background-color: #47505f;
    width: 315px;
}

.inputs_container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

input{
    height: 64px;
    width: 240px;
    margin: 10px;
    padding: 0px 25px;
    border-radius: 10px;
    border: none;
    background-color: #373e49;
    box-shadow: 3px 3px 6px rgba(0,0,0,0.212);
    color: white;
    font-size: 20px;
    transition: 0.2s;
}

input:hover{
    background-color: #47505f;
}

input:focus{
    outline: none;
    background-color: #47505f;
    width: 265px;
}
input::placeholder{
    color: var(--text-color);
}

textarea{
    height: 200px;
    width: 450px;
    resize: none;
    margin: 10px;
    padding: 10px 5px;
    padding-left: 5%;
    border-radius: 10px;
    border: none;
    background-color: #373e49;
    box-shadow: 3px 3px 6px rgba(0,0,0,0.212);
    color: white;
    font-size: 20px;    
    font-style:normal;
    transition: 0.2s;
    font-family: 'Poppins', sans-serif;
   
}

textarea:hover{
    background-color: #47505f;
}

textarea:focus{
    outline: none;
    background-color: #47505f;
    width: 500px;
}

textarea::placeholder{
    color: var(--text-color);
}



#submit-btn{
    height: 50px;
    width: 120px;
    border-radius: 1000px;
    border: none;
    color: var(--text-color);
    font-size: 20px;
    background: var(--main-brand-color);
    transition: 0.2s;
}
#submit-btn:hover{
    width: 200px;
}

#submit-btn:focus{
    outline: none;
    width: 200px;
}
@media(max-width: 800px){
    #kontakt_section{
        padding: 80px 0;
    }
    #kontakt_section h2{
        text-align: center;
        font-size: 12vw;
    }
    #kontakt_section p{
        text-align: center;
     
    }
    form{
        height: 100%;
        width: 70%;
        justify-content: center;
    }
    
    .inputs_container{
        margin: 80px;
    }

    #kontakt_section h1{
        font-size: 70px;
    }

    textarea {
        width: 263px;
        padding: 10px 5px;
        padding-left: 22px;

    }

    textarea:focus{
        width: 290px;
    }
}