/* USER VARIABLES SECTION */

:root {
	--accent: #2C4295;
	--text: #FFFFFF;
	--regular-text: 18px;
	--lineheight: 24px;
	--userfont: "basic-sans", sans-serif;
	--systemfont: -apple-system, BlinkMacSystemFont, Arial, sans-serif;
	--desktop: 100 / 1920;
	--mobile: 100 / 440;
  --bg: #2C42951A;
  margin-top:0!important;

}



/* FONTS LOAD SECTION */


/* @font-face { src: url("../fonts/DINNextLTPro-MediumCond.woff2") format("woff2"); font-family: "din-med-cond"; font-weight: 500; font-style: normal; font-display: swap; }
@font-face { src: url("../fonts/DINNextLTPro-BoldCondensed.woff2") format("woff2"); font-family: "din-bold-cond"; font-weight: 700; font-style: italic; font-display: swap; }
@font-face { src: url("../fonts/DINNextLTPro-Condensed.woff2") format("woff2"); font-family: "din-cond"; font-weight: 400; font-style: normal; font-display: swap; }
@font-face { src: url("../fonts/DINNextLTPro-Regular.woff2") format("woff2"); font-family: "din-reg"; font-weight: 400; font-style: normal; font-display: swap; }
@font-face { src: url("../fonts/DINNextLTPro-Bold.woff2") format("woff2"); font-family: "din-bold"; font-weight: 400; font-style: normal; font-display: swap; }
@font-face { src: url("../fonts/Gotham-Condensed-Book.woff2") format("woff2"); font-family: "gotham-book"; font-weight: 400; 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: 300;
	color: var(--text);
	font-optical-sizing: auto;
  font-style: normal;
}

.dongle {
  font-family: 'dongle', sans-serif;
  font-weight: 700;
}


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: 100%;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}


.container {
  max-width: 1118px;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 4;
}




.site-header__up .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.site-header__logo {
  max-width: 300px;
  width: 100%;
}

.site-header__logo img {
  width: 100%;
}

.site-header__socials {
  max-width: 100px;
  display: flex;
  align-items: center;
}

.social-linkedin {
  margin-right: 16px;
  margin-left: 8px;
}

.header-social__item {
  max-width: 23px;
  /* width: 100%; */
}

.header-email {
  max-width: 23px;
  height: 23px;
  width: 23px;
  background: #F2B300;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .2s ease-in-out;
  border-radius: 50%;
  position: relative;
}

.header-email:before {
  content: '';
  position: absolute;
  right: calc(100% + 8px);
  width: 2px;
  height: 23px;
  background: #2C4295;
  top: 0;
}

.header-email img {
  width: 13.58px;
}

.header-email:hover {
  background: #B04D96;

}

.site-header__up {
  padding-top: 37px;
  padding-bottom: 37px;
}


.site-header__languages {
  max-width: 60px;
  width: 100%;
}


.header-lang__active {
  width: 100%;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #F2B300;
  border-radius: 13px;
  color: #F2B300;
  font-size: 20px;
  line-height: 20px;
  font-family: 'dongle', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  padding-top: 2px;
  cursor: pointer;
}

.header-lang__dropdown {
  width: 100%;
  position: absolute;
  top: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: .1s ease-in-out;
  display: none;
}

.site-header__languages {
  position: relative;
}

.header-lang__dropdown-item {
  font-size: 20px;
  line-height: 20px;
  font-family: 'dongle', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #2C4295;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 23px;
  padding-top: 2px;
  cursor: pointer;
}

.site-header__languages:hover .header-lang__dropdown {
  visibility: visible;
  opacity: 1;
}

.site-header__bottom {
  background: #2C4295;

}

.site-header__bottom {
  position: relative;
  z-index: 9;
}

.site-header__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}



.header-search {
  max-width: 205px;
  width: 100%;
}

.header-search__form {
  width: 100%;
  position: relative;
}

.header-search__form input {
  height: 24px;
  border: 1px solid #fff;
  padding: 5px 28px 5px 8px;
  font-size: 13px;
  line-height: 16px;
  font-weight: 400;
  color: #fff;
  background: transparent;
  border-radius: 15px;
  width: 100%;
}

.header-search__form input::placeholder {
  font-size: 13px;
  line-height: 16px;
  font-weight: 400;
  color: #fff;
  opacity: 1;
  font-family: 'basic-sans', sans-serif;
}


.header-search__form button {
  border: 1px solid #fff;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2C4295;
  right: -1px;
}

.header-search__form button img {
  width: 6.37px;
}

.site-header__menu {
  display: flex;
  gap: 27px;
}

.header-menu__item > a {
  font-weight: 200;
  color: #fff;
  font-size: 18px;
  line-height: 22px;
  transition: .1s ease-in-out;
}

.current-menu-item > a {
  font-weight: 600;
}

.sub-menu {
  opacity: 0;
  visibility: hidden;
  transition: .1s ease-in-out;
  position: absolute;
  top: 100%;
  width: 235px;
  padding: 34px 12px 31px 38px;
  border: 2px solid #fff;
  border-top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
  background: #667BC9;
  z-index: 5;
  gap: 0;
}

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

.sub-menu li a:hover {
  color: #2C4295;
}

.header-menu__item {
  position: relative;
  padding-top: 7px;
  padding-bottom: 11px;
}

.header-menu__item:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}


.header-home__textbox {
  width: 100%;
  background: #667BC9;
  padding: 27px 0;
  padding-top: 30px;
}

.header-home__textbox-inner {
  font-size: 32px;
  line-height: 25px;
  max-width: 670px;
  width: 100%;
  color: #fff;
  font-family: 'Dongle', sans-serif;
  font-weight: 700;

}

.site-main {
  padding-top: 30px;
  position: relative;
}

.homepage-main {
  padding-top: 60px;
}

.home-sticky__box-wrap {
  max-width: 1920px;
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
  top: 60px;
  z-index: 5;
  pointer-events: none;
}

.home-sticky__box {
  position: sticky;
  top: 60px;
  left: 79.5833%;
  width: 253px;
  height: 450px;
  pointer-events: auto;
}

.home-sticky__content {
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: auto;
}

.home-sticky__content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-top-banner {
  width: 100%;
  position: relative;
  z-index: 2;
}


.home-top__banner-title {
  font-size: 14px;
  line-height: 17px;
  color: #2C4295;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.home-top__banner-item {
  display: block;
  width: 100%;

}

.home-top__banner-item img {
  width: 100%;
}

.home-top-banner {
  margin-bottom: 60px;
}

.home-intro {
  width: 100%;
}

.home-intro__first-row {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.home-intro__main-article {
  max-width: 808px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  position: relative;
}

.home-intro__main-article > a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.home-intro__main-article__left {
  max-width: 253px;
  width: 100%;
}

.header-intro__article-page {
  font-size: 32px;
  line-height: 32px;
  color: var(--accent);
  margin-bottom: 0;
  text-transform: uppercase;
  font-family: 'Dongle', sans-serif;
  font-weight: 700;
}

.header-intro__article-date {
  font-size: 14px;
  line-height: 17px;
  color: var(--accent);
  margin-bottom: 15px;
}

.header-intro__article-title {
  font-size: 50px;
  line-height: 30px;
  font-weight: 700;
  font-family: 'Dongle', sans-serif;
  margin-bottom: 15px;
  color: var(--accent);
}

.header-intro__article-description {
  font-size: 18px;
  line-height: 20px;
  color: var(--accent);
  margin-bottom: 14px;
}

.article-link {
  display: flex;
  gap: 12px;
  align-items: center;
  z-index: 1;
  position: relative;

}

.article-link span {
  font-size: 14px;
  text-transform: uppercase;
  line-height: 17px;
  font-weight: 600;
  color: var(--accent);
  padding-top: 2px;
}

.link-arrow {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  transition: .1s ease-in-out;
  border-radius: 50%;
}

.link-arrow img {
  width: 6.37px;
}


.article-link:hover .link-arrow {
  background: #667BC9;
}

.home-intro__article-image {
  max-width: 533px;
  width: 100%;
  height: 308px;
}

.home-intro__article-image img {
  width: 100%;
  height: 100%;
  border-radius: 154px;
  object-fit: cover;
}

.home-intro__right-news {
  max-width: 253px;
  width: 100%;
}

.home-intro__yellow-box {
  background: #F2B300;
  padding: 25px 17.2px;
  margin-bottom: 10px;
}

.home-intro__news-title {
  font-size: 50px;
  line-height: 25px;
  font-family: 'Dongle', sans-serif;
  color: #fff;
  margin-bottom: 23px;
  font-weight: 700;
}

.home-intro__right-news__list {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.home-intro__right-news__item {
  width: 100%;
  position: relative;
}

.home-intro__right-news__item:after {
  content: '';
  width: 100%;
  height: 2px;
  background: #fff;
  top: calc(100% + 24px);
  left: 0;
  position: absolute;
}

.home-intro__right-news__item:last-child:after {
  display: none;
}

.home-intro__right-news__item-date {
  padding: 0 10px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2C4295;
  font-size: 18px;
  line-height: 16px;
  font-family: 'Dongle', sans-serif;
  color: #fff;
  font-weight: 700;
  width: max-content;
  border-radius: 15px;
  padding-top: 2px;
  margin-bottom: 11px;
  transition: .1s ease-in-out;
}

.home-intro__right-news__item:hover .home-intro__right-news__item-date {
  background: #667BC9;
}

.home-intro__right-news__item-title {
  font-family: 'Dongle', sans-serif;
  color: #fff;
  font-weight: 700;
  font-size: 25px;
  line-height: 16px;

}

.home-intro__right-news__item {
  position: relative;
}

.home-intro__right-news__item a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}


.home-intro {
  margin-bottom: 45px;
}

.home-agenda-section {
  width: 100%;
}

.articles-row {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.articles-row__item-date {
  font-size: 14px;
  line-height: 17px;
  color: var(--accent);
  margin-bottom: 11px;
  text-transform: uppercase;
}

.articles-row__item-image {
  width: 100%;
  height: 160px;
}

.articles-row__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.articles-row__item-description {
  background: var(--accent);
  padding: 37px 9px 23px 9px;
  position: relative;
  height: 100%;
}

.articles-row__item-category {
  position: absolute;
  top: 0;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px 9px;
  height: 24px;
  padding-top: 4px;
  border-radius: 15px;
  font-size: 18px;
  font-weight: 700;
  font-family: 'Dongle', sans-serif;
  color: #fff;
  line-height: 16px;
  width: max-content;
  max-width: 100%;
  left: 9px;
  background: #667BC9;
}

.articles-row__item-short-description {
  font-size: 25px;
  line-height: 16px;
  font-weight: 700;
  color: #fff;
  font-family: 'Dongle', sans-serif;
  max-width: 204px;
}

.articles-row__item {
  position: relative;
  display: flex;
  flex-direction: column;
}

.articles-row__item > a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.home-agenda-section {
  margin-bottom: 46px;
}

.articles-voir-link {
  text-align: right;
  margin-top: 10px;
}


.articles-voir-link a {
  font-size: 13px;
  line-height: 16px;
  color: var(--accent);
  text-transform: uppercase;
  padding-right: 15px;
  position: relative;
}

.articles-voir-link a:after {
  content: '';
  width: 5.47px;
  position: absolute;
  top: 3px;
  right: 0;
  z-index: 1;
  background: url(../images/voir-arrow.svg) no-repeat;
  height: 9.88px;
  background-size: contain;
}

.home-tags__wrap {
  width: 100%;
  position: relative;
  padding-top: 19px;
  padding-bottom: 19px;
}

.home-tags__wrap > img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.home-tags__inner {
  position: relative;
  padding-left: 46px;
  padding-right: 46px;
  max-width: 810px;
  margin-left: auto;
  margin-right: auto;
  min-height: 128px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 172px;
}

.home-tags-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 46.99px;
}

.home-tags-right {
  position: absolute;
  right: 0;
  top: 0;
  width: 46.99px;
}

.home-tags__title {
  font-size: 50px;
  line-height: 30px;
  color: #fff;
  font-family: 'Dongle', sans-serif;
  font-weight: 700;
  height: 100%;
  display: flex;
  align-items: center;
  max-width: 245px;
}

.home-tags__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.home-tags__big {
  display: flex;
  gap: 7.8px;
}

.home-tags__big-item {
  background: #2C4295;
  border-radius: 20px;
  color: #fff;
  font-size: 38px;
  line-height: 38px;
  height: 40.28px;
  padding-left: 22px;
  padding-right: 22px;
  font-family: 'Dongle', sans-serif;
  padding-top: 4px;
}

.home-tags__small {
  display: flex;
  gap: 4.2px;

}

.home-tags__small-item {
  height: 24px;
  padding-left: 10px;
  padding-right: 10px;
  background: #707070;
  color: #fff;
  font-size: 18px;
  line-height: 18px;
  padding-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Dongle', sans-serif;
  border-radius: 15px;
  transition: .2s ease-in-out;
}

.home-tags__small-item:hover {
  background: #667BC9;
}

.home-tags-section {
  margin-bottom: 42px;
}

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

.basic-h2, .articles-list__title {
  font-size: 32px;
  color: var(--accent);
  line-height: 25px;
  font-family: 'Dongle', sans-serif;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.articles-list-section {
  margin-bottom: 67px;
}

.home-employ-section {
  background: #2C42951A;
}

.home-employ-section .container {
  display: flex;
  justify-content: space-between;
}

.home-employ__right {
  max-width: 522px;
  width: 100%;
  justify-content: center;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;

}

.home-emply__left {
  max-width: 531px;
  width: 100%;
  padding: 20px 18px;
  background: #B04D96;
}

.employ-box__title {
  font-size: 50px;
  line-height: 25px;
  color: #fff;
  font-weight: 700;
  font-family: 'Dongle', sans-serif;
  margin-bottom: 20px;
}

.home-employ__list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 60px;
  margin-bottom: 35px;

}

.home-employ__item {
  padding-bottom: 20px;
  border-bottom: 2px solid #fff;
}

.home-employ__item:nth-child(3), .home-employ__item:nth-child(4) {
  border-bottom: 0;
}

.home-employ__item-name {
  font-size: 14px;
  line-height: 17px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 10px;
}

.home-employ__item-description {
  font-size: 25px;
  line-height: 16px;
  color: #fff;
  font-weight: 700;
  font-family: 'Dongle', sans-serif;
}

.home-employ__others {
  font-size: 13px;
  line-height: 16px;
  color: var(--accent);
  text-transform: uppercase;
  padding-right: 15px;
  position: relative;
  width: max-content;
  max-width: 100%;
  margin-left: auto;
}

.home-employ__others:hover {
  color: #fff;
}

.home-employ__others:before {
  content: '';
  width: 5.47px;
  position: absolute;
  top: 3px;
  right: 0;
  z-index: 1;
  background: url(../images/voir-arrow-white.svg) no-repeat;
  height: 9.88px;
  background-size: contain;
}

.home-employ__right {
  position: relative;
}

.home-employ__right > img {
  width: 248px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: auto;
}

.home-employ__right-title {
  font-size: 50px;
  line-height: 30px;
  text-align: center;
  color: var(--accent);
  font-weight: 700;
  font-family: 'Dongle', sans-serif;
  margin-bottom: 15px;
  max-width: 365px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.home-employ__right-description {
  max-width: 380px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
  line-height: 20px;
  font-weight: 200;
  color: var(--accent);
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.home-employ__right-link {
  position: relative;
  z-index: 1;
}

.home-employ__right-link a {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  gap: 10px;
}


.home-employ__right-link span {
  font-size: 14px;
  line-height: 17px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  z-index: 1;
}

.home-employ__right-link:hover .link-arrow {
  background: #667BC9;
}

.home-employ-section {
  margin-bottom: 41.5px;
}

.newsletter-section {
  margin-bottom: 41.5px;
}

.newsletter-wrap {
  width: 100%;
  background: #667BC9;
  border-radius: 60px;
  padding: 25px 0;
}

.newsletter-wrap__description {
  font-size: 30px;
  line-height: 18px;
  color: #fff;
  font-weight: bold;
  font-family: 'Dongle', sans-serif;
  margin-bottom: 15px;
  text-align: center;
  max-width: 420px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  max-width: 260px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form input {
  width: 100%;
  height: 24px;
  padding: 5px 11px;
  padding-right: 32px;
  font-size: 13px;
  line-height: 16px;
  font-weight: 400;
  color: #2C4295;
  background: #fff;
  border: 1px solid var(--accent);
  border-radius: 15px;
}

.newsletter-form input::placeholder {
  font-size: 13px;
  line-height: 16px;
  font-weight: 400;
  color: #2C4295;
  font-family: 'basic-sans', sans-serif;
  opacity: 1;
}

input::placeholder,
textarea::placeholder {
  opacity: 1;
}


.newsletter-form form {
  position: relative;
  width: 100%;
}

.newsletter-form form button {
  width: 24px;
  height: 24px;
  position: absolute;
  right: -1px;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  border: 0;
  border-radius: 50%;
  transition: .2s ease-in-out;
}

.newsletter-form form button img {
  width: 6.37px;
}


.newsletter-form form button:hover {
  background: #667BC9;
}


.site-footer {
  width: 100%;
  background: var(--accent);
  padding-top: 40px;
  padding-bottom: 42px;
}

.footer-top {
  width: 100%;
  padding-bottom: 36px;
  border-bottom: 2px solid #fff;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15px;
}

.footer-logo {
  max-width: 260px;
  width: 100%;
}

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

.footer-contact {
  width: max-content;
  max-width: 100%;
  font-size: 18px;
  line-height: 16px;
  color: #fff;
  padding-left: 10px;
  padding-right: 10px;
  font-weight: 700;
  font-family: 'Dongle', sans-serif;
  transition: .2s ease-in-out;
  background: #B04D96;
  border-radius: 15px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 2px;

}

.footer-contact:hover {
  color: #fff;

}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding-top: 11px;
}

.footer-address {
  max-width: 398px;
  width: 100%;
  font-size: 18px;
  line-height: 22px;
  color: #fff;
  text-align: left;
}

.footer-bottom__right {
  max-width: 536px;
  width: 100%;
  text-align: right;
  display: flex;
  flex-direction: column;
}

.footer-bottom-links {
  width: 100%;
  display: inline-block;
}


.footer-bottom__link-item {
  display: inline;
  font-size: 15px;
  line-height: 18px;
  color: #fff;
}

.footer-bottom__copyright {
  font-size: 15px;
  line-height: 18px;
  color: #fff;
}

.breadcrumbs-section {
  margin-bottom: 30px;
}

.breadcrumbs {
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;

}

.breadcrumbs li {
  position: relative;
  color: var(--accent);
  font-size: 14px;
  line-height: 20px;
  display: flex;
  gap: 8px;
}

.breadcrumbs li a {
  font-size: 14px;
  line-height: 20px;
  color: var(--accent);
}


.section-article-content .container {
  display: flex;
  flex-direction: row-reverse;
}



.article-sticky__right {
  width: 253px;
  position: sticky;
  top: 0;
  top: 266px;
  left: calc(100% - 270px);
  height: max-content;
  box-shadow: 0px 3px 6px #00000029;
  padding: 13px 10px;
  padding-bottom: 27px;
  color: var(--accent);
}

.newsletter-form__message {
  font-size: 14px;
  line-height: 16px;
  width: 100%;
  text-align: center;
  margin-top: 15px;
}

.article-main-content {
  max-width: 809px;
  width: 100%;
  margin-right: auto;
}

.custom-article {
  margin-bottom: 28px;
}

.article-puble {
  font-size: 14px;
  line-height: 17px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.custom-top__title {
  font-size: 30px;
  line-height: 18px;
  font-family: 'Dongle', sans-serif;
  margin-bottom: 14px;
  font-weight: 700;

}

.custom-logo-box {
  max-width: 215px;
  width: 100%;
  margin-bottom: 28px;
}

.custom-logo-box img {
  max-width: 215px;
  width: auto;
  height: auto;
}

.custom-article__type {
  padding-top: 8px;
  padding-bottom: 8px;
  border-top: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  text-transform: uppercase;
  font-size: 14px;
  line-height: 17px;
}

.custom-articles__title {
  font-size: 30px;
  line-height: 18px;
  font-family: 'Dongle', sans-serif;
  font-weight: 700;
  margin-bottom: 25px;
}

.custom-articles__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.custom-articles__list-item-date {
  font-size: 14px;
  line-height: 17px;
  margin-bottom: 10px;
}

.custom-articles__list-item-title {
  font-size: 25px;
  line-height: 14px;
  font-family: 'Dongle', sans-serif;
  font-weight: 700;
  color: var(--accent);
}

.custom-articles__list-item-title a {
  color: var(--accent);
}



.fixed-link-more {
  text-align: left;
  margin-top: 27px;
}

.article-main__image {
  max-width: 670px;
  width: 100%;
  margin-left: 0;
  margin-right: auto;
  margin-bottom: 15px;
}

.article-main__image img {
  width: 100%;
  height: auto;
  border-radius: 213px;
  /* border-radius: 42% / 67%; */
}

.article-main-content {
  color: var(--accent);
}

.article-main__categories {
  display: flex;
  gap: 5px;
  margin-bottom: 30px;
}

.article-main__categories li {
  padding: 2px 10px 0 10px;
  border-radius: 15px;
  background: var(--accent);
  color: #fff;
  font-family: 'Dongle', sans-serif;
  font-weight: 700;
  height: 24px;
  transition: .2s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
}

.article-main__categories li:hover {
  background: #667BC9;
}

.article-main__title {
  font-size: 65px;
  line-height: 40px;
  font-weight: 700;
  font-family: 'Dongle', sans-serif;
  margin-bottom: 18px;
  max-width: 531px;
  width: 100%;
}

.article-main__short-description {
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  max-width: 670px;
  width: 100%;
}

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

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

.basic-content p {
  font-size: 18px;
  line-height: 20px;
}

.article-slider__wrap {
  margin-top: 45px;
  margin-bottom: 45px;
}

.article-slider__wrap {
  position: relative;
}

.article-slider {
  max-width: 683px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.article-slide {
  width: 100%;
}

.article-slide__image {
  width: 100%;
  margin-bottom: 38px;
  text-align: center;
}

.article-slide__image img {
  /* width: 100%; */
  height: auto;
  object-fit: cover;
  width: auto;
  max-width: 100%;
  max-height: 500px;
}

.article-slide__description {
  font-size: 16px;
  line-height: 20px;
  color: #707070;
  font-weight: 600;
  font-style: italic;
  width: 100%;
  padding-left: 13px;
  position: relative;
}

.article-slide__description:before {
  content: '';
  height: 100%;
  width: 2px;
  position: absolute;
  left: 0;
  top: 0;
  background: #707070;
}

.article-slider__dots {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  height: max-content;
  z-index: 2;
  top: calc(var(--article-image-height) + 15px)!important;
}

.members-spons__slider-wrap .article-slider__dots {
  top: calc(var(--article-image-height) + -11px) !important;
}

.membres-second-slider__wrap .article-slider__dots {
  bottom: -34px !important;
  top: unset !important;
}

.membres-second-slider__wrap .article-slider__prev, .membres-second-slider__wrap .article-slider__next {
  top: 50%;
}

.article-slider__wrap {
  /* padding-bottom: 30px; */
  --article-image-height: 400px;
}

.swiper-pagination-bullet {
  width: 16px!important;
  height: 16px!important;
  border-color: var(--accent)!important;
  background: transparent!important;
  border: 2px solid;
  opacity: 1!important;
}

.swiper-pagination-bullet-active {
  border-color: #F2B300!important;
}

.article-slider__next {
  position: absolute;
  right: 23px;
  top: 169px;
  top: 50%;
  background: var(--accent);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 2px;
  transition: .2s ease-in-out;

}

.article-slider__prev {
  position: absolute;
  left: 23px;
  top: 169px;
  top: 50%;
  background: var(--accent);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 2px;
  transition: .2s ease-in-out;
}

.article-slider__prev, .article-slider__next {
  top: calc(var(--article-image-height) / 2);
  transform: translateY(-50%);
}

.article-slider__prev:hover, .article-slider__next:hover {
  background: #667BC9;
}

.article-slider__prev img {
  transform: rotate(180deg);
}

.basic-content h2 {
  font-size: 20px;
  line-height: 22px;
  font-weight: 600;
  margin-bottom: 0;
}

.basic-content a {
  color: #b04c95;
}

.basic-content ul {
   list-style-type: disc;
   padding-left: 20px;
}

.basic-content ul li {
  list-style: inherit;
  padding-left: 0;
  margin-bottom: 5px;
}

.basic-content ul li:last-child {
  margin-bottom: 0;
}


.basic-content blockquote {
  text-align: center;
  max-width: 677px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 32px;
  margin-bottom: 32px;
}

.basic-content blockquote p {
  font-size: 40px;
  line-height: 20px;
  font-weight: 700;
  color: var(--accent);
  font-family: 'Dongle', sans-serif;
  margin-bottom: 23px;
}

.basic-content blockquote p:nth-child(2) {
  display: block;
  font-size: 18px;
  line-height: 20px;
  font-style: italic;
  font-weight: 600;
  color: var(--accent);
  font-family: 'basic sans', sans-serif;
}

.basic-content blockquote cite {
  display: block;
  font-size: 18px;
  line-height: 20px;
  font-style: italic;
  font-weight: 600;
  color: var(--accent);
}

.basic-content strong {
  font-weight: 600;
}

.article-main__editor {
  margin-bottom: 40px;
}

.tags-block {
  display: flex;
  gap: 5px;
  margin-bottom: 72px;
}

.tags-block__item {
  padding-left: 10px;
  padding-right: 10px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  color: #fff;
  font-family: 'Dongle', sans-serif;
  font-size: 18px;
  line-height: 18px;
  padding-top: 2px;
  background: #707070;
}

.tags-block__item:hover {
  color: #fff;
}

.employ-agenda__box {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.employ-box__wrap {
  max-width: 530px;
  width: 100%;
}

.employ-box__inner {
  width: 100%;
  background: #B04D96;
  padding: 20px 35px 35px 15px;
  margin-bottom: 13px;
  height: 180px;
}

.employ-box__title {
  color: #fff;
  font-size: 50px;
  line-height: 25px;
  font-weight: 700;
  font-family: 'Dongle', sans-serif;
  margin-bottom: 20px;
}

.employ-box__list {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.employ-box__list-item {
  max-width: 200px;
  width: 100%;
}

.employ-box__list-item-name {
  font-size: 14px;
  line-height: 17px;
  margin-bottom: 15px;
  color: #fff;
  text-transform: uppercase;
}

.employ-box__list-item-title {
  font-size: 25px;
  line-height: 16px;
  font-weight: 700;
  font-family: 'Dongle', sans-serif;
  color: #fff;
}

.articles-voir-link {
  color: var(--accent);
}

.text-left {
  text-align: left;
}

.agenda-box__wrap {
  max-width: 253px;
  width: 100%;
}

.agenda-box__inner {
  background: #F2B300;
  padding: 21px 30px 21px 15px;
  height: 180px;
  margin-bottom: 13px;
}

.agenda-box__title {
  font-size: 50px;
  line-height: 25px;
  font-family: 'Dongle', sans-serif;
  color: #fff;
  font-weight: 700;
  margin-bottom: 20px;
}

.agenda-box__date {
  height: 24px;
  border-radius: 15px;
  padding-left: 10px;
  padding-right: 10px;
  color: #fff;
  width: max-content;
  max-width: 100%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Dongle', sans-serif;
  font-size: 18px;
  line-height: 18px;
  padding-top: 2px;
  margin-bottom: 10px;
}

.agenda-box__description {
  font-size: 25px;
  line-height: 15px;
  font-weight: 700;
  font-family: 'Dongle', sans-serif;
  color: #fff;
}

.section-article-content {
  margin-bottom: 62px;
}

.articles-more-section {
  background: #2C42951A;
  padding-top: 40px;
  padding-bottom: 63px;
}

.articles-row__wrap {
  margin-bottom: 65px;
}

.articles-row__wrap.offre-row__wrap .agenda-list__item-img img {
  object-fit: contain;
  background: #fff;
}

.section-title-big {
  text-align: center;
  color: var(--accent);
  font-size: 50px;
  line-height: 25px;
  margin-bottom: 44px;
  font-weight: 700;
  font-family: 'Dongle', sans-serif;
  text-transform: uppercase;
}


.agenda-intro-section {
  background: #2C42951A;
  padding-top: 10px;
}

.agenda-main {
  padding-top: 0px;
}

.agenda-main .breadcrumbs-section {
  padding-top: 30px;
  background: #2C42951A;
  margin-bottom: 0;
  padding-bottom: 30px;
}

.agenda-intro__title {
  font-size: 50px;
  line-height: 25px;
  margin-bottom: 15px;
  text-align: center;
  font-weight: 700;
  font-family: 'Dongle', sans-serif;
  color: var(--accent);
}

.agenda-intro__slider-wrap {
  max-width: 100%;
  width: 100%;
  position: relative;
  padding-bottom: 52px;
}

.agenda-intro__slider {
  width: 100%;
}

.agenda-intro__slider {
  max-width: 978px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.agenda-slider__item {
  width: 100%;
  height: 350px;
  position: relative;
  padding: 35px 80px;
  background: #fff;
  color: var(--accent);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.agenda-slider__item > a {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}


.agenda-intro__slider {
  overflow: hidden;
}

.slider-top__tag {
  position: absolute;
  top: 9px;
  left: 9px;
  font-size: 14px;
  text-transform: uppercase;
  font-style: italic;
}

.agenda-slider__item-left {
  max-width: 260px;
  width: 100%;
}

.slide-date {
  font-size: 18px;
  line-height: 16px;
  color: #fff;
  padding: 2px 10px 0 10px;
  background: var(--accent);
  border-radius: 15px;
  font-weight: 700;
  font-family: 'Dongle', sans-serif;
  margin-bottom: 20px;
  width: max-content;
  max-width: 100%;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-title {
  font-size: 50px;
  line-height: 30px;
  font-weight: 700;
  font-family: 'Dongle', sans-serif;
  margin-bottom: 20px;
  color: var(--accent);
}

.slide-short__description {
  font-size: 18px;
  line-height: 20px;

}

.agenda-slider__item-right {
  max-width: 533px;
  width: 100%;
}

.agenda-slider__item-right img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}


.agenda-slider__next {
  position: absolute;
  right: 0px;
  top: 169px;
  background: var(--accent);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 2px;
  transition: .2s ease-in-out;

}

.agenda-slider__prev {
  position: absolute;
  left: 0px;
  top: 169px;
  background: var(--accent);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 2px;
  transition: .2s ease-in-out;
}

.agenda-slider__prev:hover, .agenda-slider__next:hover {
  background: #667BC9;
}

.agenda-slider__prev img {
  transform: rotate(180deg);
}

.agenda-slider__dots {
  display: flex;
  justify-content: center;
  padding-top: 10px;
}

.agenda-list-section {
  padding-top: 75px;
}

.section-title {
  font-size: 32px;
  line-height: 25px;
  color: var(--accent);
  margin-bottom: 22px;
  font-weight: 700;
  font-family: 'Dongle', sans-serif;
  text-transform: uppercase;
}

.membres-alphabet__search {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 50px;
}

.membres-alphabet__search * {
  font-family: 'Dongle', sans-serif;
  font-size: 30px;
  line-height: 18px;
  font-weight: bold;
  color: var(--accent);
  cursor: pointer;
}

.membres-alphabet__search span {
  text-transform: uppercase;
}

.membres-alphabet__search .active {
  color: #667BC9;
}

.agenda-filters__row {
  width: 100%;
  display: flex;
  gap: 50px;
  margin-bottom: 35px;

}

.agenda-filters__item {
  position: relative;
  padding-bottom: 10px;
}


.agenda-filter__name {
  font-size: 13px;
  line-height: 16px;
  font-weight: 400;
  color: var(--accent);
  cursor: pointer;
}

.agenda-filter__variations {
  width: 362px;
  background: #667BC9;
  padding: 18px 22px 26px 22px;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-flow: column;
  gap: 12px 21px;
  grid-template-rows: repeat(7, auto);
  position: absolute;
  top: 100%;
  left: 0;

}


.agenda-filter__checkbox input {
  display: none;
}

.agenda-filter__checkbox {
  position: relative;
}

.agenda-filter__checkbox label {
  padding-left: 25px;
  position: relative;
  cursor: pointer;
}

.agenda-filter__checkbox label:before {
  content: '';
  width: 15px;
  height: 15px;
  background: transparent;
  border: 1px solid #fff;
  position: absolute;
  left: 0;
  top: 2px;
}

.agenda-filter__checkbox input:checked + label:before {
  background: #fff;
}


.agenda-filter__variations {
  display: none;
}

.agenda-filter__variations.active {
  display: grid;
  z-index: 2;
}

.agenda-filter__checkbox label {
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}


.agenda-list__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.agenda-list__item {
  width: 100%;
}

.agenda-list__item-img {
  width: 100%;
  height: 161px;
}

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

.agenda-list__item-description {
  background: #F2B300;
  padding: 25px 8px;
  position: relative;
  padding-top: 35px;
  display: flex;
  align-items: flex-end;
  min-height: 110px;
}

.agenda-list__item-date {
  position: absolute;
  top: 0;
  left: 8px;
  transform: translateY(-50%);
  padding: 2px 10px 0 10px;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: 'Dongle', sans-serif;
  border-radius: 15px;
}

.agenda-list__item-title {
  font-size: 25px;
  line-height: 16px;
  color: #fff;
  font-weight: 700;
  font-family: 'Dongle', sans-serif;

}

.agenda-list-section {
  padding-bottom: 100px;
}

.agenda-list__item-old {
  filter: grayscale(1)
}

.agenda-single__intro {
  display: flex;
  gap: 0;
  align-items: stretch;
}

.agenda-single__intro-image {
  max-width: 531px;
  height: 298px;
  width: 100%;
}

.agenda-single__intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.agenda-single__intro-right {
  max-width: 278px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.agenda-single__intro-blue {
  background: #2C4295;
  padding: 33px 10px 26px 25px;
}


.agenda-single__intro-blue p {
  display: flex;
  gap: 13px;
  align-items: center;
}

.agenda-single__intro-blue p:first-child {
  margin-bottom: 16px;
}

.agenda-single__intro-blue span {
  font-size: 14px;
  font-weight: 600;
  max-width: 206px;
  width: 100%;
  color: #fff;
  text-transform: uppercase;
  line-height: 17px;
}

.agenda-single__intro-blue img {
  width: 24px;
  height: 24px;

}

.agenda-single__intro-link {
  margin-top: 6px;
  background: #F2B300;
  border-radius: 15px;
  color: #fff;
  font-weight: 700;
  font-family: 'Dongle', sans-serif;
  width: max-content;
  max-width: 100%;
  margin-left: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px 10px 0 10px;
  font-size: 18px;
  line-height: 16px;
  height: 24px;

}


.agenda-single__intro-yellow {
  padding: 25.5px 25px;
  background: #F2B300;
  flex: 1;
}

.agenda-single__intro-yellow p {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 3px;
}


.agenda-single__intro {
  margin-bottom: 26.6px;
}


.add-calendar__block {
  margin-bottom: 30px;
}


.add-calendar__block a {
    margin-top: 6px;
  background: #F2B300;
  border-radius: 15px;
  color: #fff;
  font-weight: 700;
  font-family: 'Dongle', sans-serif;
  width: max-content;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px 10px 0 10px;
  font-size: 18px;
  line-height: 16px;
  height: 24px;

}


.agenda-row__wrap .articles-row__item-description {
  background: #F2B300;
}

.agenda-row__wrap .articles-row__item-date {
  background: #2C4295;
}

.contact-us__article-box {
  padding: 30px;
  background: #667BC9;
  border-radius: 80px;
}

.contact-us__article-box p {
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
  font-size: 30px;
  line-height: 18px;
  font-weight: 700;
  font-family: 'Dongle', sans-serif;
  margin-bottom: 15px;
  text-align: center;
  color: #fff;
}

.contact-us__article-box a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  padding: 2px 10px 0 10px;
  font-size: 18px;
  line-height: 16px;
  color: #fff;
  font-weight: 700;
  font-family: 'Dongle', sans-serif;
  width: max-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  border-radius: 15px;
}

.yellow-bg {
  background: #F2B300;
}

.contact-us__article-box a.yellow-bg {
  background: #F2B300;
}


.contact-us__article-box a.yellow-bg:hover {
  background: #B04D96;
}


.offress-section {
  color: var(--accent);
}


.page-title {
  font-size: 50px;
  line-height: 30px;
  font-weight: 700;
  font-family: 'Dongle', sans-serif;
  margin-bottom: 25px;
}

.offress-description {
  max-width: 670px;
  width: 100%;
  margin-bottom: 50px;
}


.offress-description p {
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
}

.offress-wrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.offress-filters__wrap {
  padding: 21px 20.5px 21px 13.5px;
  background: #667BC9;
  max-width: 253px;
  width: 100%;
  color: #fff;
  height: max-content;
}


.offress-list__wrap {
  max-width: 810px;
  width: 100%;
}

.offress-filters__item {
  padding-bottom: 14.5px;
  margin-bottom: 9.5px;
  border-bottom: 1px solid #fff;
}


.offress-filter__name {
  font-size: 13px;
  font-weight: 400;
  line-height: 16px;
  cursor: pointer;
}

.offress-filter__dropdown {
  margin-top: 12px;
}

.offress-filter__search {
  position: relative;
}



.offress-filter__search input {
  width: 100%;
  height: 24px;
  border-radius: 15px;
  background: transparent;
  color: #fff;
  padding: 5px 35px 5px 8px;
  border: 1px solid #fff;
  font-size: 13px;
  line-height: 13px;
  font-weight: 400;
}

.offress-filter__search input::placeholder {
  font-size: 13px;
  line-height: 13px;
  font-weight: 400;
  color: #fff;
  font-family: 'basic-sans', sans-serif;
}

.offress-search__submit {
  border: 1px solid #fff;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2C4295;
  right: -1px;
}

.offress-filter__dropdown {
  padding-left: 25px;
  width: 100%;
}

.filter-dropdown__search {
  padding-left: 17px;
}


.offress-filter__checkbox input {
  display: none;
}

.offress-filter__checkbox {
  position: relative;
}

.offress-filter__checkbox label {
  padding-left: 25px;
  position: relative;
  cursor: pointer;
}

.offress-filter__checkbox label:before {
  content: '';
  width: 15px;
  height: 15px;
  background: transparent;
  border: 1px solid #fff;
  position: absolute;
  left: 0;
  top: 2px;
}

.offress-filter__checkbox input:checked + label:before {
  background: #fff;
}


.offress-filter__checkbox label {
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.offress-filter__dropdown {
  display: none;
}


.offress-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.offress-list__item {
  width: 100%;
  border-bottom: 1px solid #2C4295;
  padding-bottom: 16px;
}

.offress-list__item-date {
  font-size: 14px;
  line-height: 17px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.offress-list__item-grid {
  display: grid;
  grid-template-columns: 214px 243px 215px;
  gap: 55px;
}

.offress-list__item-logo {
  width: 100%;
  max-width: 100%;
}


.offress-list__item-logo img {
  max-width: 100%;
  max-height: 91px;
}

.offress-list__item-middle {
  width: 100%;
  max-width: 100%;

}

.offress-list__item-middle h3 {
  font-size: 25px;
  line-height: 16px;
  font-family: 'Dongle', sans-serif;
  margin-bottom: 12px;
  font-weight: 700;
}

.offress-list__item-middle p {
  font-size: 14px;
  line-height: 17px;
  font-weight: 600;
  margin-bottom: 3px;
}

.offress-list__item-middle p:last-child {
  margin-bottom: 0;
}


.offress-list__item-right {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}

.offress-list__item-voir {
  padding: 0 10px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #B04D96;
  font-size: 18px;
  line-height: 16px;
  font-family: 'Dongle', sans-serif;
  color: #fff;
  font-weight: 700;
  width: max-content;
  border-radius: 15px;
  padding-top: 2px;
  transition: .1s ease-in-out;
}

.offress-list__item-voir:hover {
  color: #fff;
}

.offress-section {
  padding-bottom: 120px;
}



.offre-single__info {
  background: #B04D96;
  display: flex;
  gap: 60px;
  padding: 40px;
  margin-bottom: 50px;
}

.offre-single__info-left {
  max-width: 240px;
  width: 100%;
}

.offre-single__info-item img {
  width: 24px;
  height: auto;
}

.offre-single__info-item {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
}

.offre-single__info-item span {
  font-size: 14px;
  line-height: 17px;
  /* text-transform: uppercase; */
  font-weight: 600;
  color: #fff;
}

.offre-single__info-link {
  padding: 0 10px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2C4295;
  font-size: 18px;
  line-height: 16px;
  font-family: 'Dongle', sans-serif;
  color: #fff;
  font-weight: 700;
  width: max-content;
  border-radius: 15px;
  padding-top: 2px;
  transition: .1s ease-in-out;
  margin-left: 30px;
}

.offre-single__info-link:hover {
  color: #fff;
}

.offre-single__info-right {
  max-width: 425px;
  width: 100%;
}

.offre-single__info-right p {
  font-size: 14px;
  line-height: 18px;
  color: #fff;
  /* text-transform: uppercase; */
  font-weight: 600;
  margin-bottom: 8px;
}


.offre-single__info-right p:last-child {
  margin-bottom: 0;
}


.purple-bg {
  background: #B04D96;
}

.offre-postuler {
  margin-bottom: 55px;
  margin-top: 86px;
}

.offres-more-section {
  padding-top: 55px;
  padding-bottom: 80px;
}

.offre-row__wrap .agenda-list__item-description {
  background: #B04D96;
}

.offre-row__wrap .agenda-list__item-date {
  background: #2C4295;
}

.container-small {
  max-width: 840px;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
  z-index: 4;
  position: relative;
}

.contact-title {
  text-align: center;
  color: var(--accent);
}

.contact-section {
  color: var(--accent);
}

.contact-page__form {
  max-width: 100%;
  width: 100%;
}

.contact-form__row {
  width: 100%;
  margin-bottom: 10px;
}

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

.contact-form__input {
  width: 100%;
  max-width: 100%;
}


.contact-form__input input {
  height: 43px;
  padding: 12px 14px;
  font-size: 14px;
  line-height: 17px;
  color: #707070;
  background: transparent;
  border: 1px solid #707070;
  width: 100%;
}

.contact-form__input input::placeholder, .contact-form__input textarea::placeholder {
  font-size: 14px;
  line-height: 17px;
  color: #707070;
  font-family: 'basic-sans', sans-serif;
}

.row-one-column {
  width: 100%;
}


.contact-form__input textarea {
  height: 146px;
  padding: 12px 14px;
  font-size: 14px;
  line-height: 17px;
  color: #707070;
  background: transparent;
  border: 1px solid #707070;
  width: 100%;
}


.after-form__row p {
  font-size: 12px;
  font-style: italic;
  line-height: 14px;
}


.after-form__row {
  display: flex;
  justify-content: space-between;
}

.submit-form {
  padding: 0 10px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #B04D96;
  font-size: 18px;
  line-height: 16px;
  font-family: 'Dongle', sans-serif;
  color: #fff;
  font-weight: 700;
  width: max-content;
  border-radius: 15px;
  padding-top: 2px;
  transition: .1s ease-in-out;
  margin-left: 30px;
  min-width: 100px;
  text-transform: uppercase;
  border: 0;
}


.contact-page__form {
  margin-bottom: 55px;
}


.contact-section {
  margin-bottom: 66px;
}

.map-section {
  width: 100%;
  background-color: var(--bg);
}

.map-box__wrap {
  display: flex;
  justify-content: space-between;
}

.map-box__left {
  max-width: 593px;
  width: 100%;
  height: 354px;
}

.map-box__left img, .map-box__left iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.member-page__intro {
  width: 100%;

}

.member-intro__wrap {
  width: 100%;
  display: flex;

}

.member-intro__left {
  max-width: 253px;
  width: 100%;
  padding: 22px 13px;
  background: #2C4295;
  padding-bottom: 28px;
}

.member-intro__left-info p {
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 8px;
  /* text-transform: uppercase; */
  font-weight: 600;
  color: #fff;
}

.member-intro__left-info {
  margin-bottom: 25px;
}

.member-intro__left-site p {
  font-size: 14px;
  line-height: 17px;
  /* text-transform: uppercase; */
  font-weight: 600;
  color: #fff;
}

.member-intro__left-site p a {
  font-size: 14px;
  line-height: 17px;
  /* text-transform: uppercase; */
  font-weight: 600;
  color: #fff;
}

.member-intro__right {
  max-width: 556px;
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: var(--bg);
}

.member-intro__right.no-padding {
  padding: 0;
}



.member-intro__right img {
  max-height: 100%;
  width: 100%;
  max-height: 350px;
  object-fit: contain;
}

.member-banner__intro {
  width: 100%;
  height: 100%;
  position: relative;
}

.member-banner__intro img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-banner__intro a {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.member-intro__wrap {
  margin-bottom: 35px;
}


.member-intro__tax {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 20px;

}

.member-tax__item {
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-family: 'Dongle', sans-serif;
  border-radius: 15px;
  background: #667BC9;
  font-size: 18px;
  line-height: 16px;
  padding: 2px 10px 0 10px;

}
#agenda-results.is-loading {
  opacity: 0.5;
  pointer-events: none;
  transition: opacity .2s ease;
}


.no-results {
  font-size: 18px;
  line-height: 18px;
  color: var(--accent);
}


#offers-results.is-loading {
  opacity: 0.5;
  pointer-events: none;
  transition: opacity .2s ease;
}

.actualites-intro {
  color: var(--accent);
}


#news-results.is-loading {
  opacity: 0.5;
  pointer-events: none;
  transition: opacity .2s ease;
}


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

.basic-page-section {
  color: var(--accent);
}

.basic-page-section h1 {
  padding-top: 30px;
  max-width: 395px;
  width: 100%;
}


.page-short-description {
  margin-bottom: 22px;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  max-width: 670px;
  width: 100%;
}


.basic-page-section {
  padding-bottom: 100px;
}

.comunity-links {
  display: flex;
  gap: 8px;
  max-width: 683px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}


.comunity-links a {
  background: #667BC9;
  border-radius: 15px;
  color: #fff;
  font-weight: 700;
  font-family: 'Dongle', sans-serif;
  width: max-content;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px 10px 0 10px;
  font-size: 18px;
  line-height: 16px;
  height: 24px;

}

.membres-group-contact .blue-bg {
  background: #2C4295;
}

.membres-group-contact {
  margin-bottom: 65px;
}

.membres-group__wrap {
  width: 100%;
}


.membres-group__wrap h2 {
  font-size: 50px;
  line-height: 30px;
  margin-bottom: 55px;
  text-transform: unset;
}


.membres-group__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px 25px;
}


.membres-group__list-item {
  width: 100%;
}

.membres-group__list-item  h4 {
  font-size: 25px;
  line-height: 16px;
  font-weight: 700;
  font-family: 'Dongle', sans-serif;
  color: var(--accent);
  text-transform: uppercase;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--accent);
  margin-bottom: 20px;
}

.membres-group__list-item-logo {
  width: 100%;
  height: 100px;
  border: 1px solid #707070;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.membres-group__list-item-logo a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.membres-group__list-item-logo img {
  max-width: 80%;
  max-height: 90%;
}

.membres-group__list-item-link {
  background: #667BC9;
  border-radius: 15px;
  color: #fff;
  font-weight: 700;
  font-family: 'Dongle', sans-serif;
  width: max-content;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px 10px 0 10px;
  font-size: 18px;
  line-height: 16px;
  height: 24px;
}

.membres-group__list-item-link:hover {
  color: #fff;
}


.membres-group-contact p {
  max-width: 531px;
}

.partners-section {
  background: var(--bg);
  padding-top: 60px;
  padding-bottom: 75px;
}


.partners-list {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.partners-list__item {
  max-width: 175px;
  position: relative;
}

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

.partners-list__item img {
  max-width: 175px;
  max-height: 65px;
}


.members-intro__section {
  background: var(--bg);
  padding-top: 30px;
  padding-bottom: 52px;
}

.members-intro__sponsor {
  width: 100%;
}

.members-intro__sponsor > p {
  font-size: 14px;
  line-height: 17px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
  max-width: 978px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.members-spons__slider-wrap {
  margin-top: 0;
  margin-bottom: 0;
}

.members-spons__slider-wrap {
  position: relative;
  width: 100%;
}

.members-slide__item {
  background: #fff;
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 22px 30px 35px 31.3px;
}

.members-spons__slider{
  max-width: 978px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.member-slide__left {
  max-width: 360px;
  width: 100%;
}

.member-slide__logo {
  width: 100%;
  height: 112.5px;
  border: 1px solid #707070;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}


.member-slide__logo img {
  max-width: 90%;
  max-height: 90%;
}

.member-slide__name {
  font-size: 25px;
  line-height: 16px;
  font-weight: 700;
  font-family: 'Dongle', sans-serif;
  padding-bottom: 12px;
  text-transform: uppercase;
  border-bottom: 2px solid var(--accent);
  margin-bottom: 10px;
  color: var(--accent);
}

.member-slide__description {
  font-size: 18px;
  line-height: 20px;
  color: var(--accent);
  margin-bottom: 10px;
}

.member-slide__member-link {
  display: flex;
  align-items: center;
  gap: 11px;
}

.member-slide__member-link span {
  font-size: 14px;
  line-height: 14px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
}

.plus-arrow {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent);
  padding-left: 2px;
}

.plus-arrow img {
  width: 6.37px;
}


.member-slide__right {
  max-width: 531px;
  width: 100%;

}

.member-slide__right-articles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}


.members-spons__slider-wrap .swiper-slider {
  overflow: hidden;
}

.members-list-section {
  padding-top: 67px;
  padding-bottom: 170px;
}

.members-filter-variations {
  width: 809px;
  height: max-content;

}


.members-filter-variations.active {
  display: block;
}

.members-filter__search {
  margin-bottom: 32px;
}

.members-dropdown__title {
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  margin-bottom: 15px;
}

.members-dropdown__search-item {
  max-width: 376px;
}

.members-dropdown__search-item input {
  width: 100%;
  height: 24px;
  border: 1px solid #fff;
  padding: 5px 10px;
  border-radius: 15px;
  background: transparent;
  font-weight: 400;
  font-size: 13px;
  line-height: 13px;
  color: #fff;
}

.members-dropdown__search-item input::placeholder {
  font-weight: 400;
  font-size: 13px;
  line-height: 13px;
  color: #fff;
  font-family: 'Basic sans', sans-serif;
}

.members-dropdown__checkboxes {
  max-width: 382px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 130px);
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 45px;
}

.members-dropdown__buttons {
  margin-left: auto;
  display: flex;
  width: max-content;
  max-width: 100%;
  gap: 5px;
}

.reinstaller, .valider {
  font-size: 18px;
  font-weight: 700;
  font-family: 'Dongle', sans-serif;
  color: #fff;
  height: 24px;
  padding: 2px 12px 0 12px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}


.reinstaller {
  background: #707070;
}

.valider {
  background: #B04D96;
  text-transform: uppercase;
}


.members-list__wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 38px 25px ;
}


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

.members-list__item > a:not(.member-slide__member-link) {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.members-list__item-name {
  font-size: 25px;
  line-height: 16px;
  font-weight: 700;
  font-family: 'Dongle', sans-serif;
  margin-bottom: 10px;
  padding-bottom: 10px;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
}


.members-list__item-logo {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 110px;
  margin-bottom: 10px;
}

.members-list__item-logo  img {
  max-width: 90%;
  max-height: 90%;
}

.members-list__item-tax {
  display: flex;
  gap: 5px;
  margin-bottom: 15px;

}

.members-list__item-tax div {
  font-size: 18px;
  font-weight: 700;
  font-family: 'Dongle', sans-serif;
  color: #fff;
  height: 24px;
  padding: 2px 10px 0 10px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #667BC9;
}

.members-list__item-description {
  font-size: 18px;
  line-height: 20px;
  color: var(--accent);
  margin-bottom: 15px;
}

.members-spons__slider-wrap .article-slider__next {
  right: 0;
}


.members-spons__slider-wrap .article-slider__prev {
  left: 0;
}


.members-list__wrap {
  padding-top: 50px;
}


.members-dropdown__buttons button {
  border: 0;
}

.site-header {
  position: relative;
  z-index: 9;

  padding-top: 186.23px;
}




.site-header__up {
  background: #fff;
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 999;
}

.site-header__bottom {
  width: 100%;
  left: 0;
  top: 146.23px;
  position: fixed;
  z-index: 999;
}


.devenir-membre__main {
  background: var(--bg);
}

.devenir-membre__wrap {
  max-width: 100%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.devenir-membre__left {
  max-width: 626px;
  width: 100%;
  color: var(--accent);
}

.devenir-membre__right {
  max-width: 394px;
  width: 100%;
}


.devenir-membre__left h1 {
  max-width: 392px;
  width: 100%;

}

.devenir-membre__content {
  max-width: 100%;
  width: 100%;
}

.devenir-membre__content .basic-content p {
  font-size: 18px;
  font-weight: 400;
}


.devenir-membre__content .basic-content li {
  font-size: 18px;
  font-weight: 400;
}

.devenir-membre__choose{
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  margin-top: 50px;
}

.devenir-membre__choose span.arrow {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 2px;

}
.devenir-membre__choose span.arrow img {
  width: 6.37px;
}

.devenir-membre__choose span:nth-child(2) {
  color: var(--accent);
  font-size: 18px;
  line-height: 20px;
  font-weight: 600;
  max-width: 326px;
  width: 100%;
}

.red-button {
  width: max-content;
  max-width: 100%;
  padding: 2px 10px 0 10px;
  background: #B04D96;
  border-radius: 15px;
  color: #fff;
  font-size: 18px;
  line-height: 16px;
  font-weight: 700;
  font-family: 'Dongle', sans-serif;
  height: 24px;
  padding-top: 2px;
}

.red-button:hover {
  color: #fff;
}


.devenir-membre-section {
  padding-bottom: 60px;
}

.mobile-menu__row, .mobile-menu__wrapper {
  display: none;
}

.home-employ__right-mobile {
  display: none;
}

.article-categries__mobile {
  display: none;
}

.mobile-article__employ-section {
  display: none;
}

.devenir-membre__hub-section {
  background: var(--bg);
  padding-top: 81px;
  padding-bottom: 62px;
  margin-top: -82px;
}

.devenir-membre__hub-section .home-employ__right {
  margin-left: auto;
  margin-right: auto;
}


@media (max-width: 1910px) {
  .home-sticky__box {
    left: calc(100% - 10px);
  }
}


@media (max-width: 1650px) {
  .home-sticky__box-wrap {
    display: none;
  }
}


@media (max-width: 1130px) {
  .site-header__up, .site-header__bottom {
    display: none;
  }

  .devenir-membre__hub-section {
    padding-top: 118px;
    padding-bottom: 113px;
  }

  .devenir-membre__hub-section .home-employ__right {
    background: transparent!important;
  }

  .article-main__image img {
    /* border-radius: 23%; */
    border-radius: 42% / 67%;
  }
  .mobile-menu__row {
    display: block;
  }

  .site-header {
    padding-top: 0;
  }

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

  .mobile-menu-top__row .container {
    display: flex;
    justify-content: space-between;

  }
  .mobile-menu-top__row {
    background: var(--accent);
    padding-top: 7px;
    padding-bottom: 10px;
  }

  .mobile-menu__toggler {
    max-width: 26px;
    width: 100%;
    cursor: pointer;
  }

  .mobile-menu__toggler img {
    width: 100%;
  }

  .social-linkedin, .social-facebook {
    width: 18px;
  }

  .header-email {
    width: 18px;
    height: 18px;
  }

  .header-email img {
    width: 10.79px;
  }

  .header-social__item {
    line-height: 18px;
    height: 18px;
  }

  .social-linkedin {
    margin-left: 3px;
    margin-right: 13px;
  }

  .mobile-menu__bottom-row {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 21px;
    padding-bottom: 27px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .header-email:before {
    content: '';
    position: absolute;
    right: calc(100% + 5.5px);
    width: 2px;
    height: 23px;
    background: #fff;
    top: 0;
  }

  .header-social__item {
    display: flex;
  }

  .header-email:before {
    top: -2px;
  }

  .mobile-menu__logo {
    max-width: 300px;
    width: 100%;

  }

  .mobile-menu__logo img {
    width: 100%;
    height: auto;
  }

  .header-home__textbox-inner{
    margin-bottom: 0;
    font-size: 25px;
    line-height: 16px;
    text-align: center;
    max-width: 280px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .header-home__textbox {
    padding-top: 25px;
    padding-bottom: 27px;
  }

  .homepage-main {
    padding-top: 0;
  }

  .home-top__banner-title {
    display: none;
  }

  .home-top-banner .container {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .home-employ__right {
    display: none;
  }

  .devenir-membre__hub-section .home-employ__right {
    display: flex;
  }

  .home-employ__right-mobile {
    display: block;
  }

  .home-intro__first-row {
    flex-wrap: wrap;
  }

  .home-intro__main-article {
    max-width: 100%;
    width: 100%;
    margin-bottom: 16px;
  }

  .home-intro__main-article__left {
    max-width: 285px;
  }

  .home-intro__article-image {
    max-width: 361px;
    height: 229px;
  }

  .header-intro__article-title {
    font-size: 35px;
    line-height: 20px;
    margin-bottom: 15px;
  }

  .header-intro__article-description {
    font-size: 15px;
    line-height: 17px;
    margin-bottom: 23px;
  }

  .article-link span {
    font-size: 12px;
    line-height: 14px;
  }

  .link-arrow {
    width: 20.21px;
    height: 20.21px;
    padding-left: 1.5px;
  }

  .link-arrow img {
    width: 5.37px;
  }

  .home-intro__right-news {
    max-width: 50%;
  }

  .home-employ__right-mobile {
    max-width: 50%;
    background: var(--bg);
  }

  .home-intro__yellow-box {
    padding: 15px 12px 18px 12px;
  }

  .home-intro__news-title {
    font-size: 35px;
    line-height: 20px;
    margin-bottom: 14px;
  }

  .home-intro__right-news__list {
    flex-direction: row;
    gap: 35px;
    position: relative;
  }

  .home-intro__right-news__list:before {
    content: '';
    width: 2px;
    height: 100%;
    left: calc(140px + 16.5px);
    position: absolute;
    top: 0;
    background: #fff;

  }

  .home-intro__right-news__item:after {
    display: none;
  }

  .home-intro__right-news__item {
    max-width: 140px;
    width: 100%;
  }

  .home-employ__right-title {
    font-size: 35px;
    line-height: 20px;
    margin-bottom: 12px;
    max-width: 285px;
    margin-left: auto;
    margin-right: auto;
  }

  .home-employ__right-description {
    font-size: 15px;
    line-height: 17px;
    max-width: 285px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 14px;
  }

  .home-employ__right-mobile {
    overflow: hidden;
  }

  .home-intro__yellow-box, .home-employ__right-mobile {
    height: 180px;
  }

  .home-employ__right-link span {
    font-size: 12px;
    line-height: 14px;
  }

  .home-intro {
    margin-bottom: 38px;
  }

  .articles-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 20.5px;
  }

  .articles-row__item {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
    gap: 5px;
    flex-direction: row;
  }

  .articles-row__item-date {
    width: 100%;
    font-size: 14px;
    line-height: 17px;
    margin-bottom: 5px;
  }

  .articles-row__item-image {
    max-width: 175px;
    width: 100%;
  }

  .articles-row__item-image img {
    width: 100%;
    height: 110px;
    object-fit: cover;
  }

  .articles-row__item-image {
    height: 110px;
  }

  .articles-row__item-description {
    max-width: 162px;
    width: 100%;
    margin-left: auto;
    background: transparent;
    padding: 0;
    color: var(--accent);
  }

  .articles-row__item-category {
    position: static;
    transform: unset;
    text-align: center;
  }

  .articles-row__item-short-description {
    color: var(--accent);
    font-size: 25px;
    line-height: 16px;
  }

  .articles-voir-link {
    text-align: left;
    margin-top: 18px;
  }

  .articles-row__item-category {
    font-size: 18px;
    line-height: 14px;
    height: auto;
    padding-top: 5px;
    padding-bottom: 4px;
    margin-bottom: 10px;

  }

  .home-tags-section .container {
    padding-left: 0;
    padding-right: 0;
    max-width: 100%;
  }

  .home-tags__wrap {
    padding-top: 13px;
    padding-bottom: 13px;
  }

  .home-tags-left, .home-tags-right {
    height: 100%;
    width: auto;
  }

  .home-tags__wrap > img {
    height: 100%;
    object-fit: cover;
  }

  .basic-h2, .articles-list__title {
    font-size: 27px;
    line-height: 25px;
    margin-bottom: 14px;
  }

  .home-agenda-section {
    margin-bottom: 61px;
  }

  .home-tags-section {
    margin-bottom: 90px;
  }

  .home-emply__left {
    max-width: 100%;
    padding: 26px 13px;
  }

  .home-employ-section {
    background: transparent;
  }

  .employ-box__title {
    font-size: 35px;
    line-height: 20px;
    margin-bottom: 33px;
  }

  .home-employ__list {
    gap: 15px 35px;
  }

  .home-employ__others {
    margin-left: 0;
  }

  .mobile-menu__wrapper {
    display: block;
    max-width: 391px;
    width: 100%;
    background: #667BC9;
    position: absolute;
    top: 41.41px;
    left: 0;
    height: max-content;
    z-index: 10;
    padding: 80px 25px;
    min-height: 100vh;
    transform: translateX(-110%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.35s ease;
  }

  .mobile-menu__wrapper.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    overflow: auto;
    height: 100%;
    padding-bottom: 90px;
  }



  .mobile-menu__close {
    position: absolute;
    top: 15px;
    right: 25px;
    max-width: 30px;
    width: 100%;
    cursor: pointer;
  }

  .mobile-menu__close img {
    width: 100%;
    height: auto;
  }

  .mobile-menu__items-wrap {
    max-width: 228px;
    width: 100%;
    margin-left: auto;
    margin-bottom: 25px;
  }

  .site-header__menu {
    flex-direction: column;
    gap: 0;
  }

  .site-header__menu > li {
    padding-top: 14px;
    padding-bottom: 18px;
    border-bottom: 1px solid #fff;
  }

  .sub-menu {
    opacity: 1;
    visibility: visible;
    position: static;
    border: 0;
    padding: 0;
    padding-left: 38px;
    padding-top: 18px;
  }

  .site-header__languages {
    margin-bottom: 60px;
    max-width: 228px;
    width: 100%;
    margin-left: auto;
  }

  .site-header__languages > * {
    max-width: 60px;
  }

  .header-lang__dropdown-item {
    color: #fff;
  }

  .header-search {
    max-width: 228px;
    width: 100%;
    margin-left: auto;
  }

  .header-search form {
    max-width: 205px;
  }

  .footer-address {
    font-size: 14px;
    line-height: 17px;
  }

  .footer-bottom__link-item, .footer-bottom__copyright {
    font-size: 12px;
    line-height: 14px;
  }

  .footer-logo {
    max-width: 199px;
  }

  .article-main-content {
    max-width: 435px;
  }

  .article-main__image {
    max-width: 361px;
    margin-bottom: 20px;
  }

  .article-main__categories {
    display: none;
  }

  .article-categries__mobile {
    display: flex;
    flex-wrap: wrap;
  }

  .article-main__title {
    font-size: 50px;
    line-height: 35px;
    margin-bottom: 15px;
  }

  .article-slide__image img {
    height: auto;
  }

  .article-slider {
    max-width: 375px;
  }

  .article-slider__next {
    right: 0;
    top: 93px;
    top: 50%;
  }

  .article-slider__prev {
    left: 0;
    top: 93px;
    top: 50%;
  }

  .article-slider__prev, .article-slider__next {
    top: calc(var(--article-image-height) / 2);
    transform: translateY(-50%);
  }

  .article-slider__dots {
    /* top: 211px!important; */
    top: calc(var(--article-image-height) + 15px) !important;
  }

  .members-spons__slider-wrap .article-slider__dots {
    bottom: -31px;
    top: unset !important;
  }

  .mobile-article__employ-section {
    display: block;
    padding-bottom: 58px;
  }

  .employ-agenda__box {
    display: none;
  }

  .mobile-article__employ-section .employ-agenda__box {
    display: flex;
  }

  .employ-agenda__box .employ-box__title {
    font-size: 50px;
    line-height: 25px;
  }

  .articles-more-section .newsletter-wrap {
    display: none;
  }

  .section-title-big {
    font-size: 35px;
    line-height: 20px;
    margin-bottom: 40px;
  }

  .agenda-main .breadcrumbs-section {
    background: transparent;
  }

  .agenda-intro-section {
    padding-top: 40px;
  }

  .agenda-intro__title{
    font-size: 32px;
    line-height: 16px;
    margin-bottom: 15px;
  }

  .agenda-intro__slider {
    max-width: 625px;
  }

  .agenda-slider__item {
    /* min-height: 260px; */
    height: 260px;
    padding: 52px 20px 42px 20px;
  }

  .agenda-slider__item-right img {
    height: 147px;
    border-radius: 160px;
  }

  .agenda-slider__item-right {
    max-width: 279px;
  }

  .agenda-slider__item-left {
    max-width: 286px;
  }

  .slider-top__tag {
    top: 11px;
    left: 19px;
  }

  .slide-title {
    font-size: 35px;
    line-height: 20px;
    margin-bottom: 15px;
  }

  .slide-short__description {
    font-size: 16px;
    line-height: 18px;
  }

  .agenda-list-section {
    padding-top: 41px;
    padding-bottom: 75px;
  }

  .agenda-list__items{
    grid-template-columns: repeat(2, 1fr);
    gap: 33px 20px;
  }

  .agenda-list__item {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .agenda-list__item-img {
    height: 111px;
  }

  .agenda-slider__next, .agenda-slider__prev {
    top: 117px;
  }

  .agenda-single__intro {
    flex-direction: column;
    gap: 0;
  }

  .agenda-single__intro-right {
    max-width: 100%;
    margin-top: -1px;
    display: flex;
    flex-direction: row;
  }

  .agenda-single__intro-blue {
    max-width: 253px;
    width: 100%;
    padding: 23px 18px 24px 18px;
  }

  .agenda-single__intro-yellow {
    max-width: 182px;
    width: 100%;
    padding: 23px 11px 33px 11px;
  }

  .agenda-single__intro-image {
    height: 244.43px;
  }

  .contact-us__article-box {
    padding: 27px 30px 17px 30px;
  }

  .offress-filters__wrap {
    max-width: 253px;
    padding: 21px 20.5px 21px 13.5px;
  }

  .offress-list__wrap, .offers-results {
    max-width: 435px;
    width: 100%;
  }

  .offress-list__item {
    flex-direction: column;
  }

  .offress-list__item-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .offress-list__item-date {
    margin-bottom: 10px;
  }

  .offress-list__item-logo {
    margin-bottom: 30px;
  }

  .offress-list__item-middle {
    margin-bottom: 20px;
  }

  .offress-list__item-middle h3 {
    margin-bottom: 10px;
  }

  .basic-h2, .articles-list__title {
    margin-bottom: 25px;
  }

  .offre-single__info {
    flex-direction: column;
    gap: 20px;
  }

  .container-small {
    padding-left: 30px;
    padding-right: 30px;
  }

  .row-two-columns {
    gap: 20px;
  }

  .map-box__wrap .home-employ__right {
    display: flex;
  }

  .map-section .container {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .membres-group__list {
    max-width: 530px;
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 22px;
  }

  .members-filter-variations {
    max-width: 100%;
  }

  .members-spons__slider-wrap .article-slider {
    max-width: 647px;
  }

  .members-intro__sponsor > p {
    max-width: 647px;
    margin-left: auto;
    margin-right: auto;
  }

  /* .article-slider__dots {
    top:unset!important;
    bottom: -30px!important;
  } */

  .member-slide__right-articles {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .member-slide__left {
    max-width: 257px;
    width: 100%;
  }

  .member-slide__right {
    max-width: 342px;
  }

  .members-slide__item {
    padding: 30px 10px 20px 15px;
  }

  .section-member-content .article-sticky__right {
    margin-top: 55px;
  }

  .member-intro__wrap {
    flex-direction: column;
  }

  .member-intro__left {
    max-width: 100%;
  }

  .member-intro__right {
    max-width: 100%;
  }

  .member-slide__member-link {
    margin-bottom: 20px;
  }



}

.article-link__mobile {
  display: none;
}
.home-tags__mob-img {
  display: none;
}

@media (max-width: 782px) {
  body {
    overflow-x: hidden;
  }
  .mobile-menu__logo {
    max-width: 214px;
  }

  .home-top-banner {
    margin-bottom: 30px;
  }

  .home-intro__main-article {
    flex-direction: column;
    gap: 10px;
  }

  .home-intro__main-article__left {
    max-width: 100%;
  }

  .home-intro__article-image {
    max-width: 100%;
  }

  .home-intro__main-article__left .article-link {
    display: none;
  }

  .home-intro__main-article > a.article-link__mobile {
    display: flex;
    position: static;
  }

  .home-intro__main-article {
    margin-bottom: 30px;
  }

  .home-employ__right-mobile {
    display: none;
  }

  .home-intro__right-news {
    max-width: unset;
  }

  .container {
    max-width: 450px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .articles-row {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }

  .articles-row__item-description {
    margin-left: 0;
  }

  .articles-row__item-description {
    max-width: calc(100% - 181px);
  }

  .home-tags-section {
    margin-bottom: 30px;
  }

  .home-tags__background{
    display: none;
  }

  .home-tags__mob-img {
    display: block;
  }

  .home-tags__wrap {
    min-height: 330px;
    padding-top: 51.8px;
    padding-bottom: 23.4px;
  }

  .home-tags-left, .home-tags-right {
    height: auto;
    width: 46.99px;
  }

  .home-tags-left {
    left: 19px;
  }

  .home-tags-right {
    right: 19px;
  }

  .home-tags__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-tags__title {
    font-size: 35px;
    line-height: 19px;
    max-width: 162px;
    /* margin-left: 35px; */
    padding-top: 25px;
  }

  .home-tags__list {
    margin-left: 8px;
  }

  .home-tags__inner {
    gap: 90px;
  }

  .home-employ__right {
    display: flex;
    background: var(--bg);
    min-height: 305px;
  }

  .devenir-membre__hub-section {
    padding-top: 59px;
    padding-bottom: 38px;
  }

  .home-employ__right > img {
    width: 214px;
  }

  .home-employ__right-mobile {
    display: none;
  }

  .home-employ-section .container {
    flex-direction: column;
  }

  .home-employ__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }

  .newsletter-wrap {
    border-radius: 70px;
    padding: 22px 50px 27px 50px;
  }

  .newsletter-wrap__description {
    font-size: 25px;
    line-height: 16px;
    margin-bottom: 18px;
  }

  .section-article-content .container {
    flex-direction: column-reverse;
  }

  .article-sticky__right {
    position: static;
  }

  .breadcrumbs {
    flex-wrap: wrap;
  }

  .article-main__title {
    font-size: 35px;
    line-height: 20px;
    margin-bottom: 12px;
  }

  .article-main__short-description {
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 15px;
  }

  .basic-content p {
    font-size: 16px;
    line-height: 18px;
  }

  .basic-content li {
    font-size: 16px;
    line-height: 18px;
  }
  .article-slide__description {
    font-size: 14px;
    line-height: 16px;
  }

  .article-slider {
    max-width: 305px;
  }

  .article-slide__image img {
    height: 162px;
  }

  .basic-content blockquote p {
    font-size: 30px;
    line-height: 20px;
    margin-bottom: 20px;
  }

  .basic-content blockquote p:nth-child(2) {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 0;
  }

  .article-sticky__right {
    width: 100%;
  }

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

  .mobile-article__employ-section .employ-agenda__box {
    flex-direction: column;
    gap: 30px;
  }

  .articles-voir-link a {
    font-weight: 400;
  }

  .agenda-box__wrap {
    max-width: 100%;

  }
  .agenda-intro__slider {
    max-width: 302px;
  }

  .agenda-slider__item {
    flex-direction: column;
    height: auto;
    gap: 15px;
  }

  .agenda-slider__next, .agenda-slider__prev {
    top: 40%;
    z-index: 2;
  }

  .agenda-list__items{
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
  }

  .agenda-list__item-description {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 10px;
    gap: 14px;
  }

  .agenda-list__item-date {
    position: static;
    transform: unset;
  }

  .agenda-single__intro-image {
    height: 203px;
  }

  .agenda-single__intro-right {
    flex-direction: column;
  }

  .agenda-single__intro-blue {
    max-width: 100%;
  }

  .agenda-single__intro-yellow {
    max-width: 100%;
    padding-left: 50px;
  }

  .section-article-content .container {
    gap: 50px;
  }

  .contact-us__article-box p {
    max-width: 230px;
    font-size: 25px;
    line-height: 16px;
  }

  .offress-wrap{
    flex-direction: column;
    gap: 25px;
  }

  .offress-filters__wrap {
    max-width: 100%;
  }

  .offress-list__wrap, .offers-results {
    max-width: 100%;
  }

  .offress-list__item-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .offress-list__item-logo {
    grid-column: 2;
    grid-row: 1;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .offress-list__item-logo img {
    max-height: 61px;
  }

  .offress-list__item-middle {
    grid-column: 1;
    grid-row: 1;
  }

  .row-two-columns {
    grid-template-columns: repeat(1, 1fr);
  }

  /* .contact-form__input input[name='address'] {
    height: 114px;
  } */

  .contact-form__input textarea {
    height: 237px;
  }

  .map-box__wrap {
    flex-direction: column;
    gap: 0;
  }

  .map-box__left, .map-box__wrap .home-employ__right {
    max-width: 100%;
  }

  .membres-group__wrap h2{
    font-size: 32px;
    line-height: 19px;
  }

  .members-slide__item {
    flex-direction: column;
  }

  .members-spons__slider-wrap .article-slider {
    max-width: 320px;
  }

  .members-intro__sponsor > p {
    max-width: 320px;
  }

  .member-slide__right-articles .articles-row__item {
    flex-direction: column;
  }

  .member-slide__right-articles .articles-row__item-image {
    max-width: 100%;
  }

  .member-slide__right-articles .articles-row__item-description {
    max-width: 100%;
  }

  .member-slide__left {
    max-width: 100%;
  }

  .member-slide__right-articles .articles-row__item-short-description {
    max-width: 100%;
  }

  .members-list__wrap {
    grid-template-columns: repeat(1, 1fr);
  }

  .members-dropdown__checkboxes {
    grid-template-columns: repeat(1, 1fr);
  }

}

@media (max-width: 500px) {
  .footer-bottom {
    flex-direction: column;
    gap: 33px;
  }

  .footer-bottom__right {
    text-align: center;
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
  }
}


@media (max-width: 450px) {
  .home-intro__yellow-box {
    max-width: unset;
    width: calc(100% + 30px);
    margin-left: -15px;
  }



  .home-employ-section .container {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }


}


.search-main {
  padding-bottom: 50px;
}


.contact-map__wrap {
  width: 100%;
}

.contact-map {
  width: 100%;
  height: 520px;
  border-radius: 0;
  overflow: hidden;
}

.gm-style .gm-style-iw-c {
  border-radius: 16px !important;
  padding: 0 !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18) !important;
}

.gm-style .gm-style-iw-d {
  overflow: hidden !important;
  padding: 0 !important;
}

.map-popup {
  min-width: 220px;
  padding: 18px 28px;
  text-align: center;
}

.map-popup__title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #2446a8;
  line-height: 1.2;
}

.mobile-menu__row {
  padding-top: 41.41px;
}
.mobile-menu-top__row {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

.mobile-menu__wrapper {
  position: fixed;
  top: 41.41px;
  left: 0;
}


.wpcf7-not-valid-tip {
  font-size: 16px;
  padding: 10px;
}


body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-footer {
  margin-top: auto;
}


.article-slider,
.article-slider .swiper-wrapper {
  transition: height 0.3s ease;
}

.article-slider .swiper-slide {
  height: auto;
}

.article-slide__image a {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
}

.article-slide__image img {
  display: block;
}
