.container {
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 992px) {
  .container {
    max-width: 1440px;
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .container {
    max-width: 688px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 767px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 991px) {
  .container.fluid-mobile {
    max-width: 100%;
    overflow: hidden;
  }
}

.overflow-hidden {
  overflow: hidden;
}

.row {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
}

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

@media (max-width: 767px) {
  .d-none {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .d-md-block {
    display: block !important;
  }
}

* {
  font-family: "Montserrat", sans-serif;
  box-sizing: border-box;
  font-optical-sizing: auto;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5 {
  display: block;
  width: 100%;
}

h1, .h1 {
  letter-spacing: 0em;
}
@media (min-width: 1300px) {
  h1, .h1 {
    font-size: 85px;
    font-weight: 600;
    line-height: 91px;
  }
}
@media (min-width: 768px) and (max-width: 1299px) {
  h1, .h1 {
    font-size: 28px;
    font-weight: 600;
    line-height: 32px;
  }
}
@media (max-width: 767px) {
  h1, .h1 {
    font-size: 25px;
    font-weight: 700;
    line-height: 27px;
  }
}

h2, .h2 {
  font-size: 65px;
  font-weight: 600;
  line-height: 72px;
  letter-spacing: 0em;
}
@media (min-width: 768px) and (max-width: 1299px) {
  h2, .h2 {
    font-size: 22px;
    font-weight: 600;
    line-height: 26px;
  }
}
@media (max-width: 767px) {
  h2, .h2 {
    font-size: 25px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 0em;
  }
}

h3, .h3 {
  font-size: 30px;
  font-weight: 500;
  line-height: 36px;
  letter-spacing: 0em;
}

h4, .h4 {
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0em;
}

h5, .h5 {
  font-size: 17px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 0em;
}

p {
  font-size: 17px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0em;
  margin-top: 0px;
}

a {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.4s;
}
a:hover {
  color: #AAA8A8;
}

.btn {
  display: inline-block;
  cursor: pointer;
  text-align: center;
  transition: all 0.4s;
}
.btn.btn-blue {
  background-color: #0034FF;
}
.btn.btn-blue:hover {
  opacity: 0.9;
}
.btn.btn-small {
  padding: 16px 25px;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0em;
  text-align: center;
}
@media (max-width: 767px) {
  .btn.btn-small {
    font-size: 17px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 0em;
  }
}
.btn.btn-big {
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 5%;
  text-transform: uppercase;
  padding: 20px 40px;
}
@media (max-width: 767px) {
  .btn.btn-big {
    padding: 20px 10px;
    font-size: 18px;
  }
}

body {
  background-color: #000000;
}
body::after {
  content: "";
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  background-image: url("../assets/navbar-show.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.4s;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: -998;
}
body.navbar-show {
  overflow: hidden;
}
body.navbar-show .options-lang {
  opacity: 0;
}
body.navbar-show .header-sticky {
  background-color: transparent;
  box-shadow: none;
}
body.navbar-show::after {
  z-index: 997;
  opacity: 1;
}
body.navbar-show .header .blue-star, body.navbar-show .header .logo {
  display: none;
}

header {
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
  transition: all 0.4s;
  padding-top: 64px;
}
@media (max-width: 991px) {
  header {
    padding-top: 30px;
  }
}
header.header-sticky {
  padding-top: 12px;
  padding-bottom: 12px;
  background-color: #000000;
  box-shadow: 0px 2px 8px -1px rgba(0, 0, 0, 0.6);
}
header.header-sticky .header__nav li::before {
  top: -9px !important;
}
@media (max-width: 767px) {
  header.header-sticky {
    padding-top: 12px;
  }
}
header .header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 998;
}
header .header .blue-star {
  width: 25px;
}
header .navbar-toggler {
  background-color: transparent;
  padding: 0;
  position: relative;
  transition: all 0.4s;
  border: 0px;
  outline: 0;
  box-shadow: none !important;
}
@media (min-width: 768px) {
  header .navbar-toggler {
    display: none;
  }
}
header .navbar-toggler:focus, header header .navbar-toggler:active {
  outline: 0;
}
header .navbar-toggler:not(.collapsed) span {
  background-color: #ffffff;
}
header .navbar-toggler:not(.collapsed) span:nth-child(1) {
  position: absolute;
  left: 2px;
  top: 6px;
  transform: rotate(135deg);
  width: 24px;
}
header .navbar-toggler:not(.collapsed) span:nth-child(2) {
  height: 12px;
  visibility: hidden;
  background-color: transparent;
}
header .navbar-toggler:not(.collapsed) span:nth-child(3) {
  position: absolute;
  left: 2px;
  top: 6px;
  transform: rotate(-135deg);
  width: 24px;
}
header .navbar-toggler span {
  display: block;
  background-color: #ffffff;
  height: 2px;
  width: 24px;
  margin-top: 5px;
  margin-bottom: 5px;
  transform: rotate(0deg);
  position: relative;
  left: 0;
  opacity: 1;
}
header .navbar-toggler span:nth-child(1), header .navbar-toggler span:nth-child(3) {
  transition: transform 0.35s ease-in-out;
  margin-top: 0;
}
header .navbar-toggler span:nth-child(2) {
  width: 24px;
  left: 0px;
}
@media (min-width: 768px) {
  header .header__nav {
    display: flex;
    width: 100%;
  }
}
header .header__nav > ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
}
@media (max-width: 767px) {
  header .header__nav > ul > li {
    padding-bottom: 0px;
  }
}
header .header__nav > ul > li:hover > ul {
  display: block;
}
header .header__nav > ul > li a:hover {
  color: #AAA8A8;
}
@media (min-width: 768px) {
  header .header__nav > ul > li.active {
    position: relative;
  }
  header .header__nav > ul > li.active::before {
    content: "";
    width: 100%;
    height: 3px;
    border-bottom-right-radius: 7px;
    border-bottom-left-radius: 7px;
    background-color: #ffffff;
    position: absolute;
    top: -9px;
    left: 0;
  }
}
header .header__nav > ul > li.active a {
  color: #ffffff;
}
header .header__nav > ul > li, header .header__nav > ul > li a, header .header__nav > ul > li span {
  position: relative;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.1em;
  text-align: left;
  text-decoration: none;
  box-sizing: content-box;
  transition: color 0.4s;
  text-transform: uppercase;
}
@media (min-width: 992px) and (max-width: 1399px) {
  header .header__nav > ul > li, header .header__nav > ul > li a, header .header__nav > ul > li span {
    font-size: 16px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  header .header__nav > ul > li, header .header__nav > ul > li a, header .header__nav > ul > li span {
    font-size: 11px;
    line-height: 20px;
  }
}
@media (max-width: 991px) {
  header .header__nav > ul > li.open > span {
    color: #ffffff;
  }
  header .header__nav > ul > li.open > span::after {
    transform: rotate(315deg);
    top: 10px;
  }
}
header .header__nav .mobile-href {
  display: none;
}
@media (min-width: 768px) {
  header .header__nav {
    align-items: stretch;
  }
  header .header__nav ul {
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
  }
  header .header__nav ul li {
    display: flex;
    align-items: center;
  }
}
@media (max-width: 767px) {
  header .header__nav {
    display: block;
    position: absolute;
    top: -999999px;
    left: -999999px;
    opacity: 0;
    transition: opacity 0.4s;
  }
}
@media (max-width: 767px) {
  header .header__nav.show {
    width: 100%;
    height: 100vh;
    opacity: 1;
    left: 0;
    top: 20px;
    padding: 20px 0 40px 0;
  }
  header .header__nav.show ul {
    display: none;
  }
  header .header__nav.show .mobile-href {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    height: 100%;
  }
  header .header__nav.show .mobile-href a {
    font-family: Montserrat;
    font-weight: 500;
    font-size: 16px;
    line-height: 130%;
    text-transform: uppercase;
    padding: 0 20px;
  }
  header .header__nav.show .mobile-href a:not(:last-child) {
    margin-bottom: 40px;
  }
  header .header__nav.show .mobile-href a img {
    max-width: 100%;
  }
}
header .options {
  gap: 10px;
  z-index: 10;
}

main {
  position: relative;
  z-index: 1;
}
main .h1-img {
  max-width: 100%;
  margin-bottom: 40px;
  display: block;
}
@media (min-width: 768px) and (max-width: 991px) {
  main .h1-img {
    height: 24px;
  }
}
@media (max-width: 767px) {
  main .h1-img {
    height: 14px;
    margin-bottom: 30px;
  }
}
main .first-block {
  margin-top: 180px;
}
main .first-block img {
  max-width: 100%;
  width: 100%;
}
@media (min-width: 768px) and (max-width: 991px) {
  main .first-block {
    margin-top: 88px;
  }
}
@media (max-width: 767px) {
  main .first-block {
    margin-top: 88px;
  }
}
main .place-info-block {
  color: #ffffff;
  font-weight: 500;
  font-size: 36px;
  line-height: 100%;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}
@media (max-width: 991px) {
  main .place-info-block {
    font-size: 18px;
    flex-direction: column;
    align-items: start;
    gap: 10px;
  }
  main .place-info-block img {
    width: 25px;
  }
}
main .description-block {
  position: relative;
  margin-top: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
main .description-block__text {
  width: calc(100% - 208px - 120px - 112px);
  color: #ffffff;
  font-size: 18px;
  font-weight: 400;
  line-height: 23.4px;
  text-align: left;
}
main .description-block__text p {
  margin-bottom: 30px;
}
main .description-block__text p:last-child {
  margin-bottom: 0px;
}
main .description-block__img {
  margin-right: 112px;
}
main .description-block__img img {
  width: 208px;
  max-width: 100%;
}
main .description-block__btn {
  margin-top: 30px;
}
@media (max-width: 991px) {
  main .description-block {
    margin-top: 68px;
  }
  main .description-block__text {
    width: 100%;
  }
  main .description-block__text P {
    margin-bottom: 20px;
  }
  main .description-block__img {
    margin-right: 0px;
    position: absolute;
    right: 0;
    top: -150px;
  }
  main .description-block__img img {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  main .description-block__text {
    width: 100%;
    font-size: 14px;
    line-height: 18px;
  }
  main .description-block__img {
    margin-right: 0px;
    position: absolute;
    right: -30px;
  }
  main .description-block__img img {
    width: 170px;
    max-width: 100%;
  }
  main .description-block__btn {
    margin-top: 20px;
    margin-bottom: 0;
  }
  main .description-block__btn .btn-big {
    width: 100%;
  }
}
main .ideology-block {
  display: flex;
}
main .ideology-block__wrapper {
  display: flex;
  position: relative;
  z-index: 1;
  margin-top: 425px;
}
main .ideology-block__before {
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../assets/ideology-block__before.svg");
  background-position: top;
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: 100vw;
  max-height: 2000px;
  z-index: -1;
}
main .ideology-block__img {
  display: flex;
  flex-direction: column;
  justify-content: end;
  margin-left: -200px;
}
main .ideology-block__img img {
  max-width: 680px;
}
main .ideology-block__text {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  float: right;
  color: #ffffff;
}
main .ideology-block__text p {
  margin-top: 0px;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 23.4px;
}
main .ideology-block__text p:not(:last-of-type) {
  margin-bottom: 30px;
}
main .ideology-block__text > div.d-none {
  margin-top: 30px;
}
@media (min-width: 1400px) {
  main .ideology-block {
    margin-top: -220px;
  }
}
@media (min-width: 1400px) and (max-width: 1799px) {
  main .ideology-block__before {
    top: 140px;
  }
  main .ideology-block__img {
    margin-left: -60px;
  }
}
@media (min-width: 992px) and (max-width: 1399px) {
  main .ideology-block {
    margin-top: 0px;
  }
  main .ideology-block__wrapper {
    margin-top: 200px;
  }
  main .ideology-block__before {
    top: 300px;
    left: 0;
    background-size: cover;
    width: 100%;
    height: 500px;
  }
  main .ideology-block__img {
    margin-left: -60px;
    justify-content: center;
  }
  main .ideology-block__img img {
    width: 350px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  main .ideology-block {
    flex-direction: column;
  }
  main .ideology-block .h1 img {
    position: absolute;
    top: 0;
    right: 80px;
  }
  main .ideology-block__before {
    top: auto;
    bottom: -370px;
    height: 1000px;
  }
  main .ideology-block__wrapper {
    margin-top: 160px;
  }
  main .ideology-block__img {
    order: 1;
  }
  main .ideology-block__text {
    width: 100%;
    order: 0;
  }
}
@media (max-width: 991px) {
  main .ideology-block {
    flex-direction: column;
  }
  main .ideology-block .h1 img {
    width: 52px;
    position: absolute;
    top: -20px;
    right: 40px;
  }
  main .ideology-block__before {
    display: none;
  }
  main .ideology-block__wrapper {
    margin-top: 160px;
    margin-bottom: 270px;
  }
  main .ideology-block__img {
    margin-left: 0;
    position: absolute;
    left: 0;
    width: 100%;
  }
  main .ideology-block__img img {
    width: 100%;
    max-width: 100%;
  }
  main .ideology-block__text {
    width: 100%;
    order: 0;
  }
  main .ideology-block__text p {
    font-size: 14px;
    line-height: 18.2px;
  }
  main .ideology-block__text:last-child {
    order: 2;
    margin-top: 10px;
  }
}
@media (min-width: 566px) and (max-width: 991px) {
  main .ideology-block__img {
    bottom: -500px;
  }
}
@media (max-width: 565px) {
  main .ideology-block__img {
    bottom: -300px;
  }
}
main .program-table {
  margin-top: 30px;
  border: 1px solid #8A9EB3;
}
main .program-table__item {
  display: flex;
  align-items: center;
  justify-content: start;
  padding: 30px;
  gap: 20px;
  box-sizing: border-box;
  font-family: Montserrat;
  color: #ffffff;
}
main .program-table__item:not(:last-child) {
  border-bottom: 1px solid #8A9EB3;
}
main .program-table__item .time {
  font-weight: 600;
  font-size: 18px;
  line-height: 130%;
  white-space: nowrap;
  width: 101px;
}
main .program-table__item .desc {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
}
@media (max-width: 767px) {
  main .program-table__item {
    padding: 20px;
    gap: 0;
  }
  main .program-table__item .time {
    width: 100px;
    font-size: 14px;
  }
  main .program-table__item .desc {
    width: calc(100% - 100px);
    font-size: 14px;
  }
}
main .registration-block {
  color: #ffffff;
  margin-top: 210px;
  position: relative;
  z-index: 1;
}
main .registration-block P {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  margin-top: 30px;
}
@media (min-width: 768px) and (max-width: 991px) {
  main .registration-block {
    margin-top: 500px;
  }
}
@media (max-width: 991px) {
  main .registration-block {
    padding-top: 60px;
  }
  main .registration-block .h1 img {
    width: 40px;
    margin-left: 10px;
  }
  main .registration-block p {
    font-size: 14px;
    margin-top: 20px;
  }
}
main .themes-block {
  position: relative;
  margin-top: 220px;
  color: #ffffff;
}
main .themes-block::before {
  content: "";
  display: block;
  z-index: -1;
  position: relative;
  top: -243px;
  left: -25px;
  max-width: 1587px;
  width: 100%;
  height: 481px;
  margin-left: auto;
  margin-right: auto;
  background-image: url(../assets/themes-block__before.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
main .themes-block .container {
  margin-top: -605px;
}
main .themes-block .h1 img {
  position: absolute;
  max-width: 65px;
  width: 100%;
  margin-left: -140px;
}
@media (min-width: 768px) and (max-width: 991px) {
  main .themes-block .h1 img {
    width: 45px;
    margin-top: -30px;
    margin-left: 150px;
  }
}
@media (max-width: 767px) {
  main .themes-block .h1 img {
    display: none;
  }
}
@media (min-width: 992px) {
  main .themes-block .row {
    gap: 40px;
  }
}
main .themes-block .row .themes-item {
  width: calc(50% - 20px);
  color: #ffffff;
  font-family: Montserrat;
  font-weight: 400;
  font-size: 24px;
  line-height: 130%;
  margin-top: 30px;
}
main .themes-block .row .themes-item p {
  margin-bottom: 0;
}
@media (min-width: 768px) and (max-width: 991px) {
  main .themes-block {
    margin-top: 100px;
  }
  main .themes-block::before {
    background-image: url("../assets/themes-block__before.svg");
    width: 90%;
    height: 400px;
    position: absolute;
    left: 20px;
    top: -20px;
    margin: 0;
  }
  main .themes-block .container {
    margin-top: 0px;
  }
}
@media (max-width: 767px) {
  main .themes-block {
    margin-top: 160px;
  }
  main .themes-block::before {
    background-image: url("../assets/themes-block__before-sm.svg");
    width: 331px;
    height: 384px;
    position: absolute;
    left: 15px;
    top: -30px;
    margin: 0;
  }
  main .themes-block .container {
    margin-top: 0px;
  }
  main .themes-block .h1 {
    margin-bottom: 10px;
  }
  main .themes-block .row {
    margin: 0 -20px;
  }
  main .themes-block .row .themes-item {
    font-size: 14px;
    line-height: 18px;
    width: 100%;
    margin-top: 10px;
    padding: 0 20px;
  }
  main .themes-block .row .themes-item ul {
    padding-left: 20px;
    margin: 0;
  }
}
main .hello-sputnik-block {
  background-image: url("../assets/hello-sputnik.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  color: #ffffff;
  min-height: 718px;
  display: flex;
  align-items: center;
}
main .hello-sputnik-block__text .hello-sputnik-block__img {
  display: none;
}
main .hello-sputnik-block__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
main .hello-sputnik-block__wrapper .h1 {
  margin-bottom: 30px;
}
main .hello-sputnik-block__wrapper p {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
}
main .hello-sputnik-block__wrapper .program {
  display: flex;
  margin: 20px auto;
}
main .hello-sputnik-block__wrapper .program .item {
  width: 50%;
  border: 1px solid #8A9EB3;
  padding: 20px;
}
main .hello-sputnik-block__wrapper .program .item div {
  font-weight: 600;
}
main .hello-sputnik-block__wrapper .btn-big {
  margin-top: 10px;
  margin-bottom: 0;
}
@media (min-width: 992px) {
  main .hello-sputnik-block__wrapper {
    flex-wrap: wrap;
  }
  main .hello-sputnik-block__wrapper .hello-sputnik-block__text {
    flex-basis: 50%;
  }
  main .hello-sputnik-block__wrapper .hello-sputnik-block__img {
    flex-basis: calc(50% - 110px);
    width: calc(50% - 110px);
    margin-right: 110px;
  }
}
@media (max-width: 991px) {
  main .hello-sputnik-block {
    padding: 44px 0;
    min-height: 100px;
    display: block;
  }
  main .hello-sputnik-block__text .hello-sputnik-block__img {
    display: block;
  }
  main .hello-sputnik-block__wrapper {
    display: block;
  }
  main .hello-sputnik-block__wrapper > img {
    display: none;
  }
  main .hello-sputnik-block__wrapper img {
    max-width: 70vw;
    margin-bottom: 20px;
  }
  main .hello-sputnik-block__wrapper .h1 {
    margin-bottom: 20px;
  }
  main .hello-sputnik-block__wrapper p {
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
  }
  main .hello-sputnik-block__wrapper .program {
    flex-direction: column;
    margin: 20px auto;
  }
  main .hello-sputnik-block__wrapper .program .item {
    width: 100%;
  }
  main .hello-sputnik-block__wrapper .btn-big {
    margin-top: 6px;
    width: 100%;
  }
}
main .geoscan-in-space-block {
  color: #ffffff;
  margin-top: 180px;
  margin-bottom: 50px;
}
main .geoscan-in-space-block::before {
  content: "";
  display: block;
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 1338px;
  background-image: url(../assets/geoscan-in-space-block__before.svg);
  background-position: 230px 0;
  background-size: contain;
  background-repeat: no-repeat;
}
main .geoscan-in-space-block .h1 {
  position: relative;
  margin-bottom: 60px;
  display: flex;
}
main .geoscan-in-space-block .h1 img {
  left: -140px;
  display: block;
  position: absolute;
}
main .geoscan-in-space-block__projects {
  display: flex;
  flex-wrap: wrap;
  gap: 100px;
}
main .geoscan-in-space-block__projects-item {
  flex-basis: calc(50% - 50px);
}
main .geoscan-in-space-block__projects-item img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
main .geoscan-in-space-block__projects-item div {
  margin-top: 30px;
  font-weight: 400;
  font-size: 24px;
  line-height: 130%;
}
@media (min-width: 768px) and (max-width: 991px) {
  main .geoscan-in-space-block::before {
    top: -70px;
    left: 70px;
  }
  main .geoscan-in-space-block .h1 {
    position: relative;
    margin-bottom: 60px;
    display: flex;
  }
  main .geoscan-in-space-block .h1 img {
    left: auto;
    right: 30px;
    top: 0px;
    width: 37px;
  }
  main .geoscan-in-space-block__projects {
    flex-basis: calc(50% - 20px);
  }
  main .geoscan-in-space-block__projects-item {
    flex-basis: calc(50% - 50px);
  }
  main .geoscan-in-space-block__projects-item div {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  main .geoscan-in-space-block {
    position: relative;
    margin-top: 140px;
    margin-bottom: 0px;
  }
  main .geoscan-in-space-block::before {
    top: -70px;
    left: 20px;
    background-image: url(../assets/geoscan-in-space-block__before-sm.svg);
    width: 123px;
    height: 42px;
    background-position: left;
  }
  main .geoscan-in-space-block .h1 {
    position: relative;
    margin-bottom: 30px;
    display: flex;
  }
  main .geoscan-in-space-block .h1 img {
    left: 290px;
    right: auto;
    top: -15px;
    width: 37px;
  }
  main .geoscan-in-space-block__projects {
    gap: 40px;
    flex-basis: 100%;
  }
  main .geoscan-in-space-block__projects-item {
    flex-basis: 100%;
  }
  main .geoscan-in-space-block__projects-item div {
    font-size: 14px;
  }
}

h1, .h2 {
  text-transform: uppercase;
}

.h1 {
  font-family: Montserrat;
  font-weight: 500;
  font-size: 48px;
  line-height: 100%;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .h1 {
    font-size: 24px;
    line-height: 100%;
  }
}

footer {
  padding-top: 200px;
  padding-bottom: 100px;
}
footer .container {
  position: relative;
  z-index: 1;
}
footer .copyright-text {
  color: #AAA8A8;
  font-size: 18px;
  font-weight: 400;
  line-height: 23.4px;
  text-align: left;
}
footer .partners-block {
  position: relative;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
}
footer .partners-block__item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
}
footer .partners-block__item img {
  filter: grayscale(1);
  opacity: 0.8;
  transition: all 0.4s;
}
footer .partners-block__item:hover img {
  filter: grayscale(0);
  opacity: 1;
}
@media (max-width: 991px) {
  footer {
    padding-top: 160px;
    padding-bottom: 90px;
  }
}
@media (max-width: 767px) {
  footer .copyright-text {
    font-size: 14px;
    line-height: 18.2px;
    margin-bottom: 20px;
  }
  footer .partners-block {
    margin: 0 -20px;
  }
  footer .partners-block__item {
    width: 50%;
    margin-top: 40px;
    padding: 0 20px;
  }
  footer .partners-block__item img {
    max-width: 100%;
  }
  footer .partners-block__item:first-child {
    width: 100%;
  }
  footer .partners-block__item:first-child img {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */