@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;
}





.hero{
	display: flex;
	justify-content: center;
	background: #3c8044;
}

.container-hero{
	max-width: 1440px;
	padding-left: 45px;
	padding-right: 45px;
	width: calc(100% - 90px);
	margin-bottom: 60px;
	margin-top: 50px;
}
.container-hero>h2{
	font-family: var(--font-family);
	font-weight: 700;
	font-size: clamp(1.25rem, 0.8486rem + 1.8349vw, 2.5rem);
	text-align: center;
	color: #fff;
}

.container-hero>h1{
	font-family: var(--font-family);
	font-weight: 700;
	font-size: clamp(1.875rem, 1.2729rem + 2.7523vw, 3.75rem);
	text-align: center;
	color: #fff;
	margin-top: 15px;
}

@media only screen and (max-width: 600px) {
	.container-hero{
	max-width: 1440px;
	padding-left: 20px;
	padding-right: 20px;
	width: calc(100% - 40px);
}
}

.text{
	display: flex;
	justify-content: center;
}

.container-text{
	max-width: 1440px;
	padding-left: 45px;
	padding-right: 45px;
	width: calc(100% - 90px);
}

.text-1>.container-text{
	margin-bottom: 60px;
	margin-top: 50px;
}

@media only screen and (max-width: 600px) {
	.container-text{
	max-width: 1440px;
	padding-left: 20px;
	padding-right: 20px;
	width: calc(100% - 40px);
}
}

.text-1>.container-text>h2{
	font-family: var(--font-family);
	font-weight: 400;
	font-size: clamp(1.25rem, 0.8486rem + 1.8349vw, 2.5rem);
	line-height: 97%;
	color: #525252;
}


.text-1>.container-text>ul{
	font-family: var(--font-family);
	font-weight: 400;
	font-size: clamp(1rem, 0.7993rem + 0.9174vw, 1.625rem);
	line-height: 130%;
	color: #525252;
	padding-left: 25px;
}

.text-1>.container-text>h1{
	font-family: var(--font-family);
	font-size: clamp(1.25rem, 0.8486rem + 1.8349vw, 2.5rem);
	font-weight: 600;
	line-height: 107%;
	color: #3c8044;
}

.text-2>.container-text>h1{
	font-family: var(--font-family);
	font-weight: 700;
	font-size: clamp(1.5rem, 1.0183rem + 2.2018vw, 3rem);	text-align: center;
	color: #3c8044;
}

main{
	display: flex;
	/*justify-content: center;*/
	box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.07);
	background: linear-gradient(225deg, #fff 0%, #ededed 100%);
	margin-top: 60px;
	width: 100%;
	flex-direction: column;
	align-items: center;
}

.container{
	max-width: 1440px;
	padding-left: 45px;
	padding-right: 45px;
	width: calc(100% - 90px);
}



main>.container>h1{
	font-family: var(--font-family);
	font-weight: 700;
	text-align: center;
	color: #333;
	margin-top: 100px;
}

main>.container>h1>p{
	font-size: clamp(1.25rem, 0.8486rem + 1.8349vw, 2.5rem);
	text-align: center;
}

.text-block{
	padding-top: 50px;
	padding-bottom: 60px;
	border-top: 10px solid #dbdbdb;
	margin-top: 50px;
}

.text-block>h1{
	font-family: var(--font-family);
	font-weight: 700;
	font-size: clamp(1.25rem, 0.8486rem + 1.8349vw, 2.5rem);
	text-align: center;
	color: #3c8044;
}

.text-block>p{
	font-family: var(--font-family);
	font-weight: 400;
	font-size: clamp(1rem, 0.7993rem + 0.9174vw, 1.625rem);
	line-height: 138%;
	color: #525252;
}

.text-block>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;
}
.text-block a{
	color: #525252;
}

.images{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	row-gap: 30px;
	column-gap: 40px;
}

.images>img{
	max-width: calc(100% - 40px);
}

@media only screen and (max-width: 600px) {
	main{
		margin-top: 30px;
	}
	main>.container>h1{
		margin-top: 50px;
	}
	.text-block{
		padding-top: 25px;
		padding-bottom: 30px;
		border-top: 10px solid #dbdbdb;
		margin-top: 30px;
	}
}

.container>h1{
	font-family: var(--font-family);
	font-weight: 700;
	font-size: clamp(1.5rem, 1.0183rem + 2.2018vw, 3rem);
	color: #333;
	margin-top: 40px;
}

.container>p{
	 font-family: var(--font-family);
	font-weight: 400;
	font-size: clamp(1rem, 0.7993rem + 0.9174vw, 1.625rem);
	line-height: 150%;
	color: #525252;
	margin-top: 80px;
	margin-bottom: 100px;
}

.container>h2{
	font-family: var(--font-family);
	font-size: clamp(1.25rem, 0.8486rem + 1.8349vw, 2.5rem);
	font-weight: 600;
	line-height: 107%;
	color: #3c8044;
}

.container>a{
	font-family: var(--font-family);
	font-weight: 400;
	font-size: clamp(1rem, 0.7993rem + 0.9174vw, 1.625rem);
	line-height: 150%;
	text-decoration: underline;
	text-decoration-skip-ink: none;
	color: #525252;
}

.container a{
	color: #525252;
}

.container>img{
	 max-width: 100%;
}

.container>.images>img{
	max-width: 100% !important;
}

.container>h4{
	font-family: var(--font-family);
	font-weight: 700;
	font-size: clamp(1.25rem, 0.8486rem + 1.8349vw, 2.5rem);
	line-height: 97%;
	color: #525252;
}

.container>ul{
	font-family: var(--font-family);
	font-weight: 400;
	font-size: clamp(1rem, 0.7993rem + 0.9174vw, 1.625rem);
	line-height: 150%;
	color: #525252;
	padding-left: 25px;
	margin-top: 30px;
}

.full-container{
	display: flex;
	background: #3c8044;
	color: #fff;
	justify-content: center;
	margin-top: 50px;
}

.full-container>.con{
	padding-left: 45px;
	padding-right: 45px;
	max-width: 1440px;
	width: calc(100% - 90px);
	display: flex;
	column-gap: 60px;
}

.full-container>.con>div{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	row-gap: 20px;
	padding-top: 25px;
	padding-bottom: 25px;
}
.full-container>.con>div>h1{
	font-family: var(--font-family);
	font-weight: 700;
	font-size: clamp(1.25rem, 0.8486rem + 1.8349vw, 2.5rem);
	line-height: 110%;
	text-align: center;
	color: #fff;
}
.full-container>.con>div>p{
	font-family: var(--font-family);
	font-weight: 400;
	font-size: clamp(1rem, 0.7993rem + 0.9174vw, 1.625rem);
	line-height: 120%;
	text-align: center;
	color: #fff;
}

@media only screen and (max-width: 1100px) {
	.full-container>.con{
		flex-direction: column;
	}
}

@media only screen and (max-width: 600px) {
	.full-container{
		margin-top: 30px;
	}
.full-container>.con{
	padding-left: 20px;
	padding-right: 20px;
	width: calc(100% - 40px);
}

	.container >p{
	margin-top: 40px;
	margin-bottom: 50px;
}

.container{
	width: calc(100% - 40px);
	padding-left: 20px;
	padding-right: 20px;
}
.container>p{
	margin-bottom: 50px;
	margin-top: 40px;
}
}

.poate{
	display: flex;
	justify-content: center;
}

.container-poate{
	max-width: 1440px;
	padding-left: 45px;
	padding-right: 45px;
	width: calc(100% - 90px);
	margin-top: 40px;
}

.container-poate>h1{
	font-family: var(--font-family);
	font-weight: 700;
	font-size: 40px;
	text-align: center;
	color: #333;
}
.container-poate>mark{
	font-size: 50px;
}
.container-poate>a{
	box-shadow: 0 0 28px 0 rgba(0, 0, 0, 0.07);
	background: #3c8044;
	border-radius: 10px;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 20px;
	padding-bottom: 20px;
	font-family: var(--font-family);
	font-weight: 300;
	font-size: 40px;
	text-align: center;
	color: #fff;
	flex-direction: column;
	row-gap:20px;
	margin-top: 40px;
	animation: pulse 2s infinite;
}

.container-poate>a>b{
	font-weight: 700;
}

@media only screen and (max-width: 1000px) {
	.container-poate>h1{
		font-size: 30px;
	}
	.container-poate>mark{
		font-size: 35px;
	}
	.container-poate>a{
		font-size: 30px;
		row-gap: 10px;
		margin-top: 20px;
	}
}

@media only screen and (max-width: 600px) {
	.container-poate{
		padding-left: 20px;
		padding-right: 20px;
		width: calc(100% - 40px);
	}
	.container-poate>h1{
		font-size: 20px;
	}
	.container-poate>mark{
		font-size: 24px;
	}
	.container-poate>a{
		font-size: 20px;
		row-gap: 10px;
		margin-top: 20px;
	}
}

/*/////////////////////////////*/

.FAQ{
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
}

.FAQ>h1{
	font-family: var(--font-family);
	font-weight: 700;
	font-size: 40px;
	text-align: center;
	color: #333;
	margin-top: 100px;
}

.FAQ>p{
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 26px;
	text-align: center;
	color: #525252;
}

.container-faq{
	max-width: 1440px;
	padding-left: 45px;
	padding-right: 45px;
	margin-top: 50px;
	width: calc(100% - 90px);
}

details {
    margin-bottom: 30px;
    overflow: hidden;
    border-bottom: 2px solid #eaeaea;
	border-radius: 7px;
	box-shadow: 0 0 28px 0 rgba(0, 0, 0, 0.06);
}

summary {
    padding: 25px 30px;
    cursor: pointer;
    position: relative;
    list-style: none;
    background: #fff;
    font-family: var(--font-family);
	font-weight: 600;
	font-size: 26px;
	color: #262626;
    /*box-shadow: 0 0 28px 0 rgba(0, 0, 0, 0.06);*/
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: '';
    position: absolute;
    right: 10px;
    transition: transform 0.3s ease;
    background: url(../images/arr_accordeon.svg);
    width: 22px;
    height: 12px;
    background-position: center;
    background-size: cover;
    top: 35px;
    right: 25px;
}

details[open] summary::after {
    transform: rotate(180deg);
}

.content {
    background-color: #fff;
    border-top: 1px solid #ccc;
    padding: 0 10px;
    overflow: hidden;
    transition: height 0.3s ease-out;
    padding: 20px;
    font-family: var(--font-family);
	font-weight: 400;
	font-size: 26px;
	color: #525252;
}

.content a{
	color: #525252;
}

@media only screen and (max-width: 1000px) {
	.FAQ>h1{
		font-size: 30px;
	}
	summary{
		font-size: 20px;
	}
	.content{
		font-size: 20px;
	}
	.FAQ>p{
		font-size: 20px;
	}
}

@media only screen and (max-width: 1000px) {
	.FAQ>h1{
		font-size: 25px;
	}
	summary{
		font-size: 18px;
		padding-right: 45px;
	}
	.content{
		font-size: 16px;
	}
	.FAQ>p{
		font-size: 16px;
		padding-left: 20px;
		padding-right: 20px;
	}
	.container-faq{
		padding-left: 20px;
		padding-right: 20px;
		margin-top: 30px;
		width: calc(100% - 40px);
	}
}


/*///////////////////*/
.review{
	display: flex;
	align-items: center;
	flex-direction: column;
	margin-top: 100px;
}

.container-review{
	max-width: 1440px;
	padding-left: 45px;
	padding-right: 45px;
	display: flex;
	column-gap: 65px;
	margin-top: 40px;
	width: calc(100vw - 90px);
}
.review>h1{
	font-family: var(--second-family);
	font-weight: 700;
	font-size: 40px;
	text-align: center;
	color: #333;
}
.slider{
	width: calc(100% - 170px);

}
.slider-item{
	background: linear-gradient(209deg, #fff 0%, #ededed 100%);
	/*height: 345px;*/
	border-radius: 10px;
	display: flex !important;
	flex-direction: column;
	padding-top: 50px;
	padding-left: 25px;
	padding-bottom: 25px;
	width: 90% !important;
}

.slick-slide>div{
	display: flex;
	justify-content: center;
}
.slider-item>.top{
	display: flex;
	column-gap: 45px;
	padding-right: 65px;
	position: relative;
	width: calc(100% - 90px);
}
.slider-item>.top>.fb{
	position: absolute;
	top: 0;
	right: 80px;

}

.slider-item>.top>div>h3{
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 25px;
	color: #262626;
}
.slider-item>.top>div>.glob{
	display: flex;
	column-gap: 5px;
	font-family: var(--font-family);
	color: #8c8c8c;
	margin-top: 10px;
}
.slider-item>.top>div>.glob>h4{
	font-weight: 500;
	font-size: 20px;
}
.slider-item>.top>div>p{
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 18px;
	color: #262626;
	margin-top: 15px;
}

.slider-item>.bottom{
	display: flex;
	margin-top: 40px;
	border-top: 1px solid #A1A1A1;
	padding-top: 20px;
	column-gap: 130px;
	justify-content: flex-end;
	padding-right: 80px;
	width: calc(100% - 185px);
}

.slider-item>.bottom>a:nth-child(1){
	margin-right: auto;
}


.slider-item>.bottom>a{
	text-decoration: none;
	display: flex;
	column-gap: 15px;
	font-family: var(--font-family);
	font-weight: 500;
	font-size: 16px;
	color: #8c8c8c;
	align-items: center;
}

.prev, .next{
	cursor: pointer;
}

.slider-item>.youtube{
	min-height: 350px;
}

.slider-item>.youtube>.avatar>.img{
	width: 230px;
	height: 320px;
	background-size: cover  !important;
	border-radius: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.slider-item>.youtube>.avatar>.img:hover>img{
	transition: all 0.3s;
	transform: scale(1.3);
}

.slider-item>.youtube>.avatar{
	cursor: pointer;
}

@media only screen and (max-width: 1340px) {
	.slider-item>.bottom{
		column-gap: 60px;
	}
}

@media only screen and (max-width: 1110px) {
.avatar>img{
	width: 150px;
}
.slider-item>.bottom{
	column-gap: 20px;
}
}
.slider-item>.top{
	padding-right: 20px;
	width: calc(100% - 45px);
}

.slider-item>.bottom{
width: calc(100% - 125px);
}
.fb-icon-mob{
	display: none;
}
.slider-item>.top>div>h3>.line{
	display: none;
}

@media only screen and (max-width: 1000px) {
.slider-item>.top{
	flex-direction: column;
}

.slider-item>.top>div>.glob, .slider-item>.top>.fb{
	display: none;
}
.fb-icon-mob{
	display: block;
}
.avatar{
	display: flex;
	column-gap: 30px;
	justify-content: space-between;
}
.avatar>img{
	width: 100px;
}
.slider-item>.top>div>h3>.line{
	display: inline ;
}
.slider-item>.bottom>a{
	display: none;
}
.slider-item>.bottom>a:nth-child(1){
	display: block;
}
.review>h1{
	padding-left: 30px;
	padding-right: 30px;
	font-size: 30px;
}
.slider-item>.youtube>.avatar{
	align-items: center;
}

.slider-item>.youtube>.avatar>.img{
	height: 150px;
}

}
.mob-arr{
	display: none;
	/*border-bottom-right-radius: 10px;*/
	/*border-bottom-left-radius: 10px;*/
	width: calc(100% - 40px);
	/*padding: 20px;*/
	margin-top: 20px;
	justify-content: space-between;
	background: linear-gradient(91deg, #ededed 0%, #f6f2f2 100%);
}
@media only screen and (max-width: 660px) {
.review{
	margin-top: 0px;
}
.mob-arr{
	display: flex !important;
}
.desk-arr{
	display: none !important;
}
.slider-item>.bottom{
	display: none;
}
.slider-item{
	border-bottom-right-radius: 0px;
	border-bottom-left-radius: 0px;
}
.container-review{
	flex-direction: column;
	align-items: center;
	padding-left: 20px;
	padding-right: 20px;
	width: calc( 100vw - 40px);
	margin-top: 20px;
}
.review>h1{
	padding-left: 20px;
	padding-right: 20px;
	font-size: 25px;
}

.slider-item>.top>div>h3{
	margin-top: 20px;
}

.slider{
	width: calc(100% - 40px);
}
.slider-item>.youtube>.avatar{
	flex-direction: column;
	align-items: center;
	row-gap: 20px
}

.slider-item>.youtube>.avatar>.img{
	height: 250px;
	width: 300px;
}
}

@media only screen and (max-width: 450px) {
.slider-item>.youtube>.avatar{
	align-items: flex-start;
}
.slider-item>.youtube>.avatar>.img{
	height: 250px;
	max-width: 100%;
}
}

@media only screen and (max-width: 400px) {
	.fb-icon-mob>img{
		width: 100px;
	}
	.fb-icon-mob{
		display: flex;
		align-items: center;
	}
}

.mask2{
	background: rgba(0,0,0,0.5);
	position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    transition: all 0.4s;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mask2>iframe{
	width: 50%;
	height: 50%
}

/*FOOTER*/

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;
}
}

