/*Global Styles*/

:root{
	--dark-blue-color: #0D1B2A;
	--middle-blue-color: #2c3e50;
	--light-blue-color: #00BCD4;
	--white-color: #FFFFFF;
	--black-color: #000000;
}

html, body{
	font-family: 'Orbitron';
}

body{
	background-color: var(--dark-blue-color);
}

.wco-container{
	width: 100%;
	margin: auto;
	padding: 0 40px;
}

.flex{
	display: flex;
}

.padding-big{
	padding: 40px 0;
}

.title-style{
	padding: 40px 0;
}

.title-style h1{
	font-size: 48px;
}

.title-style h2{
	font-size: 30px;
}

.subtitle-style{
	padding: 20px 0;
}

.subtitle-style h3{
	font-size: 18px;
	line-height: 30px;
}

.subtitle-style p{
	font-size: 14px;
	line-height: 24px;
}

.form-item{
	margin-bottom: 20px;
}

.form-item input{
	height: 50px;
	border-radius: 10px;
	border: 1px solid var(--middle-blue-color);
	color: var(--middle-blue-color);
	outline: none;
	width: 100%;
	text-indent: 15px;
}

.form-item button{
	width: 100%;
	background: var(--middle-blue-color);
	color: var(--white-color);
	height: 50px;
	border-radius: 10px;
	border: none;
	margin-top: 10px;
	cursor: pointer;
	transition: ease-in-out 0.4s;
}

.form-item button:hover{
	background: #5b6f82;
	transition: ease-in-out 0.4s;
}

.form-item p{
	font-size: 12px;
	color: #333;
	padding-bottom: 10px;
}

h3{
	font-size: 24px;
}

/*Global Styles End*/

/*navigation*/

.navigation {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	padding: 20px 0;
	backdrop-filter: blur(30px);
	background: rgb(5 10 17 / 30%);
	z-index: 2;
}

.navigation .items .item{
	padding: 0 10px;
}

.navigation a{
	color: var(--white-color);
}

.navigation .hamburger{
	display: none;
}

.navigation .nav-parts{
	justify-content: space-between;
}

.navigation .nav-parts .logo-cont{
	width: 60px;
}

.navigation .nav-parts .logo-cont img{
	width: 100%;
}

.mobile-menu{
	display: none;
}

/*navigation end*/

/*block-1*/

.block-1{
	padding-top: 100px;
	background: #0D1B2A;
	background: -webkit-linear-gradient(0deg, rgba(13, 27, 42, 1) 0%, rgba(0, 1, 3, 1) 100%);
	background: -moz-linear-gradient(0deg, rgba(13, 27, 42, 1) 0%, rgba(0, 1, 3, 1) 100%);
	background: linear-gradient(0deg, rgba(13, 27, 42, 1) 0%, rgba(0, 1, 3, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0D1B2A", endColorstr="#000103", GradientType=0);
}

.block-1 .title-style{
	padding-bottom: 20px;
}

.block-1 .title-style h1{
	color: #8babae;
}

.block-1 .parts .part{
	width: 50%;
	position: relative;
}


.block-1 .subtitle-style h3{
	color: var(--white-color);
}

.block-1 .parts .part-1{
	display: flex;
}

.block-1 .parts .part-1 .subcont{
	margin: auto 0;
}

/*block-2*/

.block-2{

}

.block-2 .title-style h2{
	color: var(--light-blue-color);
}

.block-2 .items{
	justify-content: space-between;
}

.block-2 .items .item{
	width: 24%;
	padding: 20px;
	border-radius: 20px;
	background: var(--middle-blue-color);
	min-height: 200px;
	transform: rotate(2deg);
	transition: ease-in-out 0.2s;
}

.block-2 .items .item:hover{
	transform: rotate(0deg);	
	transition: ease-in-out 0.2s;
}

.block-2 .items .item img{
	width: 100%;
	object-fit: cover;
	display: block;
	margin: auto;
	margin-bottom: 20px;
	border-radius: 20px;
}

.block-2 .items .item h4{
	font-size: 18px;
	text-align: center;
	padding-bottom: 10px;
	color: var(--light-blue-color);
}

.block-2 .items .item h5{
	font-size: 14px;
	text-align: center;
	color: var(--white-color);
}

/*block-3*/

.block-3{
	background: var(--white-color);
}

.block-3 .title-style{
	padding-bottom: 20px;
}

.block-3 .parts .part{
	width: 50%;
}

.block-3 .parts .part-1{
	display: flex;
	padding-right: 40px;
}

.block-3 .parts .part-1 .subcont{
	margin: auto 0;
}

.block-3 .parts .part-2{
	padding-left: 40px;
}

/*footer*/

.footer{

}

.footer .items{

}

.footer .items .item{
	padding: 0 10px;
}

.footer .items .item a{
	color: var(--white-color);
}

/*success-page*/

.success-page{
	height: 100vh;
}

.success-page .wco-container{
	display: flex;
	height: 100%;
}

.success-page .title-style{
	display: flex;
}

.success-page h1{
	color: var(--white-color);
	text-align: center;
	margin: auto;
}

@media(max-width: 980px){

	.title-style h1 {
		font-size: 30px;
	}

	.subtitle-style h3 {
		font-size: 14px;
		line-height: 14px;
	}

	.navigation a {
		font-size: 13px;
	}

	.navigation .items .item {
		padding: 0 5px;
	}

	.title-style h2 {
		font-size: 24px;
	}

	.block-2 .items {
		flex-wrap: wrap;
	}

	.block-2 .items .item{
		width: 48%;
		margin-bottom: 20px;
	}

	.block-2 .items .item h4 {
		font-size: 16px;
	}

	.block-3 .parts{
		flex-wrap: wrap;
	}

	.block-3 .parts .part{
		width: 100%;
		padding: 0;
	}

	.block-3 .parts .part-1{
		padding-bottom: 40px;
	}

	.footer .items .item a{
		font-size: 13px;
	}

}

@media(max-width: 768px){

	.wco-container{
		padding: 0 20px;
	}

	.navigation .items{
		display: none;
	}

	.navigation .hamburger {
		display: block;
		width: 40px;
		margin-left: auto;
		margin-right: 0;
		position: absolute;
		right: 20px;
		top: 20px;
	}

	.navigation .hamburger div{
		background-color: var(--white-color);
		height: 2px;
		width: 100%;
		margin-bottom: 6px
	}

	.mobile-menu{
		display: block;
		position: fixed;
		left: -100%;
		top: 0;
		background: var(--dark-blue-color);
		height: 100vh;
		width: 100%;
		z-index: 500;
		padding-top: 40px;
		transition: ease-in-out 0.4s;
	}

	.mobile-menu.open{
		left: 0;
		transition: ease-in-out 0.4s;
	}

	.mobile-menu .items .item{
		padding-bottom: 20px;
	}

	.mobile-menu .items .item a{
		color: var(--white-color);
	}

	.mobile-menu .close{
		width: 20px;
		position: absolute;
		right: 20px;
		top: 40px;
	}

	.mobile-menu .close img{
		width: 100%;
		display: block;
	}

	.block-1 .parts{
		flex-wrap: wrap;
	}

	.block-1 .parts .part{
		width: 100%;
	}

	.footer .items{
		flex-wrap: wrap;
	}

	.footer .items .item {
		width: 100%;
		padding: 0;
		padding-bottom: 20px;
	}

	.block-2 .items .item {
		width: 100%;
		transform: rotate(0);
	}

}