.wpcf7 .wpcf7-submit,
.button {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Unbounded";
  font-weight: 300;
  font-size: 14px;
  line-height: 1;
  color: #000;
  background-color: var(--primary);
  border: none;
  padding: 1em;
  max-width: 350px;
  min-width: 250px;
  width: fit-content;
  max-height: 50px;
  transition: background-color 220ms linear;
}
.wpcf7 .wpcf7-submit:hover,
.button:hover {
  background-color: var(--active);
  cursor: pointer;
}
@media (min-width: 1051px) {
  .wpcf7 .wpcf7-submit,
  .button {
    font-size: 16px;
  }
}

a.button {
  color: #000;
}

.link {
  transition: color 220ms linear;
}
.link:hover {
  color: var(--active);
}

* {
  color: var(--text);
}

html,
body {
  width: 100%;
  height: auto;
  background-color: var(--bg);
  overflow-x: hidden;
}

div.page {
  position: relative;
  display: flex;
  flex-flow: column;
  margin: 0;
  width: 100%;
  max-width: 100vw;
  min-height: 100vh;
  transition: opacity 450ms linear;
}

.main {
  display: flex;
  flex-flow: column;
  flex: 1;
  height: 100%;
  width: 100%;
  background-color: var(--bg);
}

.primary {
  color: var(--primary);
}

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 64px;
  padding-right: 64px;
}
@media (max-width: 1050px) {
  .container {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

details {
  clip-path: inset(0 0 0 0);
}

.section {
  padding-top: 7rem;
  padding-left: 5rem;
  padding-right: 5rem;
}
@media (max-width: 1050px) {
  .section {
    padding-top: 5rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 768px) {
  .section {
    padding-top: 4rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.section__name {
  color: var(--primary);
  font-family: "Gotham Pro";
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  text-transform: uppercase;
}
@media (max-width: 1050px) {
  .section__name {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .section__name {
    font-size: 16px;
  }
}
.section__heading {
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .section__heading {
    margin-top: 1rem;
  }
}
.section__heading:not(.column) {
  gap: 1ch;
}
.section__heading.column {
  display: flex;
  flex-direction: column;
}
.section__heading.column .section__title, .section__heading.column .section__subtitle {
  display: block;
}
.section__title, .section__subtitle {
  line-height: 1.15;
}
@media (min-width: 1051px) {
  .section__title, .section__subtitle {
    font-size: 60px;
  }
}
@media (max-width: 1050px) {
  .section__title, .section__subtitle {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .section__title, .section__subtitle {
    font-size: 24px;
  }
}
.section__title {
  font-weight: 200;
}
.section__subtitle {
  font-weight: 400;
}
.section__text {
  line-height: 1.5;
}
@media (min-width: 1051px) {
  .section__text {
    font-size: 18px;
  }
}
@media (max-width: 1050px) {
  .section__text {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .section__text {
    font-size: 14px;
  }
}

.card {
  position: relative;
  display: grid;
  align-content: center;
  justify-content: center;
  max-width: 420px;
  max-height: 420px;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}
@media (max-width: 1050px) {
  .card {
    max-width: 50vmax;
    max-height: 50vmax;
  }
}
.card__bg {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
  background-size: cover;
  background-position: 0 0;
  background-repeat: no-repeat;
}
.card__title {
  position: relative;
  z-index: 1;
}

.about .card {
  align-items: center;
  justify-items: center;
  background-color: var(--bg-light);
  max-height: 305px;
  max-width: 305px;
}
.about .card__bg {
  opacity: 0.5;
  background: radial-gradient(circle at 50% 200%, var(--bg-blue), transparent);
}
.about .card__title {
  font-size: 90px;
  line-height: 1.35;
  color: var(--text);
  text-wrap: balance;
}
@media (max-width: 1050px) {
  .about .card__title {
    font-size: 72px;
  }
}

.footer {
  margin: 0;
}
.footer > .container {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1050px) {
  .footer > .container {
    flex-direction: column-reverse;
    gap: 1rem;
  }
}
.footer a.footer__text {
  transition: color 220ms linear;
}
.footer a.footer__text:hover {
  color: var(--primary);
}
.footer a.footer__text:active {
  color: var(--active);
}
.footer a.footer__text:visited {
  color: var(--white);
}
.footer_logo {
  display: flex;
  flex-direction: column;
  max-height: 128px;
  max-width: 305px;
  width: 100%;
}
@media (max-width: 1050px) {
  .footer_logo {
    align-self: center;
  }
}
.footer_info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
@media (min-width: 1051px) {
  .footer_info {
    max-width: 50vw;
  }
}
@media (max-width: 1050px) {
  .footer_info {
    gap: 0.5rem 2rem;
  }
}
@media (max-width: 768px) {
  .footer_info {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.footer_info_contact {
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .footer_info_contact {
    text-align: center;
  }
}
.footer_info_social {
  display: flex;
  gap: 20px;
}
@media (max-width: 768px) {
  .footer_info_social {
    order: -1;
    margin: 1rem auto;
    flex-basis: 100%;
    justify-content: center;
  }
}
.footer__social {
  display: flex;
  flex-direction: column;
  width: 40px;
  height: 40px;
}
.footer__social[data-source=instagram] {
  background-image: url("/wp-content/themes/rfc/img/instagram.svg");
}
.footer__social[data-source=facebook] {
  background-image: url("/wp-content/themes/rfc/img/facebook.svg");
}
.footer__social[data-source=linkedin] {
  background-image: url("/wp-content/themes/rfc/img/linkedin.svg");
}

.header {
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: sticky;
  inset: 0px 0 auto;
  z-index: 100;
  background-color: var(--bg);
  width: 100%;
  padding: 0 32px;
  padding-top: 5px;
}
@media (max-width: 1050px) {
  .header {
    padding: 0 16px;
    justify-content: space-between;
    gap: 2rem;
  }
  .header .langSwitch {
    margin-left: auto;
  }
  .header:not(.open) .nav {
    opacity: 0.25;
    pointer-events: none;
  }
  .header .nav {
    position: absolute;
    inset: 100% 0 0;
    background-color: var(--bg);
    padding: 32px;
    margin: 0;
    flex-direction: column;
    height: fit-content;
    font-size: 24px;
    gap: 0.5rem;
    transform: translateX(125%);
  }
  .header.open .nav {
    transform: translateX(0);
  }
  .header.open .header__burger__line:first-child {
    transform: translateY(13px) rotate(45deg);
  }
  .header.open .header__burger__line:nth-child(2) {
    opacity: 0;
  }
  .header.open .header__burger__line:last-child {
    transform: translateY(-14px) rotate(-45deg);
  }
}
.header_logo {
  display: flex;
  flex-direction: column;
  max-height: 80px;
  z-index: 5;
}
.header__burger {
  display: none;
  padding: 0;
}
@media (max-width: 1050px) {
  .header__burger {
    display: grid;
    align-items: center;
    width: 40px;
    height: 40px;
  }
}
.header__burger__line {
  display: block;
  width: 100%;
  min-width: 20px;
  height: 1px;
  background-color: var(--text);
  transform-origin: center;
  transition: 250ms linear;
}
.header .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  flex-basis: 50vw;
  transform-origin: right center;
  transition: transform 450ms ease-out 120ms, opacity 250ms linear 200ms;
}
.header .langSwitch #menu-lang_switch {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1pt;
  z-index: 5;
}
.header .langSwitch #menu-lang_switch .lang-item {
  cursor: pointer;
  display: flex;
  gap: 1pt;
  transition: color 220ms linear;
}
.header .langSwitch #menu-lang_switch .lang-item.current-lang, .header .langSwitch #menu-lang_switch .lang-item:hover {
  color: var(--active);
}
.header .langSwitch #menu-lang_switch .lang-item a {
  color: inherit;
}
.header .langSwitch #menu-lang_switch .lang-item:not(:last-child)::after {
  content: "/";
  display: block;
  color: var(--text);
  margin: 0 5px;
}

.post {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 5rem 0;
  gap: 1.5rem;
  width: 100%;
  position: sticky;
  z-index: 150;
  inset: 0 0 auto;
  background-color: var(--bg);
}
.post__title {
  color: var(--primary);
  font-size: 30px;
  text-transform: uppercase;
  font-weight: 300;
}
.post__image, .post__qr {
  max-height: 121px;
}
@media (min-width: 1051px) {
  .post + .header {
    top: 136px;
  }
}
@media (max-width: 1050px) {
  .post {
    display: none;
  }
}

.popup {
  position: fixed;
  inset: 0;
  margin: auto;
  max-width: 1200px;
  max-height: 768px;
  z-index: 200;
  transition: opacity 350ms linear;
}
@media (max-width: 1050px) {
  .popup {
    display: none;
  }
}
.popup.hide {
  opacity: 0;
  pointer-events: none;
}
.popup::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--outline-color);
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0.5;
  z-index: 0;
}
@media (min-width: 1051px) {
  .popup:not(.hide) + .page {
    opacity: 0.05;
  }
}
.popup-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-gap: 5rem;
  padding: 4rem;
  position: relative;
  z-index: 5;
}
.popup-bg {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  background-image: url("/wp-content/themes/rfc/img/header/bg.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
  z-index: 1;
}
.popup-logos .popup__logo:first-child {
  max-width: 220px;
}
.popup-logos .popup__logo:nth-child(2) {
  max-width: 140px;
}
.popup-logos, .popup-countries {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.popup-countries {
  justify-content: flex-end;
}
.popup-main {
  display: grid;
  grid-column: 1/-1;
  grid-gap: 1.5rem;
}
.popup__name, .popup__title {
  display: block;
  text-transform: uppercase;
}
.popup__name {
  order: -1;
  color: var(--primary);
  font-size: 30px;
  line-height: 1;
  padding-left: 5rem;
}
.popup__title {
  font-size: 60px;
  line-height: 1.15;
  max-width: 870px;
}
.popup-description {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-weight: 500;
}
.popup__text {
  font-size: 22px;
  line-height: 1.5;
}
.popup__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.popup__list__item {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 1rem;
  font-size: 22px;
  line-height: 1;
}
.popup__list__item:nth-child(2) {
  justify-self: center;
}
.popup__list__item:nth-child(3) {
  justify-self: end;
}
.popup__list__item::before {
  content: "";
  display: block;
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  outline: 2px solid var(--primary);
  margin: 0;
  inset: auto auto auto 2px;
}
.popup-additional {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-height: 130px;
  gap: 2.5rem;
}
.popup__details {
  display: flex;
  flex-direction: column;
  width: fit-content;
  gap: 1rem;
  font-size: 30px;
  line-height: 1;
  border: 1px solid var(--primary);
  padding: 1.5rem;
  font-family: "Unbounded";
  text-transform: uppercase;
}
.popup__register {
  position: relative;
  width: 130px;
}
.popup__register__text {
  display: block;
  position: absolute;
  inset: auto auto 100% 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.popup__register__qr {
  height: 130px;
  aspect-ratio: 1;
}

.about,
.mission,
.strategy,
.news,
.feedback {
  scroll-margin-top: 90px;
}
@media (max-width: 1050px) {
  .about,
  .mission,
  .strategy,
  .news,
  .feedback {
    scroll-margin-top: 64px;
  }
}

#page ul {
  list-style: none;
  margin: 0;
}
#page .home .hero {
  background-image: url("/wp-content/themes/rfc/img/bg-home.svg"), url("/wp-content/themes/rfc/img/home-hero-bg.svg");
  background-attachment: fixed;
}
@media (min-width: 1051px) {
  #page .home .hero .heading {
    grid-template-columns: 1fr 1.25fr 1fr;
    max-width: 90vw;
  }
}
@media (max-width: 1050px) {
  #page .home .hero .heading__title:first-child, #page .home .hero .heading__subtitle:first-child {
    text-indent: 1.5em;
  }
  #page .home .hero .heading__title:nth-child(odd), #page .home .hero .heading__subtitle:nth-child(odd) {
    text-align: left;
    justify-self: left;
  }
  #page .home .hero .heading__title:nth-child(even), #page .home .hero .heading__subtitle:nth-child(even) {
    text-align: right;
    justify-self: right;
  }
}
#page .hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-position: 0 64px;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 5;
  /*@include screen-m {
  	.hero__video {
  		border-radius: 7px;

  		video {
  			height: 305px;
  		}
  	}
  }*/
}
#page .hero__video {
  display: grid;
  max-width: 90vw;
  width: 100%;
  border: 1px solid #f6cf62;
}
#page .hero__video video {
  object-fit: cover;
  display: flex;
  width: 100%;
  height: auto;
  max-width: 100vw;
  max-height: 100vh;
}
#page .hero .heading {
  display: grid;
  align-items: center;
}
@media (min-width: 1051px) {
  #page .hero .heading {
    margin: 6rem 0 5rem 2rem;
  }
}
@media (max-width: 1050px) {
  #page .hero .heading {
    margin: 3rem 1rem 2.5rem;
  }
}
#page .hero .heading__title, #page .hero .heading__subtitle {
  text-transform: uppercase;
  grid-column: 1/-1;
}
#page .hero .heading__title {
  font-size: 36px;
  font-weight: 600;
  order: 2;
}
@media (min-width: 1051px) {
  #page .hero .heading__title {
    font-size: 85px;
  }
  #page .hero .heading__title:nth-child(2) {
    grid-column: 1/3;
    justify-self: end;
  }
}
@media (max-width: 1050px) {
  #page .hero .heading__title {
    font-size: 48px;
  }
}
@media (max-width: 768px) {
  #page .hero .heading__title {
    font-size: 36px;
  }
}
#page .hero .heading__subtitle {
  font-weight: 200;
  order: 1;
}
@media (min-width: 1051px) {
  #page .hero .heading__subtitle {
    font-size: 60px;
  }
  #page .hero .heading__subtitle:nth-child(4) {
    grid-column: 2/-1;
  }
}
@media (max-width: 1050px) {
  #page .hero .heading__subtitle {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  #page .hero .heading__subtitle {
    font-size: 32px;
  }
}
#page .hero .heading__button {
  order: 3;
  justify-self: end;
}
#page .hero .media {
  display: grid;
  grid-template-columns: 0.95fr 0.95fr 0.75fr 0.9fr 1.25fr;
  grid-template-rows: repeat(2, 1fr);
  grid-gap: 30px;
}
@media (min-width: 1051px) {
  #page .hero .media {
    grid-template-columns: 0.95fr 0.95fr 0.75fr 0.9fr 1.25fr;
  }
  #page .hero .media__photo:first-child {
    grid-column: 1/3;
    grid-row: 1/2;
  }
  #page .hero .media__photo:nth-child(2) {
    grid-column: 1/2;
    grid-row: 2/3;
  }
  #page .hero .media__photo:nth-child(3) {
    grid-column: 2/3;
    grid-row: 2/3;
  }
  #page .hero .media__photo:nth-child(4) {
    grid-column: 3/5;
    grid-row: 1/3;
  }
  #page .hero .media__photo:nth-child(5) {
    grid-column: 5/6;
    grid-row: 1/2;
  }
  #page .hero .media__photo:nth-child(6) {
    grid-column: 5/6;
    grid-row: 2/3;
  }
}
@media (max-width: 1050px) {
  #page .hero .media {
    grid-gap: 15px;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 140px 160px 170px 160px;
  }
  #page .hero .media__photo:first-child {
    grid-column: 2/-1;
    grid-row: 1/2;
  }
  #page .hero .media__photo:nth-child(2) {
    grid-column: 1/3;
    grid-row: 2/3;
  }
  #page .hero .media__photo:nth-child(3) {
    grid-column: 3/-1;
    grid-row: 2/3;
  }
  #page .hero .media__photo:nth-child(4) {
    grid-column: 1/-2;
    grid-row: 3/4;
  }
  #page .hero .media__photo:nth-child(5) {
    grid-column: 1/3;
    grid-row: 4/5;
  }
  #page .hero .media__photo:nth-child(6) {
    grid-column: 3/-1;
    grid-row: 4/5;
  }
}
#page .hero .media__photo {
  display: flex;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
#page .about {
  display: grid;
  position: relative;
  z-index: 1;
}
#page .about::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 600px;
  z-index: 0;
  inset: 0;
  margin: 0;
  opacity: 55%;
  background: radial-gradient(rgb(44, 189, 225), rgb(44, 189, 225)) 100% -340px;
  background-repeat: no-repeat;
  background-size: 50% 100%;
  filter: blur(196px);
  transform: skew(20deg) rotate(-24deg);
}
@media (min-width: 1051px) {
  #page .about {
    grid-template-columns: 2.2fr 1fr;
  }
  #page .about__heading {
    grid-column: 1/2;
  }
}
#page .about__text {
  z-index: 1;
}
@media (min-width: 1051px) {
  #page .about__text {
    grid-row: 2/3;
    grid-column: 2/3;
    order: 3;
    align-self: end;
  }
}
@media (max-width: 1050px) {
  #page .about__text {
    margin-top: 2rem;
  }
}
#page .about__tags {
  display: grid;
  width: 100%;
  grid-gap: 15px;
  margin-top: 4.5rem;
  grid-column: 1/-1;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  justify-items: center;
}
@media (min-width: 1051px) {
  #page .about__tags {
    grid-gap: 30px;
    grid-template-columns: repeat(4, 1fr);
  }
}
#page .content-bg {
  position: relative;
}
#page .content-bg::before, #page .content-bg::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  inset: 0;
  margin: 0 auto;
  pointer-events: none;
}
#page .content-bg::after {
  background-size: contain;
  background-position: right;
  background-image: url("/wp-content/themes/rfc/img/mission-bg-overlay.svg");
}
#page .mission.content-bg::before {
  background-size: auto 90%;
  background-position: 100% 70%;
  background-image: url("/wp-content/themes/rfc/img/mission-rigth.svg");
}
@media (min-width: 1651px) {
  #page .mission.content-bg::before {
    background-size: auto 100%;
    background-position: 110% 20px;
  }
}
#page .mission.section {
  padding-bottom: 7rem;
}
@media (max-width: 1050px) {
  #page .mission.section {
    padding-bottom: 5rem;
  }
}
@media (max-width: 768px) {
  #page .mission.section {
    padding-bottom: 4rem;
  }
}
#page .mission__heading {
  max-width: min(75vw, 1080px);
}
#page .mission__text {
  margin: 3rem 0;
  max-width: 470px;
}
@media (max-width: 1050px) {
  #page .mission__text {
    margin: 2rem 0;
  }
}
@media (max-width: 768px) {
  #page .mission__text {
    margin: 1rem 0 1.5rem;
  }
}
#page .strategy.section {
  padding-top: 0;
}
#page .strategy__heading {
  margin-bottom: 4.5rem;
}
@media (max-width: 1050px) {
  #page .strategy__heading {
    margin-bottom: 3rem;
  }
}
@media (max-width: 768px) {
  #page .strategy__heading {
    margin-bottom: 2rem;
  }
}
#page .strategy__heading .strategy__title {
  margin-inline-end: 0.25ch;
}
#page .strategy__subheading {
  display: grid;
  align-items: center;
  margin-top: 4rem;
  margin-bottom: 4rem;
}
@media (min-width: 1051px) {
  #page .strategy__subheading {
    grid-template-columns: 2fr 0.9fr;
    margin-top: 7.5rem;
    margin-bottom: 7.5rem;
  }
}
@media (max-width: 1050px) {
  #page .strategy__subheading {
    grid-gap: 2rem;
  }
}
#page .strategy__subheading .strategy__title {
  line-height: 1.15;
  font-weight: 200;
}
@media (min-width: 1051px) {
  #page .strategy__subheading .strategy__title {
    max-width: 695px;
    font-size: 60px;
  }
}
@media (max-width: 1050px) {
  #page .strategy__subheading .strategy__title {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  #page .strategy__subheading .strategy__title {
    font-size: 32px;
  }
}
#page .strategy__tags {
  display: grid;
  grid-template-columns: repeat(3, minmax(436px, auto));
}
@media (max-width: 1050px) {
  #page .strategy__tags {
    grid-template-columns: repeat(2, minmax(auto, 436px));
  }
}
@media (max-width: 768px) {
  #page .strategy__tags {
    grid-template-columns: 1fr;
  }
}
#page .strategy__tag {
  display: flex;
  padding: 2rem;
  outline: 1px solid var(--outline-color);
}
@media (min-width: 1051px) {
  #page .strategy__tag {
    flex-flow: row wrap;
    align-items: flex-end;
    padding: 2.5rem;
  }
}
@media (max-width: 1050px) {
  #page .strategy__tag {
    flex-direction: column;
    align-items: center;
  }
}
#page .strategy__tag__image {
  padding: 0.5rem;
  width: 100%;
  max-width: 100px;
  max-height: 100px;
  flex-basis: 100%;
}
#page .strategy__tag__title {
  font-family: "Gotham Pro";
  font-weight: 400;
  flex-basis: 100%;
}
@media (min-width: 1051px) {
  #page .strategy__tag__title {
    font-size: 25px;
  }
}
@media (max-width: 1050px) {
  #page .strategy__tag__title {
    font-size: 21px;
  }
}
@media (max-width: 768px) {
  #page .strategy__tag__title {
    font-size: 18px;
  }
}
#page .strategy__cards {
  display: grid;
  grid-gap: 1.75rem;
  justify-items: center;
}
@media (min-width: 1051px) {
  #page .strategy__cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1050px) {
  #page .strategy__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  #page .strategy__cards {
    grid-template-columns: 1fr;
  }
}
#page .strategy .card {
  padding: 2rem;
  background-color: #eee;
  align-content: space-between;
}
@media (min-width: 1051px) {
  #page .strategy .card {
    padding: 3rem;
  }
}
#page .strategy .card__bg {
  z-index: 0;
  opacity: 0.25;
  background-image: linear-gradient(45deg, #2cbde1, #c2f0cf);
}
#page .strategy .card__image {
  position: relative;
  z-index: 1;
}
#page .strategy .card__title {
  color: #000;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.4;
  align-self: end;
}
@media (min-width: 1051px) {
  #page .strategy .card__title {
    font-size: 25px;
  }
}
@media (max-width: 1050px) {
  #page .strategy .card__title {
    font-size: 21px;
  }
}
@media (max-width: 768px) {
  #page .strategy .card__title {
    font-size: 18px;
  }
}
@media (min-width: 1051px) {
  #page .news {
    margin-top: 0rem;
  }
}
@media (max-width: 1050px) {
  #page .news {
    margin-top: 0rem;
  }
}
@media (max-width: 768px) {
  #page .news {
    margin-top: 0rem;
  }
}
#page .news .news_wrapper {
  position: relative;
}
#page .news .splide__list {
  flex-direction: row;
}
#page .news .splide__pagination {
  flex-direction: row;
  bottom: -40px;
}
#page .news .splide__arrows {
  width: calc(100% + 140px);
  position: absolute;
  top: calc(50% + 30px);
  left: -70px;
}
#page .news .swiper_news.swiper-pagination {
  bottom: -30px;
}
#page .news .swiper_news.swiper-pagination .swiper-pagination-bullet:not(.swiper-pagination-bullet-active) {
  opacity: 0.6;
  background-color: #fff;
}
#page .news .swiper_news.swiper-button-prev {
  left: -50px;
  --swiper-navigation-color: var(--active);
}
@media (max-width: 1050px) {
  #page .news .swiper_news.swiper-button-prev {
    left: -30px;
  }
  #page .news .swiper_news.swiper-button-prev::after {
    font-size: 30px;
  }
}
#page .news .swiper_news.swiper-button-next {
  right: -50px;
  --swiper-navigation-color: var(--active);
}
@media (max-width: 1050px) {
  #page .news .swiper_news.swiper-button-next {
    right: -30px;
  }
  #page .news .swiper_news.swiper-button-next::after {
    font-size: 30px;
  }
}
#page .news__list {
  display: grid;
  grid-gap: 1.75rem;
  margin-top: 4rem;
}
@media (min-width: 1051px) {
  #page .news__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1050px) {
  #page .news__list {
    margin-top: 3rem;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  #page .news__list {
    margin-top: 2rem;
    grid-template-columns: 1fr;
  }
}
#page .news_card {
  --card-picture-height: 350px;
  --card-content-height: 250px;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: calc(var(--card-content-height) + var(--card-picture-height));
  background-color: #fff;
}
#page .news_card__link_wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
}
#page .news_card__link_wrapper::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: calc(100% - var(--card-picture-height));
  inset: 0;
  margin: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(var(--bg-blue), var(--bg-blue));
  background-repeat: no-repeat;
  background-size: 50% 50%;
  filter: blur(196px);
  transform: skew(20deg);
  opacity: 55%;
  background-position-x: 100%;
  top: auto;
  bottom: 0;
}
#page .news_card__picture {
  height: var(--card-picture-height);
}
#page .news_card__image {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#page .news_card__text {
  margin: 2rem 2.5rem;
  font-weight: 300;
  font-family: "Unbounded";
  font-size: 18px;
  line-height: 1.5;
  text-wrap: balance;
}
@media (max-width: 1050px) {
  #page .news_card__text {
    margin: 1.5rem 2rem;
  }
}
@media (max-width: 768px) {
  #page .news_card__text {
    margin: 1.5rem 1.5rem;
  }
}
#page .news_card__date {
  margin: 0 2.5rem 2rem;
  margin-top: auto;
  font-weight: 400;
  font-family: "Gotham Pro";
  font-size: 16px;
  line-height: 1;
}
@media (max-width: 1050px) {
  #page .news_card__date {
    margin: 0 2rem 1.5rem;
  }
}
@media (max-width: 768px) {
  #page .news_card__date {
    margin: 0 1.5rem 1.5rem;
  }
}
#page .news_card__text, #page .news_card__date {
  color: var(--black);
}
#page .news_card__text *, #page .news_card__date * {
  color: inherit;
}
#page .participants__list,
#page .partners__list {
  display: grid;
  margin-top: 4rem;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}
#page .participants__list__item,
#page .partners__list__item {
  display: grid;
  justify-content: center;
  align-content: center;
  padding: 3em;
  outline: 1px solid var(--outline-color);
}
#page .participants .section__heading {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-bottom: 7.5rem;
}
@media (max-width: 768px) {
  #page .participants .section__heading {
    margin-bottom: 2.5rem;
  }
}
#page .participants .section__heading .heading__button {
  margin-bottom: 0.3rem;
  margin-left: auto;
}
@media (max-width: 1200px) {
  #page .participants .section__heading .heading__button {
    margin-left: 0 !important;
  }
}
#page .swiper_participants {
  position: relative;
  width: calc(100% + 10rem);
  left: -5rem;
}
#page .swiper_participants::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(90deg, rgb(27, 32, 53) 0%, rgba(27, 32, 53, 0) 10%, rgba(27, 32, 53, 0) 90%, rgb(27, 32, 53) 100%);
  z-index: 2;
}
#page .swiper_participants .swiper-wrapper {
  transition-timing-function: linear;
}
#page .swiper_participants .swiper-slide {
  height: 200px;
}
#page .swiper_participants .swiper-slide__container {
  border: 1px solid var(--outline-color);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
#page .swiper_participants .swiper-slide__container img {
  width: 140px;
  height: 120px;
  margin: auto;
}
#page .partners .section__heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
#page .partners .section__heading .heading__button {
  margin-bottom: 0.3rem;
}
#page .splide_partners, #page .swiper_partners {
  margin-top: 70px;
}
#page .splide_partners::before, #page .swiper_partners::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(90deg, rgb(27, 32, 53) 0%, rgba(27, 32, 53, 0) 10%, rgba(27, 32, 53, 0) 90%, rgb(27, 32, 53) 100%);
  z-index: 2;
}
#page .splide_partners .splide__track, #page .swiper_partners .splide__track {
  overflow-y: visible;
}
#page .splide_partners .splide__list, #page .swiper_partners .splide__list {
  flex-direction: row;
}
#page .splide_partners .splide__list .splide__slide__container, #page .swiper_partners .splide__list .splide__slide__container {
  border: 1px solid var(--outline-color);
}
#page .splide_partners .splide__list .splide__slide__container .partners__list__link, #page .swiper_partners .splide__list .splide__slide__container .partners__list__link {
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
}
#page .splide_partners .splide__list .splide__slide__container .partners__list__link img, #page .swiper_partners .splide__list .splide__slide__container .partners__list__link img {
  width: 140px;
  height: 120px;
}
#page .splide_partners .splide__pagination, #page .swiper_partners .splide__pagination {
  flex-direction: row;
}
#page .splide_partners .swiper-wrapper, #page .swiper_partners .swiper-wrapper {
  transition-timing-function: linear;
}
#page .splide_partners .swiper-slide, #page .swiper_partners .swiper-slide {
  height: 200px !important;
}
#page .splide_partners .swiper-slide__container, #page .swiper_partners .swiper-slide__container {
  border: 1px solid var(--outline-color);
  height: 100%;
}
#page .splide_partners .swiper-slide__container .partners__list__link, #page .swiper_partners .swiper-slide__container .partners__list__link {
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
}
#page .splide_partners .swiper-slide__container .partners__list__link img, #page .swiper_partners .swiper-slide__container .partners__list__link img {
  width: 140px;
  height: 120px;
}
#page .feedback {
  position: relative;
  display: grid;
  grid-gap: 3rem;
  background-image: url("/wp-content/themes/rfc/img/form-bg22.svg");
  background-repeat: no-repeat;
  background-size: auto;
  background-position: top left;
}
@media (min-width: 1051px) {
  #page .feedback {
    padding: 10rem 5rem 5rem;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 1050px) {
  #page .feedback {
    padding: 10rem 2.5rem 5rem;
    background-position: center;
    background-size: contain;
  }
}
@media (max-width: 768px) {
  #page .feedback {
    padding: 5rem 2rem;
    grid-gap: 2rem;
  }
}
#page .feedback::before, #page .feedback::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: 0;
  margin: 0;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: bottom center;
}
#page .feedback::before {
  background-image: url("/wp-content/themes/rfc/img/feedback-bg-gradient.svg");
}
#page .feedback::after {
  background-image: url("/wp-content/themes/rfc/img/feedback-bg-overlay.svg");
  opacity: 0.2;
}
#page .feedback .wpcf7 {
  position: relative;
  z-index: 5;
  display: grid;
  grid-gap: 2rem;
  padding: 3rem 2rem 2rem;
}
@media (min-width: 1051px) {
  #page .feedback .wpcf7 {
    grid-gap: 3rem;
    padding: 5rem 3.75rem 3.75rem;
  }
}
#page .feedback .wpcf7::before, #page .feedback .wpcf7::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  margin: 0;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}
#page .feedback .wpcf7::before {
  background-image: url("/wp-content/themes/rfc/img/question_form_bg.svg");
  background-size: cover;
}
#page .feedback .wpcf7 .wpcf7-form-control-wrap {
  display: block;
  position: relative;
  padding-bottom: 1rem;
}
#page .feedback .wpcf7 .wpcf7-form-control-wrap::after {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  height: 1px;
  background-color: #fff;
  inset: 100% 0 0;
  opacity: 0.2;
  transition: 250ms linear;
}
#page .feedback .wpcf7 .wpcf7-form-control-wrap.active::after {
  opacity: 0.75;
}
#page .feedback .wpcf7 .wpcf7-form-control-wrap textarea,
#page .feedback .wpcf7 .wpcf7-form-control-wrap input {
  display: block;
  width: 100%;
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
  font-family: "Gotham Pro";
  padding-bottom: 1rem;
  color: var(--white);
  border: none;
  padding: 0;
  border-radius: 0;
}
#page .feedback .wpcf7 .wpcf7-form-control-wrap textarea::placeholder,
#page .feedback .wpcf7 .wpcf7-form-control-wrap input::placeholder {
  color: var(--white);
  opacity: 0.5;
}

#page .catalogue {
  background-image: url("/wp-content/themes/rfc/img/catalogue-hero-bg.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 0 0;
}
#page .catalogue .hero .heading {
  justify-items: center;
}
#page .catalogue .hero .heading__title {
  line-height: 1;
  margin-bottom: 0.6em;
}
#page .catalogue .hero .heading__button {
  justify-self: center;
  color: var(--black);
  text-align: center;
  margin-right: 0;
}
#page .catalogue .hero .catalog {
  display: grid;
  grid-gap: 15px;
}
@media (min-width: 1051px) {
  #page .catalogue .hero .catalog {
    grid-template-columns: 1.75fr 1.5fr 1.5fr 1.2fr 1fr 1fr;
  }
  #page .catalogue .hero .catalog > img {
    width: 100%;
  }
  #page .catalogue .hero .catalog > img:nth-child(1) {
    grid-column: 1/2;
    grid-row: 1/2;
  }
  #page .catalogue .hero .catalog > img:nth-child(2) {
    grid-column: 2/3;
    grid-row: 1/3;
  }
  #page .catalogue .hero .catalog > img:nth-child(3) {
    grid-column: 3/4;
    grid-row: 1/3;
  }
  #page .catalogue .hero .catalog > img:nth-child(4) {
    grid-column: 4/5;
    grid-row: 1/2;
  }
  #page .catalogue .hero .catalog > img:nth-child(5) {
    grid-column: 5/6;
    grid-row: 1/2;
  }
  #page .catalogue .hero .catalog > img:nth-child(6) {
    grid-column: 6/7;
    grid-row: 1/2;
  }
  #page .catalogue .hero .catalog > img:nth-child(7) {
    grid-column: 4/6;
    grid-row: 4/5;
  }
  #page .catalogue .hero .catalog > img:nth-child(8) {
    grid-column: 2/3;
    grid-row: 3/6;
  }
  #page .catalogue .hero .catalog > img:nth-child(9) {
    grid-column: 3/4;
    grid-row: 3/5;
  }
  #page .catalogue .hero .catalog > img:nth-child(10) {
    grid-column: 4/5;
    grid-row: 2/4;
  }
  #page .catalogue .hero .catalog > img:nth-child(11) {
    grid-column: 5/6;
    grid-row: 2/3;
  }
  #page .catalogue .hero .catalog > img:nth-child(12) {
    grid-column: 6/7;
    grid-row: 2/4;
  }
  #page .catalogue .hero .catalog > img:nth-child(13) {
    grid-column: 5/6;
    grid-row: 3/4;
  }
  #page .catalogue .hero .catalog > img:nth-child(14) {
    grid-column: 1/2;
    grid-row: 2/4;
  }
  #page .catalogue .hero .catalog > img:nth-child(15) {
    grid-column: 1/2;
    grid-row: 4/6;
  }
  #page .catalogue .hero .catalog > img:nth-child(16) {
    grid-column: 3/4;
    grid-row: 5/6;
  }
  #page .catalogue .hero .catalog > img:nth-child(17) {
    grid-column: 4/5;
    grid-row: 5/6;
  }
  #page .catalogue .hero .catalog > img:nth-child(18) {
    grid-column: 5/7;
    grid-row: 5/6;
    width: 100%;
  }
  #page .catalogue .hero .catalog > img:nth-child(19) {
    grid-column: 6/7;
    grid-row: 4/5;
  }
}
@media (max-width: 1050px) {
  #page .catalogue .hero .catalog {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  #page .catalogue .hero .catalog > img {
    width: 100%;
  }
  #page .catalogue .hero .catalog > img:last-child {
    display: none;
  }
}
@media (max-width: 768px) {
  #page .catalogue .hero .catalog > img:nth-child(9) {
    display: none;
  }
  #page .catalogue .hero .catalog > img:nth-child(10) {
    display: none;
  }
  #page .catalogue .hero .catalog > img:nth-child(11) {
    display: none;
  }
  #page .catalogue .hero .catalog > img:nth-child(12) {
    display: none;
  }
  #page .catalogue .hero .catalog > img:nth-child(13) {
    display: none;
  }
  #page .catalogue .hero .catalog > img:nth-child(14) {
    display: none;
  }
  #page .catalogue .hero .catalog > img:nth-child(15) {
    display: none;
  }
  #page .catalogue .hero .catalog > img:nth-child(16) {
    display: none;
  }
  #page .catalogue .hero .catalog > img:nth-child(17) {
    display: none;
  }
  #page .catalogue .hero .catalog > img:nth-child(18) {
    display: none;
  }
  #page .catalogue .hero .catalog > img:nth-child(19) {
    display: none;
  }
}
@media (max-width: 400px) {
  #page .catalogue .hero .catalog > img:nth-child(5) {
    display: none;
  }
  #page .catalogue .hero .catalog > img:nth-child(6) {
    display: none;
  }
  #page .catalogue .hero .catalog > img:nth-child(7) {
    display: none;
  }
  #page .catalogue .hero .catalog > img:nth-child(8) {
    display: none;
  }
  #page .catalogue .hero .catalog > img:nth-child(9) {
    display: none;
  }
  #page .catalogue .hero .catalog > img:nth-child(10) {
    display: none;
  }
  #page .catalogue .hero .catalog > img:nth-child(11) {
    display: none;
  }
  #page .catalogue .hero .catalog > img:nth-child(12) {
    display: none;
  }
  #page .catalogue .hero .catalog > img:nth-child(13) {
    display: none;
  }
  #page .catalogue .hero .catalog > img:nth-child(14) {
    display: none;
  }
  #page .catalogue .hero .catalog > img:nth-child(15) {
    display: none;
  }
  #page .catalogue .hero .catalog > img:nth-child(16) {
    display: none;
  }
  #page .catalogue .hero .catalog > img:nth-child(17) {
    display: none;
  }
  #page .catalogue .hero .catalog > img:nth-child(18) {
    display: none;
  }
  #page .catalogue .hero .catalog > img:nth-child(19) {
    display: none;
  }
}
#page .catalogue .hero .catalog > img {
  display: flex;
  margin: 0;
  height: 100%;
  object-fit: cover;
}
#page .catalogue .participants__button {
  color: var(--black);
  margin-left: auto;
  margin-right: 0;
}
@media (max-width: 1200px) {
  #page .catalogue .participants__button {
    megrin-left: 0px !important;
  }
}
#page .catalogue .participants__list {
  grid-template-columns: repeat(auto-fit, minmax(260px, 328px));
  margin-bottom: 3.5rem;
}

#page .company_section {
  position: relative;
  display: grid;
  justify-items: center;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
}
#page .company_section::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  margin: 0;
  width: 35%;
  height: 55%;
  top: 50%;
  left: auto;
  right: 5%;
  background: radial-gradient(rgb(44, 189, 225), rgb(44, 189, 225)) 50% 50%, radial-gradient(rgb(194, 240, 207), rgb(194, 240, 207)) 0% 0%;
  background-repeat: no-repeat;
  background-size: 50% 50%;
  filter: blur(110px);
  transform: skew(20deg);
  opacity: 80%;
}
#page .company_section .company__main {
  margin-right: auto;
}
#page .company_section .company__text {
  margin-top: 3em;
  margin-bottom: 3em;
}
#page .company_section .heading__button {
  color: var(--black);
}
#page .company .hero {
  position: relative;
  min-height: 70vh;
  max-height: 780px;
  overflow: hidden;
}
#page .company .hero .section__title {
  font-weight: 400;
}
#page .company .hero__logo {
  display: flex;
  position: absolute;
  inset: 0;
  margin: auto;
  max-width: 350px;
}
#page .company .hero__bg {
  position: relative;
  width: 100%;
}
#page .company .hero__bg::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background-color: #000;
  opacity: 0.5;
}
#page .company .hero__bg img {
  display: flex;
  margin: 0;
  width: 100%;
}
#page .company__contact {
  display: grid;
  grid-gap: 20px;
  z-index: 1;
}
#page .company__contact__title {
  font-family: "Gotham Pro", sans-serif;
  font-weight: 500;
  margin-bottom: 20px;
}
#page .company__contact .contact__info {
  display: flex;
  gap: 5px;
}
#page .company__contact .contact__info__title {
  font-size: 18px;
  font-weight: 500;
}
#page .company__contact .contact__info__value {
  font-size: 18px;
  font-weight: 300;
  transition: color 0.3s;
}
#page .company__contact .contact__info__value:hover {
  color: var(--active);
}
#page .company .media {
  display: grid;
  grid-gap: 30px 30px;
  /*height: 950px;*/
  box-sizing: content-box;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr;
}
#page .company .media.media-3 {
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr;
}
#page .company .media.media-4 {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}
#page .company .media.media-5 {
  grid-template-columns: 40% 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}
#page .company .media.media-5 > img:first-child {
  grid-row: 1/3;
}
#page .company .media.media-6 {
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}
#page .company .media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  grid-row: unset;
}

#primary > .news .news__text {
  margin-top: 2rem;
  margin-bottom: 2rem;
  text-align: justify;
}

.hover,
a,
button,
.link,
.button {
  cursor: pointer;
}

.overflow-unset {
  overflow: unset;
}

body::-webkit-scrollbar-track {
  background-color: var(--bg);
}

html {
  --bg: #1b2035;
  --bg-light: #192f56;
  --bg-blue: #2cbde1;
  --text: #ffffff;
  --active: #f5be61;
  --primary: #f6cf62;
  --outline-color: #224076;
  --black: #000;
}

*::before, *::after {
  pointer-events: none;
}

/*# sourceMappingURL=main.css.map */
