@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body{
    background: white;
}
.contactUS{
    position: relative;
    width: 100%;
    padding: 40px 100px;
    
}
.contactUS .mhead{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
}
.contactUS .mhead h2{
    color: rgb(37, 23, 59);
    font-weight: 500;
}
.form{
    grid-area: form;
}
.info{
    grid-area: info;
}
.map{
    grid-area: map;
}
.contact{
    padding: 40px;
    background: #fff;
    box-shadow: 0 5px 35px rgba(0,0,0,0.15);
    border-radius: 7px;
}
.box{
    position: relative;
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 5fr 4fr;
    grid-template-areas: 
    "form info"
    "form map";
    grid-gap: 20px;
    margin-top: 20px;
}
.contact h3{
    color: rgb(37, 23, 59);
    font-weight: 500;
    font-size: 1.4em;
}

/* form */

.formBox{
    position: relative;
    width: 100%;
}
.formBox .row50{
    display: flex;
    gap: 20px;
}
.inputBox{
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
    width: 50%;
}
.formBox .row100 .inputBox{
    width: 100%;
}
.inputBox span{
    color: rgb(151, 224, 5);
    margin-top: 10px;
    margin-bottom: 5px;
    font-weight: 500;
}
.inputBox input{
    background: rgb(241, 235, 235);
    border: 0;
    border-radius: 4px;
    padding: 10px;
    font-size: 1.1em;
    outline: none;
    
}
.inputBox textarea{
    padding: 10px;
    font-size: 1.1em;
    background: rgb(241, 235, 235);
    outline: none;
    border: 0;
    border-radius: 4px;
    resize: none;
    min-height: 220px;
    margin-bottom: 10px;
}
.inputBox input[type="submit"]{
    background: rgb(151, 224, 5);
    color: black;
    font-size: 1.1em;
    max-width: 150px;
    font-weight: 500;
    cursor: pointer;
    padding: 14px 15px;
    border: 0;
    outline: none;
    border-radius: 6px;
}
.inputBox input[type="submit"]:hover{
    color: white;
    background: rgb(37, 23, 59);
}


.inputBox ::placeholder{
    color: #999;
}

/* info */
.info{
    background: rgb(37, 23, 59);
}
.info h3{
    color: #fff;
}
.info .infoBox div{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.info .infoBox div span{
    min-width: 40px;
    height: 40px;
    color: #fff;
    background: rgb(151, 224, 5);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    border-radius: 50%;
    margin-right: 15px;
}
.info .infoBox div p{
    color: #fff;
    font-size: 1.1em;
}
.info .infoBox div a{
    color: #fff;
    text-decoration: none;
    background-color: transparent;
}
.info .infoBox div a:hover{
    color: rgb(151, 224, 5);
    ;
}
.sci{
    margin-top: 40px;
    display: flex;
    padding: 0;
}
.sci li{
    list-style: none;
    margin-right: 15px;
    padding: 0;
}
.sci li a{
    background-color: rgba(1, 1, 1, 0);
    color: #fff;
    font-size: 2em;
}
.sci li a:hover{
    color: rgb(151, 224, 5);
}
.map{
    padding: 0;
}
.map iframe{
    width: 100%;
    height: 100%;
}

/* responsive */

@media (max-width: 1050px){
    body{
        background: rgb(247, 246, 248);
    }
    .contactUS{
        padding: 20px;
    }
    .box{
        position: relative;
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        grid-template-areas: 
        "form"
        "info"
        "map";
    }
    .formBox .row50{
        display: flex;
        gap: 0;
        flex-direction: column;
    }
    .inputBox{
        width: 85%;
    }
    .contact{
        padding: 30px;
    }
    .map{
        min-height: 300px;
        padding: 0;
    }

}
