*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background: linear-gradient(90deg, #0e3959 0%, #0e3959 30% ,gray 30%, gray 100%);
}
.header{
    position:absolute;
    top:-10px;
    left: 0;
    width: 100%;
    padding: 30px 5%;
    background: transparent;
    display: flex;
    align-items: center;
    z-index: 100;
}
.logo{
    font-size: 30px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}
.log{
    width: 150px;
    height: 80px;
    margin-top: 0px;
    margin-left: -20px;
  }
.social-media{
    margin: 0 auto 0 50px;
}
.social-media a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid #fff;
    border-radius: 6px;
    text-decoration: none;
    margin-right: 10px;
    transition: .5s;
}
.social-media a:hover{
    background: #fff;
}
.social-media a i{
    font-size: 20px;
    color: #fff;
    transition: .5s;
}
.social-media a:hover i{
    color: #444;
}
.navbar a{ 
    font-size: 20px;
    color: rgb(41, 11, 11);
    text-decoration: none;
    font-weight: 500;
    margin-left: 30px;
    text-shadow: 0 0 10px rgba(0, 0, 0, .2);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 40px;
    border: 2px solid #fff ;
    border-radius: 6px;
    text-decoration: none;
    margin-right: 10px;
    transition: .5s;
}
.navbar a:hover{
    background: white;
}
.navbar a i{
    font-size: 20px;
    color: #fff;
    transition: .5s;
}
.navbar a:hover i{
    color: #444;
}
.contactus{
    position: relative;
    width: 100%;
    padding: 40px 100px;
    margin-top: 50px;
}
.contactus .title{
   display: flex;
   justify-content: center;
   align-items: center;
   font-size: 2en; 
}
.title h2{
    color: white;
    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,.15);
}
.box{
    position: relative;
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-auto-rows: 5fr 4fr;
    grid-template-areas: 
    "form info"
    "form map";
    grid-gap: 20px;
    margin-top: 30px;
}
.contact h3{
    color: #0e3959;
    font-weight: 500;
    font-size: 1.4em;
    margin-bottom: 10px;
}
.formbox{
    position: relative;
    width: 100%;
}
.formbox .row50{
    display: flex;
    gap: 50px;
}
.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: 120px ;
    margin-bottom: 10px;
 }
 .inputbox input[type="submit"]{
    background: #4947df;
    color: #fff;
    border: none;
    font-size: 1.1em;
    max-width: 120px;
    font-weight: 500;
    cursor: pointer;
    padding: 14px 15px;
 }
 .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;
    font-size: 1.1em;
}
.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: lightseagreen;
}
.map{
   padding: 0; 
}
.map iframe{
    width: 100%;
    height: 100%;
}