:root {
  --font-family: "PublicSans", sans-serif;
  --second-family: "LibreBaskerville", sans-serif;
  --content-width: 1152px;
  --container-offset: 15px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --main-size: 13px;
  --second-size: 15px;
  --light-color: #fff;
  --accent-color: #00A1FF;
  --active-color: #E00E00;
  --text-color: rgba(53, 83, 98, 0.8);
  --dark-color: #003331;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable value-keyword-case */
@font-face {
  font-family: "PublicSans";
  src: url("../fonts/../fonts/PublicSansRegular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "LibreBaskerville";
  src: url("../fonts/../fonts/LibreBaskervilleRegular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.page {
  height: 100%;
  font-family: var(--font-family);
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

.page__body {
  margin: 0;
  min-width: 360px;
  min-height: 100%;
  font-size: 16px;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

a {
  text-decoration: none;
  color: inherit;
}

.site-container {
  overflow: hidden;
}

.is-hidden {
  display: none;
  /* stylelint-disable-line declaration-no-important */
}

.btn-reset {
  border: none;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
}

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.input-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
}
.input-reset::-webkit-search-decoration, .input-reset::-webkit-search-cancel-button, .input-reset::-webkit-search-results-button, .input-reset::-webkit-search-results-decoration {
  display: none;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

.container {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
}

.centered {
  text-align: center;
}

.dis-scroll {
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

.page--ios .dis-scroll {
  position: relative;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.grid {
  display: -ms-grid;
  display: grid;
  -webkit-column-gap: 32px;
  -moz-column-gap: 32px;
  column-gap: 32px;
  -ms-grid-columns: (1fr)[12];
  grid-template-columns: repeat(12, 1fr);
}
@media (max-width: 768px) {
  .grid {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
  }
}

.graphics {
  width: 100%;
  background-color: #F4F5F5;
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 80px;
  padding: 17px 33px;
  font-size: var(--main-size);
  line-height: 20px;
  letter-spacing: 0.02px;
  text-align: center;
  color: var(--light-color);
  background-color: transparent;
  -webkit-transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
  transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
}
@media (any-hover: hover) {
  .btn:hover {
    border-color: var(--accent-color);
    background-color: var(--accent-color);
  }
}
.btn:active {
  border-color: var(--active-color);
  background-color: var(--active-color);
}

.header {
  padding: 17px 0;
}
.header--position {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
}
.header__container {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.nav {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-right: 16px;
}
.nav__list {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 32px;
  gap: 51px;
}
@media (max-width: 768px) {
  .nav__list {
    margin-right: 0;
  }
}
.nav__link {
  font-size: var(--main-size);
  color: var(--light-color);
  -webkit-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out;
}
@media (any-hover: hover) {
  .nav__link:hover {
    color: var(--accent-color);
  }
}
.nav__link:active {
  color: var(--active-color);
}

.menu-btn {
  display: none;
}

@media (max-width: 768px) {
  .menu-btn {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
    margin-left: 30px;
    border: none;
    width: 30px;
    height: 30px;
    background-color: transparent;
    cursor: pointer;
  }
  .btn-line {
    position: absolute;
    left: 0;
    z-index: 50;
    width: 100%;
    height: 2px;
    background-color: var(--light-color);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .logo {
    position: relative;
    z-index: 50;
  }
  .btn-line:nth-child(1) {
    top: 4px;
  }
  .btn-line:nth-child(2) {
    top: 15px;
  }
  .btn-line:nth-child(3) {
    top: 15px;
  }
  .btn-line:nth-child(4) {
    top: 25px;
  }
  .menu-open .btn-line:nth-child(1) {
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
  }
  .menu-open .btn-line:nth-child(2) {
    background-color: var(--accent-color);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .menu-open .btn-line:nth-child(3) {
    background-color: var(--accent-color);
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .menu-open .btn-line:nth-child(4) {
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
  }
  .menu-open .header__list {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  .header__list {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100vh;
    font-size: 18px;
    background-color: var(--dark-color);
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    row-gap: 24px;
  }
}
.hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-top: 190px;
  padding-bottom: 40px;
  min-height: 776px;
  color: var(--light-color);
  background-image: url("./img/hero-bg.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 576px) {
  .hero {
    padding-top: 150px;
  }
}
.hero__container {
  margin-bottom: 48px;
}
.hero__content {
  -ms-grid-column-span: 6;
  grid-column: 6 span;
}
@media (max-width: 768px) {
  .hero__content {
    -ms-grid-column-span: 4;
    grid-column: 4 span;
  }
}
.hero__title {
  margin: 0;
  margin-bottom: 29px;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 38px;
  line-height: 44px;
  letter-spacing: 1.2px;
}
@media (max-width: 1024px) {
  .hero__title {
    font-size: 32px;
    line-height: 40px;
  }
}
.hero__descr {
  margin: 0;
  margin-bottom: 29px;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
}
.hero__bottom-container {
  margin-top: auto;
  width: 100%;
}
@media (max-width: 768px) {
  .hero__list {
    row-gap: 32px;
  }
}
.hero__subtitle, .hero__link {
  margin: 0;
  font-weight: 400;
  font-size: var(--second-size);
  line-height: 24px;
}
.hero__subtitle {
  margin-bottom: 15px;
}
.hero__item {
  -ms-grid-column-span: 2;
  grid-column: 2 span;
}
.hero__link {
  display: block;
  border-top: 1px solid rgba(255, 255, 255, 0.6);
  padding-top: 17px;
  -webkit-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out;
}
@media (any-hover: hover) {
  .hero__link:hover {
    color: var(--accent-color);
  }
}
.hero__link:active {
  color: var(--active-color);
}
@media (max-width: 768px) {
  .hero__link {
    padding-top: 7px;
  }
}

.steps {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media (max-width: 768px) {
  .steps {
    padding: 80px 0;
  }
}
.steps__title {
  margin: 0 auto;
  margin-bottom: 57px;
  max-width: 720px;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 30px;
  line-height: 38px;
  letter-spacing: 1.2px;
  text-align: center;
}
@media (max-width: 768px) {
  .steps__title {
    font-size: 24px;
    line-height: 32px;
  }
}
.steps__list {
  counter-reset: steps;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  list-style: none;
  margin: 0 auto;
  max-width: 758px;
}
@media (max-width: 768px) {
  .steps__list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 32px;
  }
}
.steps__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.steps__item::before {
  counter-increment: steps;
  content: counter(steps);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 100%;
  width: 48px;
  height: 48px;
  font-size: 16px;
  line-height: 30px;
  color: var(--light-color);
  background-color: #014C48;
}
.steps__item--line {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.steps__item--line::before {
  display: none;
}
.steps__item--line::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -35px;
  width: 100%;
  height: 1px;
  background-color: rgba(53, 83, 98, 0.2);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .steps__item {
    width: 100%;
  }
  .steps__item::after {
    display: none;
  }
}
.steps__descr {
  margin: 0;
  max-width: 126px;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  text-align: center;
  color: rgba(53, 83, 98, 0.8);
}
@media (max-width: 768px) {
  .steps__descr {
    max-width: 180px;
  }
}

.approach__top {
  padding: 80px 0;
  background-color: #F7F8F8;
}
.approach__left {
  -ms-grid-column-span: 5;
  grid-column: 5 span;
  padding-top: 33px;
}
@media (max-width: 1200px) {
  .approach__left {
    margin-bottom: 32px;
  }
}
@media (max-width: 768px) {
  .approach__left {
    -ms-grid-column-span: 4;
    grid-column: 4 span;
  }
}
.approach__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  grid-column: 7/6 span;
  gap: 8px;
}
@media (max-width: 1200px) {
  .approach__right {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-grid-column-span: 12;
    grid-column: 12 span;
  }
}
@media (max-width: 768px) {
  .approach__right {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-grid-column-span: 4;
    grid-column: 4 span;
  }
}
.approach__title {
  margin: 0;
  margin-bottom: 13px;
  font-weight: 400;
  font-size: 22px;
  line-height: 22px;
  color: var(--dark-color);
}
.approach__descr {
  margin-bottom: 37px;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: var(--text-color);
}
.approach__btn {
  border: 1px solid rgba(53, 83, 98, 0.2);
  padding: 16px 34px;
  color: #00413E;
}
.approach__bottom {
  padding: 24px 0;
}
.approach__item {
  -ms-grid-column-span: 2;
  grid-column: 2 span;
}
.approach__link {
  display: block;
  border-top: 1px solid rgba(53, 83, 98, 0.3);
  padding-top: 17px;
  padding-left: 36px;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  background-position: left top 16px;
  background-size: 24px 24px;
  background-repeat: no-repeat;
  -webkit-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out;
}
@media (any-hover: hover) {
  .approach__link:hover {
    color: var(--accent-color);
  }
}
.approach__link:active {
  color: var(--active-color);
}
.approach__link--ted {
  background-image: url("./img/approach-icon-1.svg");
}
.approach__link--nyt {
  background-image: url("./img/approach-icon-2.svg");
}
.approach__link--state {
  background-image: url("./img/approach-icon-3.svg");
}
.approach__link--ap {
  background-image: url("./img/approach-icon-4.svg");
}
.approach__link--time {
  background-image: url("./img/approach-icon-5.svg");
}
.approach__link--ft {
  background-image: url("./img/approach-icon-6.svg");
}

.info {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 680px;
  background-color: #001414;
}
.info::before {
  content: "";
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 287px;
  height: 100%;
  background-image: url("./img/info-1.png");
}
@media (max-width: 1024px) {
  .info::before {
    display: none;
  }
}
.info::after {
  content: "";
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 287px;
  height: 100%;
  background-image: url("./img/info-2.png");
}
@media (max-width: 1024px) {
  .info::after {
    display: none;
  }
}
.info__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-right: 1px solid #001414;
  border-left: 1px solid #001414;
  padding: 0 82px;
  height: 100%;
  color: var(--light-color);
}
@media (max-width: 1024px) {
  .info__content {
    padding: 60px;
  }
}
.info__text {
  max-width: 542px;
}
.info__title {
  margin: 0;
  font-weight: 400;
  font-size: 22px;
  line-height: 22px;
}
.info__descr {
  margin: 0;
  font-size: 15px;
  line-height: 24px;
}
@media (max-width: 1024px) {
  .info {
    height: auto;
  }
}

.partners {
  padding: 17px 0;
}
.partners__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 1200px) {
  .partners__container {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
}
@media (max-width: 1024px) {
  .partners__container {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media (max-width: 1200px) {
  .partners__img {
    max-width: 130px;
  }
}
.partners__title, .partners__more {
  margin: 0;
  font-weight: 400;
  font-size: 11px;
  line-height: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(53, 83, 98, 0.6);
}
@media (max-width: 1024px) {
  .partners__title {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin-right: 8px;
    margin-bottom: 8px;
  }
}
@media (any-hover: hover) {
  .partners__more:hover {
    color: var(--accent-color);
  }
}
.partners__more:active {
  color: var(--active-color);
}
@media (max-width: 1024px) {
  .partners__more {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-bottom: 8px;
    margin-left: 8px;
  }
}
.partners__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 6px;
  gap: 13px;
}
@media (max-width: 1200px) {
  .partners__list {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
@media (max-width: 1024px) {
  .partners__list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
}

.information {
  padding-bottom: 140px;
  background-color: #F4F5F5;
}
@media (max-width: 768px) {
  .information {
    padding: 80px 0;
  }
}
.information__text {
  -ms-grid-column-span: 5;
  grid-column: 5 span;
}
@media (max-width: 768px) {
  .information__text {
    -ms-grid-column-span: 4;
    grid-column: 4 span;
  }
}
.information__list {
  display: -ms-grid;
  display: grid;
  grid-column: 7/6 span;
  -ms-grid-columns: (1fr)[6];
  grid-template-columns: repeat(6, 1fr);
  list-style: none;
  padding: 0;
  gap: 36px 48px;
}
@media (max-width: 768px) {
  .information__list {
    -ms-grid-column-span: 4;
    grid-column: 4 span;
  }
}
.information__item {
  -ms-grid-column-span: 3;
  grid-column: 3 span;
}
.information__title {
  margin: 0;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 31px;
  line-height: 38px;
  letter-spacing: 0.04em;
  color: var(--dark-color);
}
@media (max-width: 768px) {
  .information__title {
    margin-bottom: 20px;
    font-size: 22px;
  }
}
.information__subtitle {
  margin: 0;
  margin-bottom: 4;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: var(--dark-color);
}
.information__descr {
  margin: 0;
  font-size: 15px;
  line-height: 24px;
  color: rgba(53, 83, 98, 0.8);
}

.press {
  padding-top: 87px;
}
.press__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 33px;
}
@media (max-width: 768px) {
  .press__top {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
  }
}
.press__link {
  border-color: rgba(53, 83, 98, 0.2);
  color: #00413E;
}
.press__title {
  margin: 0;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 27px;
  line-height: 38px;
  letter-spacing: 0.04em;
  color: var(--dark-color);
}
.press__list {
  row-gap: 32px;
}
.press__item {
  -ms-grid-column-span: 4;
  grid-column: 4 span;
}

.press-card {
  position: relative;
  border-top: 1px solid rgba(53, 83, 98, 0.3);
  padding-top: 16px;
  min-height: 145px;
}
.press-card__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 11px;
  font-weight: 400;
  font-size: 11px;
  line-height: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(53, 83, 98, 0.6);
  gap: 16px;
}
.press-card__title {
  margin: 0;
  font-weight: 400;
  font-size: 17px;
  line-height: 25px;
  color: #00413e;
}
.press-card__author {
  display: block;
  margin-top: -20px;
  margin-bottom: -4px;
  padding-top: 20px;
  padding-bottom: 4px;
  padding-left: 36px;
  background-position: left top 16px;
  background-size: 24px 24px;
  background-repeat: no-repeat;
}
.press-card__author--ted {
  background-image: url("./img/approach-icon-1.svg");
}
.press-card__author--cnews {
  background-image: url("./img/cnews.svg");
}
.press-card__author--doj {
  background-image: url("./img/doj.svg");
}
.press-card__author--nyt {
  background-image: url("./img/approach-icon-2.svg");
}
.press-card__author--corr {
  background-image: url("./img/corr.svg");
}
.press-card__author--roc {
  background-image: url("./img/roc.svg");
}
.press-card__link {
  -webkit-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out;
}
@media (any-hover: hover) {
  .press-card__link:hover {
    color: var(--accent-color);
  }
}
.press-card__link:active {
  color: var(--active-color);
}

.where {
  padding: 146px 0 133px;
  color: var(--light-color);
  background-color: #001F1F;
}
@media (max-width: 768px) {
  .where {
    padding: 80px 0;
  }
}
.where__content {
  -ms-grid-column-span: 4;
  grid-column: 4 span;
}
@media (max-width: 768px) {
  .where__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.where__title {
  margin: 0;
  margin-bottom: 43px;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 36px;
  line-height: 52px;
  letter-spacing: 0.03em;
  color: #fafafa;
}
@media (max-width: 768px) {
  .where__title {
    margin-bottom: 24px;
    font-size: 22px;
  }
}
.where__descr {
  margin: 0;
  margin-bottom: 37px;
  max-width: 320px;
  font-size: 18px;
  line-height: 28px;
  color: #fafafa;
}
@media (max-width: 768px) {
  .where__descr {
    margin-bottom: 24px;
    font-size: 16px;
    text-align: center;
  }
}
.where__link {
  border-color: #00665f;
  color: var(--light-color);
  background-color: #00665f;
}
.where__map {
  grid-column: 7/5 span;
}
@media (max-width: 768px) {
  .where__map {
    -ms-grid-column-span: 4;
    grid-column: 4 span;
    margin: 0 auto;
    margin-top: 32px;
  }
}

.footer__top {
  padding: 112px 0 137px;
  background-color: #001414;
}
@media (max-width: 768px) {
  .footer__top .container {
    row-gap: 32px;
  }
}
@media (max-width: 768px) {
  .footer__top {
    padding: 60px 0;
  }
}
.footer__column {
  -ms-grid-column-span: 2;
  grid-column: 2 span;
}
.footer__column:last-child {
  grid-column: 10/2 span;
}
@media (max-width: 768px) {
  .footer__column:last-child {
    -ms-grid-column-span: 2;
    grid-column: 2 span;
  }
}
.footer__title {
  position: relative;
  margin: 0;
  margin-bottom: 23px;
  padding-bottom: 24px;
  font-weight: 400;
  font-size: 11px;
  line-height: 16px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #7d9798;
}
.footer__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 16px;
  height: 1px;
  background-color: #25B895;
}
.footer__list {
  font-size: 15px;
  line-height: 30px;
  color: #EDECEB;
}
.footer__link {
  -webkit-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out;
}
@media (any-hover: hover) {
  .footer__link:hover {
    color: var(--accent-color);
  }
}
.footer__link:active {
  color: var(--active-color);
}
.footer__bottom {
  padding: 40px 0 63px;
  background-color: #000F0F;
}
.footer__bottom-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .footer__bottom-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .footer__bottom {
    padding: 30px 0;
  }
}
.footer__text {
  font-size: 10px;
  color: #E5ECEC;
}
@media (max-width: 768px) {
  .footer__text {
    text-align: center;
  }
}
.footer__sublist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  list-style: none;
  margin-bottom: 8px;
  padding: 0;
  gap: 8px;
}
.footer__sublist-link {
  -webkit-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out;
}
@media (any-hover: hover) {
  .footer__sublist-link:hover {
    color: var(--accent-color);
  }
}
.footer__sublist-link:active {
  color: var(--active-color);
}
@media (max-width: 768px) {
  .footer__sublist {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.footer__copy-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}/*# sourceMappingURL=main.css.map */

