@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --font-family: "Montserrat", sans-serif;
  --second-family: "Work Sans", sans-serif;
}

*{
	margin: 0;
	padding: 0;
}

body{
	font-family: "Montserrat", sans-serif;
	overflow-x: hidden;
}

header{
	background: #222222;
	display: flex;
	justify-content: center;
}
.header{
	width: 100vw;
	overflow-x: hidden;
	/*min-height: 100vh;*/
}

nav{
	display: flex;
	width: 1440px;
	padding-left: 45px;
	padding-right: 45px;
	position: relative;
	/*overflow-x: hidden;*/
}
/*nav.active{
	overflow-x: visible ;
}*/

nav ul{
	list-style-type: none;
}

.menu-items{
	height: 100%;
	display: flex;
	align-items: center;
}

.logo>img{
	width: 90px;
	padding-top: 15px;
	padding-bottom: 15px;
}

.menu a{
	color: #D3D3D3;
	text-decoration: none;
}

.menu{
	display: flex;
	column-gap: 75px;
	margin-left: 90px;
	align-items: center;
	font-size: 16px;
}

.menu li {
  position: relative;
}
.menu li::before {
  content: attr(data);
  display: block;
}
.menu li::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 30px;
  right: 0;
  height: 1px;
  background-color: #fff;
  transition: width 300ms;
  width: 0;
}
.menu li:hover::after {
  width: 100%;
  left: 0;
}

.mobile-menu>div{
	margin-left: auto;
	display: flex;
	height: 100%;
	align-items: center;
}



nav .contact{
	display: flex;
	align-items: center;
	font-weight: 400;
	font-size: 16px;
	line-height: 122%;
	color: #d3d3d3;
	text-decoration: none;
	column-gap: 10px;
}

nav .contact {
  position: relative;
}
nav .contact::before {
  content: attr(data);
  display: block;
}
nav .contact::after {
  content: "";
  display: block;
  position: absolute;
  top: 25px;
  right: 0px;
  height: 1px;
  background-color: #fff;
  transition: width 300ms;
  width: 0;
}
nav .contact:hover::after {
  width: calc(100% - 50px);
  left: 50px;
}
nav .contact>svg>path{
	fill: #CACACA;
	transition: 0.2s all;
}
nav .contact:hover>svg>path{
	fill: #25d366;
}


nav .language{
	margin-left: 45px;
	font-weight: 400;
	font-size: 16px;
	color: #d3d3d3;
	display: flex;
	align-items: center;
	column-gap: 10px;
	position: relative;
	cursor: pointer;
}

nav .language>.list{
	position: absolute;
	background: #222222;
	display: flex;
	flex-direction: column;
	row-gap: 5px;
	top: 60px;
	left: -25px;
	opacity: 0;
	z-index: 100;
	transition: 0.3s all;
}

nav .language>.list>a{
	font-weight: 400;
	font-size: 16px;
	color: #d3d3d3;
	display: flex;
	align-items: center;
	column-gap: 10px;
	padding: 10px 35px;
	text-decoration: none;
}

nav .language>.list>a:hover{
	background: #333333;
}

nav .language>.list.active{
	opacity: 1;
}
.lang-strelka{
	transition: 0.2s all;
	transform: rotate(0deg);
}

.lang-strelka.active{
	transform: rotate(180deg);
}

.mobile-menu{
	display: flex;
	width: 100%;
}

.haburger{
	width: 40px;
	height: 1px;
	position: relative;
	align-self: center;
	display: flex;
	align-items: center;
	margin-left: auto;
	background: #fff;
	transition: 0.4s all;
}

.haburger:after{
	content: '';
	width: 40px;
	height: 1px;
	background: #fff;
	top: -13px;
	position: absolute;
	transition: 0.4s all;
}
.haburger:before{
	content: '';
	width: 40px;
	height: 1px;
	background: #fff;
	top: 13px;
	position: absolute;
	transition: 0.4s all;
}
.haburger.active{
	background: transparent;
	width: 0px;
	margin-right: 30px;
}
.haburger.active:after{
	transform: rotate(45deg);
	top: 0px;
}
.haburger.active:before{
	transform: rotate(-45deg);
	top: 0px;
}
.haburger{
	display: none;
}



@media only screen and (max-width: 1000px) {

.haburger{
	display: block;
}

.mobile-menu{
	display: flex;
	position: absolute;
	flex-direction: column;
	height: calc(100dvh - 85px);
	background: #222222;
	top: 85px;
	width: 320px;
	max-width: 100vw;
	right: -320px;
	transition: 0.4s all;
	z-index: 99;
}

.mobile-menu.active{
	right: 0;
}

.mobile-menu>.menu{
	flex-direction: column;
	margin-left: 0;
	row-gap: 40px;
	margin-top: 40px;
	font-size: 20px;
}

.mobile-menu>div{
	flex-direction: column-reverse;
	margin-left: 0;
	row-gap: 20px;
	margin-bottom: 30px;
}

.logo>img{
	width: 80px;
	padding-top: 15px;
	padding-bottom: 15px;
}
nav{
	padding-left: 30px;
	padding-right: 30px;
}

.menu li::after{
	bottom: 0;
	top: 30px;
}
.lang-strelka{
	transform: rotate(180deg);
}
.lang-strelka.active {
    transform: rotate(0deg);
}
nav .language>.list{
	top: -125px;
	border: 1px solid #333333;
	/*border-bottom: 0;*/
}

nav .language{
	margin-left: 30px;
}
}

mark{
	color: #3c8044;
	background: transparent;
}




.container{
	padding-left: 45px;
	padding-right: 45px;
	max-width: 1440px;
	width: calc(100% - 90px);
}
.container>h1{
	font-family: var(--font-family);
	font-weight: 700;
	font-size: clamp(1.875rem, 1.2729rem + 2.7523vw, 3.75rem);
	text-align: center;
	margin-top: 15px;
}

.container>p{
	font-family: var(--font-family);
	font-weight: 400;
	font-size: clamp(1rem, 0.7993rem + 0.9174vw, 1.625rem);
	line-height: 138%;
	color: #525252;
}

.container>ul{
	font-family: var(--font-family);
	font-weight: 400;
	font-size: clamp(1rem, 0.7993rem + 0.9174vw, 1.625rem);
	line-height: 138%;
	color: #525252;
	padding-left: 25px;
}

.container>ol{
	font-family: var(--font-family);
	font-weight: 400;
	font-size: clamp(1rem, 0.7993rem + 0.9174vw, 1.625rem);
	line-height: 138%;
	color: #525252;
	padding-left: 25px;
}


@media only screen and (max-width: 600px) {
.container{
	padding-left: 20px;
	padding-right: 20px;
	max-width: 1440px;
	width: calc(100% - 40px);
}
}


footer{
	display: flex;
	align-items: center;
	justify-content: center;
	background: #222;
	margin-top: 100px;
}

.container-footer{
	max-width: 1440px;
	padding-left: 45px;
	padding-right: 45px;
	width: calc(100% - 90px);
	padding-top: 90px;
	padding-bottom: 50px;
	display: flex;
	align-items: flex-end;
}
.container-footer>.col{
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 400px;
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 20px;
	color: #fff;
	row-gap: 30px;
}

.container-footer>.col>img{
	margin-bottom: 10px;
}

.container-footer>.col>a{
	text-decoration: none;
	color: #fff;
}

.container-footer>a{
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 24px;
	color: #fff;
	text-decoration: none;
	margin-left: 100px;
}
.container-footer>.social{
	display: flex;
	column-gap: 70px;
	margin-left: auto;
}



@media only screen and (max-width: 1380px) {
	.container-footer>.col{
		font-size: 16px;
	}
	.container-footer>a{
		font-size: 20px;
	}
}
@media only screen and (max-width: 1300px) {
	.container-footer>a{
		margin-left: 30px;
	}
}

@media only screen and (max-width: 1230px) {
	.container-footer>.social{
		column-gap: 40px;
	}
}
@media only screen and (max-width: 1160px) {
	.container-footer>.social{
		flex-wrap: wrap;
		justify-content: center;
		width: 200px;
		row-gap: 40px;
	}
}

@media only screen and (max-width: 1000px) {
	.container-footer{
		flex-direction: column;
		justify-content: center;
		align-items: center;
		row-gap: 60px;
	}
	.container-footer>.social{
		margin-left: 0;
	}
}

@media only screen and (max-width: 1000px) {
	footer{
		margin-top: 50px;
	}
	.container-footer{
		padding-top: 45px;
		padding-bottom: 25px;
	}
}



@media only screen and (max-width: 1000px) {
.main{
	width: 100vw;
	overflow-x: hidden;
	min-height: 100vh;
}
}

