*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
    font-size: 20px 
}
html{
    scroll-behavior: smooth;
}

a{
    text-decoration: none;
}

ul{

    list-style: none;
}
.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 10vh;
    background-color: #231515;

}
.logo{
    padding-left: 10px;
}
.logo-text{
    
    margin-left: auto;
    font-size: 1.5em;
    
}
.logoimg{
    width: 50px;
}
.menubar{
    width: 50%;
    margin-left: 0.5em;
}
.list{
    margin-left: -10px;
    display: flex;
    justify-content: space-between;
}
.list-items a{
    margin-right: 80px;
    color: white;
    font-family: sans-serif;
    font-size: 0.7em;
    transition: 0.4s;
}
.list-items a:hover{
    color: orange;
}


.burger{
    height: 28px;
    width: 32;
    display: block;
}
.layer1,.layer2,.layer3{
    background: black; 
    height:4px;
    margin-top: 4px;
    width:100%; 
    border-radius: 10px;
}
.contactUs{
    position: relative;
    padding: 40px 90px;
    width: 100%;
    font-family: 'Segoe UI', Verdana, sans-serif ;
    box-sizing: border-box;
    box-shadow: 0 5px 35px rgba(0,0,0,0.15);
}
.contactUs .title{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2em;

}
.contactUs .title h2{
    color: white;
    font-weight: 500;
}
body{
    background: linear-gradient(90deg,#546972 100% );
}
.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;
}
.form{
    grid-area: form;
}
.into{
    grid-area: info;
}
.cont{
    padding: 40px ;
    background: white;
    box-shadow: 0 5px 35px rgba(0,0,0,0.13);
}
.map{
    grid-area: map;
}
.cont h3{
    color: #0e3959;
    font-weight: 500;
    font-size: 1.2em;
    margin-bottom: 10px;
} 
.formBox{
    position: relative;
    width: 100%;
}
.formBox .row50{
    display: flex;
    gap: 20px;
}
.inputBox{
    display: flex;
    flex-direction: column; /*straightens out the input boxes and text */
    margin-bottom: 10px;
    width:50%; 
}
.formBox .row100 .inputBox{
    width: 100%;

}
.inputBox span{
    color: #231515 ;
    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: cornflowerblue;
    color: white;
    border: none;
    font-size: 1.1em;
    max-width: 120px;
    font-weight: 500;
    cursor: pointer;
    padding: 14px 15px;
}
.inputBox ::placeholder{
    color: lightslategray;
}
.info{
    background-color: lightblue ;
}
.info h3{
    color: black;
}
.info .infoBox div{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.info .infoBox div span{
    min-width: 40px;
    height: 40px;
    color: white;
    background: #231515;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1em;
    border-radius: 50%;
    margin-right: 15px;

}
.info .infoBox div a{
    color: white;
    text-decoration: none;
    font-size: 1.1em;
}
.map{
    padding: 0;
}
@media screen and (max-width: 700px){
   
.contactUS{
position: relative;
width: 100%;
padding: 20px;
}
.box{
text-align: center;
font-family: 'Helvetica', sans-serif;
display: flex;
flex-direction: column;
max-width: 900px; /* Set a maximum width for the container */
width: 100%;

margin: auto; /* Center the container using auto margins */

}
.box .form, .info, .map {
width: auto;
}
.list-items{
    font-size: 0.7em;
  }
  .logo-text{
    font-size: 0em;
  }


.menubar {
  width: 100%;
  display: contents; /* Hide the menu items by default on small screens */
}
.burger {
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.map iframe{
    max-width: fit-content;
}

}