* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #000;
  background-color: #ffffff;
  line-height: 1.2;
}

body.no-scroll {
  overflow: hidden;
}

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

h1 {
  text-transform: uppercase;
  font-family: "PT Serif", serif;
  font-size: 60px;
  font-weight: 300;
  font-style: italic;
  text-decoration: none;
}
@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }
}
@media (max-width: 600px) {
  h1 {
    font-size: 32px;
  }
}

h2 {
  text-transform: uppercase;
  margin-top: 20px;
  font-weight: 900;
  font-size: 38px;
}
@media (max-width: 768px) {
  h2 {
    font-size: 32px;
  }
}
@media (max-width: 600px) {
  h2 {
    font-size: 28px;
  }
}

h3 {
  font-family: "PT Serif", serif;
  font-weight: 300;
  font-size: 48px;
  font-style: italic;
}
@media (max-width: 768px) {
  h3 {
    font-size: 28px;
  }
}
@media (max-width: 600px) {
  h3 {
    font-size: 24px;
  }
}

h4 {
  font-weight: 900;
  font-size: 32px;
}
@media (max-width: 768px) {
  h4 {
    font-size: 22px;
  }
}
@media (max-width: 600px) {
  h4 {
    font-size: 24px;
  }
}

.container {
  padding: 0 85px;
  margin: 0 auto;
  width: 100%;
}
@media (min-width: 1922px) {
  .container {
    max-width: 1922px;
  }
}
@media (max-width: 1100px) {
  .container {
    width: auto;
    padding: 0 60px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 45px;
  }
}
@media (max-width: 600px) {
  .container {
    padding: 0 20px;
  }
}

.center-btn-wrap {
  display: flex;
  justify-content: center;
  margin: 15px 0;
}

.center-btn-wrap-track {
  display: flex;
  justify-content: center;
  margin: 35px 0;
}

.btn {
  display: inline-block;
  padding: 24px 72px;
  border-radius: 45px;
  text-decoration: none;
  font-size: 32px;
  transition: 0.3s ease;
  border: 2px solid #000;
  color: #000;
  text-align: center;
}
.btn:hover {
  background: #276A74;
  border-color: #276A74;
  color: #ffffff;
}
@media (max-width: 768px) {
  .btn {
    font-size: 22px;
    padding: 13px 30px;
  }
}
@media (max-width: 600px) {
  .btn {
    font-size: 18px;
  }
}

.btn-track {
  display: inline-block;
  padding: 16px 52px;
  border-radius: 45px;
  text-decoration: none;
  font-size: 26px;
  transition: 0.3s ease;
  border: 2px solid #000;
  color: #000;
  margin: 30px 0;
}
.btn-track:hover {
  background: #276A74;
  border-color: #276A74;
  color: #ffffff;
}
@media (max-width: 768px) {
  .btn-track {
    font-size: 22px;
    padding: 13px 35px;
  }
}
@media (max-width: 600px) {
  .btn-track {
    font-size: 18px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  background: transparent;
  border-bottom: 1px solid transparent;
  z-index: 100;
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  font-size: 20px;
  padding: 47px 0;
}
@media (max-width: 1600px) {
  .header {
    padding: 40px 0;
  }
}
@media (max-width: 600px) {
  .header {
    padding: 20px 0;
  }
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
.header--scrolled {
  background-color: #ffffff;
  border-bottom-color: #eaeaea;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.header--scrolled .logo {
  filter: none;
}
.header__contacts {
  display: flex;
  align-items: center;
  gap: 33px;
}
@media (max-width: 1100px) {
  .header__contacts {
    flex-direction: column;
    white-space: nowrap;
    gap: 5px;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .header__contacts {
    gap: 155px;
  }
}

.menu {
  margin-left: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .menu {
    display: none;
  }
  .menu.is-active {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border-left: 1px solid #eaeaea;
    gap: 64px;
    position: fixed;
    z-index: 2;
    right: 0;
    top: 0;
    bottom: 0;
    background: #fff;
    padding: 170px 60px;
  }
  .menu .socials {
    flex-direction: column;
    gap: 42px;
  }
}
@media (max-width: 600px) {
  .menu.is-active {
    padding: 120px 30px;
  }
}

.logo {
  display: inline-block;
  width: 202px;
  height: 95px;
  background: url("../img/logo.svg") center center/contain no-repeat;
}
@media (max-width: 1100px) {
  .logo {
    width: 160px;
    height: 75px;
  }
}
@media (max-width: 600px) {
  .logo {
    width: 130px;
    height: 61px;
  }
}

.nav {
  display: flex;
  gap: 94px;
  margin-right: 63px;
}
@media (max-width: 1600px) {
  .nav {
    gap: 60px;
  }
}
@media (max-width: 1100px) {
  .nav {
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    gap: 15px;
    margin: 0;
    width: 100%;
  }
}
.nav__link {
  cursor: pointer;
  text-decoration: none;
  color: #276A74;
  font-weight: 600;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav__link:hover {
  color: #0a4d57;
}

.socials {
  display: flex;
  gap: 18px;
  align-items: center;
}
.socials__link:hover {
  opacity: 0.85;
}
.socials__link--vk {
  display: inline-block;
  width: 42px;
  height: 25px;
  background: url("../img/icon-vk.svg") center center/contain no-repeat;
}
@media (max-width: 768px) {
  .socials__link--vk {
    width: 32px;
    height: 19px;
  }
}
.socials__link--max {
  display: inline-block;
  width: 41px;
  height: 41px;
  background: url("../img/icon-max.svg") center center/contain no-repeat;
}
@media (max-width: 768px) {
  .socials__link--max {
    width: 30px;
    height: 31px;
  }
}
.socials__link--tg {
  display: inline-block;
  width: 41px;
  height: 41px;
  background: url("../img/icon-tg.svg") center center/contain no-repeat;
}
@media (max-width: 768px) {
  .socials__link--tg {
    width: 31px;
    height: 31px;
  }
}

.phone {
  text-decoration: none;
  font-weight: 700;
  color: #276A74;
}
.phone:hover {
  color: #0a4d57;
}

.burger-menu {
  display: none;
  border: none;
  cursor: pointer;
  width: 70px;
  height: 65px;
  background: url("../img/icon-menu.svg") center center/contain no-repeat;
}
@media (max-width: 768px) {
  .burger-menu {
    display: block;
  }
  .burger-menu.is-active {
    position: fixed;
    z-index: 3;
    right: 180px;
    top: 20px;
  }
}
@media (max-width: 600px) {
  .burger-menu {
    width: 40px;
    height: 37px;
  }
}
.burger-menu.is-active {
  background-image: url("../img/icon-close.svg");
}

.hero {
  width: 100%;
  overflow: hidden;
}
.hero__picture {
  display: block;
  width: 100%;
  height: 100%;
}
.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.intro-section {
  padding-top: 115px;
  text-align: center;
  max-width: 1230px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .intro-section {
    padding-top: 65px;
  }
}
.intro-section .intro-text {
  font: italic 32px "PT Serif", serif;
  margin: 60px 0 50px;
}
@media (max-width: 768px) {
  .intro-section .intro-text {
    font-size: 24px;
    margin: 10px 0 22px;
  }
}
@media (max-width: 600px) {
  .intro-section .intro-text {
    font-size: 21px;
  }
}
.intro-section .icon-divider {
  margin: 40px auto;
  display: inline-block;
  width: 57px;
  height: 61px;
  background: url("../img/icon-run.svg") center center/contain no-repeat;
}
.intro-section .description-text {
  font-size: 24px;
  margin: 40px 0 100px;
}
@media (max-width: 768px) {
  .intro-section .description-text {
    font-size: 20px;
    margin: 18px 0 76px;
  }
}
@media (max-width: 600px) {
  .intro-section .description-text {
    font-size: 18px;
  }
}

.distances-section {
  padding-top: 50px;
}
@media (max-width: 768px) {
  .distances-section {
    padding-top: 20px;
  }
}
.distances-section h2 {
  text-align: center;
}
.distances-section img {
  width: 100%;
}

.distance-grid {
  display: flex;
  gap: 250px;
  justify-content: center;
  margin: 52px 0 52px;
  font-size: 24px;
}
@media (max-width: 1100px) {
  .distance-grid {
    gap: 35px;
    flex-wrap: wrap;
    margin: 34px 0 20px;
  }
}
@media (max-width: 600px) {
  .distance-grid {
    font-size: 16px;
  }
}
.distance-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  position: relative;
  padding-bottom: 25px;
}
.distance-card:not(:last-child):after {
  content: "";
  position: absolute;
  top: 0;
  right: -90px;
  height: 100%;
  width: 1px;
  background: #231F20;
}
@media (max-width: 768px) {
  .distance-card:not(:last-child):after {
    right: -25px;
  }
}
.distance-card:nth-child(even):after {
  display: none;
}
@media (max-width: 1100px) {
  .distance-card {
    width: calc(50% - 17.5px);
  }
}
@media (max-width: 600px) {
  .distance-card {
    padding-bottom: 10px;
  }
}
.distance-card__type {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 20px;
}
@media (max-width: 600px) {
  .distance-card__type {
    gap: 10px;
  }
}
.distance-card__type:after {
  content: "";
  display: inline-block;
  display: inline-block;
  width: 50px;
  height: 45px;
  background: url("../img/icon-path.svg") center center/contain no-repeat;
}
@media (max-width: 600px) {
  .distance-card__type:after {
    width: 35px;
    height: 32px;
  }
}
.distance-card__value {
  font-size: 64px;
  font-weight: 800;
  color: #276A74;
}
@media (max-width: 600px) {
  .distance-card__value {
    font-size: 46px;
  }
}

.gallery-section {
  padding: 60px 0 0;
  text-align: center;
}
@media (max-width: 768px) {
  .gallery-section {
    padding: 52px 0 0;
  }
}

.slider-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  width: 100%;
  max-width: 1900px;
  margin: 0 auto;
}
.slider-container .gallery-slider {
  width: 100%;
  overflow: hidden;
  margin: 50px 0 60px;
}
@media (max-width: 768px) {
  .slider-container .gallery-slider {
    margin: 36px 0 30px;
  }
}
@media (max-width: 600px) {
  .slider-container .gallery-slider {
    margin-bottom: 10px;
  }
}

.slider-arrow {
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
  width: 36px;
  height: 40px;
  background: url("../img/right.svg?v1") center center/contain no-repeat;
}
.slider-arrow:hover {
  background-image: url("../img/right-hover.svg");
}
.slider-arrow--left {
  transform: rotate(180deg);
  margin-left: 10px;
}
.slider-arrow--right {
  margin-right: 10px;
}
@media (max-width: 768px) {
  .slider-arrow--left {
    width: 21px;
    height: 24px;
  }
  .slider-arrow--right {
    width: 21px;
    height: 24px;
  }
}
.slider-arrow:hover {
  opacity: 0.85;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  width: 100%;
}
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.gallery-item {
  width: 100%;
}
.gallery-item img {
  width: 100%;
  object-fit: cover;
  border-radius: 6px;
}
.info-blocks h2 {
  text-align: center;
  margin: 70px 0 0px;
}

.info-row {
  display: grid;
  grid-template-columns: 1fr max-content;
  gap: 38px 134px;
  align-items: center;
  margin: 30px 0 0px;
  font-size: 24px;
}
.info-row:last-child {
  margin-bottom: 0;
}
@media (max-width: 1600px) {
  .info-row {
    font-size: 24px;
  }
}
@media (max-width: 1100px) {
  .info-row {
    margin: 100px 0;
    font-size: 20px;
    grid-template-columns: 1fr;
    grid-auto-rows: max-content;
    gap: 30px;
  }
  .info-row .info-row-img {
    margin-top: 0px;
  }
}
@media (max-width: 600px) {
  .info-row {
    margin: 80px 0;
    font-size: 18px;
  }
}
.info-row h3 {
  line-height: 0.9;
  grid-column: 1/-1;
  position: relative;
  display: flex;
  gap: 40px;
  white-space: nowrap;
  align-items: flex-end;
  margin: 50px 0 30px;
}
.info-row h3:after {
  content: "";
  display: inline-block;
  border-bottom: 1px solid #231F20;
  width: 100%;
  height: 0;
}
.info-row h4 {
  line-height: 0.9;
  grid-column: 1/-1;
  position: relative;
  display: flex;
  gap: 40px;
  white-space: nowrap;
  align-items: flex-end;
}
.info-row p {
  margin: 20px 0
}
.info-row iframe {
  display: block;
  width: 720px;
  max-width: 100%;
  margin: 0 auto;
}
.info-row-button {
  text-align: center;
}
@media (max-width: 1100px) {
  .info-row-button {
    margin-top: 18px;
  }
}
@media (min-width: 1100px) {
  .info-row--reverse {
    grid-template-columns: max-content 1fr;
  }
  .info-row--reverse .info-row-text {
    order: 2;
  }
  .info-row--reverse .info-row-img {
    order: 1;
  }
  .info-row--reverse h3 {
    text-align: right;
  }
  .info-row--reverse h3:after {
    display: none;
  }
  .info-row--reverse h3:before {
    content: "";
    display: inline-block;
    border-bottom: 1px solid #231F20;
    width: 100%;
    height: 0;
  }
}
.info-row--full {
  grid-template-columns: 1fr;
  gap: 130px;
}
@media (max-width: 768px) {
  .info-row--full {
    gap: 30px;
  }
}

.footer {
  margin-top: 55px;
  background: url("../img/footer-bg.svg") right top/cover no-repeat;
  color: #ffffff;
  padding: 7vw 0 30px 0;
}
@media (max-width: 768px) {
  .footer {
    margin-top: 100px;
    background-image: url("../img/footer-bg-mobile.svg");
    padding: 160px 0 35px 0;
  }
}
.footer__container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
}
@media (max-width: 768px) {
  .footer__container {
    display: grid;
    grid-template-columns: min-content 1fr;
    gap: 0 104px;
    margin-top: 20px;
  }
}
@media (max-width: 600px) {
  .footer__container {
    gap: 8vw;
  }
}
.footer .logo {
  filter: brightness(0) invert(1);
}
@media (max-width: 768px) {
  .footer .logo {
    margin-bottom: 30px;
    width: 160px;
    height: 75px;
  }
}
@media (max-width: 600px) {
  .footer .logo {
    width: 130px;
    height: 61px;
    margin: 0;
  }
}
.footer__nav {
  display: flex;
  flex-direction: column;
  font-size: 20px;
  font-weight: 600;
}
@media (max-width: 600px) {
  .footer__nav {
    font-size: 16px;
  }
}
.footer__nav a {
  color: #ffffff;
  text-decoration: none;
}
.footer__nav a:hover {
  text-decoration: underline;
}
.footer .socials {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 768px) {
  .footer .socials {
    margin: 0;
  }
}
.footer .socials .socials__link {
  filter: brightness(0) invert(1);
}
.footer__copy {
  font-size: 12px;
  line-height: 1.4;
  margin-right: 13vw;
  max-width: 252px;
}
@media (max-width: 1100px) {
  .footer__copy {
    margin: 0;
  }
}

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