*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;list-style: none;
	text-decoration: none;
	font-weight: bolder;
	font-family: serif;

}
body {
	background: #fefefe;
}
.logoo{
	width: 100%;
	padding: 10px 5px;
	border-radius: 8px;
	height: 50px;
	color: white;
	font-size: 25px;
	border: 1px solid #fff;
	
}
header {
	width: 100%;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 20px;
	margin: 0 auto;
	background:#004274;
}
.logo{
	width: 170px;
	margin: 8px;
	font-size: 25px;
	color: #fff;
	border-radius: 8px;
	
}
nav .logo{
	display: none;
	

}

nav ul{
	display: flex;
	height: 100%;


}

nav ul li a{
	color: #fff;
	display: block;
	margin: 0px;
	padding: 12px 6px 7px 6px;
	border-radius: 2px;
	font-size: 20px;
	max-width: 100px;
	height: 30px;
	text-align: center;
	border-left: 1px solid #e3e9f7;
	height: 100%;
	text-decoration: none;
	
}

nav ul li a:hover{
	background: #e3e7f7;
	color: #fff;
	background:#004274;
	 background:linear-gradient(135deg,#71b7e6,#9b59b6);

}
.humburger {
	
	height: fit-content;
	cursor: pointer;
	padding: 3px 8px;
	border-radius: 5px;
	background: #e3e9f7;
}
.humburger:hover {
	background: #f6f4ff;
}
.humburger div {
	width: 30px;
	height: 2px;
	margin: 6px 0;
	background: #212526;
}

.cot{
	min-height: 600px;
}
footer{
	width: 100%;
	height: 300px;
	padding: 20 40px;
	border-radius: 0 0 10px 10px;
	margin: 0 auto;
	background:#004274;
}


@media (max-width: 1500px){
	header{
		width: 100%;
		padding: 0 10px;
		height: 60px;
		background:#004274;
	}
	nav{
		position: absolute;
		left: -300px;
		top: 0;
		z-index: 999;
		width: 300px;
		height: 100vh;
		background:rgb(0, 119, 170);
		box-shadow: 2px 0 20px 0 rgba(0, 0, 0, 0.05);
	}
	#nav_check:checked~nav{
		left: 0;
	}

	nav ul li a{
		margin: 0px;
		padding: 12px 20px;
		border-radius: 2px;
		font-size: 14px;
		max-width: 100%;
		height: 40px;
		text-align: left;
		border-bottom: 1px solid #004274;
		border-left: none;
		
	}
	nav ul{
		display: block;
		padding: 2px;
		margin-top: 10px;
		border: 1px solid #004274;
		border-radius: 6px;

	}
	.humburger{
		display: block;
		background: #e3e9f7;
	}
	nav .logo{
	display: block;
	height: 40px;
	display: flex;
	align-items: center;
	width: 170px;
}

}
.wrapper{
    max-width: 600px;
    width: 100%;
    background: #e3e9f7;
    margin: 0px auto;
    padding: 25px 10px 0px 10px;
	font-size: 17px;
    box-shadow: 1px 1px 2px rgba(0,0,0,0.125);
    min-height: 400px;
}
.wrappertable{
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    box-shadow: 1px 1px 2px rgba(0,0,0,0.125);
    min-height: 400px;
}
.wrapper .title{
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 10px;
    text-align: center;
}
.wrapper .form{
    width: 100%;
	border-radius: 6px;
	border: 1px solid #004274;
	padding: 15px 25px 5px 25px;
	
}
.wrappermenu .form{
    width: 40%;
	border-radius: 6px;
	border: 1px solid #004274;
	padding: 15px 25px 5px 25px;
	
}
	
.wrapper .form .input_field{
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}
.wrapper .form .input_field label{
    width: 400px;
    color: #757575;
    margin-right: 10px;
    font-size: 14px;
    font-weight: bolder;
    color: #004274;
	
}
.wrapper .form .input_field .input,
.wrapper .form .input_field .textarea
{
    width: 100%;
    outline: none;
    border: 1px solid #d5dbd9;
    font-size: 15px;
    padding: 8px 10px;
    border-radius: 6px;
    transform: all 0.3s ease;
}
.wrapper .form .input_field .textarea
{
    resize: none;
    height: 125px;
}
.wrapper .form .input_field .custom_select{
    position: relative;
    width: 100%;
    height: 37px;
	font-size: 13px;
}
.wrapper .form .input_field .custom_select select{
    -webkit-appearance: none;
    appearance: none;
    border: 1px solid #d5dbd9;
    width: 100%;
    height: 100%;
    padding: 8px 10px;
    border-radius: 3px;
    outline: none;
	font-size: 13px;
}
.wrapper .form .input_field .custom_select:before{
    content: "";
    position: absolute;
    top: 12px;
    right: 10px;
    border: 8px solid;
    border-color: #d5dbd9 transparent transparent transparent;
    pointer-events: none;
}
.wrapper .form .input_field .input:focus,
.wrapper .form .input_field .textarea:focus,
.wrapper .form .input_field select:focus
{
    border: 1px solid #fec107;
}
.wrapper .form .input_field p{
    font-size: 14px;
    color: #757575;
}
.wrapper .form .input_field .check{
    width: 15px;
    height: 15px;
    position: relative;
    display: block;
    cursor: pointer;

}
.wrapper .form .input_field .check input[type="checkbox"]{
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}
.wrapper .form .input_field .check .checkmark{
    width: 15px;
    height: 15px;
    border: 1px solid #fec107;
    display: block;
    position: relative;
    
}
.wrapper .form .input_field .check .checkmark:before{
    content: "";
    position: absolute;
    top: 1px;
    left: 2px;
    width: 5px;
    height: 2px;
    border: 2px solid;
    border-color: transparent transparent #fff #fff;
    transform: rotate(-45deg);
    display: none;
}
.wrapper .form .input_field .check input[type="checkbox"]:checked ~ .checkmark{
    background: #fec107;
   
}
.wrapper .form .input_field .check input[type="checkbox"]:checked ~ .checkmark:before{
    display: block;
   
}
.wrapper .form .input_field .btn{
    width: 100%;
    padding: 8px 10px;
    font-size: 15px;
    border: 0;
    background: #004274;
    color: #fff;
    cursor: pointer;
    border-radius: 8px;
    outline: none;
}
.wrapper .form .input_field:last-child{
    margin-bottom: 0;
}
.wrapper .form .input_field .btn:hover{
    
    background:linear-gradient(135deg,#71b7e6,#9b59b6);
}
@media (max-width: 1100px){
    .wrapper .form .input_field{
        flex-direction: column;
        align-items: flex-start;
    }
    .wrapper .form .input_field label{
        margin-bottom: 5px;
    }
    .wrapper .form .input_field.terms{
        flex-direction: row;
    }
}