*{ 
  
    box-sizing: border-box;
    outline: none; border:none;
    text-decoration: none;
    
}
/* contact */
#contact {
    display: grid;
    grid-template-columns: 50% 50%;
    padding-top: 50px;
    gap: 20px;
    margin: 0 10%;
    padding-bottom: 5%;
    justify-content: center;
}
#contact-content{
    border-radius: 15px;
    padding: 3% 9%;
    background-color: #ffffff;
    box-shadow: 2px 2px 10px 5px  rgba(0, 0, 0, 0.189);
}
.contact h2{
    color: #0000a2;
    line-height: 1.5;
}
.contacth1{
    font-weight: bold;
    text-align: center;
    color: #0000a2;
    font-size: 50px;
    line-height: 2.0;
}
#horizantal-line{

    border-top: 8px solid #0000a2;
    border-radius: 5px;
    width: 100%;
    padding-bottom: 2%;
}
 p{
    color: #0000a2;
    font-size: 20px;
    line-height: 2.0;
}

#links{
    align-items: center;
    justify-content: center;
    display: flex;
    flex-flow: row;
}
#links a{
    margin: 10px;
}
   
.contactform{
    margin-top: 10%;
	font-weight:bold;
	font-size:20px;
}
#email{
	border-style: none; 
	border-color: inherit; 
	border-width: 2px; 
	background:#CCCCCC; 
    margin: 10px 0px;
	width: 100%;
	border-radius:5px; 
	height: 35px;
	padding:10px;  

}
#name{
	border-style: none; 
	border-color: inherit; 
	border-width: 2px; 
	background:#CCCCCC; 
    margin: 10px 0px;
	width:100%;
	border-radius:5px; 
	height: 35px;
	padding:10px;
}
#message{
	border-radius:5px;
    margin: 10px 0px;
	width: 100%; 
	padding:10px;
	height: 178px;
	background:#CCCCCC
}
#submit{
    font-weight: bold;
	border:2px black solid;
	border-radius:4px;
    margin: 10px 0px;
	width: 100%; 
	height: 10%;
	padding:10px

}
#submit:hover{
	background:#0000a2;
	color:white;
	transition:0.5s
}

#map{
    margin-top: 100px;
    position: relative;
    overflow: hidden;
    background-color: rgb(159, 159, 159);
    box-shadow: 0px 0px 0px 2px  #0000a2;
    height: 349px;
}
#mapframe{
    height: 350px;
    width: 100%;
}
input[type=text], select {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

@media (max-width: 1300px){
    #contact {
        display: grid;
        grid-template-columns: 80%;
        padding-top: 50px;
        gap: 20px;
        margin: 0 10%;
        padding-bottom: 5%;
        justify-content: center;
    }
    #contact-content{
        border-radius: 15px;
        padding: 4% 10%;
        background-color: #ffffff;
        box-shadow: 2px 2px 10px 5px  rgba(0, 0, 0, 0.189);
    }
}
@media (max-width: 900px){
    .contacth1{
        font-size: 40px;
    }
    #contact {
        display: grid;
        grid-template-columns: 100%;
        padding-top: 10px;
        gap: 20px;
        margin: 0 0;
        padding-bottom: 5%;
        justify-content: center;
    }
    #contact-content{
        border-radius: 0;
        padding: 2% 10%;
        background-color: #ffffff;
        box-shadow: 2px 2px 10px 5px  rgba(0, 0, 0, 0.189);
    }
}
