*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins',sans-serif;
}
body{
    /* background: linear-gradient(90deg, #0e3959 0%, #0e3959 30%,#03a9f5 30%,#03a9f5 100%) !important; */
    background-image: linear-gradient(rgb(15, 3, 78), rgb(12, 150, 153));
}

.contactUs{
   position: relative;
   width: 100%;
   padding: 40px 100px; 
}
.contactUs .title{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    font-weight: 500;
}
.contactUs .title h2{
    color: #fff;
    font-weight: 500;
}

.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: 150px;
}
.contact{
    border-radius: 5px;
    padding: 40px;
    background: #fff;
    box-shadow: 0 5px 35px rgba(0, 0, 0, 0.15);
}
.contact h3{
    color: #0e3959;
    font-weight: 500;
    font-size: 1.4em;
    margin-bottom: 10px;
}

.form{
    grid-area: form;
}
.info{
    grid-area: info;
}
.map{
    grid-area: map;
}
.title h2{
    text-align: center;
    padding: 5px;
    margin-top: 40px;
    color: #fff;
    font-size: 34px;
}

.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: #18b7ff;
    margin-top: 10px;
    margin-bottom: 5px;
    font-weight: 500;

}
.inputBox input{
    padding: 10px;
    font-size: 1.1em;
    outline: none;
    border: 1px solid #333;

}
.inputBox textarea{
    padding: 10px;
    font-size: 1.1em;
    outline: none;
    border: 1px solid #333;
    resize: none;
    min-height: 220px;
    margin-bottom: 10px;

}
.inputBox input[type="submit"]{
    
    background: #e60137;
    color: #fff;
    border: none;
    max-width: 120px;
    font-weight: 500;
    cursor: pointer;
    padding: 14px 15px;

}
.inputBox input[type="submit"]:hover{
    background: #ed5478;
    transition: all 0.2s ease;
}
.inputBox ::placeholder{
    color: #999;

}

/* Info */
.info{
    background: #0e3959;
}

.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: #18b7ff;
    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;

}
.info .infoBox div a:hover{
    
    transition: all 0.5s ease;
    color: rgb(40, 233, 233);
}
.sci{
    margin-top: 40px;
    display: flex;

}
.sci li{
    list-style: none;
    margin-right: 15px;
}
.sci li a{
    color: #fff;
    font-size: 2em;
    color: #ccc;

}
.sci li a:hover{
    color: rgb(0, 234, 255);
    
    transition: all 0.5s ease;
}
.map{
    padding: 0;
}
.map iframe{
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #233172;
    z-index: 10;
    display: flex;
    justify-content: flex-end;
}


.main_nav_container{
    height: 120px;
    width: 100%;
    background: #12083f;
    box-shadow: 0 0 16px rgba(0, 0, 0, .015);

}
.navbar{
    width: auto;
    height: 100px;
    float: right;
    padding-left: 0px;
    padding-right: 0px;
    margin-right: 30px;
}
.navbar a{
    text-decoration: none;
    padding: 10px;
    margin-right: 120px;
}
.navbar_menu li{
    display: inline-block;

}
.navbar_menu li a{
    display: block;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 20px;
    transition: color 0.3s ease;
    text-decoration: none;

}

.logo_container{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 15px;
    text-decoration: none;
}
.logo_container:hover{
    font-size: 30px;
    color: #fe4c50;
}
.logo_container a{
    margin-left: 40px;
    padding: 15px;
    font-size: 20px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
}
.logo_container a span{
    color: #fe4c50;
    text-decoration: none;
}

.logout{
    padding: 5px 5px;
    margin-left: 20px;
    color: #fff;
    
    border-radius: 10px;
    background-color: rgb(69, 116, 181);
}
.logout:hover{
    color: #fff;
    text-decoration: none;
    box-shadow: 0 0 10px rgba(22, 154, 255, 0.8);
}
/* Responsive */

@media (max-width:991px){

    .body{
        background: #03a9f5;

    }
    .contactUs{
        padding: 30px;
    }
    .box{
        
        position: relative;
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        grid-template-areas: 
        "form"
        "info"
        "map";

    }

    .map{
        min-height: 300px;

    }
    .formBox .row50{
        display: flex;
        gap: 0;
        flex-direction: column;

    }
    .inputBox{
        display: flex;
        flex-direction: column;
        margin-bottom: 10px;
        width: 100%;

    }
    .map{
        min-height: 300px;
        padding: 0;
    }
    .navbar a{
        margin-right: 30px;
        margin-bottom: 100px;
    }
    .logo_container a{
        margin-left: 5px;
    }
}