/* 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;

}



/* 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;
}

.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: 1005;
}

.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;
}

.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 .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;
}

.header-menu__item > a:hover {
  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: 4;
}

.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;
  top: 0;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
  top: 60px;
  z-index: 1;
}

.home-sticky__box {
  position: sticky;
  top: 0;
  left: 79.5833%;
  width: 253px;
  height: 450px;
  top: 60px;
}

.home-sticky__content {
  width: 100%;
  height: 100%;
  display: block;
}

.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: 763px;
  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: 485px;
  width: 100%;
  height: 308px;
}

.home-intro__article-image img {
  width: 100%;
  height: 100%;
  border-radius: 154px;
}

.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;
}

.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;
}

.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: 365px;
  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;
}

.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;

}

.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;
  left: calc(100% - 270px);
  height: max-content;
  box-shadow: 0px 3px 6px #00000029;
  padding: 13px 10px;
  padding-bottom: 27px;
  color: var(--accent);
}

.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;
}

.fixed-link-more {
  text-align: left;
  margin-top: 27px;
}

.article-main__image {
  max-width: 670px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 15px;
}

.article-main__image img {
  width: 100%;
  height: auto;
  border-radius: 213px;
}

.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;
}

.article-slide__image img {
  width: 100%;
  height: 361px;
  object-fit: cover;
}

.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;
  top: 373px!important;
  display: flex;
  justify-content: center;
  align-items: center;
  height: max-content;
  z-index: 2;
}

.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;
  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;
  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:hover, .article-slider__next:hover {
  background: #667BC9;
}

.article-slider__prev img {
  transform: rotate(180deg);
}

.basic-content h2 {
  font-size: 18px;
  line-height: 20px;
  font-weight: 600;
  margin-bottom: 0;
}

.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 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;
}

.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;
}

.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;
}

.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-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;
}

.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;
}

.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;
}

.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;
}

.agenda-single__intro-image {
  max-width: 531px;
  height: 298px;
  width: 100%;
}

.agenda-single__intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.agenda-single__intro-right{
  max-width: 278px;
  width: 100%;

}

.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;

}


.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: 60px;
}

.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-right {
  max-width: 425px;
  width: 100%;
}

.offre-single__info-right p {
  font-size: 14px;
  line-height: 17px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 3px;
}


.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;
}

.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 {
  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;
}
