/* USER VARIABLES SECTION */

:root {
	--accent-green: #33A047;
	--text: #000000;
	--regular-text: 18px;
	--lineheight: 28px;
	--userfont: "PTSans", sans-serif;
	--sara: "Sarabun", sans-serif;
	--systemfont: -apple-system, BlinkMacSystemFont, Arial, sans-serif;
	--desktop: 100 / 1920;
	--mobile: 100 / 440;

}



/* FONTS LOAD SECTION */


@font-face { src: url("../fonts/PTSans-Regular.woff2") format("woff2"); font-family: "PTSans"; font-weight: 400; font-style: normal; font-display: swap; }
@font-face { src: url("../fonts/PTSans-Italic.woff2") format("woff2"); font-family: "PTSans"; font-weight: 400; font-style: italic; font-display: swap; }
@font-face { src: url("../fonts/PTSans-Bold.woff2") format("woff2"); font-family: "PTSans"; font-weight: 700; font-style: normal; font-display: swap; }
@font-face { src: url("../fonts/PTSans-BoldItalic.woff2") format("woff2"); font-family: "PTSans"; font-weight: 700; font-style: italic; font-display: swap; }
@font-face { src: url("../fonts/Sarabun-Regular.woff2") format("woff2"); font-family: "Sarabun"; font-weight: 400; font-style: normal; font-display: swap; }
@font-face { src: url("../fonts/Sarabun-Bold.woff2") format("woff2"); font-family: "Sarabun"; font-weight: 700; font-style: normal; font-display: swap; }




/* GENERAL CSS SETTINGS */

::placeholder { color: #C5D1FF; }
::selection { background-color: #E5FFE9; color: #000000; }
input, textarea { outline: none; }

body {
	font-family: var(--userfont);
	font-size: var(--regular-text);
	line-height: normal;
	position: relative;
	box-sizing: border-box;
	margin: 0 auto;
	background: #fff;
	font-weight: 500;
	color: var(--text);
	font-optical-sizing: auto;
  font-style: normal;
}


ul, li {
	list-style: none;
	margin: 0;
	padding: 0;
}
p {
	margin: 0;
	padding: 0;
}

/* USER STYLES */

a {
	transition: .3s ease-in-out;
	text-decoration: none;
	color: var(--text);
}

a:hover {
	color: var(--accent-text);
}

body {
	max-width: 1920px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	font-family: 'PT Sans';
}



.white-button {
	background: #fff;
	color: var(--accent-green);
}

.black-button {
	background: #000;
	color: #fff;
}

.header-home {
	position: relative;
}

.header-home__top {
	padding-top: 20px;
	padding-bottom: 34px;
	position: relative;
	z-index: 2;
}

.header-top__container {
	max-width: 100%;
	padding-right: 60px;
	padding-left: 60px;
	position: relative;
	z-index: 1;
}

.header-top__inner {
	display: flex;
	gap: 30px;
	justify-content: flex-end;
	align-items: center;
	width: 100%;
	max-width: 100%;
}

.site-button {
	display: block;
	width: max-content;
	max-width: 100%;
	padding: 3.1px 16px 3.1px 16px;
	font-size: 12px;
	text-transform: uppercase;
	font-weight: 400;
	border-radius: 15px;
	line-height: 14.4px;
	transition: .3s ease-in-out;
}

.white-button:hover {
	background: #000;
	color: #fff;
}

.header-socials {
	display: flex;
	gap: 20px;
	width: max-content;
	max-width: 100%;
}

.header-socials a {
	display: block;
	height: 16.86px;
	line-height: 0;
}

.header-socials a img {
	width: auto;
	height: 100%;
}

.header-home__background-animation {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: auto;
}

.header-home__background-animation > div {
	position: absolute;
	left: 0;
	top: 0;
	height: 620px;
}

.header-home__anim-item {
  width: 100%;
  opacity: 0;
  transition: opacity 3s ease;
}

.header-home__anim-item img {
	width: 100%;
	object-fit: cover;
	height: 100%;
}

.header-home__anim-item.active {
	opacity: 1;
}





.search-container {
	max-width: 170.5px;
	width: 100%;
	max-width: 243px;
}

.search-container form {
	width: 100%;
	position: relative;
	height: 21.71px;
	line-height: 0;
}

.site-search__input {
	width: 100%;
	background: transparent;
	border-radius: 15px;
	border: 1px solid #fff;
	padding-right: 25px;
	font-size: 12px;
	height: 21.5px;
	color: #fff;
	padding-left: 15px;
	font-weight: 400;

	
}

.site-search__input::placeholder {
	color: #fff;
	opacity: 1;
}

.search-submit {
	position: absolute;
	height: 100%;
	width: 25px;
	border: 0;
	background: url('../images/search-icon.svg') no-repeat;
	background-size: 17px;
	background-position: 65% 65%;
	background-position: 0% 44%;
	right: 0;
	top:0;
	font-size: 0;
	padding: 0;
}

.langs-dropdown {
	display: none;
	position: absolute;
	top:100%;
	padding-top: 6.3px;
	background: transparent;
	width: 100%;
}




.header-langs {
	max-width: 45px;
	width: 100%;

}

.langs-dropdown__container {
	width: 100%;
	position: relative;
	cursor: pointer;
	
}

.langs-dropdown__selected, .langs-dropdown__item {
	background: #fff;
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	text-transform: uppercase;
	font-weight: bold;
	color: var(--accent-green);
	height: 21.5px;
	
}

.selected-hidden {
	display: none;
}

.langs-dropdown__item {
	margin-bottom: 6.3px;
}
.langs-dropdown.active {
	display: block; /* Показываем, если добавлен класс active */
}

.header-home__middle {
	position: relative;
	z-index: 1;
	display: flex;
	gap: 142px;
	margin-bottom: 64px;
}

.header-home__logo-container {
	max-width: 472px;
	width: 100%;
	padding: 36.8px 62.2px 26.8px 62.2px;
	background: #fff;
	border-radius: 0 80px 80px 0;
	height: max-content;
	max-height: 100%;
}

.header-home__logo {
	display: block;
	max-width: 260px;
	width: 100%;
	margin-left: auto;
}

.header-home__logo img {
	width: 100%;
}

.header-home__news-container {
	max-width: 692px;
	width: 100%;
	background: #fff;
	border-radius: 15px;
	padding: 36px 38px 31px 40px;
	height: max-content;
	max-height: 100%;
	/* position: relative; */
	position: absolute;
	top: 0;
	right: 338px;
	box-shadow: 0px 0px 20px #3F984F4D;
	z-index: 1;
}

.header-home__news-inner {
	width: 100%;
	
}

.header-home__news-slider {
	width: 100%;
}

.swiper-wrapper {
	width: 100%;
}

.header-home__news-item {
	width: 100%;
	position: relative;
	display: flex;
	justify-content: space-between;
	gap: 5px;
	align-items: center;
	height: 200px;
	padding-right: 22px;
}

.header-home__news-item__link {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}

.header-home__news-item-image {
	max-width: 400px;
	height: 200px;
	width: 100%;
}

.header-home__news-item-image  img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.header-home__news-item__description {
	max-width: 161.6px;
	width: 100%;
}

.header-home__news-item__description h3 {
	font-size: 25px;
	font-weight: bold;
	line-height: 30px;
	text-transform: uppercase;
	margin-bottom: 8px;
	color: #003804;
}

.header-home__news-item__description p {
	font-size: 14px;
	line-height: 16.8px;
	color: #003804;
}

.header-home__news-item__arrow {
	position: absolute;
	right: 0;
	width: 14.38px;
	bottom: 15px;
}

.header-home__news-item__arrow img {
	width: 100%;
}

.home-news__nav {
	position: absolute;
	z-index: 2;
	bottom: 15px!important;
	width: max-content;
	max-width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	gap: 6px;
}

.swiper-pagination-bullet {
	width: 6px;
	height: 6px;
	display: block;
	border-radius: 50%;
	border: 1px solid #33A047;
	background: #fff;
	opacity: 1;
	margin: 0!important;
}

.swiper-pagination-bullet-active {
	background: #33A047;
}

.header-home__bottom {
	position: relative;
	z-index: 2;
	padding-bottom: 60px;
	padding-bottom: 230px;
}

.container {
	max-width: 1630px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}

.header-home__bottom .container {
	max-width: 1707px;
	width: 100%;
	display: flex;
	position: relative;
}

.header-home__menu-wrapper {
	max-width: 1380px;
	width: 100%;
	border-radius: 30px;
	background: #fff;
	padding: 20px 40px 40px 40px;
	display: flex;
	justify-content: space-between;
	gap: 5px;
	max-height: 425px;
}

.header-home__menu-column {
	max-width: 300px;
	width: 100%;
}

.header-home__menu-name {
	font-size: 25px;
	font-weight: bold;
	line-height: 30px;
	color: #003804;
	margin-bottom: 15px;
	min-height: 60px;
	display: flex;
	align-items: center;
	width: 100%;
}

.header-home__menu-ul {
	width: 100%;
}

.header-home__menu-ul > li {
	margin-bottom: 3px;
	position: relative;
	min-height: 50px;
	border-radius: 10px;
	background: #33A047;
	transition: .3s ease-in-out;
	padding-left: 4px;
	padding-top: 15px;
	padding-right: 4px;
	padding-bottom: 7px;
}

.header-home__menu-ul > li > a {
	color: #fff;
	font-weight: bold;
	font-size: 16px;
	line-height: 20px;
	text-transform: uppercase;
	display: block;
	padding-left: 16px;
	width: 100%;
	padding-right: 16px;
	padding-bottom: 8px;
}

.header-home__menu-ul > li:last-child {
	margin-bottom: 0;
}



.sub-menu li {
	margin-bottom: 0;
	margin-bottom: 6px;
}

.sub-menu li:last-child {
	margin-bottom: 0;
}

.sub-menu li a {
	font-size: 14px;
	line-height: 18px;
	font-weight: 400;
	color: #000000;
	display: block;
}

.menu-item-has-children {
	position: relative;
	
}

.menu-item-has-children > span {
	content: '';
	position: absolute;
	right: 24px;
	font-size: 14px;
	line-height: 18px;
	top: 17px;
	color: #fff;
	font-weight: 400;
	transition: .3s ease-in-out;
	display: none;
}

.header-home__menu-ul .menu-item-has-children:after {
	content: '>';
	position: absolute;
	right: 24px;
	font-size: 14px;
	line-height: 18px;
	top: 17px;
	color: #fff;
	font-weight: 400;
	transition: .3s ease-in-out;
}

.menu-item-has-children {
	cursor: pointer;
}

.header-home__menu-ul .menu-item-has-children.active:after {
	transform: rotate(180deg);
}

.sub-menu {
	display: none;
	background: #fff;
	border-radius: 10px;
	padding: 15px 17px;
}

.header-main__menu-column .sub-menu {
	background: transparent;
}

.menu-item-has-children > a {
	pointer-events: none!important;
}

/* .menu-item-has-children.active .sub-menu {
	display: block;
} */

.menu-item-has-children.active > span {
	transform: rotate(90deg);
}

.header-home__sitemap {
	position: relative;
	/* top: 220px; */
	top: 340px;
	width: max-content;
	max-width: 140px;
	height: max-content;
}

.header-home__sitemap a {
	font-size: 14px;
	line-height: 18px;
	display: block;
	font-weight: 400;
	color: #000;
}

.header-home__newsletter {
	position: absolute;
	right: 0;
	/* top: 210px; */
	top: 355px;
}

.newsletter-image {
	width: 146px;
	height: auto;

}

.newsletter-image img {
	width: 100%;
	height: auto;
}

.header-home__newsletter-link {
    position: absolute;
    bottom: -51px;
    max-width: 100%;
    font-size: 14px;
    line-height: 18px;
    text-transform: uppercase;
    color: #007708;
    text-align: center;
		max-width: 138px;
    width: 100%;
    left: -1px;
    right: 0;
    font-weight: bold;
}

.section-gradient-green {
	position: relative;
	background: transparent;
	padding-bottom: 150px;
}

.section-gradient-green:before {
	content: '';
	position: absolute;
	height: 433px;
	width: 100%;
	background: transparent linear-gradient(0deg, #FFFFFF1A 0%, #77D3A854 100%) 0% 0% no-repeat padding-box;
	z-index: -1;
	top: 0;
	left: 0;
}

.section-title__container {
	max-width: 1620px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	top: -60px;

}

section.nos-articles .section-title__container {
	padding-bottom: 205px;
}

.section-title {
	position: relative;
	padding: 35px 163px 35px 0;
	background: #fff;
	border-radius: 0 15px 15px 0;
	font-size: 50px;
	font-weight: bold;
	color: #007708;
	line-height: 50px;
	width: max-content;
	max-width: 100%;
	margin-bottom: 0;
}

.section-title:before {
	content: '';
	height: 100%;
	background: #fff;
	width: 100%;
	right: 100%;
	position: absolute;
	top: 0;
}

.section-title__container-with-image {
	display: flex;
}

.section-title__container-with-image .section-title  {
	padding-right: 233px;
	height: max-content;
	
}

.section-title__image {
	width: 218px;
	height: 218px;
	margin-left: -218px;
	z-index: 1;
	transform: translateY(-5%);
	width: 300px;
	/* height: 241px; */
	margin-left: -173px;
	margin-top: -50px;
	margin-bottom: 50px;
}

.section-title__image img {
	width: 100%;
}

.nos-actus__list .swiper-wrapper {
	width: 100%;
	display: grid;
	/* grid-template-columns: repeat(5, 1fr); */
	grid-template-columns: repeat(4, 1fr);
	gap: 40px 30px;

}

.nos-actus__list-item {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	background: #D0F3D6;
	width: 100%;
}

section.collectes {
	padding-top: 25px;
}

.nos-actus__list-item__link {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.nos-actus__list-item__img {
	height: 170px;
	width: 100%;
	position: relative;
}

.nos-actus__list-item__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.nos-actus__list-item__img:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	/* background: #33A04733; */
	width: 100%;
	height: 100%;
	transition: .3s ease-in-out;
	/* background: #D0F3D6; */
	background: #7CE2BD;
	opacity: .3;

}

.nos-actus__list-item:hover .nos-actus__list-item__img:before {
	opacity: 0;
}

.nos-actus__list-item__content {
	padding: 19px;
	padding-bottom: 35px;
}

.nos-actus__list-item__category {
	border: 1px solid #33A047;
	border-radius: 10px;
	background: #fff;
	color: #33A047;
	text-transform: uppercase;
	font-size: 12px;
	line-height: 15px;
	width: max-content;
	max-width: 100%;
	padding: 3px 20px;
	margin-bottom: 16px;
	display: none;
}

.nos-actus__list-item__short-description {
	font-size: 18px;
	line-height: 23px;
	font-weight: bold;
	color: #003804;
}

section.collectes .container {
	position: relative;
	margin-top: -60px;
}

.view-more-collects {
	position: absolute;
	top: -100px;
	right: 200px;
	padding: 10px 20px;
	background: #000;
	border-radius: 10px;
	color: #fff;
	text-transform: uppercase;
	font-size: 16px;
	line-height: 18px;
	font-weight: bold;
	transition: .3s ease-in-out;
	border: 1px solid transparent;
}

.view-more-collects:hover {
	border-color: #000;
	color: #000;
	background: #fff;
}



.collecte-list__item {
	background: transparent linear-gradient(180deg, #15915C 0%, #6EC599 100%) 0% 0% no-repeat padding-box;
	border-radius: 25px;
	overflow: hidden;
	padding: 30px 14px;
}

.collecte-list__item-date {
	color: #fff;
	font-weight: bold;
	text-align: center;
	font-size: 24px;
	text-transform: uppercase;
	line-height: 32px;
	margin-bottom: 19px;
}

.collecte-list__item-info-block {
	background: #fff;
	border-radius: 25px;
	padding: 16px 13px;
	text-align: center;
	margin-bottom: 23px;
	position: relative;
	max-height: 350px;
	overflow: hidden;
	position: relative;
	transition: max-height 0.3s ease;
	/* padding-bottom: 50px; */
}

.expandable {
	padding-bottom: 50px;
}

.expanded .expand-overlay .arrow {
	border-bottom: 10px solid #000;
	border-top: 0;
}

.collecte-list__item-info-block:last-child {
	margin-bottom: 0;
}

.collecte-list__item-info-block h3 {
	font-size: 20px;
	font-weight: bold;
	text-transform: uppercase;
	line-height: 26px;
	margin-bottom: 10px;
	color: #000;
}

.collecte-city__row {
	font-size: 16px;
	font-weight: 400;
	line-height: 20px;
	color: #000;
}

.collecte-site__row {
	margin-bottom: 20px;
	font-size: 16px;
	font-weight: 400;
	line-height: 20px;
	color: #000;
}

.uppercase {
	text-transform: uppercase;
}

.bold {
	font-weight: bold;
}

.collecte-site__row p {
	margin-bottom: 0;
}

.collecte-button-prev, .collecte-button-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.collecte-button-prev {
	right: calc(100% + 60px);
}

.collecte-button-next {
	left: calc(100% + 60px);
}

.swiper-button-disabled {
	display: none;
}

.sitemap-section:before {
	background: transparent linear-gradient(0deg, #FFFFFF1A 0%, #77D3A854 100%) 0% 0% no-repeat padding-box;
	height: 927px;
}

section.sitemap-section {
	padding-bottom: 165px;
}

.sitemap-template__block {
	width: 100%;
	position: relative;
	background: #fff;
	overflow: hidden;
	border-radius: 20px;
	padding: 82px 77px 120px 77px;
}

.sitemap-block__background {
	position: absolute;
	height: 100%;
	right: 0;
	top: 0;
}

.sitemap-block__background img {
	height: 100%;
	width: auto;
	object-fit: cover;
}

.sitemap-block__wrap {
	max-width: 1200px;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 50px 25px;
}

.sitemap-block__menu-column {
	max-width: 245px;
	width: 100%;
	position: relative;
	z-index: 1;
}

.sitemap-block__menu-column:first-child {
	max-width: 185px;
}

.sitemap-block__menu-column:nth-child(2) {
	max-width: 185px;
}

.sitemap-block__menu-column:nth-child(3) {
	max-width: 245px;
}

.sitemap-block__menu-column:nth-child(4) {
	max-width: 240px;
}

.sitemap-block__menu-column:nth-child(5) {
	max-width: 170px;
}

.green-text {
	color: #007708;
}

.sitemap-menu__name {
	font-size: 16px;
	font-weight: bold;
	line-height: 20px;
	margin-bottom: 27px;
}

.sitemap-menu__ul > li > a {
	text-transform: uppercase;
	font-weight: bold;
	color: #000;
	font-size: 14px;
	line-height: 18px;

}

.sitemap-menu__ul a {
	transition: .3s ease-in-out;
}

.sitemap-menu__ul a:hover {
	color: var(--accent-green);
}

.sitemap-menu__ul > li {
	margin-bottom: 16px;
}

.sitemap-menu__ul > li:last-child {
	margin-bottom: 0;
}

.sitemap-submenu__ul li, .sitemap-menu__ul .sub-menu li {
	line-height: 18px;
}

.sitemap-menu__ul .sub-menu {
	display: block;
	padding: 0;
}

.sitemap-submenu__ul li a, .sitemap-menu__ul .sub-menu li a {
	font-size: 13px;
	line-height: 18px;
	color: #000;
	font-weight: 400;
}

.sitemap-menu__ul > li.sitemap-cookies {
	margin-top: 90px;
}

.site-footer {
	position: relative;
	background: #D0F3D6;
	padding: 55px 0 35px 0;
}

.footer-first__row {
	width: 100%;
	display: flex;
	/* flex-wrap: wrap; */
	justify-content: space-between;
	gap: 45px 15px;
	position: relative;
}

.footer-first__row-left {
	max-width: 1109px;
	width: 100%;
	max-width: 100%;
	display: flex;
	flex-wrap: wrap;
}

.footer-first__row-left-top {
	width: 100%;
	display: flex;
	justify-content: space-between;
	justify-content: flex-end;
	gap: 46px;
}

.footer-logo__column {
	max-width: 222px;
	width: 100%;
	margin-top: 30px;
	margin-right: auto;
}

.footer-first__row-right__bottom {
	max-width: 445px;
	max-width: 488px;
	/* max-width: 554px; */
	width: 100%;
	/* height: 100%; */
	margin-top: 45px;
	background: #fff;
	border-radius: 20px;
	align-items: center;
	justify-content: flex-start;
	padding-left: 20px;
	padding-right: 20px;
	display: flex;
	position: relative;
	gap: 22px;
	box-shadow: 0px 0px 20px #33A04733;
	margin-left: 46px;

}

.footer-first__row-right__bottom a {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}


.footer-first__row-right__bottom img {
	width: 100%;
	max-width: 125px;
	height: auto;
}

.footer-first__row-right__bottom p {
	font-size: 23px;
	line-height: 30px;
	font-weight: bold;
	color: #007708;
	text-transform: uppercase;
	text-align: left;
	max-width: 230px;
}

.footer-logo {
	display: block;
	width: 100%;
	margin-bottom: 0;;
}

.footer-logo img {
	width: 100%;
	height: auto;
}

.footer-logo__text, .footer-logo__text a {
	font-size: 16px;
	line-height: 20px;
	font-weight: 400;
	color: #003804;

}

.footer-legal__info {
	max-width: 250px;
	width: 100%;
	margin-top: 30px;

}

.footer-legal__info ul li {
	padding: 7.5px 0;
	border-bottom: 1px solid #33A047;
	line-height: 18px;

}

.footer-legal__info ul {
	border-top: 1px solid #33A047;
}

.footer-legal__info ul li a {
	font-size: 16px;
	line-height: 18px;
	color: #007708;
	font-weight: 400;
	display: block;
}

.footer-working-time__info {
	background: #fff;
	border-radius: 20px;
	max-width: 327px;
	width: 100%;
	padding: 27.5px 27px 27.5px 27.5px;
	box-shadow: 0px 0px 20px #33A0471A;
}

.footer-working-time__info h3 {
	font-size: 25px;
	line-height: 28.8px;
	font-weight: bold;
	color: #003804;
	margin-bottom: 10.5px;
}

.footer-working-time__content {
	color: #33A047;
	font-size: 16px;
	line-height: 20px;
}

.footer-working-time__content p {
	margin-bottom: 15px;
}

.footer-working-time__content p:last-child {
	margin-bottom: 0;
}

.footer-portals {
	background: #fff;
	border-radius: 20px;
	padding: 27.5px 28.7px;
	padding-bottom: 20.6px;
	max-width: 182px;
	width: 100%;
	box-shadow: 0px 0px 20px #33A0471A;
}

.footer-portals h3 {
	color: #003804;
	font-size: 25px;
	line-height: 28.8px;
	font-weight: bold;
	margin-bottom: 45px;
}

.portals-buttons__container {
	display: flex;
	flex-direction: column;
	gap: 9px;
}

.footer-portal__button {
	font-size: 12px;
	line-height: 14px;
	width: 100%;
	border-radius: 10px;
	background: #000;
	color: #fff;
	font-weight: 400;
	text-transform: uppercase;
	text-align: center;
	padding: 3px 0;
	border: 1px solid transparent;
	
}

.footer-portal__button:hover {
	color: #000;
	border-color: #000;
	background-color: #fff;
}

.footer-first__row-left__bottom {
	width: 100%;
	border-radius: 20px;
	background: #fff;
	min-height: 145px;
	padding-top: 7px;
	padding-bottom: 13px;
	padding-left: 20px;
	padding-right: 20px;
	margin-top: 45px;
	box-shadow: 0px 0px 20px #33A04733;
	max-width: 1109px;
	/* max-width: 1046px; */
}

.footer-partners__list {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 82px;
}

.footer-partners__list a {
	max-width: 230px;
	width: max-content;
	display: block;
}

.footer-partners__list a img {
	max-width: 230px;
}

.footer-first__row-right {
	max-width: 485px;
	width: 100%;
	position: relative;
}

.site-footer .container {
	max-width: 1645px;
	width: 100%;
}

.newsletter-block {
	width: 100%;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0px 0px 20px #33A0471A;
	height: 100%;
	padding: 27.5px 64px 30px 40px;
}

.newsletter-block h3 {
	font-size: 25px;
	font-weight: bold;
	color: #003804;
	line-height: 28.8px;
	margin-bottom: 25.5px;
}


.newsletter-block p {
	font-size: 16px;
	line-height: 20px;
	font-weight: 400;
	color: #1D1D1B;
	margin-bottom: 23px;
}

.newsletter-footer {
	width: 100%;
	/* margin-bottom: 23px; */
}

.basic-input {
	width: 100%;
	border-radius: 10px;
	border: 1px solid #33A047;
	background: #fff;
	font-size: 16px;
	line-height: 20px;
	height: 33px;
	padding-left: 10px;
}

.newsletter-buttons__row {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	gap: 23px;
	margin-top: 35px;
}

.newsletter-buttons__row a {
	font-size: 12px;
	line-height: 14px;
	background: #000;
	display: block;
	text-align: center;
	color: #fff;
	font-weight: 400;
	padding: 8px 8px;
	border-radius: 10px;
	text-transform: uppercase;
	border: 1px solid transparent;
}

.newsletter-buttons__row a:hover {
	border-color: #000;
	color: #000;
	background: #fff;
}

.footer-absolute__logo {
	position: absolute;
	left: calc(100% + 36px);
	bottom: 0;
}

.footer-absolute__logo {
	width: 60px;
}

.footer-absolute__logo a {
	display: block;
	width: 100%;
}

.footer-absolute__logo  a img {
	width: 100%;
	height: auto;
}

.footer-second__row {
	padding-top: 38px;
	display: flex;
	justify-content: space-between;
	align-items: center
}

.footer-second__row-right {
	max-width: 1000px;
	width: 100%;
}

.copyright-text {
	width: 100%;
	font-size: 14px;
	line-height: 16px;
	color: #33A047;
}

.footer-social__item {
	display: block;
	line-height: 0;
	height: 15.17px;

}

.footer-social__item img {
	height: 100%;
	width: auto;
}

.footer-socials {
	display: flex;
	gap: 26px;
	align-items: center;
}

.footer-legal__info ul li a:hover {
	transform: translateX(5px);
}

.header-main {
	background: #33A047;
	position: relative;
	z-index: 3;
	max-height: 132px;
	padding-bottom: 16px;
}
/* 
.header-main:before {
	content: '';
	width: 100%;
	position: absolute;
	top: 100%;
	height: 87px;
	background: transparent linear-gradient(180deg, #FFFFFF1A 0%, #77D3A854 100%) 0% 0% no-repeat padding-box;
	transform: rotate(180deg);
} */
.secondary-main:before {
	content: '';
	width: 100%;
	position: absolute;
	top: 100%;
	height: 87px;
	background: transparent linear-gradient(180deg, #FFFFFF1A 0%, #77D3A854 100%) 0% 0% no-repeat padding-box;
	transform: rotate(180deg);
	top: 0;
}


.header-main__top	{
	padding-top: 20px;
	padding-bottom: 30px;
	position: relative;
	z-index: 2;
}


.header-main__logo-container {
	max-width: 450.6px;
	width: 100%;
	/* padding: 25.6px 90.7px 16px 90.7px; */
	padding: 32.7px 90.7px 25.8px 90.7px;
	background: #fff;
	border-radius: 0 80px 80px 0;
	height: max-content;
	position: absolute;
	left: 0;
	top: 30px;
	z-index: 3;
}

.header-main__logo {
	display: block;
	max-width: 262px;
	width: 100%;
	margin-left: auto;
}

.header-main__logo img {
	width: 100%;
}

.header-main__middle {
	position: relative;
	z-index: 1;
}

.header-main__menu-list {
	display: flex;
	justify-content: flex-end;
	gap: 16px;
}

.header-main__menu-column {
	background: #fff;
	max-width: 260px;
	width: 100%;
	border-radius: 20px;
	padding-left: 18px;
	padding-right: 18px;
	padding-top:8px;
	padding-bottom: 10px;
	box-shadow: 0px 3px 20px #00770833;
	max-height: 44px;
	overflow: hidden;
	cursor: pointer;
	transition: .3s ease-in-out;
}

.header-main__menu-list .header-main__menu-column:nth-child(3) {
	max-width: 300px;
}
.header-main__menu-column .sub-menu {
	display: block;
	padding: 0;
}

.header-main__menu-column.active {
	background: #D0F3D6;
}

.header-main__menu-head {
	width: 100%;
	font-size: 18px;
	font-weight: bold;
	color: #003804;
	line-height: 30px;
	margin-bottom: 5px;
}

.header-main__menu-column:hover {
	max-height: 600px;
	/* background: #fff; */
}

.header-main__menu-items {
	width: 100%;
}

.header-main__menu-items > ul > li > a {
	font-size: 14px;
	line-height: 18px;
	color: #000000;
	font-weight: bold;
	text-transform: uppercase;
	display: block;
	margin-bottom: 4px;
}

.header-main__menu-items {
	padding-top: 5px;
}

.header-main__menu-items > ul > li {
	font-size: 14px;
	line-height: 18px;
	margin-bottom: 18px;
}

.header-main__menu-items > ul > li > ul > li > a {
	font-size: 13px;
	line-height: 18px;
	font-weight: 400;
	color: #000000;
}

.header-main__menu-items > ul > li > ul > li {
	line-height: 18px;
}

.header-main__menu-items a:hover {
	color: var(--accent-green);
}

.breadcrumbs {
	padding-left: 350px;
	display: inline-block;
	padding-top: 10px;
	font-size: 12px;
	line-height: 24px;
	padding-bottom: 60px;
	position: relative;
	z-index: 2;
}

.secondary-main {
	position: relative;
	z-index: 2;
}

.breadcrumbs > span {
	font-weight: bold;
}

.breadcrumbs ul {
	display: inline;
}

.breadcrumbs ul li {
	display: inline;
}

.breadcrumbs-section {
	position: relative;
	z-index: 1;
}

section.page-full-intro {
	padding-top: 30px;
	padding-bottom: 40px;
}

.basic-section__title {
	font-size: 70px;
	line-height: 70px;
	margin-bottom: 53px;
	font-weight: bold;
	color: #007708;
	max-width: 845px;
	width: 100%;
}

.actualites-intro {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.actualites-intro__left {
	max-width: 430px;
	width: 100%;

}

.actualites-intro__left p {
	font-size: 18px;
	line-height: 28px;
	font-weight: bold;
	color: #000;
}

.actualites-intro__right {
	max-width: 950px;
	width: 100%;
}

.actualites-intro__main-item {
	width: 100%;
	position: relative;
	display: flex;
	border-radius: 20px;
	overflow: hidden;
	height: 350px;
}

.actualite-main__image {
	width: 100%;
	max-width: 525px;
	height: 100%;
}

.actualite-main__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.actualite-main__info {
	width: 100%;
	max-width: 425px;
	background: #D0F3D6;
	padding: 35px 50px 68px 50px;
	display: flex;
	flex-direction: column;
}

.actualite-main__category {
	width: max-content;
	max-width: 100%;
	padding: 3px 20px;
	border: 1px solid var(--accent-green);
	border-radius: 10px;
	text-transform: uppercase;
	color: var(--accent-green);
	text-transform: uppercase;
	font-weight: 400;
	background: #fff;
	font-size: 12px;
	line-height: 15px;
	display: none;
}

.actualite-main__date {
	margin-top: auto;
	margin-bottom: 6px;
	font-size: 14px;
	line-height: 24px;

}

.actualite-main__title {
	font-size: 20px;
	line-height: 24px;
	font-weight: bold;
	color: #000;
	max-width: 100%;
	width: 100%;
	text-transform: uppercase;
}

.actualite-list__link {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}

.actualites-section {
	padding-top: 22px;
	padding-bottom: 77px;
}

.actualites-section .nos-actus__list {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 40px 30px;
}

.page-black__button {
	font-size: 16px;
	line-height: 19.2px;
	font-weight: bold;
	color: #fff;
	background: #000;
	border-radius: 10px;
	padding: 11.5px 30px;
	text-transform: uppercase;
	display: block;
	width: max-content;
	max-width: 100%;
	border: 1px solid transparent;
}

.page-black__button:hover {
	background: #fff;
	border-color: #000;
	color: #000;
}

.actualites-bottom__row {
	padding-top: 85px;
	display: flex;
	justify-content: flex-end;
}

.title-with__button-right {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 0;
}

.title-with__button-right .basic-section__title {
	margin-bottom: 0;
}

.button-right__container {
	width: max-content;
	max-width: 50%;
}

.actualites-archive__section {
	padding-bottom: 150px;
}

.top-page__menu-row {
	display: flex;
	gap: 90px;
}

.top-page__menu-wrap {
	max-width: 300px;
	width: 100%;
	background: #D0F3D6;
	border-radius: 20px;
	padding: 26px 28px;
	text-align: center;
}

.top-page__menu-name {
	font-size: 30px;
	line-height: 30px;
	font-weight: bold;
	color: #007708;
	margin-bottom: 18px;
}

.top-page__menu-list {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.top-page__menu-list__item {
	display: block;
	width: 100%;
	padding: 8.5px 15px;
	text-align: center;
	font-weight: bold;
	color: #757575;
	font-size: 16px;
	line-height: 18px;
	border-radius: 18px;
	background: #fff;
	box-shadow: 0px 3px 20px #00770847;
}

.top-page__menu-list__item:hover {
	background: #D0F3D6;
	color: #757575;
}

.top-page__menu-list__item.active {
	background: #D0F3D6;
	color: #757575;
}

.top-page__menu-row__intro-box {
	max-width: 1230px;
	width: 100%;
}

.top-page__menu-row__intro-box__wrap {
	display: flex;
	justify-content: space-between;
}

.top-page__menu-row__intro-box__left {
	max-width: 510px;
	width: 100%;
	
}

.top-page__menu-row__intro-box__left p {
	margin-bottom: 30px;
}

.top-page__menu-row__intro-box__left p:last-child {
	margin-bottom: 0;
}

.top-page__menu-row__intro-box__right {
	max-width: 620px;
	width: 100%;
}

.top-page__menu-row__intro-box__right img {
	width: auto;
	max-width: 100%;
	text-align: center;
	display: block;
}

section.top-page-with-menu {
	padding-bottom: 60px;
	padding-bottom: 80px;
}

.section-with-right-content .container {
	padding-left: 330px;
}

.free-content__row {
	width: 100%;
	display: flex;
	gap: 30px;
}

.free-content__column {
	max-width: 100%;
	width: 100%;
}

.row-2-columns .free-content__column {
	max-width: 50%;
	width: 100%;
}

.section-with-right-content {
	padding-top: 90px;
	padding-bottom: 90px;
}

.wordpress-content p {
	font-size: 18px;
	line-height: 28px;
	margin-bottom: 28px;
	font-weight: 400;
}

.wordpress-content > * {
	margin-bottom: 50px;
}

.wordpress-content > *:last-child {
	margin-bottom: 0;
}

.wordpress-content h2 {
	font-size: 35px;
	line-height: 40px;
	margin-bottom: 32px!important;
	color: #007708;
	font-weight: bold;
}

.wordpress-content h3 {
	font-size: 25px;
	font-weight: bold;
	line-height: 28px;
	margin-bottom: 35px;
}

.content-green-box {
	padding: 31px 33px;
	background: #D0F3D6;
	border-radius: 10px;
	color: #007708;
	font-size: 18px;
	font-weight: bold;
	line-height: 28px;
}

.wordpress-content img {
	max-width: 100%;
	width: auto;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.free-content__row {
	margin-bottom: 80px;
}

.free-content__row:last-of-type {
	margin-bottom: 0;
}

.section-intro-full-image {
	width: 100%;
	padding-bottom: 115px;
}

.section-intro-full-image img {
	width: 100%;
	height: auto;
	max-width: 100%;
}

.equip-section .container {
	max-width: 1620px;
	position: relative;
	z-index: 1;
}

.medium-section-title {
	color: #007708;
	font-size: 35px;
	line-height: 40px;
	font-weight: bold;
	margin-bottom: 32px;
}

.section-green-bg-title-up {
	position: relative;
}

.section-green-bg-title-up:before {
	content: '';
	width: 100%;
	height: 433px;
	background: transparent linear-gradient(0deg, #FFFFFF1A 0%, #77D3A854 100%) 0% 0% no-repeat padding-box;
	position: absolute;
	top: 0;
	left: 0;
}

.section-green-bg-title-up h2 {
	transform: translateY(-100%);
	margin-bottom: 56px;
}

.equip-section{
	padding-bottom: 130px;
}

.notre-equip__list {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 70px 30px;
}

.notre-equip__list-item {
	width: 100%;
	max-width: 100%;
	position: relative;
}

.notre-equip__list-item__image {
	height: 300px;
	width: 100%;
	border-radius: 10px;
	overflow: hidden;

}

.notre-equip__list-item__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.notre-equip__list-item__content {
	padding-top: 30px;
	width: 100%;
}

.notre-equip__item-name {
	font-size: 18px;
	line-height: 18px;
	font-weight: bold;
	color: #000000;
	margin-bottom: 18px;
	text-transform: uppercase;
}

.notre-equip__item-position {
	font-size: 16px;
	font-weight: 400;
	line-height: 18px;
	color: #000000;
	margin-bottom: 16px;
}

.notre-equip__item-phone, .notre-equip__item-email {
	display: block;
	font-size: 16px;
	line-height: 18px;
	color: #007708;
	font-weight: 400;
	margin-bottom: 5px;
}

.section-small-padding {
	padding-top: 0;
	padding-bottom: 135px;
}

.partners-list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 70px 30px;
}

.partners-list__item {
	width: 100%;
	max-width: 100%;
	position: relative;
}





.partners-list__item-logo {
	width: 100%;
	max-width: 100%;
	height: 200px;
	border-radius: 10px;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0px 3px 30px #D0F3D6;
	position: relative;
}

.partners-list__item-logo .absolute__link {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: block;
}

.partners-list__item-logo img {
	max-width: 245px;
	max-height: 125px;
	width: auto;
	height: auto;
}

.partners-list__item-content {
	padding-top: 25px;
}

.partners-list__item-name {
	font-size: 18px;
	font-weight: bold;
	line-height: 22px;
	margin-bottom: 22px;
	color: #000;
	text-transform: uppercase;
}

.partners-list__item-address{
	font-size: 16px;
	font-weight: 400;
	line-height: 22px;
	color: #000;
	margin-bottom: 0;
}

.partners-list__item-link {
	color: #007708;
	font-size: 16px;
	line-height: 22px;
	margin-bottom: 0;
	display: block;
}

main.main-partnerias section.top-page-with-menu {
	padding-bottom: 130px;
}

.section-green-bg-title-up.section-small-padding h2 {
	margin-bottom: 0;
}

.top-page__menu-row__intro-box__absolute{
	max-width: 682px;
	max-height: 682px;
	position: absolute;
	right: 0;
	top: 0;
	z-index: -1;
}

.top-page__menu-row__intro-box__absolute img {
	width: 100%;
	height: auto;
	max-height: 682px;
	object-fit: cover;
}

section.top-page-with-menu {
	position: relative;
	z-index: 2;
}

.downloads-content__block {
	width: 100%;
	max-width: 100%;
	display: flex;
	gap: 20px 30px;
	flex-wrap: wrap;

}

.downloads-content__item {
	position: relative;
	width: 100%;
	max-width: 300px;
	display: flex;
	gap: 15px;
	padding: 10px 14px;
	border-radius: 10px;
	background: #D0F3D6;
	align-items: center;
	justify-content: flex-start;
	transition: .3s ease-in-out;
	border: 1px solid transparent;
}

.downloads-content__item-link {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;

}

.download-icon {
	width: 28.76px;
	height: auto;
	max-width: 28.76px;
}

.downloads-content__item-name {
	font-size: 16px;
	line-height: 22px;
	color: #000;
	font-weight: bold;
	max-width: 222px;
	width: 100%;
}

.go-icon {
	max-width: 32.94px;
	width: 100%;
}

.email-icon {
	max-width: 34px;
	width: 100%;
}

.downloads-content__item:hover {
	background: #fff;
	border-color: #000000;
	color: #000;
}

.top-page__menu-row__intro-box__internationale {
	position: absolute;
	right: 101px;
	top: -105px;
	max-width: 732px;
	width: 100%;
	z-index: -1;

}

.top-page__menu-row__intro-box__internationale img {
	width: 100%;
	height: auto;
	object-fit: cover;
}

.internationale-first__content {
	display: flex;
	gap: 150px;
	align-items: flex-end;
	padding-top: 50px;
	padding-bottom: 130px;
}

main.internationale-main .top-page__menu-row__intro-box {
	flex-wrap: wrap;
}

main.internationale-main .top-page__menu-wrap {
	height: max-content;
}

.internationale-content__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 35px;
	position: relative;
	
}

.country-link {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}


.internationale-content__item-img, .internationale-content__item img  {
	max-width: 270px;
	max-height: 308px;
}

.internationale-conent__item-name {
	font-size: 35px;
	line-height: 40px;
	font-weight: bold;
	color: #007708;
}

.section-vacants {
	padding-top: 35px;
	padding-bottom: 168px;
}

.top-page__menu-row__intro-box__jobs {
	position: absolute;
	max-width: 645px;
	width: 100%;
	right: 63px;
	bottom: 0;
}

.vacants-list {
	display: grid;
	grid-template-columns: repeat(3, 300px);
	gap: 60px 30px;
}

.vacants-list__item {
	background: #fff;
	width: 100%;
	padding: 23px 23px 37px 23px;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	box-shadow: 0px 3px 30px #D0F3D6;
}

.vacants-list__item-title {
	font-size: 25px;
	line-height: 30px;
	font-weight: bold;
	color: #000;
	margin-bottom: 20px;
}

.vacants-list__item-description {
	font-weight: 400;
	font-size: 18px;
	line-height: 22px;
	color: #000;
	margin-bottom: 36px;
	
}

.vacants-list__item-buttons {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: auto;
	width: 100%;
}

.vacants-list__item-button {
	display: block;
	width: 100%;
	padding: 8px 15px;
	border-radius: 10px;
	background: #000;
	color: #fff;
	font-size: 16px;
	line-height: 18px;
	font-weight: bold;
	border: 1px solid transparent;
	text-align: center;
}

.vacants-list__item-button:hover {
	border-color: #000;
	color: #000;
	background: #fff;

}

.filters-row {
	display: flex;
	align-items: center;
	gap: 8px;
}

.filter-name {
	width: max-content;
	max-width: 100%;
	font-size: 18px;
	line-height: 28px;
	font-weight: 400;
	color: #000;
}

.filters-list {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

.filters-list__item {
	padding: 5px 20px;
	font-size: 14px;
	line-height: 19.2px;
	font-weight: bold;
	color: #707070;
	border: 1px solid #707070;
	border-radius: 15px;
	transition: .3s ease-in-out;
	cursor: pointer;
	text-transform: uppercase;
}

.filters-list__item-active, .filters-list__item-selected  {
	border-color: #007708;
	color: #fff;
	background: #007708;
}

.media-hide {
	display: none !important;
}


.section-mediateque .basic-section__title {
	margin-bottom: 122px;
}

.mediateque-list {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 50px 30px;
	padding-top: 78px;
	padding-bottom: 140px;
}

.mediateque-list__item {
	width: 100%;
	border-radius: 10px;
	background: #E5FFE9;
	padding: 15px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.mediateque-list__item-video {
	padding: 60px 15px 15px 15px;
}

.mediateque-list__item-video .mediateque-list__item-image {
	position: relative;
}

.mediateque-list__item-video  .video-icon {
	width: 66px;
	height: 66px;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto;
}




.mediateque-list__item-image {
	margin-left: auto;
	margin-right: auto;
}

.mediateque-list__item-download .mediateque-list__item-image {
	max-width: 176px;
	width: 100%;
	height: 250px;
	margin-bottom: 16px;
	display: flex;
	align-items: center;
}

.mediateque-list__item-download .mediateque-list__item-image img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: cover;
}

.mediateque-list__item-downloads {
	padding: 20px 28px 15px 28px;
}

.mediateque-list__item-downloads .mediateque-list__item-image {
	max-width: 176px;
	max-height: 244px;
	margin-bottom: 30px;
}

.mediateque-list__item-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mediateque-list__item-video .mediateque-list__item-image {
	max-width: 100%;
	width: 100%;
	height: 153px;
	margin-bottom: 69px;
}

.mediateque-list__item-link .mediateque-list__item-image {
	max-width: 246px;
	width: 100%;
	height: 157px;
	margin-bottom: 70px;
}

.mediateque-list__item-title {
	font-size: 18px;
	line-height: 19.2px;
	font-weight: bold;
	width: 100%;
	text-align: center;
	margin-bottom: 31px;
}

.mediateque-list__item-link {
	padding: 55px 15px 15px 15px;
}

.mediateque-list__item-button {
	display: block;
	padding: 5px 20px;
	min-width: 180px;
	text-align: center;
	text-transform: uppercase;
	color: #fff;
	border-radius: 10px;
	font-size: 14px;
	line-height: 19.2px;
	background: #000;
	font-weight: bold;
	max-width: 100%;
	width: max-content;
	margin-left: auto;
	margin-right: auto;
	margin-top: auto;
	border: 1px solid transparent;
}

.mediateque-list__item-button:hover {
	border-color: #000;
	color: #000;
	background: #fff;
}

.contact-page__description {
	max-width: 510px;
	width: 100%;
	font-size: 18px;
	font-weight: bold;
	line-height: 28px;
	color: #000;
	margin-bottom: 43px;
}

.contact-info__row {
	display: flex;
	justify-content: space-between;
	gap: 30px;
}

.contact-info__left {
	max-width: 630px;
	width: 100%;
}

.contact-info__right {
	max-width: 960px;
	width: 100%;
}

.contact-info__left-greenbox {
	width: 100%;
	padding: 28px 22px;
	border-radius: 10px;
	background: #E5FFE9;
	display: flex;
	gap: 10px;
	justify-content: space-between;
	margin-bottom: 60px;
}

.contact-info__left-greenbox-col {
	max-width: 250px;
	width: 100%;
}

.contact-info__left-greenbox-col h3 {
	font-size: 25px;
	line-height: 30px;
	font-weight: bold;
	margin-bottom: 16px;
	text-transform: uppercase;
}

.contact-info__left-greenbox-col div {
	font-size: 18px;
	line-height: 28px;
	font-weight: 400;
}

.contact-black__button {
	background: #000;
	color: #fff;
	border-radius: 10px;
	font-size: 16px;
	line-height: 19.2px;
	padding: 5px 30px;
	min-width: 180px;
	width: max-content;
	max-width: 100%;
	display: block;
	font-weight: bold;
	transition: .3s ease-in-out;
	margin-bottom: 19px;
	text-align: center;
	border: 1px solid transparent;
}

.contact-black__button:hover {
	border-color: #000;
	background: #fff;
	color: #000;
}

.contact-info__left-greenbox-col p {
	font-size: 16px;
	line-height: 28px;
	font-weight: 400;
}

.contact-formular__wrapper {
	width: 100%;
}

.contact-formular__wrapper h3 {
	font-size: 25px;
	font-weight: bold;
	line-height: 30px;
	margin-bottom: 35px;
}

.contact-formular__wrapper form {
	width: 100%;
}

.contact-form__input-row {
	display: flex;
	flex-direction: column;
	gap: 11px;
	width: 100%;
	margin-bottom: 28px;
}

.contact-form__input-row label {
	font-size: 18px;
	line-height: 28px;
	font-weight: bold;
}

.contact-form__input-row input {
	border-radius: 10px;
	border: 1px solid #707070;
	padding-left: 15px;
	padding-right: 15px;
	width: 100%;
	height: 40px;
	font-size: 18px;
	line-height: 20px;
}

.contact-form__input-row textarea {
	border-radius: 10px;
	border: 1px solid #707070;
	padding: 15px 15px;
	width: 100%;
	height: 307px;
	font-size: 18px;
	line-height: 20px;
}

.form-description {
	width: 100%;
	font-size: 18px;
	line-height: 28px;
	font-weight: 400;
	margin-bottom: 35px;
}

.form-description a {
	color: #007708;
}

.contact-form__submit-row {
	width: 100%;
	display: flex;
	justify-content: flex-start;
}

.contact-page-button {
	background: #000;
	color: #fff;
	border-radius: 10px;
	font-size: 16px;
	line-height: 19.2px;
	padding: 5px 30px;
	min-width: 234px;
	width: max-content;
	max-width: 100%;
	display: block;
	font-weight: bold;
	transition: .3s ease-in-out;
	margin-bottom: 19px;
	text-align: center;
	border: 1px solid transparent;
}

.contact-page-button:hover {
	border-color: #000;
	background: #fff;
	color: #000;
}

.contact-info__right-map__wrap {
	width: 100%;
	position: relative;
	margin-bottom: 59px;
}

.contact-info__right-map {
	width: 100%;
	height: 602px;
	border-radius: 10px;
	overflow: hidden;
}

.contact-info__right-map img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.contact-info__right-map-small {
	max-width: 295px;
	width: 100%;
	position: absolute;
	right: 32px;
	top: -290px;
	z-index: 554;
}

.contact-info__right-map-small img {
	width: 100%;
	height: auto;
}

.contact-info__right-description {
	width: 100%;
	max-width: 630px;
	margin-bottom: 59px;
}

.contact-info__right-description  h3 {
	font-size: 25px;
	font-weight: bold;
	line-height: 30px;
	text-transform: uppercase;
	margin-bottom: 22px;
}

.contact-info__right-description p {
	font-size: 18px;
	line-height: 28px;
	font-weight: 400;
	margin-bottom: 28px;
}

.contact-info__right-description > *:last-child {
	margin-bottom: 0;
}

.contact-info__right-buttons {
	display: flex;
	gap: 29px;
}

.section-contact {
	padding-bottom: 85px;
}

.section-contact .container {
	padding-left: 20px;
	padding-right: 20px;
}

.section-right-padding .container {
	padding-right: 300px;
}

.basic-content__row{
	display: flex;
	width: 100%;
	max-width: 100%;
	gap: 30px;
}

.two-colls .basic-content__column {
	width: 100%;
	max-width: 50%;
}

.section-six-nine {
	padding-top: 60px;
	padding-bottom: 90px;
}

.section-politic .wordpress-content h3 {
	text-transform: uppercase;
	margin-bottom: 40px;
}

.top-page__menu-row__second-template {
	width: 100%;
	display: flex;
	gap: 30px;
}

.top-page-with-menu__second-template .top-page__menu-wrap {
	height: max-content;
}

.top-page__menu-row__sec-col {
	max-width: 630px;
	width: 100%;
}

/* .top-page__menu-row__sec-col:nth-child(2) {
	max-width: 570px;
} */

.top-page__menu-row__sec-col img {
	max-width: 100%;
	height: auto;
}

.top-page__menu-row__sec-col h3 {
	font-size: 35px;
	line-height: 40px;
	font-weight: bold;
	color: #007708;
	margin-bottom: 35px;
}

.top-page__menu-row__second-template {
	padding-top: 20px;
}

.top-page__menu-row__sec-col p {
	font-size: 18px;
	line-height: 28px;
	color: #000;
	margin-bottom: 28px;
}

.top-page__menu-row__sec-col > * {
	margin-bottom: 28px;
}

.top-page__menu-row__sec-col > *last-child {
	margin-bottom: 0;
}

.top-page__menu-row__sec-col ul {
	list-style: disc;
	padding-left: 20px;
}

.top-page__menu-row__sec-col ul li {
	list-style: disc;
	font-size: 18px;
	color: #000;
	line-height: 28px;
}

.top-page__menu-row__sec-col .downloads-content__item {
	width: max-content;
	max-width: 100%;
	min-width: 300px;
}

.go-icon {
	max-width: 32.94px!important;
}

.top-page__menu-row__sec-col .downloads-content__item-name {
	max-width: unset;
}

.top-page-with-menu__second-template .basic-section__title {
	max-width: 100%;
	padding-left: 35px;
}

.top-page-with-menu__second-template .top-page__menu-row {
	gap: 30px;
}

.top-page-with-menu__second-template .top-page__menu-row__intro-box {
	max-width: 1300px;
}

.custom-row-type1 {
	max-width: 960px;
	width: 100%;
}

.custom-row__green {
	width: 100%;
	padding: 22px 35px;
	max-width: 100%;
	color: #003804;
	font-size: 25px;
	line-height: 32px;
	background: #E5FFE9;
	border-radius: 10px;
	text-align: left;
	font-weight: bold;
	margin-bottom: 37px;
	margin-top: 47px;
}

.custom-row__columns {
	width: 100%;
	display: flex;
	justify-content: space-between;
}

.col630 {
	max-width: 630px;
	width: 100%;
}

.col-free {
	width: max-content;
	max-width: 100%;
}

.custom-row__col  p {
	font-size: 18px;
	line-height: 28px;
	font-weight: 400;
}

.custom-row__col > * {
	margin-bottom: 28px;
}

.custom-row__col > *:last-child {
	margin-bottom: 0;
}

.absolute-climat-img {
	position: absolute;
	top: -200px;
	right: 0;
	width: 816px;
}

.absolute-climat-img img {
	width: 100%;
	height: auto;
}

.top-page__menu-row__sec-col h4 {
	font-size: 25px;
	line-height: 30px;
	margin-bottom: 34px;
	font-weight: bold;
}

p.p-without-margin {
	margin-bottom: 0;
}

.absolute-signalement-img {
	max-width: 624px;
	width: 100%;
	position: absolute;
	top: 0;
	right: 100px;
	z-index: -1;
}

.absolute-signalement-img img {
	width: 100%;
}

.top-page__menu-row__sec-col p a, .top-page__menu-row__sec-col li a {
	color: var(--accent-green);
}

section.separate-content {
	padding-top: 60px;
	position: relative;
	padding-bottom: 85px;
}

section.separate-content .container {
	padding-left: 330px;
	position: relative;
	z-index: 1;
}

section.separate-content:before {
	content: '';
	width: 100%;
	height: 433px;
	background: transparent linear-gradient(0deg, #FFFFFF1A 0%, #77D3A854 100%) 0% 0% no-repeat padding-box;
	position: absolute;
	top: 0;
	left: 0;
}

/* .absolute-consumateur-img {
	position: absolute;
	right: -70px;
	top: 52px;
	max-width: 800px;
	width: 100%;
	z-index: -1;
} */

.absolute-consumateur-img img {
	width: 100%;
	height: auto;
}

main.protection-customer section.top-page-with-menu {
	overflow: hidden;
}

.top-page__menu-row__second-template {
	margin-bottom: 50px;
}

.top-page__menu-row__second-template:last-child {
	margin-bottom: 0;
}

.green-box-content {
	border-radius: 10px;
	background: #D0F3D6;
	padding: 39px 30px;
	font-size: 18px;
	line-height: 28px;

}

.green-box-content > *:last-child {
	margin-bottom: 0;
}

.green-box-content-type2 {
	border-radius: 10px;
	background: #D0F3D6;
	padding: 20px 20px;
	font-size: 16px;
	line-height: 28px;
	/* font-weight: bold; */
}

.green-box-content-type2 a {
	color: #007708;
}

.green-box-content-type2 p {
	font-size: 16px;
	line-height: 28px;
	color: #003804;
}

.green-box-content-type2 > *:last-child {
	margin-bottom: 0;
}

.absolue-lelabel-logo {
	position: absolute;
	right: 283px;
	top: -20px;
	max-width: 359px;
	width: 100%;
}

.absolue-lelabel-logo img {
	width: 100%;
}

section.basic-section .container {
	padding-left: 330px;
}


section.fullwidth-section .container {
	padding-left: 20px;
	padding-right: 20px;
}

section.basic-section {
	padding-top: 0;
	padding-bottom: 45px;

}

.section-with-right-content .how-it-works {
	grid-template-columns: repeat(4, 1fr);
}

section.section-contact .container {
	padding-left: 20px;
	padding-right: 20px;
}

.enterprises-intro-logo {
	position: absolute;
	right: 152px;
	top: 0;
	max-width: 213px;
	width: 100%;
}

.enterprises-intro-logo img {
	width: 100%;
}

.basic-section-title__fullwidth {
	max-width: 100%;
}

.section-negative-margin {
	margin-top: -135px;
	padding-top: 30px;
}

section.basic-section-fullwidth .container {
	padding-left: 20px;
}

.enterprices-filters__row {
	max-width: 100%;
	padding-left: 390px;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	justify-content: flex-start;
	gap: 30px;
	align-items: center;
}

.enterprices-filter__search {
	max-width: 550px;
	width: 100%;
	
}

.enterprices-filter__search form {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	
}

.enterprices-filter__search form label,  .enterprices-filter__categories p {
	font-size: 18px;
	line-height: 28px;
	font-weight: bold;
}

.enterprices-search__wrap{
	max-width: 289px;
	width: 100%;
	line-height: 0;
	position: relative;
}

.enterprices-search__wrap .enterprices-input {
	height: 30px;
	width: 100%;
	border: 1px solid #000000;
	border-radius: 10px;
	padding-left: 30px;
	font-size: 16px;
	line-height: 18px;
}

.enterprices-search-submit {
	width: 25px;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: url('../images/filter-search.svg') no-repeat;
	background-size: 13.79px;
	background-position: center right;
	border: 0;

}

.enterprices-filter__categories {
	display: flex;
	max-width: 500px;
	gap: 10px;
	align-items: center;
}

.categories-dropdown__container {
	position: relative;
	max-width: 410px;
	cursor: pointer;
}

.categories-dropdown__items-wrap {
	display: none;
	position: absolute;
	top: calc(100% + 7px);
	background: #fff;
	border-radius: 10px;
	border: 1px solid #000;
	padding: 13px 20px;
	z-index: 2;
	max-height: 333px;
	overflow-y: auto;
} 

.categories-dropdown__selected {
	font-size: 16px;
	line-height: 19.2px;
	color: #fff;
	border-radius: 10px;
	background: #000;
	text-transform: uppercase;
	padding: 5px 36px;
	font-weight: bold;
	transition: .3s ease-in-out;
	border: 1px solid transparent;
}

.categories-dropdown__selected:hover {
	color: #000;
	border-color: #000;
	background: #fff;
}

.categories-dropdown__container.active .categories-dropdown__selected, .categories-dropdown__container.active {
	width: 410px;
}

.categories-dropdown__container.active .categories-dropdown__items-wrap {
	display: block;
}

.categories-dropdown__item {
	font-size: 16px;
	line-height: 22px;
	cursor: pointer;
	margin-bottom: 5px;
	transition: .3s ease-in-out;
}

.categories-dropdown__item:hover {
	color: var(--accent-green);
}

.enterprices-list {
	padding-top: 95px;
	/* padding-bottom: 115px; */
	position: relative;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 30px;
	
}

.enterprices-list__item {
	background: #E5FFE9;
	border-radius: 10px;
	overflow: hidden;
	position: relative;
	padding: 13px 18px 0 18px;
	display: flex;
	flex-direction: column;
	min-height: 300px;
	padding-bottom: 30px;
}

.enterprices-list__item-categories {
	max-width: 100%;
	width: 100%;
	display: block;
	min-height: 40px;
	margin-bottom: 5px;
	line-height: 14px;
}

.enterprices-list__item-categories span {
	display: inline;
	color: var(--accent-green);
	font-weight: 400;
	font-size: 12px;
	line-height: 14px;
}

.enterprices-list__item-name {
	font-size: 18px;
	line-height: 24px;
	font-weight: bold;
	color: #000000;
	margin-bottom: 0;
}

.enterprices-list__item-type {
	font-size: 16px;
	line-height: 24px;
	font-weight: bold;
	color: #007708;
	margin-bottom: 15px;
}

.enterprices-list__item-date {
	margin-top: auto;
	position: absolute;
	bottom: 0;
	left: 0;
	border-radius: 0 0 10px 10px;
	background: #007708;
	color: #fff;
	padding-left: 18px;
	padding-right: 18px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	font-size: 16px;
	line-height: 22px;
	font-weight: bold;
	width: 100%;
	min-height: 30px;
}

.enterprices-list__item-site {
	margin-top: auto;
	margin-bottom: 20px;
	font-size: 16px;
	line-height: 22px;
	font-weight: bold;
	color: #000;
}

.enterprices-list__item-address {
	font-size: 16px;
	line-height: 22px;
	font-weight: 400;
}

.intro-box-left__type-new h3 {
	font-size: 35px;
	line-height: 35px;
	font-weight: bold;
	text-transform: uppercase;
}

.download-item-fullwidth {
	max-width: 100%;
	width: 100%;
}

.top-page__menu-row__sec-col .downloads-content__item.download-item-fullwidth {
	width: 100%;
}

.content-people {
	width: 100%;
	max-width: 100%;
	display: flex;
}

.two-cols {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}

.content-people__item {
	width: 100%;
}

.content-people__item-image {
	width: 100%;
	border-radius: 10px;
	overflow: hidden;
	height: 300px;
	margin-bottom: 30px;
}

.content-people__item-image img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.content-people__item-name {
	font-size: 18px;
	line-height: 18px;
	font-weight: bold;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.content-people__item-position {
	font-size: 16px;
	line-height: 18px;
	margin-bottom: 20px;
}

.content-people__item-contact__info {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.content-people__item-contact__info a {
	display: block;
	color: var(--accent-green);
	font-weight: 400;
	font-size: 16px;
	line-height: 18px;
}

.top-page__menu-row__sec-col p:last-child {
	margin-bottom: 0;
}

section.basic-section-padding-top4-bottom9 {
	padding-top: 40px;
	padding-bottom: 90px;
}

.basic-section .container {
	position: relative;
}

.page-return__button {
	left: 0;
	top: 100px;
	width: max-content;
	max-width: 400px;
	padding: 10px 30px;
	border-radius: 10px;
	color: #fff;
	background: #000;
	text-transform: uppercase;
	font-weight: bold;
	transition: .3s ease-in-out;
	position: absolute;
	font-size: 16px;
	line-height: 19.2px;
	border: 1px solid transparent;
}

.page-return__button:hover {
	border-color: #000;
	color: #000;
	background: #fff;
}

.one-col .top-page__menu-row__sec-col {
	max-width: 100%;
	width: 100%;
}

.green-box-content-type2 ul {
	list-style: disc;
}

.green-box-content-type2 ul li {
	list-style: disc;
	font-size: 18px;
	line-height: 28px;
	margin-bottom: 25px;
	font-weight: 400;
}

.green-box-content-type2 ul li:last-child {
	margin-bottom: 0;
}

.top-page__menu-row__sec-col h4 {
	text-transform: uppercase;
	color: #000;
	line-height: 30px;
	font-weight: bold;
	margin-bottom: 35px;
}

.gestion-absolute-image {
	position: absolute;
	right: 140px;
	top: 240px;
	max-width: 538px;
	width: 100%;
	top: 200px;
}

.gestion-absolute-image {
	width: 100%;
	height: auto;
}

.green-box-content-type2 h3, .basic-content .green-box-content-type2 h3 {
	/* text-transform: uppercase; */
	font-size: 25px;
	line-height: 30px;
	margin-bottom: 32px;
	color: #007708;
}

.green-box-content-type2 .downloads-content__item {
	background: #E5FFE9;
}

.green-box-content-type2 p {
	font-weight: 400;
}

.top-page__menu-wrap {
	height: max-content;
}

section.padding-collectes {
	padding-top: 30px;
	padding-bottom: 130px;
}

.collectes-filter__row {
	display: flex;
	max-width: 100%;
	width: 100%;
	gap: 70px;
	align-items: center;
}

.collectes-filter__abc {
	display: flex;
	gap: 15px;
	align-items: center;
}

.collectes-filter__abc p {
	font-weight: bold;
	font-size: 18px;
	line-height: 28px;
}

.collectes-filter__abc div {
	font-size: 18px;
	line-height: 20px;
	font-weight: bold;
	color: #007708;
}

.collectes-filter__row {
	padding-bottom: 55px;
}

.collectes-list__item {
	max-width: 390px;
	width: 100%;
	border-radius: 25px;
	border: 1px solid #33A047;
	overflow: hidden;
	
}

.collectes-list__item-top_wrap {
	padding: 12px 11px 34px 11px;
	background: #E5FFE9;
}

.collect-list__item-top {
	max-width: 100%;
	width: 100%;
	background: #33A047;
	border-radius: 12px;
	color: #fff;
	font-weight: bold;
	text-align: center;
	padding: 10px; 
	font-size: 18px;
	line-height: 20px;
	margin-bottom: 24px;
	text-transform: uppercase;
}

.collectes-list__item-city {
	max-width: 100%;
	padding-left: 22px;
	padding-right: 22px;
	font-size: 16px;
	line-height: 30px;
	font-weight: 400;
	margin-bottom: 34px;
}

.collectes-list__item-site-wrap {
	margin-top: 34px;
}

.collectes-list__item-porte-wrap {
	width: 100%;
	max-width: 100%;
	position: relative;
}

.icon-home {
	position: absolute;
	left: 18px;
	width: 31.16px;
	height: 23.68px;
	background: url(../images/colecte-porte.svg) no-repeat;
	background-size: contain;
	top: 8px;
}


.icon-trash-truck {
	position: absolute;
	left: 18px;
	width: 39.4px;
	height: 23.24px;
	background: url(../images/colecte-site.svg) no-repeat;
	background-size: contain;
	top: 8px;
}

.collect-label {
	padding: 10px;
	font-size: 18px;
	line-height: 20px;
	color: #007708;
	font-weight: bold;
	text-align: center;
	background: #fff;
	border-radius: 12px;
	border: 1px solid #007708;
	margin-bottom: 28px;
}

.collect-list__item-porte-date__row {
	font-size: 16px;
	line-height: 30px;
	color: #000;
	font-weight: 400;
	display: flex;
	gap: 24px;
	align-items: center;
	padding-left: 22px;
	padding-right: 22px;
	margin-bottom: 8px;
	flex-wrap: wrap;

}

.collect-list__item-porte-date__row + .collectes-list__item-city {
	margin-top: 30px;
}

.collect-list__item-porte-date__row > span:nth-child(1) {
	font-weight: bold;
}

.collecte-label__custom-text {
	font-size: 16px;
	line-height: 30px;
	text-align: center;
	font-weight: bold;
	margin-bottom: 22px;
}

.collectes-list__item-bottom-wrap {
	background: #fff;
	padding: 11px 11px 24px 11px;
	border-radius: 0 0 25px 25px;
	overflow: hidden;
}

.collectes-list__item-bottom__ressource {
	font-size: 18px;
	text-align: center;
	line-height: 28px;
	font-weight: bold;
	color: #007708;
	margin-bottom: 14px;
}

.collectes-list__item-bottom-toggle {
	border-radius: 12px;
	background: #33A047;
	color: #fff;
	font-weight: bold;
	/* padding: 9px; */
	text-align: center;
	position: relative;
	cursor: pointer;
	text-transform: uppercase;
	padding: 9px 39px;
}

.collectes-list__item-bottom-toggle:before {
	content: '';
	width: 24px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%) rotate(-180deg);
	height: 12px;
	background: url('../images/dropdown-white.svg') no-repeat;
	background-size: contain;
	right: 21.5px;
	transition: .3s ease-in-out;
}

.collectes-list__item-bottom-toggle.active:before {
	transform: translateY(-50%) rotate(0deg);
}

.collectes-list__item-bottom-hidden {
	padding: 26px 11px 0 11px;
	display: none;
}

.collectes-list__item-bottom__cities {
	width: 100%;
	max-width: 100%;
	padding-left: 22px;
	padding-right: 22px;
	font-size: 16px;
	line-height: 30px;
	font-weight: 400;
	color: #000;
	margin-bottom: 35px;
}

.collectes-list__item-bottom__calendar {
	background: #33A047;
	border-radius: 12px;
	width: 100%;
	max-width: 100%;
	padding: 9px 20px 13px 20px;
	overflow: hidden;
}

.collectes-list__item-calendar-title {
	width: 100%;
	max-width: 100%;
	text-align: center;
	color: #fff;
	font-weight: bold;
	font-size: 18px;
	line-height: 28px;
	margin-bottom: 10px;
	display: block;
	text-transform: uppercase;
}

.collect-list__item-calendar-number {
	font-size: 18px;
	line-height: 28px;
	color: #fff;
	text-align: center;
	width: 100%;
	max-width: 100%;
	font-weight: 400;
	margin-bottom: 15px;
	display: block;
	text-transform: uppercase;
}

.collect-list__item-calendar__day-row {
	width: 100%;
	display: grid;
	/* grid-template-columns: 90px 1fr 1fr; */
	grid-template-columns: 37px 1fr;
	gap: 12px;
	margin-bottom: 10px;
}

.collect-list__item-calendar__day-row:last-child {
	margin-bottom: 0;
}

.collect-list__item-calendar__day-column {
	width: 100%;
	font-size: 16px;
	line-height: 30px;
	color: #fff;
}

.col-list-week-day {
	font-weight: bold;
}

.col-list-start-time, .col-list-end-time {
	font-weight: 400;
}

.collectes-container__wrap{
	/* padding-left: 150px; */

}

.collectes-filter__row .enterprices-filter__search form {
	justify-content: flex-start;
}

.map-section {
	max-width: 100%;
	width: 100%;
}

.map-section img {
	width: 100%;
	height: 550px;
	object-fit: cover;
}

.collectes-permanente__wrap {
	width: 100%;
}

.collectes-permanente__list-item {
	max-width: 390px;
	width: 100%;
	border-radius: 25px;
	border: 1px solid #33A047;
	background: #E5FFE9;
	padding: 12px 11px 17px 11px;
	overflow: hidden;
}

.collectes-permanente__item-top {
	width: 100%;
	border-radius: 12px;
	background: #007708;
	max-width: 100%;
	padding: 10px 15px;
	font-size: 18px;
	line-height: 28px;
	font-weight: bold;
	color: #fff;
	text-align: center;
	margin-bottom: 11px;
}

.collectes-permanente__item-phone {
	font-size: 18px;
	line-height: 28px;
	width: 100%;
	text-align: center;
	color: #007708;
	font-weight: bold;
	margin-bottom: 15px;
}

.collectes-permanente__item-cities {
	font-size: 14px;
	line-height: 20px;
	font-weight: 400;
	margin-bottom: 30px;
}

.collectes-permanente__item-calendar {
	background: #fff;
	border-radius: 12px;
	padding: 10px 7px;
}

.collectes-permanente__item-calendar__name {
	width: 100%;
	max-width: 100%;
	text-align: center;
	font-size: 18px;
	line-height: 28px;
	color: #000;
	margin-bottom: 5px;
	font-weight: bold;
	text-transform: uppercase;
}

.collectes-permanente__item-calendar__address {
	font-size: 16px;
	line-height: 28px;
	color: #000;
	text-align: center;
	width: 100%;
	max-width: 100%;
	margin-bottom: 24px;
}

.collectes-permanente__item-calendar__row {
	width: 100%;
	max-width: 100%;
	display: grid;
	grid-template-columns: 140px 1fr 1fr;
	gap: 5px;
	margin-bottom: 10px;
}


.collectes-permanente__item-calendar__row:last-child {
	margin-bottom: 0;
}

.collectes-permanente__item-calendar__row-day {
	font-size: 16px;
	line-height: 30px;
	font-weight: bold;
	color: #000;
	text-transform: uppercase;
}

.collectes-permanente__item-calendar__row-day span {
	font-size: 14px;
	line-height: 30px;
	font-weight: 400;
	text-transform:lowercase;
}

.collectes-permanente__item-calendar__row-start-time, .collectes-permanente__item-calendar__row-end-time {
	font-size: 16px;
	line-height: 30px;
	font-weight: 400;
	color: #000;
}

.section-fullwidth-top__image {
	width: 100%;
	max-width: 100%;
	position: relative;
}

.section-fullwidth-top__image:before {
	content: '';
	width: 100%;
	height: 87px;
	top: 100%;
	background: transparent linear-gradient(180deg, #FFFFFF1A 0%, #77D3A854 100%) 0% 0% no-repeat padding-box;
	position: absolute;
	left: 0;
	transform: rotate(180deg);

}

.fullwith-top__image-wrap {
	width: 100%;
	max-width: 100%;
	height: 280px;
}

.fullwith-top__image-wrap img {
	width: 100%;
	max-width: 100%;
	height: 100%;
	object-fit: cover;
}

.content-black__button {
	width: max-content;
	max-width: 100%;
	padding: 8px 48px;
	background: #000;
	color: #fff;
	font-weight: bold;
	text-align: center;
	border-radius: 10px;
	line-height: 19.2px;
	font-size: 18px;
	transition: .3s ease-in-out;
	border: 1px solid transparent;
	display: inline-block;
}

.text-align-right > * {
	margin-left: auto;
}

.content-black__button:hover {
	color: #000;
	background: #fff;
	border-color: #000;
}

.align-right {
	margin-left: auto;
	margin-right: unset!important;
	display: block;
}

.top-page__menu-row__intro-box-wrap-with-padding {
	padding-left: 35px;
}

.top-page__menu-row__intro-fullwidth {
	width: 100%;
	max-width: 100%;
	margin-top: 75px;
}

.fullwidth-row {
	width: 100%;
	max-width: 100%;
}

section.constructor-section {
	margin-top: 70px;
	padding: 50px 0;

}

.fullwidth-row {
	margin-bottom: 50px;
}

section.constructor-section > *:last-child {
	margin-bottom: 0;
}

.constructor-main {
	padding-bottom: 70px;
}


.green-boxes__list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 15px 30px;
	padding-bottom: 50px;
}

.green-boxes__list-item{
	background: #007708;
	border-radius: 10px;
	padding: 12px 17px;
	min-height: 80px;
}

.green-boxes__list-item__name {
	color: #fff;
	font-weight: bold;
	font-size: 20px;
	line-height: 28px;
}

.basic-section__undertitle {
	font-size: 35px;
	line-height: 35px;
	text-transform: uppercase;
	font-weight: bold;
	color: #000;
	margin-bottom: 50px;
	padding-left: 35px;
}

.top-page__menu-row__intro-double-titles {
	width: 100%;

}

.top-page__menu-row__intro-double-titles .basic-section__title {
	margin-bottom: 10px;
}

.akademie-items__wrap {
	width: 100%;
	max-width: 100%;
}

.akademie-items__title {
	width: 100%;
	font-size: 35px;
	line-height: 40px;
	font-weight: bold;
	color: #007708;
	margin-bottom: 35px;
}

.akademie-items__list {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 25px 30px;
	max-width: 100%;
	margin-bottom: 58px;
}

.akademie-items__list-item {
	width: 100%;
	max-width: 100%;
	padding: 27px 32px;
	border-radius: 20px;
	background: #E5FFE9;
	box-shadow: 0px 3px 20px #00770847;
	cursor: pointer;

}

.akademie-items__list-item-name {
	font-size: 20px;
	line-height: 30px;
	color: #003804;
	font-weight: bold;
	text-transform: uppercase;
}

section.akademie-separate-section:before {
	content: '';
	width: 100%;
	height: 297px;
	background: transparent linear-gradient(0deg, #FFFFFF1A 0%, #77D3A854 100%) 0% 0% no-repeat padding-box;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

.top-page__menu-row__intro-box__right iframe {
	width: 100%;
	height: 354px;
}

.content-team__wrap {
	width: 100%;
	max-width: 100%;
}

.notre-equip__list.four-items {
	grid-template-columns: repeat(4, 1fr);
}

.notre-equip__list.three-items {
	grid-template-columns: repeat(3, 1fr);
}

.notre-equip__listtwo-items {
	grid-template-columns: repeat(2, 1fr);
}

.custom-logos__list-item .downloads-content__item {
	max-width: 100%;
	width: 100%;
}

.custom-logos__wrap {
	width: 100%;
	max-width: 100%;
}

.custom-logos__list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;

}

section.logos-separate-section{
	padding-bottom: 110px;
	/* padding-top: 0; */

}

.custom-logos__wrap {
	position: relative;
	top: -50px;
}

.custom-logos__list-item {
	width: 100%;
	max-width: 100%;
}

.custom-logos__list-item-logo {
	width: 100%;
	height: 200px;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0px 3px 30px #D0F3D6;
	display: flex;
	align-items: center;
	justify-content: center;
}

.custom-logos__list-item-logo img {
	max-width: 90%;
	max-height: 90%;
	object-fit: cover;
}

section.logos-separate-section:before {
	content: '';
	width: 100%;
	height: 297px;
	background: transparent linear-gradient(0deg, #FFFFFF1A 0%, #77D3A854 100%) 0% 0% no-repeat padding-box;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

.custom-logos__list-item__content {
	padding-top: 25px;
	width: 100%;
}

.custom-logos__list-item__content-text {
	margin-bottom: 30px;
}

.custom-logos__list-item__content h5 {
	font-size: 18px;
	line-height: 22px;
	margin-bottom: 17px;
	text-transform: uppercase;
	font-weight: bold;
}

.custom-logos__list-item__content-text p {
	font-size: 16px;
	line-height: 22px;
	margin-bottom: 22px;
	font-weight: 400;
}

.custom-logos__list-item__content-text p:last-child {
	margin-bottom: 0;
}

.custom-logos__list-item__content-text a {
	color: #007708;

}

.titles-with-image {
	display: flex;
	width: 100%;
	justify-content: space-between;
}

.titles-wrap {
	max-width: 770px;
	width: 100%;
}

.titles-image__wrap {
	max-width: 300px;
	width: 100%;
	margin-top:-50px;
	z-index: -1;
}

.titles-image__wrap img {
	width: 100%;
}

.top-page__menu-row__intro-fullwidth.with-two-columns {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;

}

.wordpress-content iframe {
	width: 100%;
	height: 354px;
}

section.top-page-with-menu.section-padding-bottom {
	padding-bottom: 130px;
}

.residence-circle-image {
	margin-top: -160px;
	z-index: -1;
}

.colls-adapt {
	display: flex;
	gap: 30px;
	justify-content: space-between;
}

.content-coll {
	width: 100%;
}

.coll-960 {
	max-width: 960px;
}

.coll-300 {
	max-width: 300px;
}

.downloads-content__item:not(:last-child) {
	margin-bottom: 15px;
}

.content-image-text {
	width: 100%;
	max-width: 100%;
	display: flex;
	gap: 23px;
	justify-content: flex-start;
	margin-bottom: 35px;
}

.content-image-text img {
	max-width: 30%;
	max-width: 100%;
}


.content-image-text img {
	margin: 0;
}

.page-top__intro {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.page-top__intro-column {
	max-width: 630px;
	width: 100%;
}

.page-top__intro-column p {
	font-size: 18px;
	line-height: 28px;
	color: #000;
	margin-bottom: 28px;
}

.page-top__intro-column > :last-child {
	margin-bottom: 0;
}


.hidden-collect-mobile {
	display: none;
}

.abc-letter {
	cursor: pointer;
}
.slider-swiper__arrow {
	display: none;
}

.collectes-list__item-top_wrap {
  max-height: 500px;
  overflow: hidden;
  position: relative;
  transition: max-height 0.3s ease;

}

/* Оверлей в нижней части блока */
.expand-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50px;
  background: linear-gradient(to top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
  cursor: pointer;
  display: none; /* по умолчанию скрыт */
  align-items: center;
  justify-content: center;
}

/* Если блок раскрыт, оверлей отображается */
.collectes-list__item-top_wrap.expandable .expand-overlay {
  display: flex;
}

/* Черная стрелка внутри оверлея */
.expand-overlay .arrow {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #000;
  transition: transform 0.3s ease;
  /* По умолчанию стрелка направлена вниз */
  transform: rotate(0deg);
  animation: arrowMove 1s infinite;
}

/* При раскрытии блок получает класс expanded – стрелка поворачивается на 180 градусов */
.collectes-list__item-top_wrap.expanded .expand-overlay .arrow {
  transform: rotate(180deg);
}

/* Анимация стрелки */
@keyframes arrowMove {
  0% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
  100% { transform: translateY(0); }
}

.collectes-container__wrap {
	height: auto!important;
}

.collect-list__item-calendar__day-column {
	width: auto;
}

.collect-list__item-calendar__day-row {
	justify-content: flex-start;
	display: flex;
}

.collectes-permanente__item-calendar__row {
	display: flex;
	gap: 15px;
}

.collectes-permanente__item-phone span {
	color: #007708;
	font-weight: bold;
}

.collectes-permanente__item-top {
	text-transform: uppercase;
}

.collect__stations__map {
	height: 551px;
}
.map__SDK {
	height: 100%;
}

.dictionarie-section {
	width: 100%;
	padding-top: 35px;
	background: #F2FFF4;
	position: relative;
}

.main-dictionarie .breadcrumbs-section{
	background: #F2FFF4;
}
.dictionarie-container {
	max-width: 1570px;
	width: 100%;
	margin: 0 auto;

}

.dictionarie-container .basic-section__title {
	width: 100%;
	margin-bottom: 37px;
}

.dictionary-filter__row {
	display: flex;
	flex-wrap: wrap;
	gap: 52px;
	align-items: center;
	margin-bottom: 80px;
}

.dictionary-categories__filter {
  display: flex;
  align-items: center;
	gap: 30px
}

/* Каждый кастомный радио-блок */
.custom-radio {
  display: inline-flex;
  align-items: center;
  cursor: pointer; /* Курсор "рука" при наведении */
  user-select: none; /* Запрет выделения текста */
  position: relative;
}

/* Скрываем нативный radio */
.custom-radio input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* Кастомный кружок */
.radio-checkmark {
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 1px solid #007708; /* Цвет обводки для неактивного состояния */
  border-radius: 50%;
  margin-right: 12px;
  box-sizing: border-box;
  transition: all 0.2s ease;
	position: relative;
}

.radio-checkmark:before {
	content: '';
	width: 18px;
	height: 18px;
	position: absolute;
	transition: all 0.2s ease;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #007708;
	display: block;
	border-radius: 9px;
	transition: .3s ease-in-out;
	opacity: 0;
}

/* Когда радио выбрано — заливаем кружок зелёным */
.custom-radio input[type="radio"]:checked ~ .radio-checkmark:before {
  opacity: 1;
}

/* Текст радио */
.radio-label {
  font-size: 18px;
	line-height: 28px;
	font-weight: bold;
  color: #000000;
}

/* Пример стиля для иконки "!" (Produits problématiques) */
.icon-alert {
  display: inline-block;
  margin-left: 0.3rem;
  background: #1f8f40; /* Зелёный кружок, можно поменять цвет */
  color: #fff;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  font-size: 0.8rem;
  text-align: center;
  line-height: 1.2rem;
  font-weight: bold;
}

.dictionary-list-wrap {
	width: 100%;
	display: block;
}

.dictionary-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 65px 94px;
}

.dictionary-list__item {
	width: 100%;
	max-width: 460px;
	border-radius: 22px;
	background: #fff;
	box-shadow: 0px 0px 40px #D0F3D6;
	position: relative;
	display: flex;
	align-items: center;
	height: 110px;
	padding-right: 84px;
}

.dictionary-list__item-link {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.dictionary-list__item-name {
	max-width: 265px;
	width: 100%;
	height: 100%;
	padding-left: 23px;
	padding-right: 23px;
	padding-top: 15px;
	padding-bottom: 15px;
	display: flex;
	align-items: center;
	font-size: 18px;
	line-height: 24px;
	font-weight: bold;
	color: #000000;
}

.dictionary-list__item-image {
	width: 100%;
	max-width: 110px;
	height: 100%;
}

.dictionary-list__item-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.dictionary-list__item-danger {
	position: absolute;
	width: 100%;
	max-width: 84px;
	height: 100%;
	right: 0;
	top: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.dictionary-list__item-danger img {
	width: 29px;
	height: 33px;
}

.dictionary-list-wrap {
	padding-bottom: 133px;
}

.dictionary-filter__row .enterprices-filter__search form {
	justify-content: flex-start;
	gap: 15px;
}

.dictionary-filter__row .enterprices-search__wrap {
	max-width: 411px;
}

.dictionary-filter__row .enterprices-search__wrap .enterprices-input {
	height: 46px;
	border-radius: 23px;
	padding-left: 42px;
}

.dictionary-filter__row .enterprices-search-submit {
	height: 100%;
	width: 42px;
	background-size: 21px;
}

.dictionarie-abc {
	position: absolute;
	left: 18px;
	top: 160px;
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.dictionarie-abc span {
	font-size: 14px;
	line-height: 14px;
	text-transform: uppercase;
	color: #B6B6B6;
	font-weight: bold;
	width: 24px;
	height: 24px;
	transition: .3s ease-in-out;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	cursor: pointer;
}

.dictionarie-abc span.active {
	color: #fff;
	background: #007708;
}

.dictionary-list__hidden {
  display: none;
}

.dictionary-head__row {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 68px;
}

.dictionary-head__row h1 {
	max-width: 960px;
	width: 100%;
	margin-bottom: 0;
}

.button-return__glob {
	border-radius: 10px;
	font-size: 18px;
	line-height: 19.2px;
	font-weight: bold;
	color: #fff;
	align-items: center;
	justify-content: center;
	display: flex;
	padding: 8px 25px;
	transition: .3s ease-in-out;
	background: #000;
	border: 1px solid transparent;
	cursor: pointer;
	text-transform: uppercase;
}

.button-return__glob:hover {
	border-color: #000;
	color: #000;
	background: #fff;

}

.main-single-dictionary {
	background: #F2FFF4;
}

.dictionary-content__main {
	display: flex;
	width: 100%;
	max-width: 1290px;
	gap: 20px;
}

.dictionary-single__aside {
	max-width: 300px;
	width: 100%;
}

.product__dictionary__header {
	width: 100%;
	max-width: 100%;
	margin-bottom: 49px;
}

.product__dictionary__single__hero {
	max-width: 260px;
	width: 100%;
	height: auto;
}

.dictionary-links__wrap {
	display: flex;
	flex-direction: column;
	width: 100%;
	gap: 15px;
	margin-bottom: 20px;
}

.products__dictionary__infos {
	width: 100%;

}
.products__dictionary__infos__title {
	font-size: 20px;
	color: #007708;
	font-weight: bold;
	line-height: 28px;
	margin-bottom: 15px;
	text-align: left;
}

.dictionary__children__grid {
	display: flex;
	width: 100%;
	flex-direction: column;
	gap: 32px;
}

.dictionary-single__bottom-left {

	max-width: 460px;
	width: 100%;
}

.dictionary-single__bottom-right {
	max-width: 460px;
	width: 100%;
}

.dictionary-single__bottom {
	display: flex;
	justify-content: space-between;
	padding-top: 76px;
}

.products__dictionary__substances {
	width: 100%;
	max-width: 100%;
}

.dictionary-bottom__title {
	font-size: 25px;
	line-height: 28px;
	color: #007708;
	font-weight: bold;
	margin-bottom: 44px;
}

.products__substances__icons{
	max-width: 100%;
	width: 100%;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0px 0px 20px #A4DCAE;
	padding: 23px 45px 30px 25px;
}

.products__substances__icon {
	display: flex;
	gap: 20px;
	align-items: center;
	width: 100%;
	margin-bottom: 13px;
}

.products__substances__icon img {
	width: 100%;
	max-width: 73px;
	height: auto;
}

.products__substances__icon p {
	font-size: 16px;
	line-height: 20px;
	font-weight: 400;
	color: #000000;
}

.products__substances__icon:last-of-type {
	margin-bottom: 48px;
}

.products__dictionary__substances__button{
	margin-top: 48px;
	font-size: 14px;
	line-height: 20px;
	font-weight: bold;
	display: block;
	width: 100%;
	text-align: center;
}

.main-single-dictionary {
	padding-bottom: 95px;
}

.dictionary-single__bottom .dictionary-list__item {
	box-shadow: 0px 0px 40px #A4DCAE;
}

.dictionary-single__right {
	max-width: 960px;
	width: 100%;
}

/* old blocks new styles */
.header-icon__title, .basic-wp-content h2  {
	font-size: 35px;
	font-weight: bold;
	color: #007708;
	line-height: 35px;
	margin-bottom: 30px;
}



.basic-wp-content p {
	font-size: 18px;
	line-height: 25px;
	margin-bottom: 30px;
	font-weight: 400;
}

.basic-wp-content > * {
	margin-bottom: 30px;
}

.basic-wp-content > *:last-child {
	margin-bottom: 0;
}

.footnotes {
	margin-top: 50px;
}



.basic-wp-content a {
	color: #007708;
}

.highlightbox {
	padding: 32px 25px 31px 40px;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0px 0px 20px #A4DCAE;
	margin-bottom: 40px;
}

.basic-wp-content li {
	padding-left: 18px;
	font-size: 18px;
	line-height: 20px;
	margin-bottom: 20px;
	position: relative;
}

.basic-wp-content ul li:before {
	background-color: #000;
	content: "";
	width: 5px;
	height: 5px;
	min-width: 5px;
	border-radius: 50%;
	display: block;
	position: absolute;
	top: 8px;
	left: 0;
}

.basic-wp-content ul {
	margin-top: 0;
	padding-left: 12px;
	margin-bottom: 20px;

}


.footnotes__title {
	color: #007708;
	font-size: 25px;
	line-height: 28px;
	font-weight: bold;
	margin-bottom: 30px;
}

.footnotes__items {
	padding-left: 15px;
}

.footnotes__item sup {
	font-size: 16px;
}

.footnotes__item {
	margin-bottom: 15px;
}
.footnotes__item a {
	color: #007708;
	font-size: 18px;
	line-height: 20px;
}

.highlightbox > *:last-child {
	margin-bottom: 0;
}

.wp-block-media-text__content > *:last-child {
	margin-bottom: 0;
}

.post-thumbnail-caption {
	font-size: 14px;
	line-height: 18px;
	font-weight: 400;
	
}


section.actualite-inner {
	padding-bottom: 82px;
}

.actualite-inner__intro {
	width: 100%;
	max-width: 100%;
	display: flex;
	justify-content: space-between;
	gap: 15px;
	margin-bottom: 75px;
}

	
.actualite-inner__intro-left {
	max-width: 630px;
	width: 100%;
	padding-top: 50px;
}

.actualite-inner__intro-left .button-return__glob {
	margin-bottom: 82px;
	width: max-content;
	max-width: 100%;
}

.actualite-inner__intro-left h1 {
	margin-bottom: 10px;
}

.post-publish__date {
	font-size: 16px;
	line-height: 28px;
	color: #33A047;
	margin-bottom: 52px;
	font-weight: bold;
}

.actualite-short__description {
	font-size: 18px;
	line-height: 28px;
	font-weight: bold;
	width: 100%;
}

.actualite-inner__intro-right {
	max-width: 960px;
	width: 100%;
}

.actualite-inner__intro-right img {
	width: 100%;
	max-width: 100%;
	height: auto;
}

.post-thumbnail-caption {
	font-size: 14px;
	line-height: 18px;
	font-weight: 400;
	padding: 15px;
	font-weight: bold;
}

.blockimagetext {
	display: flex;
}

.actualite-inner__content-old {
	margin-bottom: 50px;
}
.actualite-inner__content-old .blockimagetext  {
	width: 100%;
	display: flex;
	justify-content: space-between;
	
}

.actualite-inner__content-old .blockimagetext .block__content {
	max-width: 630px;
	width: 100%;
}

.actualite-inner__content-old .blockimagetext  img {
	max-width: 960px;
	width: 100%;
}

.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.actualite-inner__content-old .blockimagetext.image__on__left {
	flex-direction: row-reverse;
}

.actualite-inner__content-old .blockimagetext.image__on__left img  {
	max-width: 630px;
	width: 100%;
}

.actualite-inner__content-old .blockimagetext.image__on__left .block__content  {
	max-width: 960px;
	width: 100%;
}

.blockimagetext__hero {
	display: none;
}

.content-old p {
	font-size: 18px;
	line-height: 28px;
	margin-bottom: 28px;
}

.content-old > *:last-child {
	margin-bottom: 0;
}

.block__content > *:last-child {
	margin-bottom: 0;
}

.content-old h2 {
	font-size: 35px;
	line-height: 40px;
	font-weight: bold;
	color: #007708;
	margin-bottom: 35px;
}

.content-old h2 a {
	color: #007708;
}

.content-old > * {
	margin-bottom: 50px;
}

.custom-content__row {
	display: flex;
	justify-content: space-between;
	gap: 15px;
}

.custom-content__row.two-columns .custom-content__column:first-child {
	max-width: 630px;
	width: 100%;
}

.custom-content__row.two-columns .custom-content__column:last-child {
	max-width: 960px;
	width: 100%;
}

.custom-content__row.three-columns .custom-content__column:first-child {
	max-width: 630px;
	width: 100%;
}

.custom-content__row.three-columns .custom-content__column:nth-child(2) {
	max-width: 630px;
	width: 100%;
}

.custom-content__row.three-columns .custom-content__column:nth-child(3) {
	max-width: 300px;
	width: 100%;
}

.custom-content__row.one-columns .custom-content__column {
	max-width: 100%;
	width: 100%;
}

.custom-content__column figure {
	max-width: 100%;
}

.leaflet-container a.leaflet-popup-close-button {
	color:#fff!important;
	font: 20px/18px Tahoma, Verdana, sans-serif;
	right: 5px;
}

.small-green-box-content-type-dark {
	padding: 25px;
	background: #007708;
	color: #fff;
	font-size: 18px;
	line-height: 28px;
	border-radius: 10px;
	width: 100%;
	margin-bottom: 15px;
}

.smalll-green-box-content-type2 {
	padding: 25px;
	background: #D0F3D6;
	border-radius: 10px;
	width: 100%;
	font-size: 18px;
	line-height: 28px;
	margin-bottom: 15px;
}

.small-green-box-content-type-dark > *, .smalll-green-box-content-type2 > * {
	margin-bottom: 28px;
}

.small-green-box-content-type-dark > *:last-child, .smalll-green-box-content-type2 > *:last-child  {
	margin-bottom: 0;
}

.custom-content__column p {
	font-size: 18px;
	line-height: 28px;
	margin-bottom: 28px;
}

.custom-content__column > * {
	margin-bottom: 28px;
}

.custom-content__column > *:last-child {
	margin-bottom: 0;
}

.custom-content__column li {
	padding-left: 18px;
	font-size: 18px;
	line-height: 20px;
	margin-bottom: 20px;
	position: relative;
}

.custom-content__column ul li:before {
	background-color: #000;
	content: "";
	width: 5px;
	height: 5px;
	min-width: 5px;
	border-radius: 50%;
	display: block;
	position: absolute;
	top: 8px;
	left: 0;
}

.custom-content__column ul {
	margin-top: 0;
	padding-left: 12px;
	margin-bottom: 20px;

}

.custom-content__column img {
	max-width: 100%;
	height: auto;
}

.page-intro__left-long {
	max-width: 1290px;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}

.page-intro-section__left {
	max-width: 830px;
	width: 100%;

}

.top-page-padding {
	padding-left: 50px;
}

.menu-row__small-gap {
	gap: 25px;
}

.page-intro-section__left h1 {
	margin-bottom: 20px;
}

.page-intro-section__left h3 {
	font-size: 35px;
	line-height: 30px;
	font-weight: bold;
	margin-bottom: 25px;
	text-transform: uppercase;
}

.page-intro-section__left p {
	font-size: 18px;
	line-height: 28px;
	max-width: 571px;
	width: 100%;
}

.page-intro-section__right {
	max-width: 415px;
	width: 100%;
}

.page-intro-section__right img {
	max-width: 100%;
}

.page-intro__bottom {
	margin-top: 35px;
	width: 100%;
	max-width: 960px;
}

.page-intro__bottom p {
	font-size: 18px;
	line-height: 28px;
}

.page-intro__bottom a {
	color: #007708;
}

.page-intro-section {
	padding-bottom: 35px;
}



.shop-main-content .basic-content {
	max-width: 960px;
	width: 100%;
	margin-bottom: 35px;
}

.shop-green__list-wrap {
	max-width: 100%;
	width: 100%;

}

.shop-green__list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

.shop-green__list-item {
	height: 128px;
	width: 100%;
	position: relative;
	border-radius: 10px;
	overflow: hidden;
	display: flex;

}

.shop-green-list__item-image {
	max-width: 70px;
	width: 100%;
	height: 100%;
	background: #FFFFFF;
}

.shop-green-list__item-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.shop-green-list__item-content {
	width: 100%;
	max-width: 230px;
	background: #D0F3D6;
	transition: .3s ease-in-out;
	display: flex;
	padding: 15px;
	align-items: center;
	justify-content: flex-start;
}

.shop-green__list-item:hover .shop-green-list__item-content {
	 background: #A4DCAE;
}

.shop-green-list__item-content h5 {
	font-size: 20px;
	font-weight: bold;
	line-height: 25px;
}

.shop-green__list-item__link {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.single-inner__retour {
	padding: 10px 31.5px;
	background: #000;
	transition: .3s ease-in-out;
	border-radius: 10px;
	color: #fff;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 16px;
	line-height: 16px;
	width: max-content;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
	margin-top: 55px;
	border: 1px solid transparent;
	height: auto;
	cursor: pointer;
}

.single-inner__retour:hover {
	color: #000;
	border-color: #000;
	background: #fff;
}

.top-page-menu__single-page-wrap {
	max-width: 300px;
	width: 100%;
}

.top-page__single-shop-right {
	display: flex;
	max-width: 1290px;
	width: 100%;
	justify-content: space-between;
	gap: 10px;
}

.single-greenshop__left {
	max-width: 935px;
	width: 100%;
}

.single-greenshop__left h1 {
	margin-bottom: 65px;
	padding-left: 50px;
}

.sigle-greenshop__right {
	max-width: 300px;
	width: 100%;
}

.single-greenshp__img {
	max-width: 100%;
	width: auto;
	margin-bottom: 145px;

}

.single-greenshop__files .downloads-content__item {
	margin-bottom: 12px;
	width: 100%;
	max-width: 100%;
}

.single-greenshp__img img {
	max-width: 100%;
	width: auto;
	height: auto;
}

.single-greenshop__left .basic-content > * {
	margin-bottom: 35px;
}

.single-greenshop__left .basic-content > *:last-child {
	margin-bottom: 0;
}

.single-greenshop__left .basic-content h3 {
	text-transform: uppercase;
}

.main-single-greenshop .page-intro-section {
	padding-bottom: 75px;
}

.content__row, .content__row.one-columns {
	width: 100%;
	max-width: 100%;
}

.content__row {
	margin-bottom: 50px;
}

.content__row.two-columns {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}

.content__row.three-columns {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;

}

.media-hide {
	display: none !important;
}

section.section-shops-content .container {
	padding-left: 20px;
}

.shop-map {
	width: 100%;
	height: 550px;
	/* margin-top: -240px; */
	position: relative;
	z-index: -1;
}

.magasines-intro-section .page-top__intro {
	align-items: flex-start;
	padding-top: 20px;
}

.shop-places-intro {
	display: flex;

}

.shop-places-logo {
	max-width: 300px;
	width: 100%;
	position: relative;
	z-index: 2;
	margin-top: 15px;
}

.shop-places-intro h1 {
	max-width: 925px;
}

.magasines-intro-section {
	position: relative;
	z-index: 2;
}

.shop-places-logo img {
	width: 100%;
	height: auto;
}

.map-container {
	width: 100%;
	height: 100%;
}

.map-container  img {
	width: 100%;
	max-width: 100%;
	height: 100%;
}

.section-shops-content {
	padding-top: 25px;
}

.shops-search-wrap {
	padding-left: 380px;
	margin-bottom: 55px;
}

.shop-magasins__list {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 30px;
}


.shops-magasins__list-item {
	width: 100%;
	padding: 22px 17px 10px 13px;
	border-radius: 10px;
	background: #E5FFE9;

}

.shops-magasins__list-item h5 {
	font-size: 18px;
	line-height: 20px;
	text-transform: uppercase;
	color: #007708;
	margin-bottom: 16px;
	font-weight: bold;
}

.shop-magasins__list-item__address {
	display: flex;
	gap: 10px;
	align-items: flex-start;
}

.shop-magasins__list-item__address img {
	width: 12px;
	padding-top: 2px;
}

.shop-magasins__list-item__address p {
	font-size: 16px;
	line-height: 20px;
	color: #000;
	font-weight: 400;
}

.shop-magasins__list-item__address a {
	color: #000;
}

.new-link__block {
	display: block;
	padding: 12px 60px; 
	background: #D0F3D6;
	border-radius: 10px;
	font-size: 16px;
	line-height: 22px;
	color: #000!important;
	font-weight: bold;
	position: relative;
	margin-bottom: 30px;
	height: max-content;
	cursor: pointer;
	transition: .3s ease-in-out;
	border: 1px solid transparent;
	width: max-content;
	max-width: 100%;
}

.green-box-content-type2 .new-link__block  {
	background: #E5FFE9;
}

.new-link__block:hover {
	background: #fff;
	border-color: #007708;
	color: #007708;
}

.link-block:before {
	content: '';
	width: 33px;
	height: 24.2px;
	background: url(../images/go-icon.svg) no-repeat;
	background-size: contain;
	position: absolute;
	left: 13px;
	top: 0;
	bottom: 0;
	margin: auto 0;
}

.email-block:before {
	content: '';
	width: 34px;
	height: 26px;
	background: url(../images/email-icon.svg) no-repeat;
	background-size: contain;
	position: absolute;
	left: 13px;
	top: 0;
	bottom: 0;
	margin: auto 0;
}


.download-block:before {
	content: '';
	width: 29px;
	height: 24.2px;
	background: url(../images/download-icon.svg) no-repeat;
	background-size: contain;
	position: absolute;
	left: 14.2px;
	top: 0;
	bottom: 0;
	margin: auto 0;
}

.enterprice-section {
	padding-top: 30px;
}

.enterprices-loadmore {
	margin-top: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.enterprices-loadmore button {
	font-size: 18px;
	line-height: 18px;
	background: #000;
	border: 1px solid transparent;
	color: #fff;
	font-weight: bold;
	padding: 7px 50px;
	border-radius: 10px;
	transition: .3s ease-in-out;
}

.enterprices-loadmore button:hover {
	border-color: #000;
	background: #fff;
	color: #000;
}

.fullwidth-section__col {
	max-width: 630px;
	width: 100%;
}

.fullwidth-section__col img {
	max-width: 100%;
	width: auto;
	height: auto;
}

.fullwith-section__intro {
	display: flex;
	justify-content: space-between;
}

section.section-commune {
	padding-top: 50px;
	padding-bottom: 100px;
}

.fullwidth-section__row {
	width: 100%;
	max-width: 100%;
	display: flex;
	justify-content: space-between;
}

.commune-title, .simulator-title {
	font-size: 35px;
	line-height: 40px;
	margin-bottom: 30px;
	font-weight: bold;
	color: #007708;
}

.top-page__menu-row__intro-box__left .new-link__block {
	max-width: 300px;
}

.menu-up .top-page__menu-wrap {
	position: relative;
	top: -290px;
	margin-bottom: -290px;
}


.akademie-items__list-item__description {
	display: none;
	padding-top: 10px;
}
.section-fullwidth-top__image {
	position: relative;
}

.section-image__logo {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;

}

.section-image__logo .container {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.logo-on__image {
	max-width: 250px;
	max-height: 150px;
}

.logo-on__image img {
	width: auto;
	max-width: 250px;
	max-height: 150px;
	height: auto;
}

.content-simulator {
	max-width: 960px;
}


.blockimagetext {
	flex-flow: row nowrap;
	justify-content: space-between;
	margin: 60px auto 60px auto;
}

/* .blockimagetext__hero {
	width: 50%;
	display: block;
} */
.blockimagetext.contain__image:not(.vertical) .block__content {
	margin-right: 60px;
	width: calc(100% - 440px);
	padding: 0;
  
}



.blockimagetext__hero__mobile {
	max-width: 480px;
	height: max-content;
	max-height: 100%;
}

.apropos-slide__item {
	height: 280px;
	width: 420px;
}

.apropos-slide__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}


.apropos-main .top-page__menu-wrap {
	position: relative;
	margin-top: -280px;
}


.philosophie-page .section-with-right-content{
	z-index: 2;
}

.philosophie-page section.top-page-with-menu {
	padding-bottom: 110px;
}

.protection-page section.top-page-with-menu {
	overflow: hidden;
	overflow: unset;
}

.custom-row-type1 .basic-content {
	margin-bottom: 50px;
}

.main-ayant .top-page__menu-row__intro-box__left {
	max-width: 572px;
}


.main-ayant .top-page__menu-row__intro-box__right {
	max-width: 630px;
}

.logos-separate-title .custom-logos__wrap {
	top: -30px;
}

.logos-section__title{
	position: absolute;
	top: -100px;
	font-size: 35px;
	font-weight: bold;
	line-height: 40px;
	color: #007708;
}

.logos-partenaires {
	top: 0;

}

.custom-logos__list-item {
	position: relative;
}

.partner-link__absolute {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.prestaires-block {
	margin-bottom: 80px;
}

.wordpress-content .new-link__block {
	max-width: 300px;
}

section.section-poubelle {
	padding-bottom: 130px;
}

.smallgap-wrap .top-page__menu-row__intro-box__left, .smallgap-wrap .top-page__menu-row__intro-box__right {
	max-width: 630px;
}

.eco-box__logo {
	margin-top: -100px;
}

.top-page__main-content {
	max-width: 100%;
	width: 100%;
}

.top-main__row {
	width: 100%;
	max-width: 100%;
	display: flex;
	justify-content: space-between;
	gap: 10px;
	position: relative;
	margin-bottom: 50px;

}

.top-main__row:last-child {
	margin-bottom: 0;
}

.top-main__column {
	max-width: 630px;
	width: 100%;
}

.top-main__column.one-colmn {
	max-width: 100%;
}

.top-page__main-content {
	margin-top: 64px;
}

.top-main__column__absolute {
	position: absolute;
	max-width: 1139px;
	width: 100%;
	right: -460px;
	top: -302px;
	z-index: -1;
}

.top-main__column__absolute img {
	width: 100%;
	height: auto;
}

.overflow-h {
	overflow: hidden;
}

.small-section-title {
	font-size: 35px;
	font-weight: bold;
	color: #007708;
	line-height: 40px;
	margin-bottom: 45px;
}



.how-it-works {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 30px;
}

.section-how-it .small-section-title  {
	padding-left: 330px;
}

.how__item{
	background: #D0F3D6;
	border-radius: 10px;
	padding: 19px 18px;
}

.how__item h4 {
	font-size: 25px;
	line-height: 30px;
	font-weight: bold;
	color: #007708;
	min-height: 65px;
	margin-bottom: 7px;
	text-transform: uppercase;
}

.how__item p {
	font-size: 18px;
	font-weight: bold;
	line-height: 24px;
}

section.basic-paddings {
	padding-top: 45px;
	padding-bottom: 55px;
}
.right-cotnent__row {
	display: flex;
	gap: 10px;
	justify-content: space-between;

}

.right-content__column {
	max-width: 630px;
	width: 100%;
}

.alignright {
	display: block;
	margin-left: auto;
}


.flex-align-center {
	align-items: center;
}

.image-shadow {
	padding: 10px 40px;
	background: #fff;
	position: relative;
	border-radius: 10px;
	box-shadow: 0px 3px 30px #D0F3D6;
}

.circular-top-row .top-page__menu-row__intro-box__left {
	max-width: 575px;
}

.circular-top-row .top-page__menu-row__intro-box__right {
	/* margin-top: -110px; */
}

.four-columns-max .right-cotnent__row {
	gap: 30px;
}

.top-page-with-menu__second-template .not-full-section__title {
	max-width: 735px;
}

.section-partners-potential .small-section-title {
	padding-left: 330px;
}

.partners-potential {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 30px;

}

.partners-potential__item {
	width: 100%;
	position: relative;
}

.partners-potential__image {
	width: 100%;
	height: 200px;
	background: #fff;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0px 3px 30px #D0F3D6;
	margin-bottom: 25px;
}

.partners-potential__image img {
	max-width: 90%;
	max-height: 90%;
	width: auto;
	height: auto;
}

.partners-potential__name {
	font-size: 18px;
	font-weight: bold;
	text-transform: uppercase;
	line-height: 22px;
	margin-bottom: 17px;

}


.partner-potential__file-block {
	display: flex;
	flex-direction: column;
	gap: 17px;
	margin-bottom: 18px;
}

.partners-potential__item > *:last-child {
	margin-bottom: 0;
}

.partner-potention__file-description{
	font-size: 16px;
	line-height: 22px;
	font-weight: 400;
}

.partner-potential-link {
	width: 100%;
	max-width: 100%;
	margin-bottom: 0;
}

/* content wp styles */

.basic-content p {
	font-size: 18px;
	line-height: 28px;
	margin-bottom: 25px;
}

.basic-content > * {
	margin-bottom: 25px;
}

.basic-content > *:last-child {
	margin-bottom: 0;
}
.basic-content ul {
	list-style: disc;
	padding: 0;

}

.basic-content h4 {
	font-size: 20px;
	text-transform: uppercase;
	font-weight: bold;
	line-height: 28px;
	margin-bottom: 0;
}

.basic-content ul li {
	position: relative;
	list-style: none;
	padding-left: 13px;
	font-size: 18px;
	line-height: 28px;

}

.basic-content ul li:before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #000;
}

.basic-content h2 {
	font-size: 35px;
	font-weight: bold;
	line-height: 40px;
	margin-bottom: 32px;
	color: #007708;
}

.basic-content h3 {
	font-size: 25px;
	font-weight: bold;
	line-height: 30px;
}

.basic-content a {
	color: #007708;
}

.basic-content ol {
	list-style: decimal;
}

.basic-content ol li {
	list-style: decimal;
	margin-bottom: 25px;
}

/* content wp styles */



.mobile-search__toggle, .mobile-site__menu, .mobile-menu__toggler {
	display: none;
}

.mobile-site__menu {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	padding-left: 73px;
	background: #fff;
	padding-top: 95px;
	padding-right: 20px;
	top: -20px;
	padding-bottom: 50px;
}

.mobile-site__menu:before {
	content: '';
	width: 60px;
	height: 100%;
	background-color: #D0F3D6;
	position: absolute;
	left: 0;
	top: 0;
}

.mobile-menu__close {
	position: absolute;
	right: 15px;
	top: 7px;
	cursor: pointer;
}

.mobile-menu__name {
	position: absolute;
	left: 0;
	width: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 35px;
	background: #33A047;
	border-radius: 0 20px 20px 0;
	color: #fff;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 25px;
	line-height: 25px;
	top: 30px;
}

.header-home__menu-name__mobile {
	font-size: 25px;
	color: #000;
	margin-bottom: 10px;
	font-weight: bold;
	line-height: 25px;
}

.mobile-menu__item-parent .menu-item-has-children > a, .header-home__menu-ul-mobile > li > a {
	font-size: 14px;
	line-height: 16px;
	font-weight: bold;
	color: #007708;
	font-size: 16px;
	line-height: 18px;
}

.header-home__menu-ul-mobile > li > a {
	text-transform: uppercase;
}



.header-home__menu-ul-mobile > li {
	padding-right: 40px;
	position: relative;
	margin-bottom: 10px;
}

.header-home__menu-ul-mobile > li:last-child {
	margin-bottom: 0;
}

.mobile-menu__item-parent .menu-item-has-children:before {
	content: '';
	width: 30px;
	height: 100%;
	background: url(../images/mobile-menu-arrow.svg) no-repeat;
	background-size: 9px 23px;
	background-position: center;
	position: absolute;
	right: 20px;
	max-height: 23.75px;
	top:0;
	transition: .3s ease-in-out;
}

.header-home__menu-ul-mobile li.menu-item-has-children.active:before {
	transform: rotate(90deg);
}

.mobile-menu__item-parent {
	margin-bottom: 27px;
}

.mobile-menu__item-parent .sub-menu {
	padding: 0;
	padding-top: 10px;
}

.mobile-menu-bottom__links {
	margin-top: 70px;
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-bottom: 20px;
}

.mobile-menu-bottom__links a {
	font-size: 18px;
	font-weight: bold;
	text-transform: uppercase;
	line-height: 18px;
}

.mobile-menu__bottom-socials {
	display: flex;
	gap: 30px;
	align-items: flex-end;
}

.mobile-menu__bottom-socials a {
	height: 20px;
	display: flex;
	align-items: flex-end;
}

.mobile-menu__bottom-socials a img {
	max-height: 100%;
	height: auto;
}

.mobile-site__menu.active {
	display: block;
}

.basic-row {
	max-width: 100%;
	width: 100%;
	display: flex;
	gap: 30px;
	margin-bottom: 50px;
	flex-wrap: wrap; /* на всякий случай */
}

.short-row {
	max-width: 960px;
}

.short-row .basic-row {
	flex-wrap: nowrap;
}

.short-row .basic-row .basic-content h4 {
	font-size: 18px;
	line-height: 22px;
	margin-bottom: 18px;
}

.short-row .basic-row .basic-content {
	height: 100%;
}

.short-row .basic-row .basic-content .green-box-content-type2 {
	height: 100%;
}

.short-row .basic-row .basic-content .green-box-content-type2 p {
	font-size: 16px;
	line-height: 22px;
}

.page-intro__bottom-not-full {
	max-width: 960px;
	width: 100%;
}

.basic-section__undertitle {
	max-width: 650px;
}

.basic-column {
	flex: 1 1 100%; /* по умолчанию 100% */
}

/* Если в row две колонки — задать им по 50% минус половина gap'а */
.basic-row > .basic-column:only-child {
	width: 100%;
	max-width: 100%;
}

.basic-row > .basic-column:nth-child(1):nth-last-child(2),
.basic-row > .basic-column:nth-child(2):nth-last-child(1) {
	width: 100%;
	max-width: calc(50% - 15px);
}

.basic-row.basic-row__two-col {
	display: grid;
	gap: 30px;
	grid-template-columns: repeat(2, 1fr);
}

.basic-row.basic-row__three-col {
	display: grid;
	gap: 30px;
	grid-template-columns: repeat(3, 1fr);
}

.basic-row.basic-row__four-col {
	display: grid;
	gap: 30px;
	grid-template-columns: repeat(4, 1fr);
}

.basic-row.basic-row__two-col .basic-column {
	max-width: 100%;
}


.basic-column .basic-content h4 {
	font-size: 20px;
	line-height: 28px;
	margin-bottom: 28px;
	text-transform: uppercase;
}

.leaflet-popup-content {
	margin: 10px;

	border-radius: 10px;
	color: #fff;
}

.leaflet-popup-content > strong {
	font-size: 18px;
	line-height: 28px;
	margin-bottom: 4px;
	text-transform: uppercase;
	color: #fff;
	display: block;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.leaflet-popup-content-wrapper, .leaflet-popup-tip {
	background: #33A047;
}

.leaflet-popup-content-wrapper .collectes-permanente__item-calendar {
	background: #33A047;
}

.leaflet-popup-content-wrapper .collectes-permanente__item-calendar__name {
	margin-bottom: 20px;
	font-size: 16px;
	line-height: 28px;
	font-weight: 400;
	color: #fff;
	text-align: center;
	text-transform: unset;
}

.leaflet-popup-content-wrapper .collectes-permanente__item-calendar__name a {
	color: #fff;

}

.leaflet-popup-content-wrapper .collectes-permanente__item-calendar__row-day, .leaflet-popup-content-wrapper .collectes-permanente__item-calendar__row-start-time, .leaflet-popup-content-wrapper .collectes-permanente__item-calendar__row-end-time {
	color: #fff;
}

.shop-page__intro-text {
	max-width: 60%;
}

.search-section {
	padding: 100px 0;
}

.search-section .container {
	padding-left: 330px;
	
}

.search-result-item {
	display: flex;
	gap: 20px;
	align-items: flex-start;
	margin-bottom: 30px;
}

.search-result-item__thumbnail {
	max-width: 300px;
	width: 100%;
	height: 200px;
}

.search-result-item__thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	border: 3px solid #33A047;
	padding: 20px;
	border-radius: 10px;
}

.search-result-item__title {
	font-size: 28px;
	color: #007708;
	font-weight: bold;
	line-height: 32px;
	margin-bottom: 10px;
	max-width: 80%;
}

.search-result-item__excerpt {
	max-width: 80%;
}

.nav-links a {
	color: #007708;
	
}

.nav-links span {
	font-weight: bold;
}

/* Скрытие стандартного крестика в Chrome, Edge, Opera */
input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
  display: none;
}

.clear-btn {
	border: 0;
	background: unset;
	color: #fff;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	font-size: 20px;
	font-weight: 400;
	display: none;
}

.print__only {
	display: none!important;
	all: unset;

}

@media print {
  body * {
    visibility: hidden;
  }
  .print__only, .print__only * {
    visibility: visible;
  }
  .print__only {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
		display: block!important;
  }
	.header-main,
  .site-footer,
  .no__print, .no-print {
    display: none !important;
  }
	blockquote {
		background-color: #A5DE6E;
		color: #045922;
		padding: 30px !important;
		border-radius: 8px;
		margin: 30px 0;
	}
	blockquote :first-child {
		margin-top: 0;
	}
	blockquote :last-child {
		margin-bottom: 0;
	}

	.page-main {
		padding-bottom: 0;
	}

	.print__logo {
		display: block;
		margin-bottom: 30px;
		margin-top:30px;
	}

	.print__only h1 {
		font-size: 70px;
    line-height: 70px;
    margin-bottom: 53px;
    font-weight: bold;
    color: #007708;
	}

	.highlightbox {
		padding: 15px;
    background: #A4DCAE;
		border-radius: 0;;
    /* border-radius: 20px; */
    box-shadow: unset;
    margin-bottom: 40px;
		font-weight: bold;
	}
}


.save-pdf-mode .dictionary-single__bottom {
  display: none; /* Скрыть дочерние элементы */
}

.save-pdf-mode .dictionary-content__main {
	flex-direction: column;
}


.save-pdf-mode .dictionary-single__right,
.save-pdf-mode .dictionary-single__aside {
  width: 100% !important;
  max-width: 100% !important;
  float: none;
}

.save-pdf-mode .dictionary-single__right > * {
  margin-bottom: 20px;
}

.save-pdf-mode .dictionary-links__wrap {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.save-pdf-mode .downloads-content__item,
.save-pdf-mode .products__dictionary__infos,
.save-pdf-mode .products__dictionary__downloads,
.save-pdf-mode .products__dictionary__externals {
  width: 100% !important;
}

.save-pdf-mode .products__substances__icons {
  flex-direction: column;
  gap: 20px;
}

.save-pdf-mode .products__substances__icon {
  width: 100%;
}

.save-pdf-mode .basic-wp-content {
  padding: 20px 0;
}

.save-pdf-mode h1, .save-pdf-mode h5 {
  text-align: center;
}

.save-pdf-mode img {
  max-width: 100%;
  height: auto;
}

.save-pdf-mode h5 {
	text-align: left;
}

.save-pdf-mode .button-return__glob {
	display: none;
}
.save-pdf-mode .product__dictionary__header img {
	max-width: 300px;
	display: block;
	margin-right: auto;
}

.save-pdf-mode .dictionary-section {
	padding: 30px;
}

.save-pdf-mode .js-sdk-print-page {
	display: none!important;
}
.save-pdf-mode #single-prod-dic-download {
	display: none!important;
}


.product__dic__tr__do div {
	display: flex;
	gap: 10px;
	margin-bottom: 10px;
	padding-left: 10px;
}

.product__dic__tr__do div button {
	background: unset;
	border: 0;
}

.header-main {
	position: relative;
	width: 100%;
	z-index: 999;
	transition: all 0.3s ease;
}

.header-main.fixed {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
	max-width: 1920px;
	margin-left: auto;
	margin-right: auto;
}


.custom-radio_inp {
	cursor: pointer;
	display: flex;
	gap: 26px;
	align-items: center;
}

.custom-radio_inp input[type="radio"] {
	display: none;
}

.radio-checkmark_inp {
	width: 15px;
	height: 15px;
	border: 1px solid #000000;
	border-radius: 0;
	position: relative;
}

.custom-radio_inp input[type="radio"]:checked + .radio-checkmark_inp {
	background: #33A047;
}

.newsletter-buttons__row {
	margin-bottom: 55px;
}

.newsletter-submit-button {
	font-size: 20px;
	line-height: 20px;
	padding: 8px 59px;
	background: #33A047;
	border-radius: 10px;
	color: #fff;
	text-transform: uppercase;
	font-weight: bold;
	box-shadow: 0;
	border: unset;
}

.newsletter-footer .basic-input::placeholder {
	text-transform: uppercase;
	color: #B6B6B6;
	font-weight: bold;
	font-size: 14px;
}

.radio-label_inp {
	font-size: 14px;
	line-height: 18px;
	color: #000;
	font-weight: bold;
	text-transform: uppercase;
}

.newsletter-footer .basic-input {
	height: 40px;
	font-size: 14px;
	padding: 11px 17px;
	border-radius: 10px;
	max-width: 300px;
	width: 100%;
}

.newsletter-box__left {
	max-width: 600px;
	width: 100%;
}

.newsletter-box__right {
	max-width: 344px;
	width: 100%;
}

.newsletter-box__right img {
	width: 100%;
	height: auto;
}

.newsletter-main__box {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

section.section-newsletter {
	padding-bottom: 180px;
}

.newsletter-response-message{
	font-size: 16px;
	line-height: 20px;
	color: #33A047;
	font-weight: bold;
	margin-top: 30px;
}

.error404 header, .error404 footer {
	display: none!important;
}

.not-found__container {
	max-width: 1200px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}

.not-found__container img {
	max-width: 100%;
	height: auto;
	width: 100%;
	display: block;
	margin-bottom: 30px;
}
h2.not-found__title {
	font-size: 30px;
	line-height: 30px;
	text-align: center;
	text-transform: uppercase;
	color: #33A047;
	font-weight: bold;
	margin-bottom: 35px;
}

.backhome {
	font-size: 18px;
	line-height: 18px;
	text-transform: uppercase;
	font-weight: bold;
	color: #fff;
	padding: 8.5px 33px;
	border-radius: 13px;
	display: block;
	width: max-content;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
	background: #33A047;
}

.backhome:hover {
	color: #fff;
}

main.page-not-found {
	min-height: 100vh;
	height: 100%;
	display: flex;
	align-items: center;
}

.dictionary-list__child-hidden {
  display: none;
}


/* temporary */

/* .langs-dropdown > .langs-dropdown__item:nth-child(3), .langs-dropdown > .langs-dropdown__item:nth-child(1) {
	display: none;
} */

.basic-content img {
	max-width: 100%;
}



.header-home__anim-item img {
	margin-left: auto;
	width: max-content;
	max-width: 100%;
	display: block;
}

.header-home__anim-item .imag-wrap {
	position: relative;
	width: max-content;
	height: 100%;
	margin-left: auto;
}

.header-home__anim-item .imag-wrap:after {
	content: '';
	left: 0;
	height: 100%;
	background: transparent linear-gradient(89deg, #7CE0BA 0%, #7CE0BA00 100%) 0% 0% no-repeat padding-box;
	width: 100%;
	top: 0;
	position: absolute;
	width: 100%;
}

.header-home__background-animation > div {
	overflow: hidden;
	background: #7CE0BA 0% 0% no-repeat padding-box;
}

/* .header-home__background-animation > div:after {
content: '';
	left: 50%;
	height: 100%;
	background: transparent linear-gradient(89deg, #7CE0BA 0%, #7CE0BA00 100%) 0% 0% no-repeat padding-box;
	width: 100%;
	top: 0;
	position: absolute;
	width: 50%;
} */




