:root {
	--dark_blue: #002060;
	--basic_white: #FFFFFF;
	--primary_text: #1F1F1F;
	--secondary_text: #6D6D6D;
	--disabled_text: #939393;
	--disabled_50: #BCBCBC;
	--hover_white: #F2F2F2;
	--bg: #FAFAFA;
}
body{
	margin: 0;
	padding: 0;
}
*{
	font-family: 'Roboto';
	font-weight: 400;
	font-size: 10px;
}
@media(max-width: 820px){
	*{
		font-size: 8px;
	}
}
a{
	text-decoration: none;
	color: unset;
	font-size: inherit;
	line-height: inherit;
	letter-spacing: inherit;
}
h1{
	font-family: Roboto;
	font-style: normal;
	font-weight: 700;
	font-size: 4rem;
	padding: 0;
	margin: 0;
}
h2{
	font-family: Roboto;
	font-style: normal;
	font-weight: 700;
	font-size: 4rem;
	color: var(--dark_blue);
}
h3{
	font-family: Roboto;
	font-style: normal;
	font-weight: 700;
	font-size: 2.4rem;
	line-height: 1.5;
	padding: 0;
	margin: 0;
}
p{
	font-family: Roboto;
	font-style: normal;
	font-weight: 400;
	font-size: 1.4rem;
	line-height: 16px;
	padding: 0;
	margin: 0; 
}
span{
	font-size: inherit;
	font-weight: inherit;
	font-style: inherit;
	letter-spacing: inherit;
	line-height: inherit;
}
.sub-title{
	font-family: Roboto;
	font-size: 1.8rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.4;
	letter-spacing: 0em;
}
input:focus{
	outline: none;
}
textarea:focus{
	outline: none;
}
input::-webkit-input-placeholder       {opacity: 1; transition: opacity 0.3s ease;}
input::-moz-placeholder                {opacity: 1; transition: opacity 0.3s ease;}
input:-moz-placeholder                 {opacity: 1; transition: opacity 0.3s ease;}
input:-ms-input-placeholder            {opacity: 1; transition: opacity 0.3s ease;}
input:focus::-webkit-input-placeholder {opacity: 0; transition: opacity 0.3s ease;}
input:focus::-moz-placeholder          {opacity: 0; transition: opacity 0.3s ease;}
input:focus:-moz-placeholder           {opacity: 0; transition: opacity 0.3s ease;}
input:focus:-ms-input-placeholder      {opacity: 0; transition: opacity 0.3s ease;}

textarea::-webkit-input-placeholder       {opacity: 1; transition: opacity 0.3s ease;}
textarea::-moz-placeholder                {opacity: 1; transition: opacity 0.3s ease;}
textarea:-moz-placeholder                 {opacity: 1; transition: opacity 0.3s ease;}
textarea:-ms-input-placeholder            {opacity: 1; transition: opacity 0.3s ease;}
textarea:focus::-webkit-input-placeholder {opacity: 0; transition: opacity 0.3s ease;}
textarea:focus::-moz-placeholder          {opacity: 0; transition: opacity 0.3s ease;}
textarea:focus:-moz-placeholder           {opacity: 0; transition: opacity 0.3s ease;}
textarea:focus:-ms-input-placeholder      {opacity: 0; transition: opacity 0.3s ease;}

.container{
	max-width: 1170px;
	height: 100%;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
@media(max-width: 1200px){
	.container{
		max-width: 900px;
	}
}
@media(max-width: 980px){
	.container{
		max-width: 100%;
		padding: 0 25px;
	}
}
.developer-banner{
	min-height: 100vh;
	background: url('../img/BG-Texture.jpg') center center no-repeat;
	background-size: cover;
}
.developer-banner .container{
	flex-direction: column;
	align-items: center;
	justify-content: unset;
	height: unset;
	padding: 12rem 0;
}
.center__logo{
	width: 19.4rem;
	height: 6.3rem;
}
.center__logo img{
	width: 100%;
	height: auto;
	display: block;
}
.slogan{
	margin-bottom: 4rem;
	margin-top: 2rem;
}
.slogan h1{
	color: var(--dark_blue);
	padding-bottom: 2.4rem;
	text-align: center;
}
.slogan p{
	color: var(--secondary_text);
	text-align: center;
}
.slogan p span{
	color: var(--dark_blue);
	border-bottom: 1px solid var(--dark_blue);
	font-size: 2rem;
}
.contacts{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	width: 100%;
}
.contacts .one_block{
	width: 31%;
	background: var(--basic_white);
	filter: drop-shadow(0px 10px 20px rgba(0, 0, 0, 0.04))
	drop-shadow(0px 2px 6px rgba(0, 0, 0, 0.04))
	drop-shadow(0px 0px 1px rgba(0, 0, 0, 0.04));
	border-radius: 15px;
	display: flex;
	flex-direction: column;
	text-align: center;
	padding: 32px 0;
	transition: 0.5s all;
}
@media(max-width: 980px){
	.contacts{
		flex-direction: column;
		justify-content: unset;
		align-items: center;
	}
	.contacts .one_block{
		width: 80%;
		margin-bottom: 2rem;
	}
}
.contacts .one_block:hover{
	transform: scale(1.05);
}
.contacts .logo{
	width: 100%;
	height: 32px;
	display: block; 
}
.contacts h3{
	color: var(--dark_blue);
	margin: 16px 0;
}
.contacts .logo.tel{
	background: url('../img/phone-dial.png') center center no-repeat;
	background-size: contain;
}
.contacts .logo.email{
	background: url('../img/email-at.png') center center no-repeat;
	background-size: contain;
}
.contacts .logo.adress{
	background: url('../img/pin-location.png') center center no-repeat;
	background-size: contain;
}
.contacts p{
	color: var(--secondary_text);
}
