
.contacts_panel{
    width: 90%;
    height: 100vh;
    margin: auto;
    margin-top: 60px;

    /* margin-top: 100px; */
}

.bg_color_blue{
    background-color: #dfebf5;
}

.bg_color_purple{
    background-color: #c5bad7;
}


.bg_color_green{
    background-color: #d2e0d0;
}


.mobile .contacts_panel{
    width: 100%;
    /* margin-top: 60px; */
}

.mobile .contacts_panel:nth-child(1){
    margin-top: 0;
}

.contacts_panel .contacts_panel_entry{
    width: 80%;
    height: 100%;
    padding-top: 100px ;
    margin: auto;

}

.contacts_panel .title{
    font-size: 4em;
}

.mobile .contacts_panel .title{
    font-size: 3em;
    margin: 0;
    margin-top: 50px;
}

.mobile .logo_container{
    margin: auto;
    margin-top: 70px;
}


.contacts_panel .logo_container .image_container{
    width: 100px;
    height: 100px;
}

.mobile .contacts_panel .logo_container .image_container{
    width: 80px;
    height: 80px;
}

.contacts_panel .logo_container p{
    font-size: 1.5em;
    margin-left: 50px;
}

.mobile .contacts_panel .logo_container p{
    font-size: 1.2em;
    margin-left: 0;
    text-align: center;
}

.white_coverage{
    width: 80%;
    height: 55%;
    margin: auto;
    margin-top: 30px;
    background-color: white;
    padding: 5px;

    border-radius: 30px;
}

.mobile .white_coverage{
    width: 100%;
    height: 60%;
}

.blue_coverage{
    width: 100%;
    height: 100%;
    background-color: #edf7ff;
    border-radius: 30px;

}

.purple_coverage{
    width: 100%;
    height: 100%;
    background-color: #d2c9e0;
    border-radius: 30px;
}


.contacts_panel_entry form{
    width: 80%;
    height: 90%;
    margin: auto;
}


.contacts_panel_entry form .input{
    width: 45%;
    height: 40px;
    background-color: transparent;
    /* border: 2px solid #849bb0; */
    border: 2px solid #9379be;
    
    border-radius: 10px;
    text-align: center;

    font-size: 1.5em;
    outline: none;
    color: black;

    opacity: 0.6;
}

.mobile form .mail_input{
    margin-top: 20px;
}



.mobile .contacts_panel_entry form .input{
    width: 90%;
}

.contacts_panel_entry form .input:focus{
    opacity: 1;
}

.mobile .contacts_panel_entry form .input:focus{
    opacity: 1;
}


.contacts_panel_entry form .input::placeholder{
    color: black;
}

.contacts_panel_entry form .input.big_text{
    width: 100%;
    margin: auto;
    margin-top: 40px;
    height: 140px;
    text-align: left;
    padding: 10px;
    resize: none;
}

.mobile .contacts_panel_entry form .input.big_text{
    width: 80%;
}

.contacts_panel_entry button{
    width: 30%;
    height: 50px;
    margin: auto;
    /* margin-top: 30px; */
    background-color: #c5bad7;
    border: 2px solid #9379be;
    border-radius: 10px;
    text-align: center;

    font-size: 1.5em;
    opacity: 0.5;

}

.mobile .contacts_panel_entry button{
    width: 60%;
}

.contacts_panel_entry button:hover{
    opacity: 0.8;
}

.map_container{
    height: 55%;
    width: 90%;
    margin: auto;
    margin-top: 50px;
}

.map_container iframe{
    width: 100%;
    height: 100%;
    border-radius: 20px;

    
}

.spacer{
    margin-top: 200px;
}