@charset "UTF-8";
body{
    background-color: #AEC9EA;
}
*{
	margin: 0px;
	padding:0px;
	box-sizing: border-box;
}
.navbar{
    display: flex;
    align-items: center;
    padding-top: 0px;
    padding-right: 25px;
    padding-left: 25px;
    padding-bottom: 0px;
    background-color: #1D3B6A;
}
nav{
	flex:1;
	text-align: right;
}
.navbar ul{
	display: inline-block;
	list-style-type: none;
	
}
.navbar ul li{
	display: inline-block;
	margin:40px; 
	font-size: 50pt;
}
a{
    text-decoration: none;
    color: #FCFCFC;
}
.navbar a:hover{
    color: #6B9CD8;
    font-size: 47pt;
}

.contact-container{
    display: flex;
    align-items: center;
    height: 100vh;
	justify-content: space-evenly;
}
.contact-left{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 40px;
}
.contact-left-title{
    font-weight: 600;
    font-size: 45px;
    margin-bottom: 5px;
    font-family: "Thuast Demo";
}
.contact-left-title hr{
	border:none;
	width:120px;
	height:5px;
	border-radius: 10px;
	margin-bottom: 20px;
}
.contact-inputs{
	width:400px;
	height:50px;
	border:none;
	outline:none;
	padding-left: 25px;
	font-weight: 500;
	border-radius: 50px;
}
.contact-left textarea{
	height: 140px;
	padding-top: 15px;
	border-radius: 20px;
}
.contact-inputs:focus{
	border:2px  solid #1D3B6A;
}
.contact-left button{
	display:flex;
	align-items: center;
	padding:15px 30px;
    font-size: 16px;
	gap:10px;
	border:none;
	border-radius: 50px;
	cursor: pointer;
	color: white;
	background-color: #1D3B6A;
}
.contact-right img{
	width:700px;
}

@media (max-width:800px) {
	.contact-inputs{
		width: 80vw;
	}
	.contact-right {
		display:none;
	}
}
@media (max-width:1100px){
	.contact-right img{
		width: 600px;
		height: 475px;
	}
}
@media (max-width:1023px){
	.contact-right img{
		width: 500px;
		height: 400px;
	}
}
@media (max-width:924px){
	.contact-right img{
		width: 400px;
		height: 350px;
	}
}
@media (max-width:1081px){
	.navbar ul li{
    font-size: 42px;
    padding-left: 0px;
    margin-left: 0px;
	}
	.navbar a:hover{
		font-size: 40px;
	}
	.contact-left-title{
    margin-top: 75px;		
	}
}
@media(max-width:641px){
	.navbar ul li{
    margin-top: 16px;
	}
}
	
	
	

	