:root{
    --blue-: #1873B3;
    --lightblue-: #24ADDC;
    --green-: #3BA348;
    --lemon-: #94C540;
    --orange-: #F58423;
    --yellow-: #F3D218;
    --black-: #191A1C;
}
.header-contact{
    padding-top: 150px;
    padding-bottom: 100px;
    position: relative;
    background-color: rgba(24, 114, 179, 0.096);
    font-family: 'robo-medium';
}
.header-contact .contact1 h2{
    text-align: center;
    font-size: 50px;
    width: 500px;
    padding: 10px;
    margin: 10px auto;
    color: var(--blue-);
    text-decoration: underline;
}
.header-contact .contact1 form{
    width: 500px;
    height: auto;
    margin: 20px auto;
    display: flex;
    flex-wrap: wrap;
    padding: 10px;
    gap: 10px;
}
.header-contact .contact1 form input{
    width: 200px;
    flex: 1 1 200px;
    border-radius: 5px;
    height: 45px;
    border: 0;
    outline: 0;
    background-color: white;
    padding: 10px;
    color: rgb(0, 0, 0);
}
.header-contact .contact1 form input::placeholder{
    font-size: 16px;
    color: rgba(0, 0, 0, 0.596);
    padding-left: 15px;
}
.header-contact .contact1 form textarea{
    width: 100%;
    flex: 2 1 100%;
    height: 250px;
    background-color: rgb(255, 255, 255);
    border: 0;
    outline: 0;
    font-size: 16px;
    padding: 15px;
    word-wrap: break-word;
    font-family: 'robo';
}
.header-contact .contact1 form button{
    width: 100%;
    padding: 10px;
    background-color: var(--blue-);
    color: white;
    font-size: 18px;
    outline: 0;
    border: 0;
    border-radius: 10px;
    font-weight: 500;
}
.header-contact .contact1 form button:hover{
    cursor: pointer;
    background-color: var(--orange-);
    color: black;
}
.header-contact .contact1 form button:active{
    background-color: var(--blue-);
    color: white;
}
.header-contact > p{
    font-size: 24px;
    font-family: 'robo-medium';
    text-align: center;
}
.header-contact > p:nth-child(3){
    font-size: 24px;
    font-family: 'robo-medium';
    text-align: center;
    margin-top: 30px;
}
.header-contact ul{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
    padding: 0px 20px;
}
.header-contact ul a li{
    list-style-type: none;
    width: 100px;
}
.header-contact ul a li img{
    max-width: 50px;
}
@media screen and (max-width: 500px) {
    .header-contact .contact1 form{
        width: 100%;    
    }
    .header-contact .contact1 h2{
        width: 100%;
        font-size: 30px;
    }
    .header-contact ul a li img{
        max-width: 40px;
    }
    .header-contact > p{
        font-size: 34px;
        font-family: 'robo-medium';
        text-align: center;
    }
    .header-contact > p:nth-child(3){
        font-size: 24px;
        font-family: 'robo-medium';
        text-align: center;
        margin-top: 30px;
    }
    .header-contact ul{
        gap: 5px;
        margin-top: 30px;
        padding: 5px;
    }
}