@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,300;0,400;0,500;0,600;0,700;1,100&display=swap');
body{
	margin: 0;
	padding: 0;
	font-family: 'Montserrat', sans-serif;
}

.container{
	width:1140px;
	margin:0 auto;
	padding: 0 15px;
}

h1, h2, h3, h4, h5, h6, p{
	margin:0;
}

.header {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid #f2f2f2;
}

.topbar .bx{
	display: flex;
	justify-content: space-between;
}

.topbar .bx .icon{
	margin-right: 10px;
}

.topbar .bx h4{
	font-size: 14px;
	font-weight: bold;
	color: #013c4fb3;
}

.topbar .bx p{
	font-size: 11px;
	font-weight: 400;
	color: #013c4fb3;
}

.main-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.main-head .menu ul{
	list-style: none;
	display: flex;
	margin: 0;
	padding: 0;
}

.main-head .menu ul li a{
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	color: #11777E;
	padding: 0 15px;
}

.main-head .menu ul li a:hover{
	color: #0BA1AB;
}

.main-head .login a{
	background: #11777E;
	color: #fff;
	padding: 10px 20px;
	border-radius: 5px;
	text-decoration: none;
	font-size: 16px;
	font-weight: 600;
}
.main-head .login a:hover{
	background: #000;
}

.content-main-wrapper {
    width: 100%;
    display: block;
}

.content-main-wrapper .main-title-area {
    background: url(/img/title-img.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.content-main-wrapper .main-title-area h1{
	color: #fff;
	font-size: 45px;
	font-weight: bold;
	margin-bottom: 15px;
}

.content-main-wrapper .main-title-area h5{
	font-size: 13px;
	font-weight: 400;
	color: #fff;
}

.content-area{
	width: 100%;
    display: flex;
    padding: 120px 0;
}



.content-area .content .right{
	padding-left: 80px;
	display: flex;
	align-items: center;
}

.content-area .content .form-title{
	margin-bottom:40px;
}

.content-area .content .form-title h3{
	font-size: 60px;
	font-weight: bold;
	line-height: 62px;
	color: #11777E;
	margin-bottom: 15px;
}

.content-area .content .form-title span{
	font-size: 16px;
	font-weight: 400;
	line-height: 20px;
	color: #11777E;
}

form label{
	display: none;
}

form .form-group{
	display: flex;
	width: 100%;
	margin-bottom: 20px;
}

form .form-group select{
	width: 100%;
	padding: 12px 20px;
	border: 1px solid #E0E0E0;
	font-size: 15px;
	font-weight: 600;
	color: #000;
}

form .form-group input{
	width: 100%;
	padding: 12px 20px;
	border: 1px solid #E0E0E0;
	font-size: 15px;
	font-weight: 400;
}

form button{
	width: 100%;
	background: #11777E;
	color: #fff;
	border: none;
	border-radius: 10px;
	padding: 12px 24px;
	height: 50px;
	font-weight: bold;
	text-transform: uppercase;
}

.footer {
    display: flex;
    width: 100%;
    background: #11777E;
}

.footer .main-ftr{
	display:flex;
	align-items:start;
	justify-content: space-between;
	padding:60px 0 40px 0;
}

.footer .main-ftr .col {
    flex-direction: column;
    flex: 0 0 25%;
    display: flex;
}

.footer .main-ftr .col.first{
	align-items: center;
}

.footer .main-ftr h3{
	font-size: 20px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 30px;
}

.footer .main-ftr ul{
	padding: 0;
	margin: 0;
	list-style: none;
}

.footer .main-ftr ul li{
	margin-bottom: 8px;
	display: flex;
}

.footer .main-ftr ul li span{
	margin-right: 10px;
}

.footer .main-ftr ul li a{
	text-decoration: none;
	color: #fff;
	font-size: 16px;
	font-weight: 400;
}

.footer .main-ftr ul li a:hover{
	color: #000;
}

.footer .copyright{
	padding: 20px 0;
	border-top: 1px solid #fff;
}

.footer .copyright p{
	font-size: 12px;
	color: #fff;
}

@media(max-width: 767px){
	.container{
		width: 300px;
	}

	.topbar{
		display: none;
	}

	.main-head .menu{
		display: none;
	}
	.content-main-wrapper .main-title-area{
		height: 200px;
	}
	.content-main-wrapper .main-title-area h1{
		font-size: 30px;
		line-height: 32px;
	}
	.content-area{
		padding: 60px 0;
		background: rgb(1,60,79);
		background: -moz-linear-gradient(360deg, rgba(1,60,79,1) 0%, rgba(1,60,79,1) 25%, rgba(255,255,255,1) 25%);
		background: -webkit-linear-gradient(360deg, rgba(1,60,79,1) 0%, rgba(1,60,79,1) 25%, rgba(255,255,255,1) 25%);
		background: linear-gradient(360deg, rgba(1,60,79,1) 0%, rgba(1,60,79,1) 25%, rgba(255,255,255,1) 25%);
		filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#013c4f",endColorstr="#ffffff",GradientType=1);
	}
	.content-area .content {
	    display: flex;
	    flex-direction: column-reverse;
	}
	.content-area .content .right{
		padding-left: 0;
		margin-bottom: 30px;
	}
	.content-area .content .form-title h3{
		font-size: 40px;
		line-height: 42px;
	}
	.content-area .content .left img{
		width: 100%;
	}
	.footer .main-ftr{
		flex-direction: column;
	}
	.footer .main-ftr .col{
		margin-bottom: 30px;
	}
}
