@import url("https://fonts.googleapis.com/css2?family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap");

@font-face {
  font-family: "Fivo Sans Modern Bold";
  src: url("./fonts/FivoSansModern/FivoSansModern-Bold.otf");
}

@font-face {
  font-family: "Fivo Sans Modern Regular";
  src: url("./fonts/FivoSansModern/FivoSansModern-Regular.otf");
}

* {
  padding: 0;
  margin: 0;
}

body {
  position: relative;
  width: 100%;
  min-width: 375px;
  background-color: black;
  cursor: url("./img/cursor.svg"), auto;
}

.ttu {
  text-transform: uppercase;
}

.text-inherit {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
  font-style: inherit;
}

.section-body {
  position: relative;
  overflow: hidden;
}

.body_spiral {
  position: absolute;
  right: 0;
  top: 80px;
}

a {
  text-decoration: none;
  cursor: pointer;
  transition: color 0.5;
  -webkit-transition: color 0.5s;
}

a:hover {
  color: #e84296;
}

button:hover {
  cursor: pointer;
}

.container {
  position: relative;
  box-sizing: border-box;
  width: 86%;
  padding: 60px 0;
}

.section-default-styles {
  position: relative;
  display: flex;
  justify-content: center;
}

.section-title {
  font-family: "Fivo Sans Modern Bold";
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 50px;
  text-transform: uppercase;

  color: #ffffff;
}

.section-medium-text {
  font-family: "Fivo Sans Modern Regular";
  font-style: normal;
  font-weight: 400;
  font-size: 42px;
  line-height: 42px;

  color: #ffffff;
}

.section-medium-text-bold {
  font-family: "Fivo Sans Modern Bold";
  font-style: normal;
  font-weight: 400;
  font-size: 42px;
  line-height: 42px;

  color: #ffffff;
}

.section-default-text {
  font-family: "Fivo Sans Modern Regular";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;

  color: #ffffff;
}

.note-color {
  color: #e84296;
}

.button__content {
  height: 82px !important;
  align-items: center;
  overflow: hidden;
  position: relative;
  display: inline-block;
  width: 100%;
  display: flex;
  align-content: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 100px;
  border: none;
  background: #e84296;
  z-index: 4;
}

.button__circle {
  border-radius: 1000px;
  position: absolute;
  left: 0;
  top: 0;
  width: 0px;
  height: 0px;
  margin-left: 0px;
  margin-top: 0px;
  pointer-events: none;
  z-index: 2;
}

.ellipse {
  position: absolute;
  z-index: -100;
}

.body__ellipse-left,
.body__ellipse-right {
  width: 120vw;
  right: 0;
}

.header-ellipse {
  transition: all 0.6s ease;
  top: -100px;
}

.footer-ellipse {
  bottom: -350px;
}

.body__ellipse-left {
  transform-origin: 65% 40%;
  animation: rotate 6s linear infinite;
  left: -250px;
}

.body__ellipse-right {
  animation: rotate- 10s linear infinite;
  transform-origin: 40% 55%;
  left: 100px;
}

/* header */

header {
  width: 100%;
  overflow: hidden;
}

.header__container {
  width: 86%;
  height: 860px;
  display: grid;
  grid-template-rows: 10.5% 89.5%;
}
.is-sticky {
  opacity: 1 !important;
}

#navArea {
  position: absolute;
  width: 100%;
  min-width: 375px;
  height: 100%;
  opacity: 0;
  background: black;
  transition: all 0.5s ease;
}

.nav__container {
  width: 86%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: space-between;
  align-items: center;
}

.header__menu {
  position: fixed;
  top: 0;
  display: flex;
  justify-content: center;
  height: 90px;
  width: 100%;
  z-index: 100;
}

.header__menu__logo {
  z-index: 5;
  width: 110px;
}

.header__menu__navigation {
  position: fixed;
  display: flex;
  justify-content: center;
  padding-top: 160px;
  width: 100%;
  min-width: 375px;
  top: -100vh;
  left: 0;
  height: 100%;
  opacity: 0;
  transition: all 0.2s ease-in;
  z-index: 4;
  box-sizing: border-box;
  overflow: hidden;
}

.header__menu__navigation hr {
  height: 0.01px;
}

.header__menu__navigation__container {
  display: grid;
  grid-template-rows: repeat(9, min-content) auto;
  grid-row-gap: 30px;
  width: 86%;
}

.header__menu__navigation__item {
  display: block;
}

.header__menu__navigation__item:hover {
  font-style: italic;
}

.header__menu__lang-switcher {
  justify-self: right;
  align-self: flex-end;
  padding-bottom: 40px;
  display: flex;
}

.header__menu__lang-divider {
  margin: 0 10px;
}

.menu-icon,
.menu-btn {
  cursor: pointer;
  justify-self: flex-end;
  z-index: 5;
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.menu-btn {
  height: 30px;
  width: 40px;
  opacity: 0;
}

.menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}

.menu-btn:checked ~ .menu-icon .navicon:before {
  width: 30px;
  transform: rotate(-45deg);
}

.menu-btn:checked ~ .menu-icon .navicon:after {
  width: 30px;
  opacity: 1;
  transform: rotate(45deg);
}
.menu-btn:checked ~ .header__menu__logo {
  position: fixed;

  top: 0;
}
.menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}

.menu-btn:checked ~ .header__menu__navigation {
  top: 0;
  opacity: 1;
  background: black;
}

.menu-icon {
  width: 40px;
}

.menu-icon .navicon {
  display: block;
  position: relative;
  width: 100%;
  height: 1.5px;
  margin-bottom: 10px;
  transition: 0.2s ease-out;
  background: white;
}

.menu-icon .navicon:after {
  display: block;
  position: absolute;
  content: "";
  height: 1.5px;
  width: 60%;
  margin-top: 10px;
  right: 0;
  transition: all 0.2s ease-out;
  background: white;
  opacity: 0;
}

.menu-icon .navicon:before {
  display: block;
  position: absolute;
  content: "";
  height: 1.5px;
  width: 60%;
  margin-top: 10px;
  right: 0;
  transition: all 0.2s ease-out;
  background: white;
}

.menu-icon .navicon:before {
  top: 5px;
}

.menu-icon .navicon:after {
  top: -5px;
}

.header__content {
  display: grid;
  width: 100%;
  max-width: 820px;
  padding-left: 110px;
  padding-top: 180px;
  padding-bottom: 7.5%;
  grid-template-rows: repeat(4, min-content);
}

#spribe-video {
  position: absolute;
  opacity: 0;
}
video {
  height: auto;
  width: 100%;
  object-fit: fill;
  position: absolute;
}
.animateContentLeft {
  transform: translate(-100vw, 0);
}

.animateContentRight {
  transform: translate(100vw, 0);
}

.header__content__title,
.header__content__subtitle,
.header__content__button__container,
#spribe-video,
.body_spiral {
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.header__content__title {
  position: relative;
  display: flex;
  align-items: flex-end;
  width: 100%;
  font-family: "Fivo Sans Modern Bold";
  font-style: normal;
  font-weight: 700;
  font-size: 120px;

  color: #ffffff;
}

.header__content__title-1 {
  z-index: 1;
}

.header__content__title-2 {
  max-width: 465px;
  padding: 20px 5px 0 5px;
  margin-right: 70px;
  justify-self: flex-end;
  background-image: url("./img/spribe-back.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.header-wearespribe-icon {
  position: absolute;
  top: -40px;
  left: 140px;
}

.rotate {
  animation: rotate 15s linear infinite;
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

@keyframes rotate- {
  to {
    transform: rotate(-360deg);
  }
}

.header-star-icon {
  position: absolute;
  top: -12px;
  right: -12px;
  z-index: 2;
}

.header__content__subtitle {
  display: grid;
  grid-template-columns: 35% 20% 37%;
  grid-column-gap: 4%;
  grid-template-rows: min-content;
  align-items: center;
  width: 100%;
}

.header__content__subtitle-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 288px;
  height: 112px;
  border: 1px solid #ffffff;
  border-radius: 50px;
  cursor: pointer;
  z-index: 3;
}

.header__content__subtitle-btn-icon {
  width: 41px;
  height: 41px;
}

.header__divide__line {
  width: 100%;
  height: 1px;
  justify-self: center;
  align-self: center;
  border-top: 1px solid #ffffff;
}
.header__content__subtitle-text {
  font-family: "Fivo Sans Modern Bold";
  font-style: italic;
  font-weight: 900;
  font-size: 120px;

  color: #ffffff;
}

.header__content__button__container {
  padding-top: 40px;
  width: 100%;
  max-width: 287px;
  justify-self: flex-end;
}

.header__content__button__description {
  max-width: 240px;
  display: block;
  text-align: left;
  padding-bottom: 40px;
}

.header-explode-circle {
  animation: header-explode 0.4s forwards;
}

.header-desplode-circle {
  animation: header-desplode 0.4s forwards;
}

@keyframes header-explode {
  0% {
    width: 0px;
    height: 0px;
    margin-left: 0px;
    margin-top: 0px;
    background-color: rgba(45, 38, 140, 0.8);
  }
  100% {
    width: 600px;
    height: 600px;
    margin-left: -300px;
    margin-top: -300px;
    background-color: rgba(45, 38, 140, 0.9);
  }
}

@keyframes header-desplode {
  0% {
    width: 600px;
    height: 600px;
    margin-left: -300px;
    margin-top: -300px;
    background-color: rgba(45, 38, 140, 0.9);
  }
  100% {
    width: 0px;
    height: 0px;
    margin-left: 0px;
    margin-top: 0px;
    background-color: rgba(45, 38, 140, 0.6);
  }
}

.header__content__button__text {
  position: relative;
  z-index: 3;
  margin-right: 10px;
  font-family: "Fivo Sans Modern Bold" !important;
}

.header__content__button__arrow {
  position: relative;
  z-index: 3;
}

/* award */

.award__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: min-content;
  grid-column-gap: 30px;
}
.award__content-left-side {
  display: grid;
}

.award__intro {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(3, min-content);
}
.award__big-image {
  justify-self: center;
  width: 100%;
  height: auto;
  max-height: 500px;
  max-width: 500px;
}

.award__note {
  padding-bottom: 20px;
}

.award__subtitle {
  max-width: 400px;
  padding-top: 40px;
  padding-bottom: 55px;
}

.award__content-right-side {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, min-content);
  padding-top: 200px;
  align-content: space-between;
}
.award__content__items {
  display: grid;
  justify-self: center;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(3, min-content);
  grid-column-gap: 30px;
  grid-row-gap: 40px;
}

.award__content__item__title {
  padding-bottom: 20px;
  font-family: "Fivo Sans Modern Bold";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 19px;
  text-transform: uppercase;
}

.award__awards-images {
  display: grid;
  grid-template-columns: repeat(2, min-content);
  justify-content: center;
  grid-column-gap: 40px;
  padding: 20px 0;
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
}

.award__image-mobile {
  display: none;
}

/* numbers */

.numbers__container {
  height: 630px;
}
.numbers__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
}
.numbers__description {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, min-content);
}

.numbers__note {
  padding-bottom: 20px;
}
.numbers__title {
  padding-bottom: 40px;
}
.numbers__subtitle {
  max-width: 400px;
}
.numbers__items {
  display: grid;
  align-self: flex-end;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(3, min-content);
  grid-row-gap: 40px;
  grid-column-gap: 30px;
}
.numbers__item {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, min-content);
}

.numbers__item__number {
  border-bottom: 1px solid #ffffff;
  font-family: "Space Mono";
  font-style: normal;
  font-weight: 400;
  font-size: 42px;
  line-height: 62px;

  color: #ffffff;
}

.numbers__item__title {
  padding-top: 15px;
}

/* games */
.games__content {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 40px;
  grid-template-rows: repeat(3, min-content);
  height: 100%;
}
.games__description {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: min-content;
}

.games__note {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  padding-bottom: 20px;
}

.games__title {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
  align-self: flex-end;
}
.games__subtitle {
  padding-left: 20px;
  align-self: flex-end;
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

.games__button {
  height: 133px !important;
}

.games-explode-circle,
.vacancies-explode-circle {
  animation: games-explode 0.4s forwards;
}

.games-desplode-circle,
.vacancies-desplode-circle {
  animation: games-desplode 0.4s forwards;
}

@keyframes games-explode {
  0% {
    width: 0px;
    height: 0px;
    margin-left: 0px;
    margin-top: 0px;
    background-color: rgba(45, 38, 140, 0.8);
  }
  100% {
    width: 200vw;
    height: 200vw;
    margin-left: -100vw;
    margin-top: -100vw;
    background-color: rgba(45, 38, 140, 0.9);
  }
}

@keyframes games-desplode {
  0% {
    width: 2400px;
    height: 2400px;
    margin-left: -1200px;
    margin-top: -1200px;
    background-color: rgba(45, 38, 140, 0.9);
  }
  100% {
    width: 0px;
    height: 0px;
    margin-left: 0px;
    margin-top: 0px;
    background-color: rgba(45, 38, 140, 0.6);
  }
}

.games__button__text {
  align-self: center;
  font-family: "Fivo Sans Modern Bold";
  font-style: normal;
  font-weight: 700;
  font-size: 38px;
  line-height: 38px;
  color: #ffffff;
  margin-right: 10px;
  margin-top: 3px;
  z-index: 3;
}
.games__button__arrow {
  align-self: center;
  height: 32px;
  z-index: 3;
}
.games__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}

.games__item {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 10px;
  box-sizing: border-box;
  padding: 40px;
  border: 2px solid white;
}
.games__item__title {
  font-family: "Fivo Sans Modern Bold";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 19px;
  text-transform: uppercase;

  color: #ffffff;
}

.games__item__image {
  width: 100%;
  height: auto;
}

/* stack */

.stack__content {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: min-content;
}

.stack__content-body {
  grid-template-columns: 1fr !important;
}

.stack__items {
  grid-template-columns: 1fr 1fr 1fr 1fr !important;
  padding-top: 90px;
}

.stack__item {
  display: grid;
  grid-template-rows: 90px auto auto;
}

.stack__item > img {
  filter: grayscale();
  transition: all 0.5s;
}

.stack__item:hover > img {
  filter: none;
}

.stack__note {
  padding-bottom: 20px;
}

.stack__item__title {
  padding-top: 20px !important;
  margin-top: 20px !important;
}

.stack__subtitle {
  padding-top: 80px;
}

.offer__content {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, min-content);
}

.offer__description {
  display: grid;
  grid-template-columns: 1fr;
  padding-bottom: 40px;
}

.offer__note {
  padding-bottom: 20px;
}
.offer__title {
  max-width: 600px;
}
.offer__items__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: min-content;
}
.offer__subtitle {
  max-width: 400px;
}
.offer__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 40px;
}

.offer__item__title {
  margin-top: 15px;
  padding-top: 10px;
  border-top: 1px solid white;
}

/* vacancies */

.vacancies__content {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(3, min-content);
  grid-row-gap: 80px;
}

.vacancies__description {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, min-content);
}
.vacancies__note {
  padding-bottom: 20px;
}
.vacancies__section-title {
  max-width: 600px;
}

.vacancies__items {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 30px;
}

.vacancies__item {
  counter-increment: counter;
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 5px;
  border-bottom: 1px solid white;
  padding-bottom: 7px;
  z-index: 4;
}

.vacancies__item::before {
  content: "0" counter(counter);
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  font-family: "Space Mono";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  transition: color 0.5s;
}

.vacancies__item:nth-child(n + 10)::before {
  content: counter(counter);
}

.vacancies__title {
  text-indent: 20px;
  padding-top: 35px;
}

.vacancies__item:hover::before,
.vacancies__item:hover .vacancies__title {
  font-style: italic;
  color: #e84296;
}

.vacancies__button {
  height: 133px !important;
}
/* offcies */

.offices__content {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, min-content);
}

.offices__note {
  padding-bottom: 20px;
}
.offices__title {
  max-width: 600px;
}

.offices__address {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 40px;
  padding-top: 80px;
}
.offices__address-image {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: auto;
  z-index: -101;
}
.offices_items {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 30px;
  z-index: 2;
}
.offices__item {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 20px;
}
.offices__item__title {
  align-self: flex-end;
  padding-bottom: 15px;
  border-bottom: 1px solid white;
}
.offices_item__address {
  display: grid;
  grid-template-columns: 14% 84%;
  grid-column-gap: 2%;
}
.offices__item__adress__note {
  align-self: center;

  color: #a2a2a2;
}
.offices__item__adress__text {
  align-self: center;
}

.offices__address-image-m {
  display: none;
}

/* choose */

.choose__content {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 80px;
}

.choose__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}
.choose__note {
  padding-bottom: 20px;
}
.choose__title {
  max-width: 600px;
}
.choose__item {
  cursor: pointer;
  width: 100%;
  height: auto;
  filter: grayscale();
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  z-index: 4;
}

.choose__item:hover {
  filter: none;
}

/* media */

.media__content {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: min-content;
}

.media__note {
  padding-bottom: 20px;
}
.media__title {
  max-width: 600px;
}
.media__subtitle {
  max-width: 400px;
}
.media__items__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 40px;
  padding-top: 40px;
  z-index: 5;
}
.media__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px 30px;
}
.media__item-image {
  width: 100%;
  filter: grayscale();
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}

.media__item-image:hover {
  filter: none;
}
/* footer */

.footer__container {
  padding-bottom: 20px;
}

.big__ellipse__footer__container {
  position: absolute;
  width: 100vw;
  height: 2000px;
  overflow: hidden;
  min-width: 375px;
  right: 0;
  bottom: 0;
}

.footer__content {
  display: grid;
}
.footer__menu__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 40px;
}
.footer__menu {
  display: grid;
  grid-template-columns: min-content min-content max-content min-content min-content;
  justify-content: space-between;
  align-content: flex-end;
}

.footer__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 80px;
  grid-column-gap: 40px;
}

.footer__social-link {
  cursor: pointer;
}

.footer__social-link path {
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}

.footer__social-link:hover path {
  fill: #e84296;
}

.footer__links {
  display: grid;
}

.footer__social__content {
  display: grid;
  grid-template-columns: repeat(5, max-content);
  align-content: center;
  padding-bottom: 60px;
  grid-column-gap: 40px;
}
.footer__policy_content {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  grid-column-gap: 60px;
}

.footer__policy {
  max-width: 400px;
}
.footer__terms {
  max-width: 400px;
}

.footer__feedback__title {
  padding-bottom: 20px;
  max-width: 600px;
}
.footer__feedback__subtitle {
  padding-bottom: 40px;
  max-width: 400px;
}

.footer__feedback__email {
  cursor: pointer;
}

.footer__feedback__email:hover {
  font-weight: 700;
}

.footer__copyright {
  padding-top: 140px;
  opacity: 0.7;
}

.footer__sphere {
  position: absolute;
  bottom: 0;
  right: 10px;
  max-height: 200px;
}

@media (min-width: 1680px) {
  .section-default-text {
    font-size: 20px;
  }

  .section-medium-text,
  .section-medium-text-bold {
    font-size: 52px;
  }

  .section-title {
    font-size: 58px;
  }

  .games__item__title {
    font-size: 24px;
  }

  .offer__subtitle {
    max-width: 600px;
  }

  .offer__title {
    max-width: 800px;
  }

  .header__content {
    justify-self: center;
  }
}

@media (max-width: 1280px) {
  /* header */
  .big__ellipse-left,
  .big__ellipse-right {
    top: -200px;
  }

  header {
    background-position-x: 58%;
  }

  .header-wearespribe-icon {
    position: absolute;
    top: -40px;
    left: 95px;
  }

  .header__content {
    padding-left: 50px;
  }

  .header__content__title {
    padding-right: 10px;
  }

  .header__content__title,
  .header__content__subtitle-text {
    font-size: 92px;
  }

  .header__content__title-2 {
    margin-right: 0;
    max-width: 340px;
    justify-self: center;
  }

  .header__content__subtitle {
    grid-template-columns: auto auto 37%;
  }

  /* award */

  .award__content {
    grid-template-columns: 1fr;
  }

  .award__container {
    height: auto;
  }

  .award__content-right-side {
    padding-top: 40px;
  }

  .award__content-right-side {
    grid-row-gap: 75px;
  }
}

@media (max-width: 1025px) and (min-height: 768px) {
  .header__menu__lang-switcher {
    justify-self: center;
    font-size: 22px;
    line-height: 22px;
  }
}

@media (min-width: 1025px) and (max-height: 767px) {
  .header__menu__navigation {
    padding-top: 120px;
  }

  .header__menu__navigation__container {
    grid-row-gap: 20px;
  }
}

@media (min-width: 1025px) and (max-height: 600px) {
  .header__menu__navigation__item {
    font-size: 25px;
    line-height: 25px;
  }
}

@media (min-width: 1025px) and (max-height: 475px) {
  .header__menu__navigation__container {
    overflow-y: scroll;
  }
}

@media (max-width: 1025px) and (max-height: 275px) {
  .header__menu__navigation__container {
    overflow-y: scroll;
  }
}

@media (max-width: 1025px) {
  video {
    top: 25%;
  }

  .body_spiral {
    width: 100%;
  }

  /* header */

  .header__content__subtitle-btn-icon {
    width: 30px;
    height: 30px;
  }
  .header-wearespribe-icon {
    position: absolute;
    width: 80px;
    height: 80px;
    top: -30px;
    left: 70px;
  }

  .header__content {
    padding-left: 0px;
  }
  .header__content__title,
  .header__content__subtitle-text {
    font-size: 72px;
  }
  .header__menu__navigation {
    padding-top: 120px;
  }
  .header__menu__navigation hr {
    margin: 0;
  }

  .header__content__title-2 {
    margin-right: 0;
    max-width: 270px;
    justify-self: center;
  }

  .header__content__subtitle {
    padding-top: 15px;
    grid-template-columns: auto auto 37%;
  }

  /*numbers*/

  .numbers__content {
    grid-template-columns: 1fr;
  }

  .numbers__items {
    padding-top: 40px;
  }

  .numbers__container {
    height: auto;
  }

  /* games */
  .games__items {
    grid-template-columns: 1fr;
  }

  .games__description {
    grid-template-columns: 1fr;
  }
  .games__subtitle {
    grid-column: 1/2;
    grid-row: 3/4;
    padding-top: 20px;
    padding-left: 0;
  }

  /* stack */

  .stack__items {
    grid-template-columns: 1fr 1fr !important;
  }

  /* offer */
  .offer__items__content {
    grid-template-columns: 1fr;
    grid-row-gap: 40px;
  }

  /* offices */

  .offices__address {
    grid-template-columns: 1fr;
  }

  .offices__address-image {
    max-width: none;
  }

  .offices__item__title {
    font-size: 26px;
  }

  .offices__address-image {
    z-index: -200;
  }
  /* choose */

  .choose__items {
    grid-template-columns: 1fr 1fr;
  }

  /* media */

  .media__items__content {
    grid-template-columns: 1fr;
    grid-row-gap: 40px;
  }

  /* footer */
  .footer__container {
    padding-bottom: 30px;
  }

  .footer__menu__content {
    grid-template-columns: 20% 75%;
  }
  .footer__body {
    grid-template-columns: 1fr;
    grid-row-gap: 40px;
  }

  .footer__links {
    justify-content: center;
    grid-row: 2/3;
  }

  .footer__policy_content {
    justify-content: center;
  }

  .footer__feedback__subtitle {
    max-width: none;
  }

  .footer__copyright {
    text-align: center;
    padding-top: 0px;
  }
}

@media (max-width: 640px) {
  .header__content__title, .header__content__subtitle-text {
    font-size: 60px;
  }

  .header-ellipse {
    top: 100px;
  }

  .header__container {
    height: auto !important;
  }

  .footer-ellipse {
    bottom: 100px;
  }

  .body__ellipse-left {
    transform-origin: 80% 60%;
    animation: rotate 6s linear infinite;
  }

  .body__ellipse-right {
    animation: rotate- 10s linear infinite;
    transform-origin: 40% 60%;
  }

  .body_spiral {
    top: 400px;
  }

  /* games */
  @keyframes games-explode {
    0% {
      width: 0px;
      height: 0px;
      margin-left: 0px;
      margin-top: 0px;
      background-color: rgba(45, 38, 140, 0.8);
    }
    100% {
      width: 1200px;
      height: 1200px;
      margin-left: -600px;
      margin-top: -600px;
      background-color: rgba(45, 38, 140, 0.9);
    }
  }

  @keyframes games-desplode {
    0% {
      width: 1200px;
      height: 1200px;
      margin-left: -600px;
      margin-top: -600px;
      background-color: rgba(45, 38, 140, 0.9);
    }
    100% {
      width: 0px;
      height: 0px;
      margin-left: 0px;
      margin-top: 0px;
      background-color: rgba(45, 38, 140, 0.6);
    }
  }

  /* section */

  .section-title {
    font-size: 28px;
    line-height: 28px;
  }

  /* header */
  @keyframes header-explode {
    0% {
      width: 0px;
      height: 0px;
      margin-left: 0px;
      margin-top: 0px;
      background-color: rgba(45, 38, 140, 0.8);
    }
    100% {
      width: 1200px;
      height: 1200px;
      margin-left: -600px;
      margin-top: -600px;
      background-color: rgba(45, 38, 140, 0.9);
    }
  }

  @keyframes header-desplode {
    0% {
      width: 1200px;
      height: 1200px;
      margin-left: -600px;
      margin-top: -600px;
      background-color: rgba(45, 38, 140, 0.9);
    }
    100% {
      width: 0px;
      height: 0px;
      margin-left: 0px;
      margin-top: 0px;
      background-color: rgba(45, 38, 140, 0.6);
    }
  }

  .header__content {
    grid-template-columns: 1fr;
    justify-content: center;
  }

  .header__content__subtitle {
    grid-template-columns: min-content 40px min-content;
    justify-content: center;
  }

  .header__menu__navigation__container {
    grid-row-gap: 15px;
  }

  .header__content__button__container {
    max-width: none;
    padding-top: 60px;
    justify-self: center;
  }

  .header__content__button__description {
    max-width: none;
  }

  .header__content__subtitle-btn {
    width: 80px;
    height: 80px;
  }

  .header__menu__lang-switcher {
    justify-self: center;
  }
  /* award */

  .award__subtitle {
    padding-top: 20px;
  }
  .award__content-right-side {
    grid-row-gap: 40px;
  }

  .award__content__items {
    grid-template-columns: 1fr;
  }

  .award__awards-images {
    grid-template-columns: 1fr;
    grid-row-gap: 40px;
    border: none;
    padding: 0;
  }

  .award__image {
    justify-self: center;
  }

  .award__image-mobile {
    display: block;
  }

  .award__image {
    display: none;
  }

  .award__image-mobile,
  .award__egr-image {
    justify-self: center;
  }

  /* numbers */
  .numbers__container {
    padding-top: 60px;
  }

  .numbers__items {
    grid-template-columns: 1fr;
  }

  .numbers__note {
    padding-bottom: 10px;
  }

  .numbers__title {
    padding-bottom: 20px;
  }

  /* games */

  .games__button {
    height: 95px !important;
  }

  .games__button__text {
    font-size: 28px;
  }

  .games__button__arrow {
    height: 25px;
  }

  .games__item {
    padding: 10px;
  }

  /* vacancies */

  .vacancies__content {
    grid-row-gap: 40px;
  }
  .vacancies__title {
    font-size: 26px;
    line-height: 26px;
  }

  .vacancies__button {
    height: 95px !important;
  }

  /* offcies */
  .offices__address {
    padding-top: 40px;
  }

  .offices_items {
    padding-top: 40px;
  }

  .offices_item__address {
    grid-template-columns: 25% 75%;
  }

  .offices__address-image {
    display: none;
  }

  .offices__address-image-m {
    display: block;
    z-index: -200;
    width: 100%;
    height: auto;
  }

  /* choose */
  .choose__content {
    grid-row-gap: 40px;
  }
  .choose__items {
    grid-template-columns: 1fr;
  }

  /* media */

  .media__items {
    grid-template-columns: 1fr;
  }

  .media__items__content {
    padding-top: 20px;
  }

  /* footer */
  .footer__container {
    padding-top: 40px;
  }
  .footer__menu__content {
    grid-template-columns: 1fr;
  }

  .footer__menu {
    grid-template-columns: 1fr;
    grid-row-gap: 20px;
    text-align: center;
    padding: 40px 0;
  }

  .footer__menu__logo {
    justify-self: center;
  }

  .footer__body {
    padding-top: 0;
  }
  .footer__feedback {
    text-align: center;
  }

  .footer__feedback__email {
    font-size: 26px;
  }
  .footer__social__content {
    justify-content: center;
    grid-column-gap: 30px;
    padding-bottom: 20px;
  }
  .footer__social-link {
    height: 32px;
    width: 32px;
  }

  .footer__policy_content {
    grid-template-columns: 1fr;
    grid-row-gap: 20px;
    text-align: center;
  }

  .footer__sphere {
    bottom: 0%;
    left: 50%;
    transform: translate(-50%, 20%);
  }
}

@media only screen and (max-width: 1025px) and (orientation: landscape) {
  /* portrait phones */
  .header__menu__logo {
    width: 80px;
  }

  .header__menu__navigation__item {
    font-size: 28px;
    line-height: 28px;
  }

  .header__menu__navigation {
    padding-top: 80px;
  }
  .header__menu__navigation hr {
    margin: 0;
  }

  .header__menu__lang-switcher {
    padding-top: 0px;
  }
}

@media only screen and (max-width: 1025px) and (min-height: 768px) and (orientation: landscape) {
  .header__menu__navigation {
    padding-top: 120px !important;
  }
}

@media only screen and (max-width: 1025px) and (max-height: 767px) and (orientation: landscape) {
  .header__menu__navigation__container {
    grid-row-gap: 10px;
  }
}

@media only screen and (max-width: 768px) and (orientation: landscape) {
  /* portrait phones */

  .header__menu__navigation__item {
    font-size: 22px;
    line-height: 22px;
  }
}

@media only screen and (max-width: 768px) and (max-height: 374px) and (orientation: landscape) {
  .header__menu__navigation__item {
    font-size: 18px;
    line-height: 18px;
  }

  .header__menu__navigation__container {
    grid-row-gap: 5px;
  }
}
