body {
  margin: 0;
  padding: 0;
  font-family: "Commissioner", sans-serif;
  font-weight: 400;
}

html {
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  font-family: "Commissioner", sans-serif;
}

h2 {
  font-weight: 700;
  font-size: 36px;
  text-transform: uppercase;
  text-align: center;
  color: #362416;
  margin-bottom: 40px;
}

a:hover {
  text-decoration: none;
  color: inherit;
}

.hidden-anim {
  opacity: 0;
  visibility: hidden;
}

.p80 {
  padding: 80px 0;
}

button {
  border: none;
  outline: none;
}

button:focus {
  outline: none;
}

ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

:root {
  --main-color: #cc4f38;
}

.container_header {
  max-width: 1340px;
  padding: 0 15px;
  margin: 0 auto;
}

.container {
  max-width: 100%;
  padding: 0 100px;
  margin: 0 auto;
}

.burger_block {
  display: none;
}

.burger-menu-wraper {
  display: none;
  width: 45px;
  height: 27px;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  transform: rotate(0deg);
  transition: .5s ease-in-out;
  margin-right: 15px;
}

#nav-icon3 span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: black;
  border-radius: 2px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

#nav-icon3 span:nth-child(1) {
  top: 0px;
}

#nav-icon3 span:nth-child(2),
#nav-icon3 span:nth-child(3) {
  top: 12px;
}

#nav-icon3 span:nth-child(4) {
  top: 24px;
}

#nav-icon3.show-menu span:nth-child(1) {
  top: 12px;
  width: 0%;
  left: 50%;
}

#nav-icon3.show-menu span:nth-child(2) {
  transform: rotate(45deg);
}

#nav-icon3.show-menu span:nth-child(3) {
  transform: rotate(-45deg);
}

#nav-icon3.show-menu span:nth-child(4) {
  top: 12px;
  width: 0%;
  left: 50%;
}

.mobile_menu {
  display: none;
}

.header {
  background: #fff;
  translate: 0 -20px;
  transition: 0.6s;
}

.header.show-elements {
  translate: 0 0;
  opacity: 1;
  visibility: visible;
}

.header_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  transition: 0.4s;
}

@media (min-width: 992px) {
  .header.sticky .header_wrapper {
    padding: 10px 0;
  }
}

.menu-header ul {
  display: flex;
  align-items: center;
  gap: 60px;
}

.menu-header ul li a {
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0.01em;
  color: #362416;
  transition: 0.4s;
}

.menu-header ul li a:hover {
  color: var(--main-color);
}

.header_right-side {
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (min-width: 992px) {
  .header.sticky .header_num {
    font-size: 20px;
  }
}

.dropdown_lang .dropdown_menu a,
.header_lang__btn span {
  transition: 0.3s;
  font-size: 18px;
  font-weight: 500;
  padding-right: 13px;
}

.header_lang__btn {
  border-radius: 30px;
  background: #ECEFF6;
  width: 76px;
  height: 50px;
  position: relative;
  z-index: 5;
}

.header_lang__btn svg {
  position: absolute;
  top: 21px;
  right: 27%;
}

.dropdown_lang .dropdown_menu a:hover {
  color: var(--main-color);
}

.dropdown_lang .dropdown_menu {
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: center;
  flex-direction: column;
  position: absolute;
  top: 27px;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  background: #ECEFF6;
  width: 76px;
  padding-bottom: 10px;
  padding-top: 20px;
  z-index: 1;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}

.dropdown_lang.open .dropdown_menu {
  opacity: 1;
  visibility: visible;
}

.dropdown_item.disabled {
  display: none;
}

.dropdown_lang {
  position: relative;
  top: 0;
}

.header_btn {
  background: var(--main-color);
  border-radius: 3px;
  padding: 0 37px;
  height: 48px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #fff;
  transition: 0.3s;
}

.header_btn:hover {
  background: #ae311a;
  color: #fff;
}

.main_home {
  overflow: hidden;
}

.top_section {
  display: flex;
  height: calc(100vh - 95px);
  height: 790px;
  /* padding-top: 95px; */
}

.top_section_fixed {
  background: #cc4f38;
  width: 100px;
  min-width: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 60px;
  transition: 0.3s background, 0.8s opacity, 0.8s translate;
  /* height: 100%; */
  translate: 0 -50px;
}

.top_section_fixed.show-elements {
  opacity: 1;
  visibility: visible;
  translate: 0 0;
}

.top_section_fixed svg {
  transition: 0.5s;
}

.top_section_fixed.sticky:hover {
  background: #ae311a;
}

.top_section_fixed.sticky:hover svg {
  translate: 0 -15px;
}

.top_section_fixed.sticky {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  z-index: 100;
}

.top_section_info {
  width: 390px;
  min-width: 390px;
  background: linear-gradient(137deg, #fbf2e6 0%, #ffc688 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 45px;
  gap: 40px;
  translate: 20px 0;
  transition: 0.6s opacity, 0.6s translate;
}

.top_section_info.show-elements {
  translate: 0 0;
  opacity: 1;
  visibility: visible;
  transition-delay: 0.2s;
}

.top_section_info h1 {
  font-weight: 700;
  font-size: 44px;
  line-height: 110%;
  color: #362416;
}

.top_section_link {
  max-width: 230px;
  position: relative;
  isolation: isolate;
}

.top_section_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: left;
}

.top_section:has(.sticky) .top_section_info {
  margin-left: 100px;
}

.top_section_img {
  width: 100%;
  translate: 20px 0;
  transition: 0.6s;
}

.top_section_img.show-elements {
  translate: 0 0;
  opacity: 1;
  visibility: visible;
  transition-delay: 0.4s;
}

.top_section_link:before {
  content: '';
  position: absolute;
  right: -32%;
  top: 50%;
  translate: 0 -50%;
  width: 100%;
  border-top: 1px solid var(--main-color);
  z-index: -1;
  transition: 0.3s;
}

.top_section_link:after {
  content: '';
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: -32%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--main-color);
  transition: 0.3s;
}

.top_section_link:hover:before,
.top_section_link:hover:after {
  right: 0;
  background: #ae311a;
  border-top: 1px solid #ae311a;
}

.sec_description {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sec_description_wrapper {
  max-width: 657px;
  width: 100%;
  overflow: hidden;
}

.initiatives {
  background: #fcdab1;
}

.initiatives_wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.initiatives_item {
  background: #fff;
}

.initiatives_item:has(.initiatives_item_title) {
  padding: 45px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.initiatives_item_title {
  font-weight: 600;
  font-size: 18px;
  line-height: 130%;
  text-align: center;
  color: #362416;
  margin-bottom: 10px;
}

.initiatives_item_descr {
  font-weight: 400;
  font-size: 16px;
  line-height: 135%;
  text-align: center;
  color: #91887f;
}

.initiatives_item_img {
  overflow: hidden;
}

.initiatives_item_img img {
  transition: 0.8s;
  width: 100%;
}

.initiatives_item_img:hover img {
  scale: 1.1;
}

.initiatives_bottom {
  margin-top: 60px;
  width: 100%;
  display: flex;
  /* justify-content: flex-start; */
  align-items: center;
  transition: 0.7s;
  position: relative;
}

/* .initiatives_bottom:has(.show-elements) {
  justify-content: flex-end;
} */

.initiatives_bottom_txt {
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  background: var(--main-color);
  border-radius: 3px;
  padding: 0 65px;
  height: 79px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: 0.6s;
  opacity: 1;
  visibility: visible;
}

.initiatives_bottom_line {
  transition: 1s;
  opacity: 1;
  visibility: visible;
  position: relative;
}

.initiatives_bottom_line:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--main-color);
}

.initiatives_bottom_line:after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  width: 100%;
  border-top: 1px solid var(--main-color);
}

.initiatives_bottom_line.show-elements {
  flex: 1;
  transition-delay: 0.3s;
}

.connections_wrapper {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.connections_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fbf2e6;
  padding: 25px 30px;
  gap: 10px;
  border-radius: 3px;
  position: relative;
  isolation: isolate;
}

.connections_item:after {
  content: '';
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  height: 10px;
  background: var(--main-color);
  z-index: 10;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}

.connections_item:hover:after {
  opacity: 1;
  visibility: visible;
}

.connections_item_icon {
  position: absolute;
  transition: 0.4s;
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
  border-radius: 2px;
  background: var(--main-color);
  z-index: -1;
  scale: 0.1;
  opacity: 0;
}

.connections_item:hover .connections_item_icon {
  top: 22px;
  translate: -50% 0;
  scale: 1;
  opacity: 1;
}

.connections_item_icon img {
  width: 30px;
}

.connections_item_title {
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  text-align: center;
  color: #362416;
}

.connections_item_img {
  display: flex;
  justify-content: center;
}

.connections_item_img img {
  width: 100%;
  display: block;
  transition: 0.6s;
}

.connections_item:hover .connections_item_img>img {
  width: 90%;
}

.connections_descr {
  font-weight: 400;
  font-size: 16px;
  line-height: 135%;
  text-align: center;
  color: #91887f;
  padding: 0 70px;
}

.help {
  background: #fcdab1;
}

.help_wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.help_item {
  background: #fff;
  border-radius: 3px;
  padding: 170px 50px 40px 50px;
  position: relative;
  overflow: hidden;
}

.help_item_icon {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--main-color);
  border-radius: 3px 0;
  width: 100px;
  height: 100px;
  isolation: isolate;
}

.help_item_icon:before {
  content: '';
  position: absolute;
  right: -130px;
  top: 50%;
  translate: 0 -50%;
  z-index: -1;
  width: 185px;
  border-top: 1px solid var(--main-color);
  transition: 0.7s;
}

.help_item_icon:after {
  content: '';
  position: absolute;
  right: -130px;
  top: 50%;
  translate: 0 -50%;
  z-index: -1;
  width: 13px;
  height: 13px;
  background: var(--main-color);
  border-radius: 50%;
  transition: 0.7s;
}

.help_item:hover .help_item_icon:after,
.help_item:hover .help_item_icon:before {
  right: -180px;
}

.help_item_titl {
  font-weight: 700;
  font-size: 19px;
  text-transform: uppercase;
  color: #362416;
  margin-bottom: 17px;
}

.help_item_descr {
  font-weight: 300;
  font-size: 16px;
  line-height: 135%;
  color: #91887f;
}

.help_item_icon img {
  transition: 0.5s;
}

.help_item:hover img {
  scale: 0.8;
}

.help_item_txt {
  transition: 0.6s;
}

.help_item:hover .help_item_txt {
  translate: 0 -20px;
}

.form_wrapper {
  display: flex;
}

.form_side {
  flex-basis: 50%;
  background: #fbf2e6;
}

.form_side_form {
  padding: 72px 0;
}

.form_short {
  width: 100%;
  max-width: 354px;
  margin: 0 auto;
}

.wpcf7-form-control-wrap input,
.wpcf7-form-control-wrap textarea {
  background: #fff;
  border-radius: 3px;
  padding: 0 24px;
  height: 50px;
  border: unset;
  margin-bottom: 10px;
}

.wpcf7-form-control-wrap input::placeholder,
.wpcf7-form-control-wrap textarea::placeholder {
  font-weight: 300;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0.01em;
  color: #91887f;
  opacity: 0.7;
}

.wpcf7-form-control-wrap textarea {
  height: 100px;
  padding-top: 15px;
  resize: none;
}

.form_btn {
  margin-top: 34px;
  position: relative;
  display: inline-block;
  isolation: isolate;
}

.form_btn:before {
  content: '';
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 100%;
  right: -100px;
  border-top: 1px solid var(--main-color);
  z-index: -1;
  transition: 0.5s;
}

.form_btn:after {
  content: '';
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 13px;
  height: 13px;
  right: -100px;
  border-radius: 50%;
  background: var(--main-color);
  z-index: -1;
  transition: 0.5s;
}

.form_btn input {
  height: 54px;
  background: var(--main-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  padding: 0 37px;
  transition: 0.3s;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #fff;
  border: unset;
  transition: 0.5s;
}

.form_btn input:hover {
  background: #ae311a;
}

.form_btn:hover:after,
.form_btn:hover:before {
  right: 0;
  background: #ae311a;
  border-top: 1px solid #ae311a;
}

.wpcf7-spinner {
  display: none;
}

footer {
  background: #fcdab1;
  padding: 60px 0 30px;
}

.footer_top_wrapper {
  display: flex;
  width: 100%;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  padding-left: 20px;
}

.footer_top {
  margin-bottom: 80px;
}

.footer_bottom {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  padding-left: 20px;
}

.footer_bottom span {
  font-weight: 400;
  font-size: 14px;
  line-height: 180%;
  color: #362416;
}

.footer_bottom span a {
  font-weight: 500;
  font-size: 15px;
  line-height: 168%;
  color: #362416;
}

.sec_description_txt {
  font-weight: 400;
  font-size: 17px;
  line-height: 150%;
  letter-spacing: 0em;
  color: #73706d;
  width: 100%;
  padding-left: 20px;
  transition: 1s;
  translate: -100% 0;
}

.sec_description_txt.show-elements {
  opacity: 1;
  visibility: visible;
  translate: 0 0;
}

.sec_description_wrapper {
  width: 100%;
  max-width: 685px;
  margin: 0 auto;
  border-left: 7px solid #fdca91;
}

.form_wrapper img {
  width: 100%;
}

.wpcf7 form.sent .wpcf7-response-output {
  border: unset;
  text-align: center;
  color: green;
}


.not_f_section {
  /* height: calc(100vh + 97px); */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 130px 15px;
}

.not_f_txt {
  font-weight: 700;
  font-size: 36px;
  text-transform: uppercase;
  text-align: center;
  color: #362416;
  margin-bottom: 5px;
  margin-top: 34px;
}

.not_f_txt_bottom {
  font-weight: 400;
  font-size: 16px;
  line-height: 135%;
  text-align: center;
  color: #91887f;
}

.not_f_link {
  margin-top: 25px;
  background: #cc4f38;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  padding: 0 37px;
  height: 48px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #fff;
  transition: 0.4s;
}

.not_f_link:hover {
  background: #7f291a;
  color: #fff;
}

.error404 .container {
  padding: 0 15px;
}

.error404 .footer_top_wrapper,
.error404 .footer_bottom {
  padding-left: 0;
}

.grecaptcha-badge {
  opacity: 0;
  visibility: hidden;
}


















@media(max-width: 1640px) {
  .top_section {
    height: 600px;
  }

  .not_f_section {
    padding: 75px 15px;
  }
}


@media(max-width: 1440px) {
  .top_section {
    height: 600px;
  }

}

@media(max-width: 1280px) {
  .top_section {
    height: 545px;
  }

  .top_section_fixed {
    gap: 15px;
  }

  .initiatives_item_descr {
    font-size: 14px;
  }

  .initiatives_item:has(.initiatives_item_title) {
    padding: 40px;
  }
}

@media(max-width: 1024px) {

  .initiatives_item_title {
    font-size: 16px;
  }

  .initiatives_item:has(.initiatives_item_title) {
    padding: 25px;
  }

  .initiatives_item_descr {
    font-size: 11px;
  }

  .menu-header ul {
    gap: 30px;
  }

  .logo_wrapper img {
    width: 185px;
  }

  .top_section {
    height: 445px;
  }

  .top_section_info h1 {
    font-size: 36px;
  }

  top_section_info {
    width: 350px;
    min-width: 350px;
    padding: 36px;
  }

  .top_section_fixed img {
    height: 320px;
  }

  .top_section_fixed svg {
    width: 20px;
  }

  h2 {
    font-size: 30px;
  }

  .connections_item_title {
    font-size: 15px;
  }

  .help_item_icon {
    width: 80px;
    height: 80px;
  }

  .help_item {
    padding: 124px 30px 32px 30px;
  }

  .help_item_titl {
    font-size: 15px;
  }

  .help_item_descr {
    font-size: 14px;
  }

  .form_wrapper {
    align-items: center;
    flex-direction: column-reverse;
  }

  .form_side {
    flex-basis: 100%;
    width: 100%;
  }

  .form_wrapper img {
    width: 100%;
  }

}

@media(max-width: 992px) {

  .container {
    padding: 0 75px;
  }

  h2 {
    margin-bottom: 25px;
  }

  .connections_item_title {
    font-size: 12px;
  }

  .help_item_icon {
    width: 60px;
    height: 60px;
  }

  .help_item_icon img {
    width: 25px;
  }

  .help_item {
    padding: 95px 30px 32px 30px;
  }

  .help_item_icon:before,
  .help_item_icon:after {
    right: -70px;
  }

  .top_section_fixed {
    width: 75px;
    min-width: 75px;
  }

  .top_section:has(.sticky) .top_section_info {
    margin-left: 75px;
  }

  .top_section_info {
    width: 370px;
    min-width: 370px;
  }

  .menu-header {
    display: none;
  }

  .burger_block {
    display: flex;
    align-items: center;
    gap: 25px;
  }

  .burger-menu-wraper {
    display: block;
  }

  .mobile_menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
    translate: 0 -120%;
    z-index: 500;
    background-color: white;
    position: fixed;
    inset: 0;
    padding: 100px 15px 100px;
    /* background-image: url(/wp-content/uploads/2023/10/mobile-menu-bg.svg); */
    /* background-repeat: no-repeat;
    background-size: cover; */
    overflow: auto;
    height: 100vh;
    justify-content: center;
    gap: 50px;
  }

  header {
    position: relative;
    z-index: 600;
  }

  .mobile_menu.show-menu {
    opacity: 1;
    visibility: visible;
    translate: 0 0;
  }

  body:has(.mobile_menu.show-menu) .top_section {
    margin-top: 95px;
  }

  /* .initiatives .container {
    padding-right: 0;
  } */

  body:has(.mobile_menu.show-menu) header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
  }

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

  .initiatives_wrapper .initiatives_item:nth-child(1) {
    order: 1;
  }

  .initiatives_wrapper .initiatives_item:nth-child(2) {
    order: 2;
  }

  .initiatives_wrapper .initiatives_item:nth-child(3) {
    order: 4;
  }

  .initiatives_wrapper .initiatives_item:nth-child(4) {
    order: 3;
  }

  .initiatives_wrapper .initiatives_item:nth-child(5) {
    order: 5;
  }

  .initiatives_wrapper .initiatives_item:nth-child(6) {
    order: 6;
  }

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

  .container_header {
    position: relative;
    z-index: 600;
  }

  .mobile_menu .menu-header {
    display: block;
  }

  .logo_wrapper,
  .burger-menu-wraper {
    position: relative;
    z-index: 55;
  }

  .menu-header ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-header ul li a {
    font-size: 20px;
  }

  footer .menu-header {
    display: block;
  }

  footer .menu-header ul {
    align-items: flex-end;
  }
}

@media(max-width: 500px) {

  .not_f_section img {
    width: 70%;
  }

  .not_f_txt {
    font-size: 22px;
    margin-top: 23px;
  }

  header .header_btn {
    display: none;
  }

  .footer_top_wrapper {
    flex-direction: column;
    padding-left: 0;
  }

  .footer_top {
    margin-bottom: 50px;
  }

  .menu-header ul {
    align-items: center;
  }

  .top_section:has(.sticky) .top_section_info {
    margin-left: 0;
  }

  .top_section_fixed {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    top: unset !important;
    height: 60px !important;
    z-index: 200;
  }

  .top_section_fixed img {
    height: auto;
    rotate: 90deg;
    width: 26px;
  }

  .top_section_fixed svg {
    display: none;
  }

  .top_section {
    flex-direction: column;
    height: auto;
  }

  .top_section_info {
    width: auto;
    min-width: unset;
    gap: 27px;
  }

  .top_section_info {
    padding: 30px;
  }

  .top_section_info h1 {
    font-size: 30px;
  }

  .p80 {
    padding: 50px 0;
  }

  .container {
    padding: 0 15px;
  }

  h2 {
    font-size: 24px;
  }

  .initiatives_wrapper .initiatives_item:nth-child(3) {
    order: 3;
  }

  .initiatives_wrapper .initiatives_item:nth-child(4) {
    order: 4;
  }

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

  .initiatives_item_descr {
    font-size: 14px;
  }

  .initiatives_item_title {
    font-size: 17px;
  }

  .initiatives_bottom_txt {
    height: auto;
    padding: 20px;
  }

  .initiatives_bottom {
    margin-top: 47px;
  }

  .connections_descr {
    padding: 0;
  }

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

  .help_item {
    padding: 88px 30px 32px 30px;
  }

  .form_side_form {
    padding: 45px 25px;
  }

  footer .menu-header ul {
    align-items: center;
  }

  footer {
    padding: 45px 0 80px;
  }

  .footer_bottom {
    padding-left: 0;
    flex-direction: column;
  }

}