@charset "UTF-8";

@font-face {
  font-family: gotham;
  font-display: swap;
  src: url("../fonts/gotham_bold.woff2") format("woff2"), url("../fonts/gotham_bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: gotham;
  font-display: swap;
  src: url("../fonts/gotham_regular.woff2") format("woff2"), url("../fonts/gotham_regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: gotham;
  font-display: swap;
  src: url("../fonts/gotham_medium.woff2") format("woff2"), url("../fonts/gotham_medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

/* Указываем box sizing */

html {
  height: 100%;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

ul,
ol {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

input:focus-visible {
  outline: none;
}

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

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1;
  color: #000000;
  font-size: 16px;
  font-family: gotham;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #F4F8F7;
}

ul,
ol {
  list-style-position: inside;
}

ul[class],
ol[class] {
  list-style: none;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img {
  max-width: 100%;
  display: block;
}

article > * + * {
  margin-top: 1em;
}

input,
button,
textarea,
select {
  font: inherit;
}

.container {
  max-width: 1272px;
  padding-left: 16px;
  padding-right: 16px;
  margin: 0 auto;
}

.content {
  padding: 100px 0;
}

.title {
  color: #111;
  font-family: gotham;
  font-size: 30px;
  margin-bottom: 50px;
  text-align: center;
  font-weight: 500;
}

/*alert*/

.box-size {
  box-sizing: border-box;
}

.alert--fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  top: 0px;
  left: 0px;
  z-index: 999;
}

.alert--error,
.alert--warning,
.alert--active {
  display: flex;
}

.alert--width {
  width: 400px;
}

.alert--img__item svg {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.alert--img__item {
  display: none;
  flex-shrink: 0;
}

.alert--active .active {
  display: block;
}

.alert--warning .warning {
  display: block;
}

.alert--error .error {
  display: block;
}

.alert--content {
  position: relative;
  z-index: 12;
  border-radius: 15px;
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: white;
  padding: 30px;
  color: #333333;
  margin-bottom: 10%;
}

.alert--bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.6;
  z-index: 11;
  top: 0px;
  left: 0px;
}

.alert-text {
  margin-top: 15px;
  text-align: center;
}

.alert--active .active path {
  fill: #4ad395;
}

.alert--warning .warning path {
  fill: #e5e75d;
}

.alert--error .error path {
  fill: #f81919;
}

.alert--title {
  font-size: 28px;
  font-weight: 500;
}

.alert--subtitle {
  font-weight: 400;
  font-size: 20px;
  padding-top: 8px;
  margin-top: 8px;
  border-top: 1px solid #ccbbbb;
}

.alert--x {
  position: absolute;
  width: 30px;
  height: 30px;
  padding: 8px;
  right: 10px;
  top: 10px;
  cursor: pointer;
}

.alert--x svg {
  width: 100%;
  height: 100%;
}

.alert--x svg path {
  fill: #968787;
  transition: all 0.3s ease;
}

.alert--x:hover path {
  fill: black;
}

/*alert*/

/*formLoader*/

.form_loader {
  position: fixed;
  display: none;
  z-index: 999;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
}

.form_loader_block {
  position: absolute;
  width: 350px;
  max-width: 90%;
  left: 50%;
  top: 45%;
  padding: 40px;
  border-radius: 10px;
  background-color: #fff;
  transform: translate(-50%, -50%);
}

.form_loader_animate {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

.form_loader_animate:after {
  content: "";
  display: block;
  width: 85%;
  height: 85%;
  /*margin: 8px;*/
  border-radius: 50%;
  border: 6px solid #fff;
  border-color: #C53364 transparent #C53364 transparent;
  -webkit-animation: loader-animate 1.2s linear infinite;
          animation: loader-animate 1.2s linear infinite;
}

.form_loader_text {
  font-size: 20px;
  text-align: center;
}

@-webkit-keyframes loader-animate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes loader-animate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*formLoader*/

.burger {
  position: relative;
  z-index: 1;
  display: none;
  cursor: pointer;
}

.burger__dot {
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background-color: #F4C01D;
  position: relative;
  transition: background-color 0.3s ease;
  pointer-events: none;
}

.burger__dot--line {
  background-color: transparent;
}

.burger__dot--line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 5px;
  background-color: #F4C01D;
  border-radius: 5px;
  transition: width 0.3s ease;
  transform-origin: 2.5px 2.5px;
}

.burger__dot--left-top::before {
  transform: rotate(45deg);
}

.burger__dot--right-bottom::before {
  transform: rotate(-135deg);
}

.burger__dot--right-top::before {
  transform: rotate(135deg);
}

.burger__dot--left-bottom::before {
  transform: rotate(-45deg);
}

.burger._opened .burger__dot--line::before {
  width: 18px;
}

.burger._opened .burger__dot--aside {
  background-color: transparent;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  border-bottom: 1px solid rgba(74, 77, 84, 0.2);
  color: #ffffff;
  transition: background 0.2s ease-in-out;
}

.header.active,
.header.other {
  background: #F4F8F7;
  color: #4A4D54;
}

.header.active .header__lang-item,
.header.other .header__lang-item {
  border-color: #F4C01D;
  color: #4A4D54;
}

.header__container {
  display: flex;
  align-items: center;
  padding: 30px 0;
}

.header__logo {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

.header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.header__nav {
  margin-left: auto;
  margin-right: auto;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header__nav-link {
  transition: 0.2s ease-in-out;
}

.header__nav-link:hover {
  text-decoration: underline;
  color: #F4C01D;
}

.header__nav-link.active {
  text-decoration: underline;
  color: #F4C01D;
}

.header__lang {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header__lang-item {
  width: 45px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: 2px solid #FFF;
  background: rgba(216, 216, 216, 0);
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 500;
  transition: 0.2s ease-in-out;
}

.header__lang-item.active,
.header__lang-item:hover {
  background: #F4C01D;
  border-color: #F4C01D;
  color: #4A4D54;
}

.header__feedback {
  padding: 15px 20px;
  border-radius: 6px;
  background: #F4C01D;
  margin-left: 30px;
  font-size: 18px;
  font-weight: 500;
  color: #4A4D54;
  transition: 0.2s ease-in-out;
}

.header__feedback:hover {
  background: #d3a315;
}

.header-space {
  padding-top: 111px;
}

.footer {
  margin-top: auto;
  background: #2E2E2E;
}

.footer__container {
  display: flex;
  align-items: flex-start;
  padding: 70px 0;
  color: #ffffff;
}

.footer__col {
  max-width: 200px;
  margin-right: 100px;
}

.footer__logo {
  display: flex;
  width: 105px;
  flex-shrink: 0;
  margin-bottom: 20px;
}

.footer__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer__text {
  color: #A5A5A5;
  font-size: 14px;
  line-height: 142%;
}

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

.footer__nav-item {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.footer__nav-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 15px;
}

.footer__nav-list li {
  max-width: 250px;
}

.footer__nav-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.2s ease-in-out;
  font-size: 14px;
  line-height: 156%;
}

.footer__nav-list li a:hover {
  color: #F4C01D;
}

.footer__nav-list li a svg {
  flex-shrink: 0;
  width: 20px;
}

.footer__nav-title {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.277px;
}

.footer__nav-socials {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer__nav-socials a {
  display: flex;
  transition: 0.2s ease-in-out;
}

.footer__nav-socials a:hover {
  transform: scale(1.1);
}

.footer__bot {
  border-top: 1px solid #6E6E6E;
  color: #A5A5A5;
  font-size: 14px;
}

.footer__bot-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.footer__bot-wrapper a {
  transition: 0.2s ease-in-out;
}

.footer__bot-wrapper a:hover {
  color: #F4C01D;
}

.breadcrumbs__container {
  padding: 50px 0;
}

.breadcrumbs__list {
  display: flex;
  align-items: center;
  overflow: auto;
}

.breadcrumbs__list::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.breadcrumbs__list-item {
  position: relative;
}

.breadcrumbs__list-item:not(:last-child) {
  margin-right: 28px;
}

.breadcrumbs__list-item:not(:last-child)::before {
  position: absolute;
  content: "";
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  transform: translateY(-50%);
  right: -16px;
  background: #000;
}

.breadcrumbs__list-link {
  white-space: nowrap;
  font-size: 14px;
  font-weight: 500;
  color: #64748B;
  transition: 0.2s ease-in-out;
}

.breadcrumbs__list-link:hover {
  color: #F4C01D;
}

.breadcrumbs__list-link.active {
  pointer-events: none;
  color: #111;
}

.hero {
  position: relative;
  height: 100dvh;
  min-height: 700px;
  z-index: 8;
  background: #191919;
  width: 100%;
}

.hero__images {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  overflow: hidden;
  pointer-events: none;
  background: #191919;
}

.hero__images .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero .container {
  height: 100%;
}

.hero__container {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero__info {
  width: 100%;
}

.hero__info-item {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  text-align: left;
  color: #ffffff;
}

.hero__info-title {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 20px;
  max-width: 850px;
  line-height: 112%;
}

.hero__info-text {
  max-width: 666px;
  line-height: 150%;
  margin-bottom: 50px;
  font-size: 18px;
}

.hero__info-link {
  display: flex;
  align-items: center;
  padding: 20px 30px;
  border-radius: 30px;
  background: #F4C01D;
  color: #4A4D54;
  font-size: 20px;
  font-weight: 500;
  transition: 0.2s ease-in-out;
}

.hero__info-link:hover {
  background: #d3a315;
}

.hero__arrows {
  position: absolute;
  bottom: 30px;
  right: 0;
  display: flex;
  align-items: center;
  z-index: 5;
  gap: 20px;
}

.hero__arrow {
  display: flex;
  transition: 0.2s ease-in-out;
}

.hero__arrow:hover {
  transform: scale(1.1);
}

.hero__pagination {
  position: absolute;
  bottom: 30px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 5;
  display: flex;
  align-items: center;
  width: auto !important;
}

.hero__pagination .swiper-pagination-bullet {
  transition: 0.2s ease-in-out;
  border: 1px solid #F4C01D;
  background: rgba(255, 255, 255, 0);
}

.hero__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border: 1px solid #F4C01D;
  background: #F4C01D;
}

.about {
  position: relative;
  padding: 150px 0;
}

.about::before {
  position: absolute;
  content: "";
  top: 20px;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url("../img/decor-section.png") top/100% auto no-repeat;
  z-index: -1;
  overflow: hidden;
}

.about__container {
  display: flex;
  align-items: center;
  gap: 70px;
}

.about__img {
  position: relative;
  width: 450px;
  height: 550px;
  padding-left: 100px;
  flex-shrink: 0;
}

.about__img::before {
  position: absolute;
  content: "";
  height: 90%;
  width: 100dvh;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #F4C01D;
  z-index: -1;
}

.about__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 30px;
}

.about__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about__title {
  text-align: left;
}

.about__text {
  font-size: 18px;
  line-height: 166%;
}

.research__items {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
}

.research__items::before {
  position: absolute;
  content: "";
  width: 300px;
  height: 300px;
  z-index: -1;
  top: -200px;
  right: 0;
  opacity: 0.3;
  filter: blur(50px);
  background: #F4C01D;
}

.research__item {
  position: relative;
  padding: 50px;
  border-radius: 20px;
  overflow: hidden;
  border: 3px solid transparent;
  display: flex;
  flex-direction: column;
  transition: 0.2s ease-in-out;
}

.research__item:hover {
  border: 3px solid #F4C01D;
}

.research__item:hover .research__item-title {
  color: #F4C01D;
}

.research__item:hover .research__item-logo {
  filter: brightness(0) saturate(100%) invert(80%) sepia(66%) saturate(3156%) hue-rotate(349deg) brightness(116%) contrast(91%);
}

.research__item-img {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.research__item-img::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.research__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.research__item-title {
  font-size: 30px;
  color: #ffffff;
  margin-bottom: 20px;
  transition: 0.2s ease-in-out;
}

.research__item-text {
  margin-bottom: 35px;
  color: #ffffff;
  line-height: 138%;
}

.research__item-bot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: auto;
}

.research__item-link {
  padding: 10px 20px;
  color: #ffffff;
  font-size: 18px;
  border-radius: 19.5px;
  border: 1px solid #F4C01E;
  background: rgba(0, 0, 0, 0.35);
  transition: 0.2s ease-in-out;
}

.research__item-link:hover {
  background: #F4C01D;
}

.research__item-logo {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease-in-out;
}

.research__item-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.sert {
  position: relative;
  padding: 150px 0;
}

.sert::before {
  position: absolute;
  content: "";
  top: -50px;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url("../img/decor-section.png") top/100% auto no-repeat;
  z-index: -2;
  overflow: hidden;
}

.sert::after {
  position: absolute;
  content: "";
  width: 300px;
  height: 300px;
  z-index: -1;
  bottom: 0;
  left: 0;
  opacity: 0.3;
  filter: blur(50px);
  background: #F4C01D;
}

.sert__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  transition: 0.2s ease-in-out;
}

.sert__arrow.next {
  right: 0;
}

.sert__arrow.prev {
  left: 0;
}

.sert__item {
  background: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 360px;
  padding: 20px;
  cursor: pointer;
  overflow: hidden;
}

.sert__item::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/zoom.svg") center/50px 50px no-repeat;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
  opacity: 0;
  transition: 0.2s ease-in-out;
}

.sert__item:hover::before {
  opacity: 1;
}

.sert__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.section {
  position: relative;
  padding-bottom: 100px;
}

.section::before {
  position: absolute;
  content: "";
  top: 20px;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url("../img/decor-section.png") top/100% auto no-repeat;
  z-index: -1;
  overflow: hidden;
}

.miss {
  overflow: hidden;
}

.miss__wrapper {
  position: relative;
}

.miss__wrapper::before {
  position: absolute;
  content: "";
  width: 100dvw;
  height: 92%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #F4C01D;
}

.miss__img {
  position: relative;
  max-width: 1030px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}

.miss__img::before {
  display: block;
  content: "";
}

.miss__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.miss__img::before {
  padding-top: 54%;
}

.activity__container {
  padding-bottom: 100px;
}

.activity__items {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 45px;
}

.activity__items::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 1px;
  background: #F4C01D;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
}

.activity__item {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 110px;
  align-items: center;
}

.activity__item::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background: #F4C01D;
  border-radius: 50%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.activity__item:nth-child(even) .activity__item-text {
  order: 2;
  text-align: left;
}

.activity__item:nth-child(even) .activity__item-num {
  text-align: right;
}

.activity__item-text {
  text-align: right;
  line-height: 166%;
  font-size: 18px;
}

.activity__item-num {
  font-size: 100px;
  opacity: 0.1;
  color: #111;
}

.stats__container {
  padding-bottom: 100px;
}

.stats__items {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.stats__item-num {
  font-size: 50px;
  font-weight: 500;
}

.stats__item-desc {
  color: #4A4D54;
  text-align: center;
  line-height: 122%;
  max-width: 210px;
}

.partner {
  position: relative;
  background: #F4C01D;
}

.partner::before {
  position: absolute;
  content: "";
  top: -100px;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url("../img/decor-section.png") top/100% auto no-repeat;
  z-index: -1;
  overflow: hidden;
}

.partner__container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 60px 0;
  -moz-column-gap: 100px;
       column-gap: 100px;
  row-gap: 50px;
}

.gallery {
  margin-top: 5px;
}

.gallery__item {
  position: relative;
  width: 470px;
}

.gallery__item::before {
  display: block;
  content: "";
}

.gallery__item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.gallery__item::before {
  padding-top: 60%;
}

.marquee-container {
  overflow: hidden;
  white-space: nowrap;
}

.marquee-container.bot .marquee-track {
  animation-direction: reverse;
  margin-top: 10px;
}

.marquee-track {
  display: inline-flex;
  -webkit-animation: marquee 360s linear infinite;
          animation: marquee 360s linear infinite;
  gap: 10px;
}

@-webkit-keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.vac__wrapper {
  position: relative;
}

.vac__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
}

.vac__arrow.next {
  right: -20px;
}

.vac__arrow.prev {
  left: -20px;
}

.vac__item {
  position: relative;
}

.vac__item-img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.vac__item-img::before {
  display: block;
  content: "";
}

.vac__item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.vac__item-img::before {
  padding-top: 140%;
}

.vac__item-title {
  position: absolute;
  left: 30px;
  bottom: 100px;
  right: 30px;
  font-size: 20px;
  color: #fff;
  z-index: 2;
}

.vac__item-link {
  position: absolute;
  bottom: 30px;
  left: 30px;
  border-radius: 19.5px;
  border: 1px solid #F4C01E;
  background: rgba(0, 0, 0, 0.35);
  padding: 10px 20px;
  color: #fff;
  transition: 0.2s ease-in-out;
}

.vac__item-link:hover {
  background: #d3a315;
}

.culture__container {
  padding-bottom: 100px;
}

.culture__text {
  text-align: center;
  line-height: 166%;
}

.feedback {
  padding: 80px 0;
  background: url("../img/form-bg.jpg") center/cover no-repeat;
}

.feedback__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.feedback__left {
  max-width: 500px;
  color: #ffffff;
}

.feedback__title {
  margin-bottom: 30px;
  font-size: 50px;
  font-weight: 500;
}

.feedback__subtitle {
  font-size: 18px;
  line-height: 138%;
}

.feedback__right {
  max-width: 490px;
  width: 100%;
}

.feedback__form {
  width: 100%;
  padding: 50px;
  background: #ffffff;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.feedback__form input,
.feedback__form textarea {
  padding: 12px 20px;
  border-radius: 6px;
  background: #F7F5F5;
  border: none;
  outline: none;
}

.feedback__form textarea {
  height: 150px;
  resize: none;
}

.feedback__file {
  height: 120px;
  border-radius: 6px;
  border: 1px dashed #F4C01D;
  opacity: 0.8;
  background: #F7F4F4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 10px;
  cursor: pointer;
}

.feedback__file input {
  display: none;
}

.feedback__confirm {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #7D7D7D;
  font-size: 14px;
  cursor: pointer;
}

.feedback__confirm input {
  display: none;
}

.feedback__confirm input:checked + div svg path:nth-child(2) {
  opacity: 1;
}

.feedback__confirm div svg path:nth-child(2) {
  opacity: 0;
}

.feedback__submit {
  padding: 20px;
  border-radius: 30px;
  background: #F4C01D;
  cursor: pointer;
  border: none;
  outline: none;
  font-size: 20px;
  color: #4A4D54;
  font-weight: 500;
  transition: 0.2s ease-in-out;
}

.feedback__submit:hover {
  background: #d3a315;
}

.research-inner__images {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[6];
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 180px;
  grid-gap: 25px;
  margin-bottom: 50px;
}

.research-inner__image {
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
}

.research-inner__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.research-inner__image:nth-child(1) {
  -ms-grid-column-span: 4;
  grid-column: 4 span;
  -ms-grid-row-span: 2;
  grid-row: 2 span;
}

.research-inner__info {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.research-inner__info p {
  font-size: 18px;
  line-height: 166%;
  opacity: 0.8;
}

.contact {
  position: relative;
}

.contact::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url("../img/decor-section.png") bottom/100% auto no-repeat;
  z-index: -1;
  overflow: hidden;
}

.contact__container {
  padding-bottom: 100px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 25px;
}

.contact__left {
  display: flex;
  flex-direction: column;
}

.contact__title {
  text-align: left;
}

.contact__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 25px;
}

.contact__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid #F4C01D;
  background: #FFF;
}

.contact__item p,
.contact__item a {
  opacity: 0.8;
  font-size: 14px;
  line-height: 140%;
}

.contact__item ul {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.contact__item ul li {
  list-style-type: none;
}

.contact__item ul li a {
  transition: 0.2s ease-in-out;
}

.contact__item ul li a:hover {
  color: #F4C01D;
}

.contact__item-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 500;
}

.contact__item-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact__item-socials a {
  display: flex;
  opacity: 1;
}

.contact__map {
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
}

.politic__text {
  font-size: 14px;
  line-height: 135%;
  opacity: 0.8;
}

.empty__container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.empty__container p {
  max-width: 630px;
  text-align: center;
  opacity: 0.8;
  font-size: 14px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}

.modal.active {
  display: flex;
}

.modal__block {
  max-width: 490px;
  width: 100%;
  margin: 0 16px;
}

.modal__form {
  position: relative;
  background: #ffffff;
  width: 100%;
  padding: 50px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.modal__form input,
.modal__form textarea {
  padding: 12px 20px;
  border: none;
  outline: none;
  border-radius: 6px;
  background: #F7F5F5;
  width: 100%;
}

.modal__form textarea {
  height: 120px;
  resize: none;
}

.modal__form button {
  padding: 20px;
  border-radius: 30px;
  background: #F4C01D;
  color: #4A4D54;
  font-size: 20px;
  font-weight: 500;
  transition: 0.2s ease-in-out;
  cursor: pointer;
  border: none;
  outline: none;
}

.modal__form button:hover {
  background: #d3a315;
}

.modal__close {
  position: absolute;
  top: 30px;
  right: 30px;
  display: flex;
}

.modal__title {
  text-align: center;
  margin-bottom: 30px;
}

@media (max-width: 1420px) {
  .content {
    padding: 75px 0;
  }
}

@media (max-width: 1360px) {
  .container {
    max-width: 1240px;
  }

  .hero__info-title {
    font-size: 26px;
    max-width: 650px;
  }

  .hero__info-text {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .hero__info-link {
    font-size: 18px;
  }

  .about {
    padding: 100px 0;
  }

  .about::before {
    top: 0;
  }

  .sert::before {
    top: 0;
  }

  .sert {
    padding: 100px 0;
  }

  .section::before {
    top: 0;
  }

  .partner::before {
    top: 0;
  }
}

@media (max-width: 1340px) {
  .vac__item-title {
    font-size: 16px;
  }

  .feedback__title {
    font-size: 40px;
  }
}

@media (max-width: 1240px) {
  .container {
    max-width: 992px;
  }

  .content {
    padding: 50px 0;
  }

  .title {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .header__container {
    padding: 15px 0;
  }

  .header__nav-link {
    font-size: 14px;
  }

  .header__lang-item {
    font-size: 14px;
  }

  .header__feedback {
    font-size: 16px;
  }

  .header-space {
    padding-top: 81px;
  }

  .hero__images {
    border-radius: 0;
  }

  .hero__info-title {
    font-size: 22px;
  }

  .hero__info-text {
    font-size: 14px;
  }

  .hero__info-link {
    font-size: 16px;
    padding: 12px 20px;
  }

  .about__text {
    font-size: 16px;
  }

  .research__items {
    grid-gap: 15px;
  }

  .research__item {
    padding: 25px;
  }

  .research__item-title {
    font-size: 24px;
  }

  .research__item-link {
    font-size: 16px;
  }

  .research__item-logo {
    width: 45px;
    height: 45px;
  }

  .sert__item {
    height: 270px;
  }

  .activity__item-text {
    font-size: 16px;
  }

  .gallery__item {
    width: 200px;
  }

  .vac__arrow.next {
    right: 0;
  }

  .vac__arrow.prev {
    left: 0;
  }

  .research-inner__images {
    grid-auto-rows: 140px;
  }

  .contact__container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .contact__map {
    height: 300px;
  }
}

@media (max-width: 1200px) {
  .alert--width {
    width: 370px;
  }

  .alert--content {
    padding: 25px;
  }

  .alert--img__item svg {
    width: 75px;
    height: 75px;
  }

  .alert-text {
    margin-top: 10px;
  }

  .alert--title {
    font-size: 24px;
  }

  .alert--subtitle {
    font-size: 18px;
  }
}

@media (max-width: 992.9px) {
  .container {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 992px) {
  .burger {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (5px)[3];
    grid-template-columns: repeat(3, 5px);
    justify-content: space-between;
    width: 25px;
    row-gap: 5px;
    -moz-column-gap: 5px;
         column-gap: 5px;
    margin-left: 10px;
    margin-right: 0;
  }

  .header__logo {
    margin-right: auto;
  }

  .header__nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #000;
    display: none;
  }

  .header__nav.active {
    display: block;
  }

  .header__nav-list {
    flex-direction: column;
    padding: 30px 0;
  }

  .header__lang {
    gap: 10px;
  }

  .header__lang-item {
    width: 35px;
    height: 20px;
    font-size: 12px;
  }

  .header__feedback {
    padding: 8px 12px;
    font-size: 14px;
    margin-left: 10px;
  }

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

  .footer__col {
    margin-right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 50px;
  }

  .footer__logo {
    margin-right: 0;
    margin-bottom: 30px;
  }

  .footer__nav {
    flex-direction: column;
    align-items: center;
    row-gap: 40px;
    text-align: center;
  }

  .footer__nav-list {
    align-items: center;
  }

  .footer__nav-list li a {
    text-align: center;
  }

  .footer__nav-socials {
    justify-content: center;
  }

  .footer__bot-wrapper {
    flex-direction: column;
    row-gap: 20px;
  }

  .breadcrumbs__container {
    padding: 30px 0;
  }

  .hero__arrows {
    display: none;
  }

  .about__container {
    gap: 40px;
  }

  .about__img {
    width: 300px;
    height: 400px;
    padding-left: 0;
  }

  .research__item-title {
    font-size: 20px;
  }

  .research__item-text {
    font-size: 14px;
  }

  .feedback__container {
    flex-direction: column;
    row-gap: 50px;
  }

  .feedback__title {
    font-size: 32px;
    text-align: center;
  }

  .feedback__subtitle {
    text-align: center;
  }

  .research-inner__images {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: unset;
    grid-gap: 10px;
  }

  .research-inner__image:nth-child(1) {
    -ms-grid-column-span: 4;
    grid-column: 4 span;
    -ms-grid-row-span: 1;
    grid-row: 1 span;
  }

  .research-inner__info p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .about {
    padding: 50px 0;
  }

  .about__container {
    flex-direction: column-reverse;
  }

  .research__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .sert {
    padding: 50px 0;
  }

  .research-inner__images {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .research-inner__image:nth-child(1) {
    -ms-grid-column-span: 2;
    grid-column: 2 span;
  }
}

@media (max-width: 576px) {
  .activity__items::before {
    display: none;
  }

  .activity__item {
    display: flex;
    flex-direction: column;
    flex-direction: column-reverse;
    align-items: flex-start;
    row-gap: 20px;
  }

  .activity__item::before {
    display: none;
  }

  .activity__item:nth-child(even) .activity__item-text {
    order: unset;
  }

  .activity__item:nth-child(even) .activity__item-num {
    text-align: left;
  }

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

  .contact__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .modal__form {
    row-gap: 10px;
    padding: 20px;
  }

  .modal__form button {
    padding: 12px;
    font-size: 16px;
  }

  .modal__close {
    top: 10px;
    right: 10px;
  }
}

@media (max-width: 500px) {
  .alert--content {
    width: 92%;
  }

  .alert--img__item svg {
    width: 60px;
    height: 60px;
  }

  .alert--title {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .feedback__form {
    padding: 20px;
  }

  .feedback__submit {
    font-size: 16px;
  }
}




/* Фон модального окна */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Затемненный фон */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden; /* Скрываем элемент, когда он невиден */
    transition: opacity 0.3s ease, visibility 0.3s ease; /* Переход для плавного исчезновения */
}

/* Показ модального окна */
.modal-overlay.show {
    opacity: 1;
    visibility: visible; /* Показываем элемент */
}

/* Контейнер модального окна */
.custom-modal {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    width: 350px;
    max-width: 90%;
    transform: scale(0.7);
    transition: transform 0.3s ease; /* Переход для плавного увеличения */
}

/* Анимация для показа модального окна */
.modal-overlay.show .custom-modal {
    transform: scale(1);
}

.modal-header {
    background-color: #4CAF50;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.modal-title {
    font-size: 18px;
    font-weight: bold;
}

.modal-content {
    padding: 20px;
    font-size: 16px;
    color: #333;
}

.close-btn {
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    color: white;
}

.close-btn:hover {
    color: #ffdddd;
}
