@import url('./nullstyle.css');

html,
body{
	font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
	font-weight: 400;
	height: 100%;
	line-height: 1.5;
	font-size: 14px;
	color: #737373;
	background-color: #ffffff;
}
.wrapper{
	min-height: 100%;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}
[class*="__container"]{
	max-width: 1046px;
	padding: 0px 15px;
	margin: 0 auto;
	box-sizing: content-box;
}
@media (max-width: 350px){
	[class*="__container"]{
	padding: 0px 9px;
	}
}
.ibg{
	position: relative;
}
.ibg img{
	position: absolute;
	width: 50%;
	height: 100%;
	right: 0;
	top: 0;
	object-fit: cover;
}
@media (max-width: 768px){
	.ibg img{
		position: absolute;
		width: 80%;
		height: 100%;
		right: 0;
		top: 0;
		object-fit: cover;
		opacity: 0.7;
	}
}
.page{
	flex: 1 1 auto;
}
.page__employee {
	padding: 120px 0px 200px 0px;
}
.page__interest {
	padding: 120px 0px 200px 0px;
	background-color: #f37d28;
}
/*===================HEADER=======================*/
.header {
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 50;
	background-color: #655f5b9f;
}
.header__container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
@media (max-width: 470px){
	.header__container{
		padding: 0 5px;
	}
	.header__logo img{
		width: 60px;
		height: 60px;
		margin: 10px 0px 0px 0px;
	}
}
@media (max-width: 479px){
	.header__container{
		min-height: 80px;
	}
}
.header__logo {
	display: flex;
	justify-content: center;
	align-self: center;
	width: 90px;
	height: 90px;
	padding:  5px;
}
.header__logo img{
	display: flex;
}
/*===============POPUP======================================*/
.popup {
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: #000000d5;
	top: 0;
	left: 0;
	z-index: 100;
	opacity: 0;
	visibility: hidden;
	overflow-y: auto;
	overflow-x: hidden;
	transition: all 0.8s ease 0s;
}
.popup:target{
	opacity: 1;
	visibility: visible;
}
.popup:target .popup__content {
	transform: perspective(600px) translate(0px, 0%) rotate(0deg);
	opacity: 1;
}
.popup__area{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
.popup__body {
	min-height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 30px 10px;
}
.popup__content {
	background-color: #387933;
	color: #fff;
	max-width: 800px;
	border-radius: 70px 30px;
	padding: 30px;
	position: relative;
	transition: all 0.8s ease 0s;
	opacity: 0;
	transform: perspective(600px) translate(0px, -100%) rotate(45deg);
}
.popup__close {
	position: absolute;
	font-size: 20px;
	top: 15px;
	right: 20px;
	color: #fff;
	text-decoration: none;
}
.popup__title {
	font-size: 40px;
	margin-bottom: 1em;
	font-weight: 700;
}
.popup__text {
	font-size: 14px;
	letter-spacing: 0.5px;
}
.popup__text span{
	font-size: 18px;
	font-weight: 700;
}
@media (max-width: 768px){
	.popup__title {
		font-size: 32px;
		margin-bottom: 0.5em;
		font-weight: 700;
	}
	.popup__text {
		font-size: 12px;
		letter-spacing: 0.5px;
	}
	.popup__text span{
		font-size: 16px;
		font-weight: 700;
	}
}
@media (max-width: 430px){
	.popup__title {
		font-size: 22px;
		margin-bottom: 0.5em;
		font-weight: 700;
	}
	.popup__text {
		font-size: 10px;
		letter-spacing: 0.5px;
	}
	.popup__text span{
		font-size: 12px;
		font-weight: 700;
	}
}
/*===============POPUP-REPORT======================================*/
.table {
	border: 2px solid #f37d28;
}
.popup-report {
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: #000000d5;
	top: 0;
	left: 0;
	z-index: 100;
	opacity: 0;
	visibility: hidden;
	overflow-y: auto;
	overflow-x: hidden;
	transition: all 0.8s ease 0s;
}
.popup-report:target{
	opacity: 1;
	visibility: visible;
}
.popup-report:target .popup-report__content {
	transform: perspective(600px) translate(0px, 0%) rotate(0deg);
	opacity: 1;
}
.popup-report__area{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
.popup-report__body {
	min-height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 30px 10px;
}
.popup-report__content {
	background:url('../img/#Report');
	color: #fff;
	max-width: 800px;
	border-radius: 70px 30px;
	padding: 30px;
	position: relative;
	transition: all 0.8s ease 0s;
	opacity: 0;
	transform: perspective(600px) translate(0px, -100%) rotate(45deg);
}
.popup-report__close {
	position: absolute;
	font-size: 20px;
	top: 5px;
	right: 5px;
	color: #fff;
	text-decoration: none;
}
.popup-report__text {
	font-size: 14px;
	letter-spacing: 0.5px;
}
.popup-report__text span{
	font-size: 18px;
	font-weight: 700;
}
@media (max-width: 768px){
	.popup-report__table {
		font-size: 12px;
	}
	.popup-report__title {
		font-size: 32px;
		margin-bottom: 0.5em;
		font-weight: 700;
	}
	.popup-report__text {
		font-size: 12px;
		letter-spacing: 0.5px;
	}
	.popup-report__text span{
		font-size: 16px;
		font-weight: 700;
	}
}
@media (max-width: 430px){
	.popup-report__table {
		font-size: 7px;
	}
	.popup-report__title {
		font-size: 22px;
		margin-bottom: 0.5em;
		font-weight: 700;
	}
	.popup-report__text {
		font-size: 10px;
		letter-spacing: 0.5px;
	}
	.popup-report__text span{
		font-size: 12px;
		font-weight: 700;
	}
}
/*============HEADER-BLOCK=============================================*/
.header-block {
	padding: 40px 0px 50px 0px;
	text-align: center;
	letter-spacing: 0.2px;
	color: #f37d28;
}
.header-block__title {
	line-height: 142%;
	font-size: 44px;
	font-weight: 700;
}
.header-block__title:not(:last-child){
	margin: 0px 0px 10px 0px;
}
.header-block__subtitle {
	font-size: 16px;
	margin-bottom: 20px;
}
@media (max-width: 991.98px){
	.header-block__title{
		font-size: 35px;
	}
}
@media (max-width: 767px){
	.header-block__title{
		font-size: 30px;
	}
}
/*==============Header-block__white=========================*/
.header-block__white{
	position: relative;
	padding: 40px 0px 50px 0px;
	text-align: center;
	letter-spacing: 0.2px;
	color: #fff;
	z-index: 50;
}
.header-block__title1{
	line-height: 142%;
	font-size: 44px;
	font-weight: 700;
}
.header-block__title1:not(:last-child){
	margin: 0px 0px 10px 0px;
}
.header-block__subtitle1{
	font-size: 16px;
}
/*==========================================================*/

@media (max-width: 991.98px){
	.header__menu {
		margin: 0px 0px 0px 80px;
	}
}
@media (max-width: 767px){
	.header__menu {
		margin: 0;
	}
}
@media (max-width: 479px){
	.header__menu {
		margin: 0;
	}
	.menu__link{
		font-size: 18px;
	}
	.menu__list{
		justify-content: center;
	}
	.header__container{
		margin:  0 5px;
	}
	.header__logo{
		padding: 0;
	}
}

.menu {
	padding: 5px;
}
.menu__list {
	display: flex;
	flex-wrap: wrap;
}
.menu__item {

}
.menu__item:not(:last-child){
	margin: 0px 21px 0px 0px;
}
.menu__link {
	text-transform: uppercase;
	color: #ffffff;
	letter-spacing: 2px;
	font-weight: 600;
	line-height: 171.428571%; /* 24/14 */
	text-decoration: none;
	background-image: linear-gradient(currentColor, currentColor);
   background-position: 0% 100%;
   background-repeat: no-repeat;
   background-size: 0% 1px;
   transition: background-size .3s;
}
.menu__link:hover{
	background-size: 100% 1px;
}


.main-block {
	position: relative;
	background-color: #f37d28;
}
.main-block__container {

}
.main-block__body {
	margin-left: 20px;
	padding: 200px 0px 191px 0px;
	position: relative;
	z-index: 2;
	max-width: 600px;
}
@media (max-width: 479px){
	.main-block__body{
		padding: 170px 0px 140px 0px;
	}
}
.main-block__body > *:not(:last-child){
	margin: 0px 0px 90px 0px;
}
.main-block__title {
	color: #fafafa;
	text-transform: uppercase;
	font-size: 58px;
	line-height: 137.931034%; /* 80/58 */
	letter-spacing: 0.1px;
	font-weight: 700;
}
@media (max-width: 530px){
	.main-block__title{
		font-size: 42px;
	}
}
@media (max-width: 369px){
	.main-block__title{
		font-size: 34px;
	}
}
.main-block__text {
	color: #ffffff;
	font-size: 20px;
	font-style: italic;
	line-height: 150%; /* 30/20 */
}


.main-block__button {
	border-radius: 37px;
	min-height: 48px;
	display: flex;
	justify-content: center;
	align-items: center;
	letter-spacing: 0.2px;
	font-weight: 700;
	line-height: 200%; /* 28/14 */
	padding: 10px 18px;
	transition: all 0.3s ease 0s;
}
@media (max-width: 384px){
	.main-block__button{
		flex: 1 1 auto;
	}
}

.main-block__image{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
.main-block__image img{
	object-position: top;
	/* opacity: 0.8; */
}
/*button*/
.main-block__button {
display: flex;
justify-content: center;
}
.main-block__link {
	display: flex;
	padding: 20px 30px;
	background-color: #387933;
	border-radius: 20px;
	font-size: 24px;
	color: #ffffff;
	letter-spacing: 1px;
	transition: all 0.3s ease 0s;
	box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
.main-block__link span {
	padding-left: 20px;
}
.main-block__link:hover{
	background-color: #12460f;
	
}


/*================Employee=================================*/


@media (max-width: 991.98px){
	.employee {
		padding: 80px 0px 80px 0px;
	}
}
@media (max-width: 767.98px){
	.employee {
		padding: 50x 0px 50px 0px;
	}
	.page__employee {
		padding: 20px 0px 120px 0px;
	}
}
@media (max-width: 420px){
	.employee {
		padding: 30px 0px 30px 0px;
	}
	.page__employee {
		padding: 40px 0px 120px 0px;
	}
}
.employee__container {
	position: relative;
}
.employee__header {
	position: relative;
	z-index: 50;
}

.header-block__title {
	color: #f37d28;
}
.header-block__subtitle {
	color: #f37d28;
}
.employee__body {
	position: relative;
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
}
.employee__column {
	display: flex;
	flex: 0 1 25%;
	max-width: 235px;
	padding: 20px;
	margin: 0px 0px 0px 20px;
	background-color: #f37d28;
	display: flex;
	flex-direction: column;
	border-radius: 25px;
	box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
	z-index: 50;
	
}
/*===========Decor============================*/
.item-employee__circle{
	position: absolute;
	width: 100px;
	height: 100px;
	background-color: #387933;
	border-radius: 20%;
}
.item-employee__circle-1{
	width: 200px;
	height: 200px;
	top: 90px;
	right: -100px;
	transform: rotate(32deg);
}
.item-employee__circle-2{
	width: 300px;
	height: 300px;
	top: 150px;
	left: -100px;
	transform: rotate(-30deg);

}
.item-employee__circle-3{
	width: 80px;
	height: 80px;
	top: 390px;
	right: 100px;
	transform: rotate(-15deg);
}
.item-employee__circle-4{
	width: 90px;
	height: 90px;
	top: -20px;
	right: 450px;
	transform: rotate(8deg);
	
}
.item-employee__circle-5{
	width: 50px;
	height: 50px;
	top: -50px;
	left: -50px;
	transform: rotate(22deg);
}
@media (max-width: 768px){
	.item-employee__circle-5{
		width: 50px;
		height: 50px;
		top: -50px;
		left: 50px;
		transform: rotate(22deg);
	}
	.item-employee__circle-2{
		top: 400px;
		left: -100px;
	}
	.item-employee__circle-4{
		width: 90px;
		height: 90px;
		top: 0px;
		right: 100px;
		background-color: #387933;
	}
}
@media (max-width: 540px){
	.item-employee__circle-2{
		top: 1115px;
		left: -100px;
	}
	.item-employee__circle-4{
		width: 250px;
		height: 250px;
		top: 500px;
		left: 90px;
		background-color: #387933;
	}
	.item-employee__circle-3{
		width: 80px;
		height: 80px;
		top: 870px;
		right: -20px;
		transform: rotate(-15deg);
	}
}

/*======================================================*/
@media (max-width: 1050px){
	.employee__column{
		flex: 1 1 auto;
		margin: 0px 0px 20px 20px;
	}
}
@media (max-width: 966px){
	.employee__column{
		flex: 1 1 auto;
		margin: 0px 0px 20px 20px;
	}
}


.employee__item {

}
.item-employee >*:not(:last-child) {
	margin: 0px 0px 25px 0px;
}
.item-employee {
	height: 100%;
}
.item-employee__image {
	flex: 0 1 70px;
	height: 190px;
	border-radius: 50%;
	overflow: hidden;
}
.item-employee__image img{
	display: block;
	max-width: 100%;
	object-fit:cover;
	transition: all 0.3s ease 0s;
}
@media (any-hover: hover){
	.employee__column:hover .item-employee__image img{
		transform: scale(1.1);
	}
}
.item-employee__title {
	letter-spacing: 0.1px;
	font-size: 24px;
	line-height: 150%;
	font-weight: 700;
	text-align: center;
	color: #fff;
}
.item-employee__subtitle {
	text-align: center;
	color: #fff;
	line-height: 1.2;
	font-size: 16px;
}
/*==========Interest======================*/
.interest__container {
	position: relative;
	
}
.interest__header {
	
	/* margin-bottom: 64px; */
}
.header-block {
	
}
.header-block__title {
}
.header-block__subtitle {
}
.interest__items {
	
	display: grid;
	gap: 48px;
	grid-template-columns: repeat(3, 2fr);
}
.interest__item {
	z-index: 50;
	box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.item-interest {
	background: rgba(129, 131, 139, 0.1);
	border-radius: 24px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	min-height: 100%;
	background-color: #fb8c3e;
}
.item-interest__header {
	position: relative;
}
.item-interest__category {
	position: absolute;
	bottom: 0;
	left: 0;
	background: rgba(129, 129, 139, 0.5);
	border-radius: 0 10px 0 0;
	color: #fff;
	font-size: 16px;
	line-height: 1.57; /* 22/14 */
	padding: 10px;
}
.item-interest__image {
	display: block;
	position: relative;
	padding-bottom: 107.03125%; /* 822/768 */
}
.item-interest__image img{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	object-fit: cover;
	transition: all 0.3s ease 0s;
}
@media (any-hover: hover){
	.item-interest:hover .item-interest__image img{
		transform: scale(1.1);
	}
}

.item-interest__body {
	display: flex;
	flex-direction: column;
	padding: 20px 20px;
}
.item-interest__title {
	color: #fff;
	font-size: 18px;
	line-height: 1.42; /* 27/19 */
	margin-bottom: 15px;
}
.item-interest__text{
	color: #fff;
	letter-spacing: 0.1px;
	line-height: 1.2;
}
.item-interest__text:not(:last-child) {
	margin-bottom: 15px;
}

@media (max-width: 1100px){
	.interest__items {
		gap: 20px;
	}
	.item-interest__body {
		padding: 25px 15px;
	}
}
@media (max-width: 991.98px){
	.page__interest {
		padding-top: 50px;
		padding-bottom: 100px;
	}
	.interest__header {
		margin-bottom: 44px;
	}
}
@media (max-width: 767.98px){
	.interest__header {
		padding: 0;
		margin-bottom: 25px;
	}
	.page__interest {
		padding-top: 30px;
		padding-bottom: 50px;
	}
	.interest__items {
		grid-template-columns: auto;
	}
}
/*===========Decor-Interest============================*/
.item-interest__circle{
	position: absolute;
	width: 100px;
	height: 100px;
	background-color: #387933;
	border-radius: 20%;
}
.item-interest__circle-1{
	width: 200px;
	height: 200px;
	top: 890px;
	right: -100px;
	transform: rotate(62deg);
}
.item-interest__circle-2{
	width: 300px;
	height: 300px;
	top: 460px;
	left: -300px;
	transform: rotate(-30deg);

}
.item-interest__circle-3{
	width: 80px;
	height: 80px;
	top: 390px;
	right: -100px;
	transform: rotate(-15deg);
}
.item-interest__circle-4{
	width: 90px;
	height: 90px;
	top: 0px;
	right: 250px;
	transform: rotate(8deg);
}
.item-interest__circle-5{
	width: 50px;
	height: 50px;
	top: -150px;
	left: 250px;
	transform: rotate(37deg);
}
.item-interest__circle-6{
	width: 55px;
	height: 55px;
	top: 950px;
	left: 350px;
	transform: rotate(27deg);
}
.item-interest__circle-7{
	width: 150px;
	height: 150px;
	top: 1350px;
	left: 250px;
	transform: rotate(22deg);
}
.item-interest__circle-8{
	width: 115px;
	height: 115px;
	top: 1390px;
	left: 750px;
	transform: rotate(-19deg);
}
.item-interest__circle-9{
	width: 40px;
	height: 40px;
	top: 1190px;
	left: -100px;
	transform: rotate(-9deg);
}
.item-interest__circle-10{
	width: 300px;
	height: 300px;
	top: 1800px;
	left: 550px;
	transform: rotate(-19deg);
}
@media (max-width: 1026px){
	.item-interest__circle-10{
		top: 1500px;
		left: 550px;
	}
	.item-interest__circle-11{
		top: 700px;
		left: 120px;
	}
}
.item-interest__circle-11{
	width: 175px;
	height: 175px;
	top: 1950px;
	left: -120px;
	transform: rotate(12deg);
}
@media (max-width: 1026px){
	.item-interest__circle-11{

		top: 1550px;
		left: -120px;
	}
}
@media (max-width: 768px){
	.item-employee__circle-5{
		width: 50px;
		height: 50px;
		top: -50px;
		left: 50px;
		transform: rotate(22deg);
	}
	.item-employee__circle-2{
		top: 400px;
		left: -100px;
	}
	.item-employee__circle-4{
		width: 90px;
		height: 90px;
		top: 0px;
		right: 100px;
		background-color: #387933;
	}
}
@media (max-width: 540px){
	.item-employee__circle-2{
		top: 1115px;
		left: -100px;
	}
	.item-employee__circle-4{
		width: 250px;
		height: 250px;
		top: 500px;
		left: 90px;
		background-color: #387933;
	}
	.item-employee__circle-3{
		width: 80px;
		height: 80px;
		top: 870px;
		right: -20px;
		transform: rotate(-15deg);
	}
}

/* ====================REPORT===========================*/


.page__report {
	padding: 120px 0px 200px 0px;
}
.report {
}
.report__container {
}
.report__header {
}
.header-block {
}
.header-block__title {
}
.header-block__subtitle {
}
.report__cooperation {
	gap: 30px;
	margin: 0px 0px 50px 0px;
}
.cooperation {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.swiper__items {
	display: flex;
	justify-content: space-between;
	padding: 10px;
}
.swiper__item {
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	text-align: center;
	align-items: center;
	max-width: 80px;
}
.cooperation__item-image img{
	max-width: 80px;
}
.cooperation__item-image{
}
.swiper__item:hover{
	text-decoration: underline;
}
.cooperation__name {
	color: #707070;
	font-size: 10px;
	padding: 5px;
}
.report__button {
	background-color: #387933;
	padding: 20px 30px;
}
@media (max-width: 768px){
	.page__report {
		padding: 60px 0px 80px 0px;
	}
	.report__cooperation {
		gap: 30px;
		margin: 0px 0px 20px 0px;
	}
}
@media (max-width: 470px){
	.page__report {
		padding: 30px 0px 40px 0px;
	}
	.report__cooperation {
		gap: 30px;
		margin: 0px;
	}
	.header-block {
		padding: 0px;
	}
}
/*=================footer==============================*/
.footer {
	background-color: #387933;
}
.footer__container {
}
.footer__body {
	padding: 10px;
}
.footer__content {
	display: flex;
	justify-content: space-between;
}
.content-footer {
}
.content-footer__leftside {
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	flex: 1 1 33.333%;
}
.content-footer__leftside > * :not(:last-child) {
	margin-bottom: 10px;
}
.content-footer__logo {
	margin-bottom: 10px;
	z-index: 50;
}

.content-footer__logo img {
	max-width: 80px;
	
}
.content-footer__rools{
	display: flex;
	flex-direction: column;
	color: #fff;
	padding: 0px 0px 0px 0px;
	font-size: 11px;
}
.content-footer__confidenpol {
	color: #fff;
	font-style: italic;
}
.content-footer__confidenpol:hover{
	text-decoration: underline;
}
.content-footer__howuse{
	color: #fff;
	font-style: italic;
}
.content-footer__howuse:hover{
	text-decoration: underline;
}

.content-footer__midle {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 0px 0px 0px 35px;	
	flex: 1 1 33.333%;
	border-left: 1px solid #fff;
}
.content-footer__rightside{
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	padding-left: 35px;
	flex: 1 1 33.333%;
	border-left: 1px solid #fff;
}
@media (max-width: 940px){
	.content-footer__logo {
		margin-bottom: 10px;
	}
	.content-footer__logo img {
	}
	.content-footer__midle {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		padding: 0px 0px 0px 10px;	
		flex: 1 1 33.333%;
		border-left: 1px solid #fff;
	}
	.content-footer__rightside{
		display: flex;
		flex-direction: column;
		justify-content: space-evenly;
		padding-left: 10px;
		flex: 1 1 33.333%;
		border-left: 1px solid #fff;
	}
	.content-footer__leftside {
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	flex: 1 1 33.333%;
}
}
@media (max-width: 730px){
	.footer__content {
		display: flex;
		flex-direction: column-reverse;
	}
	.content-footer__logo {
		margin-bottom: 0px;
	}
	.content-footer__logo img {
	}
	.content-footer__leftside {
		display: flex;
		flex-direction:row;
		justify-content: space-between;
		align-items: center;
		flex: 1 1 33.333%;
		margin: 0;
	}
	.content-footer__midle {
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
		padding: 0px 0px 0px 10px;	
		flex: 1 1 33.333%;
		border-left: 0;
	}
	.content-footer__rightside{
		border-left: 0;
		align-items: flex-end;
	}
}


.content-footer__top {
	padding-top: 20px;
}
.content-footer__menu {
}
.menu {
}
.menu-footer__list {
	margin-bottom: 25px;
}
.menu-footer__item {
	margin-bottom: 10px;
}
.menu-footer__link {
	text-transform: uppercase;
	color: #ffffff;
	letter-spacing: 1px;
	font-weight: 400;
	font-size: 11px;
	line-height: 171.428571%; /* 24/14 */
	text-decoration: none;
	background-image: linear-gradient(currentColor, currentColor);
   background-position: 0% 100%;
   background-repeat: no-repeat;
   background-size: 0% 1px;
   transition: background-size .3s;
}
.menu-footer__link:hover {
	background-size: 100% 1px;
}

.social:hover{
	text-decoration: underline;
	color: #fff;
}
.social__link {
	display: flex;
	color: #fff;
	margin: 0px 0px 10px 0px;
}
.social__title {
	padding: 10px;
	line-height: 1.2;
	font-size: 11px;
}

.content-footer__copy {
	padding: 5px 0px;
	color: #fff;
	font-size: 10px;
	text-align: center;
}

.content-footer__finger{
	font-size: 40px;
	margin: 0px 0px 0px 250px;
}
@keyframes bounce {
	0%, 20%, 60%, 100% {
		transform: translateY(0);
		transform: translateY(0);
	}

	40% {
		transform: translateY(-20px);
		transform: translateY(-20px);
	}

	80% {
		transform: translateY(-10px);
		transform: translateY(-10px);
	}
}
.content-footer__finger:hover {
	animation: bounce 1s;
}
/*===================Slider==========================*/
.slick-slider{
	
}
.slick-list{
	overflow: hidden;
}
.slick-track{
	display: flex;
	align-self: center;
	
}


.slick-slide{}
.slick-slide.slick-active{}
.slick-slide.slick-current{}
.slick-slide.slick-center{}


.slick-arrow{}
.slick-arrow.slick-prev{}
.slick-arrow.slick-next{}
.slick-arrow.slick-disabled{}


.slick-dots{}
.slick-dots li{}
.slick-dots button{}


.swiper{
	position: relative;
	max-width: 900px;
}
.swiper .slick-arrow{
	position: absolute;
	top: 20%;
	z-index: 10;
	font-size: 0;
	width: 50px;
	height: 100px;
}
.swiper .slick-dots{
	display: flex;
	align-items: center;
	justify-content: center;
	
}
.swiper .slick-dots li{
	list-style: none;
	margin: 0px 15px 40px 0px;
	margin-top: 30px;
}
.swiper .slick-dots button{
	border-radius: 50%;
	font-size: 0;
	width: 15px;
	height: 15px;
	background-color: #ff7c185c;
}
.swiper .slick-dots li.slick-active button{
	background-color: #ff8325;
	width: 25px;
	height: 25px;
}
.swiper__item{
	text-align: center;
	overflow: hidden;
}
.swiper__item img{
	width: 100%;
	height: 100%;
}
@media (max-width: 940px){
	.swiper .slick-dots button{
		width: 10px;
		height: 10px;
	}
	.swiper .slick-dots li.slick-active button{
		width: 15px;
		height: 15px;
	}
}
@media (max-width: 395px){
	.slider__item img{
		
	}
	.slider__item{
		text-align: center;
		overflow: hidden;
	}
	.swiper{
		padding:0px;
	}
	.slider .slick-dots button{
		width: 5px;
		height: 5px;
	}
	.swiper .slick-dots li.slick-active button{
		width: 10px;
		height: 10px;
	}
	.swiper .slick-dots li{
		margin: 0px 10px 10px 0px;
		margin-top: 20px;
	}
}

/*==============================Location================================*/

.lacation {
	background-color: #f37d28;
	padding: 80px 0px 100px 0px;
	color: #fff;
	font-size: 14px;
}
.location__container {

}
.location__header {
}
.header-block__white {
}
.header-block__title1 {
}
.header-block__subtitle1 {
}
.location__body {
	display: flex;
	align-items: center;
}
.body-location {
}
.body-location__map {
	width: 100%;
	height: 400px;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
.location__info {

}
.info-location {
	width: 350px;
}
.info-location__content {
	display: flex;
	align-items: center;
	margin: 0px 0px 0px 50px;
}
.info-location__text span {
	text-decoration: none;
	background-image: linear-gradient(currentColor, currentColor);
   background-position: 0% 100%;
   background-repeat: no-repeat;
   background-size: 0% 1px;
   transition: background-size .3s;
}
.info-location__content:hover .info-location__text span {
	background-size: 100% 1px;
}

.info-location__content:not(:last-child){
	margin-bottom: 40px;
}
.info-location__icon {

}
.info-location__icon img{
	max-width: 35px;
}
.info-location__text {
	margin: 0px 0px 0px 20px;
}
.info-location__title {
	font-weight: 700;
	color: #fff;
}
.info-location__adress{
	color: #fff;
}

@media (max-width: 768px){
	.info-location__title {
		font-size: 12px;
	}
	.info-location__adress{
		font-size: 12px;
	}
	.header-block__title1{
		font-size: 28px;
	}
	.header-block__subtitle1{
		font-size: 12px;
	}
	.location__body {
		display: flex;
		flex-direction: column-reverse;
	}
	.location__info {
		display: flex;
		justify-content: center;
	}
	.info-location__content {
		flex-direction: column;
		justify-content: space-between;
		text-align: center;
		margin: 0;
	}
	.info-location__text {
		margin: 0;
	}
	.info-location__content:not(:last-child){
		margin-bottom: 0px;
		margin: 0px 20px 0px 0px;
	}
	.info-location {
		width: 100%;
		margin-bottom: 30px;
	}
	.info-location__icon {
		margin-bottom: 5px;
	}
	.location__header {
		padding: 0px 0px 30px 0px;
	}
	.lacation {
		padding: 50px 0px 80px 0px;
	}
}
@media (max-width: 530px){
	.header-block__title1{
		font-size: 24px;
	}
	.location__info {
		flex-direction: column;
		align-items: flex-start;
		margin: 0px 0px 0px 20px;
	}
	.info-location__content{
		flex-direction: row;
		gap: 20px;
		margin: 0px 0px 10px 0px;
	}
	.info-location__content:not(:last-child){
		margin-bottom: 0px;
		margin: 0px 0px 10px 0px;
	}
	.info-location__title {
		text-align: left;
	}
}

