/* import font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,700;1,300;1,400;1,500;1,700&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: 'Poppins', 'Ubuntu', sans-serif;
}
.contact_title{
    max-width: 100%;
    height: 55px;
    background-color: var(--main-bule_2);
    margin: 0 auto;
}
.contact_title P{
    font-size: var(--title-font-size);
    font-weight: 600;
    color: var(--main-white);
    text-align: center;
}
.contact_add_main_box_logo{
    padding: 0;
}
.contact_add_main_box{
    padding-bottom: 50px;
}
.contact_logo{
    display: flex;
}
.contact_logo .contact_logo_txt{
    padding: 14px;
}
.contact_add_box{
    max-width: 100%;
    margin: 5px 20px;
    padding-bottom: 20px;
}
.contact_add_box h2{
    font-size: 22px;
}
.contact_add_box h3{
    font-size: 16px;
    font-weight: normal;
}
.contact_map{
    max-width: 100%;
    margin: 5px 20px;
}
/* contact */
section {
    height: auto;
    width: 100%;
    background-color: rgb(29, 26, 93);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.container {
    width: 90%;
    max-width: 500px;
    margin: 0 auto;
    padding: 0 20px;
    /*
    box-shadow: 0px 0px 20px #77759d;
    background-color: #77759d;
    border-radius: 8px;
    */
    margin-bottom: 10px;
    margin-top: 10px;
}
.container h1{
    color: #ffffff;
    text-align: center;
    font-size: 28px;
    font-weight: 500;
}
.form-group {
    width: 100%;
    margin-top: 0px;
    font-size: 15px;
    color: #ffffff;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 5px;
    font-size: 15px;
    border: 1px solid rgba(128, 128, 128, 0.199);
    margin-top: 10px;
    font-family: var(--font-family);
}
textarea {
    resize: vertical;
}
button[type="submit"] {
    width: 100%;
    border: none;
    outline: none;
    padding: 5px 0;
    font-size: 18px;
    border-radius: 8px;
    background-color: rgb(96, 94, 141);
    color: rgb(255, 255, 255);
    text-align: center;
    cursor: pointer;
    margin-top: 5px;
    transition: 0.3s ease background-color;
}
button[type="submit"]:hover {
    color: rgb(96, 94, 141);
    background-color: rgb(255, 255, 255);
}
/* ----------------------------------------- */

@media screen and (max-width: 428px) {
    /* IPhone 13 Pro Max / 12 Pro Max (926x428) */
    .contact_title{
        height: 40px;
    }
    .contact_title p{
        font-size: 25px;
        line-height: 40px;
    }
    .contact_logo_img img{
        width: 80%;
    }
    .contact_logo_txt h1{
        font-size: 18px;
    }
    .contact_add_box h2{
        font-size: 18px;
    }
    .contact_add_box h3{
        font-size: 12px;
    }
    .container h1{
        font-size: 20px;
    }
    .form-group input,
    .form-group textarea {
        font-size: 12px;
    }
    button[type="submit"] {
        font-size: 15px;
    }
}