@charset "UTF-8";
/* flex выравнивание */
.flex-pos-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-pos-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.flex-pos-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.flex-pos-top {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.flex-pos-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.flex-pos-left-top {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.flex-pos-left-bottom {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}

.flex-pos-right-top {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.flex-pos-right-bottom {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

@font-face {
  font-family: "Arial";
  src: url("../fonts/arial/arial.ttf");
  font-weight: 400;
}
@font-face {
  font-family: "Panama";
  src: url("../fonts/panama/PanamaRegular.ttf");
  font-weight: 400;
}
@font-face {
  font-family: "Times";
  src: url("../fonts/times/ofont.ru_Georgia Ref.ttf");
  font-weight: 400;
}
html {
  font-size: 16px;
  scroll-padding-top: 2.5rem;
}
@media (max-width: 679.98px) {
  html {
    font-size: 4.444vw;
  }
}

body {
  font-size: 1rem;
  line-height: 1.4;
  font-family: "Arial", sans-serif;
  font-weight: 400;
  color: #000000;
}
@media (max-width: 991.98px) {
  body {
    line-height: 1.6;
  }
}

.p-margin > p:only-child {
  margin-bottom: 0;
}

.p-margin > p:not(:only-child):last-child {
  margin-bottom: 0;
}

.container {
  max-width: 77.5rem;
  padding-inline: 1.25rem;
  box-sizing: border-box;
  margin-inline: auto;
}
@media (max-width: 1199.98px) {
  .container {
    max-width: 57.5rem;
  }
}
@media (max-width: 991.98px) {
  .container {
    max-width: 42.5rem;
  }
}
@media (max-width: 679.98px) {
  .container {
    max-width: 100%;
  }
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.fancybox-image {
  background-color: white;
}

.content {
  flex-grow: 1;
}

:where(.wrapper) a {
  text-decoration: unset;
  color: inherit;
}

:where(.wrapper) ul[class] {
  text-decoration: none;
  list-style-type: none;
}

:where(.wrapper) h1[class] {
  font-family: "Panama";
  font-size: 5.9375rem;
  line-height: 0.8;
  text-transform: uppercase;
  margin-bottom: 0;
}
@media (max-width: 1199.98px) {
  :where(.wrapper) h1[class] {
    font-size: 4.6875rem;
  }
}
@media (max-width: 991.98px) {
  :where(.wrapper) h1[class] {
    font-size: 2.5rem;
    line-height: 0.9;
  }
}

/*link blocks */
.audio-player {
  width: 100%;
  max-width: 100%;
  background-color: #fff;
  padding: 0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: sans-serif;
}
.audio-player__button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.6875rem;
  height: 2.6875rem;
  border: 0.0625rem solid #000;
  border-radius: 50%;
  transition: opacity 0.4s ease;
}
@media (hover: hover) {
  .audio-player__button:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .audio-player__button:active {
    opacity: 0.7;
  }
}
.audio-player__button .audio-player__icon {
  display: none;
  align-items: center;
  justify-content: center;
  width: 0.375rem;
  height: 0.4375rem;
}
.audio-player__button .audio-player__icon svg {
  width: 0.375rem;
  height: 0.4375rem;
}
.audio-player__button .audio-player__icon svg {
  display: block;
}
.audio-player__button .audio-player__icon--play svg path {
  fill: black;
}
.audio-player__button .audio-player__icon--pause svg path {
  stroke: var(--main-bg-color, black);
}
.audio-player__button--paused .audio-player__icon--play {
  display: flex;
}
.audio-player__button--playing .audio-player__icon--pause {
  display: flex;
}
.audio-player__progress {
  position: relative;
  flex: 1;
  height: 0.0625rem;
  background: #000;
  border-radius: 0.1875rem;
  cursor: pointer;
}
.audio-player__progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: #000;
  border-radius: 0.1875rem;
  transition: width 0.1s ease;
}
.audio-player__progress-thumb {
  position: absolute;
  top: 50%;
  right: 0;
  width: 0.75rem;
  height: 0.75rem;
  background: #000;
  border-radius: 50%;
  transform: translate(50%, -50%);
  pointer-events: auto;
  cursor: pointer;
  touch-action: none;
}
.audio-player__time {
  border-radius: 1.875rem;
  padding: 0.75rem 0.25rem;
  text-align: center;
  width: 3.75rem;
  font-size: 0.75rem;
  color: #333;
  border: 0.0625rem solid #000;
}

.header {
  position: sticky;
  top: 0;
  background-color: #fff;
  z-index: 100;
}
@media (max-width: 991.98px) {
  .header:has(.burger-icon--active) .menu {
    transform: translateY(100%);
    animation: fade-in-menu 0.4s ease forwards;
  }
}
.header__inner {
  display: flex;
  justify-content: space-between;
  padding-block: 0.625rem;
  padding-inline: 3.75rem;
  align-items: center;
  gap: 1.875rem;
}
@media (max-width: 1199.98px) {
  .header__inner {
    padding-inline: 1.25rem;
  }
}
@media (max-width: 991.98px) {
  .header__inner {
    padding: 1.25rem;
    gap: 0.9375rem;
  }
}
.header__logo {
  font-family: "Panama";
  font-size: 1.5625rem;
  line-height: 1.4;
}
@media (max-width: 991.98px) {
  .header__logo {
    line-height: 2.125rem;
  }
}
@media (max-width: 991.98px) {
  .header__burger {
    margin-bottom: 0.125rem;
  }
}

.menu {
  display: flex;
  flex-wrap: wrap;
  text-decoration: none;
  list-style-type: none;
  column-gap: 3.125rem;
  row-gap: 1.25rem;
  margin-bottom: 0rem;
}
@media (max-width: 991.98px) {
  .menu {
    opacity: 0;
    position: absolute;
    bottom: 0.1875rem;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateY(100%);
    background-color: #fff;
    padding-top: 3.75rem;
    padding-bottom: 1.875rem;
    padding-inline: 1.25rem;
    gap: 1.25rem;
    transform: translateY(-100%);
    animation: fade-out-menu 0.4s ease forwards;
  }
}
.menu__item {
  line-height: 1.1;
}
.menu__item.menu__item--active a {
  position: relative;
  transition: color 0.4s ease;
  color: #9b9b9b;
}
.menu__item.menu__item--active a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 0.0625rem;
  background-color: #9b9b9b;
  transform: translateY(0);
}
.menu__item a {
  display: inline-flex;
  transition: color 0.4s ease;
  color: #000000;
  position: relative;
}
.menu__item a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 0.0625rem;
  background-color: transparent;
  transition: all 0.4s ease;
  transform: translateY(-100%);
}
@media (hover: hover) {
  .menu__item a:hover {
    color: #9b9b9b;
  }
  .menu__item a:hover:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 0.0625rem;
    background-color: #9b9b9b;
    transform: translateY(0);
  }
}
@media (hover: none) {
  .menu__item a:active {
    color: #9b9b9b;
  }
  .menu__item a:active:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 0.0625rem;
    background-color: #9b9b9b;
    transform: translateY(0);
  }
}

/*burger */
.burger-icon {
  display: none;
  border: none;
  position: relative;
  padding: 0;
  flex-direction: column;
  justify-content: space-between;
  width: 1.375rem;
  height: 0.875rem;
  background-color: transparent;
  flex-shrink: 0;
  cursor: pointer;
}
@media (max-width: 991.98px) {
  .burger-icon {
    display: flex;
  }
}
.burger-icon span {
  height: 0.125rem;
  width: 100%;
  background-color: #000;
  transition: rotate 0.4s ease;
}
.burger-icon span:nth-child(2) {
  transition: opacity 0.4s ease;
}
.burger-icon--active {
  justify-content: center;
}
.burger-icon--active span {
  position: absolute;
}
.burger-icon--active span:nth-child(3) {
  rotate: 45deg;
}
.burger-icon--active span:nth-child(2) {
  rotate: 0;
  opacity: 0;
}
.burger-icon--active span:nth-child(1) {
  rotate: -45deg;
}

@keyframes fade-in-menu {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-out-menu {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.main-banner {
  position: relative;
  background: url("/local/templates/atlasblago/assets/images/back-main-banner.png");
  background-size: cover;
  border: 0.0625rem solid #000;
  background-repeat: no-repeat;
  overflow: hidden;
}
@media (max-width: 991.98px) {
  .main-banner h1.main-banner__title {
    font-size: 3.5625rem;
  }
}
@media (max-width: 679.98px) {
  .main-banner h1.main-banner__title {
    font-size: 2.5rem;
    line-height: 0.9;
  }
}
@media (max-width: 991.98px) {
  .main-banner {
    background: url("/local/templates/atlasblago/assets/images/back-main-banner-sm.png");
    background-size: cover;
    background-repeat: no-repeat;
  }
}
@media (max-width: 679.98px) {
  .main-banner {
    background: url("/local/templates/atlasblago/assets/images/back-main-banner-sm.png");
    width: 100vw;
    transform: translateX(-50%);
    margin-left: 50%;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
.main-banner__inner {
  padding-block: 6.25rem;
  background: url("/local/templates/atlasblago/assets/images/ilust-main-banner.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 1199.98px) {
  .main-banner__inner {
    padding-block: 5rem;
  }
}
@media (max-width: 991.98px) {
  .main-banner__inner {
    padding-block: 18.75rem;
    background: url("/local/templates/atlasblago/assets/images/ilust-main-banner-sm.png");
    background-size: cover;
    background-repeat: no-repeat;
  }
}
@media (max-width: 679.98px) {
  .main-banner__inner {
    background: url("/local/templates/atlasblago/assets/images/ilust-main-banner-sm.png");
    background-size: cover;
    background-repeat: no-repeat;
    padding-block: 10.3125rem;
  }
}
.main-banner__inner:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background-image: url("/local/templates/atlasblago/assets/images/spiral.svg");
  background-size: contain;
  transform: rotate(180deg);
  width: calc(50% - 1.25rem);
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 991.98px) {
  .main-banner__inner:before {
    background-image: url("/local/templates/atlasblago/assets/images/spiral-sm.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: calc(100% + 0.3125rem);
    background-position: center bottom -0.3125rem;
  }
}
.main-banner__inner:after {
  content: "";
  position: absolute;
  width: calc(50% - 1.25rem);
  right: 0;
  top: 0;
  bottom: 0;
  background-image: url("/local/templates/atlasblago/assets/images/spiral.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 991.98px) {
  .main-banner__inner:after {
    display: none;
  }
}
.main-banner__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 27.1875rem;
  padding: 4.375rem;
  border-radius: 18.75rem;
  border: 0.0625rem solid #000000;
  text-align: center;
  border-radius: 50%;
  gap: 1.25rem;
  position: relative;
  z-index: 10;
  background-color: white;
}
@media (max-width: 1199.98px) {
  .main-banner__content {
    min-height: 21.875rem;
  }
}
@media (max-width: 991.98px) {
  .main-banner__content {
    min-height: 20rem;
    padding: 3.125rem;
  }
}
@media (max-width: 679.98px) {
  .main-banner__content {
    min-height: 14.625rem;
    padding: 2.5rem;
    margin-inline: 0.4375rem;
  }
}
.main-banner__desc {
  font-size: 1.75rem;
  letter-spacing: -0.03125rem;
  line-height: 1.2;
}
@media (max-width: 1199.98px) {
  .main-banner__desc {
    font-size: 1.375rem;
  }
}
@media (max-width: 991.98px) {
  .main-banner__desc {
    font-size: 1rem;
  }
}
@media (max-width: 679.98px) {
  .main-banner__desc {
    font-size: 0.875rem;
  }
}

.stepper {
  padding-block: 2.8125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.125rem;
  letter-spacing: -0.03125rem;
}
.stepper__divide {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #000000;
}
@media (max-width: 679.98px) {
  .stepper__divide {
    width: 0.375rem;
    height: 0.375rem;
  }
}
@media (max-width: 679.98px) {
  .stepper {
    padding-block: 1.875rem;
    font-size: 0.75rem;
  }
}

.figure {
  max-width: 58rem;
  width: 100%;
  height: auto;
  margin-inline: auto;
  padding: 5.9375rem;
  position: relative;
  overflow: hidden;
  border: 0.0625rem solid #000;
}
@media (max-width: 679.98px) {
  .figure {
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 991.98px) {
  .figure {
    padding: 1.875rem;
  }
}
@media (max-width: 679.98px) {
  .figure {
    padding: 0;
  }
}
.figure__layout {
  position: absolute;
  inset: 5.9375rem;
  display: inline-flex;
  background-color: #fff;
  border: 0.0625rem solid #000;
  overflow: hidden;
}
@media (max-width: 991.98px) {
  .figure__layout {
    inset: 1.875rem;
  }
}
@media (max-width: 679.98px) {
  .figure__layout {
    top: 1.25rem;
    bottom: 1.25rem;
    left: 1.25rem;
    right: 1.25rem;
  }
}
.figure__layout svg {
  width: 100%;
  min-height: 30.4375rem;
}
.figure__body {
  text-align: center;
  position: relative;
  z-index: 10;
  padding-top: 0.625rem;
  padding-bottom: 0.5rem;
  padding-inline: 4.375rem;
  overflow: hidden;
  /* если нет  блока с картинкой */
}
@media (max-width: 679.98px) {
  .figure__body {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    padding-inline: 1.25rem;
  }
}
.figure__body:not(:has(.figure__bottom)) .figure__desc:before {
  width: 125rem;
  left: -4.375rem;
}
@media (max-width: 679.98px) {
  .figure__body:not(:has(.figure__bottom)) .figure__desc:before {
    bottom: 0.625rem;
  }
}
.figure__body-inner {
  position: relative;
}
@media (max-width: 679.98px) {
  .figure__body-inner {
    overflow: hidden;
  }
}
.figure__body-inner::before {
  content: "";
  position: absolute;
  height: 125rem;
  width: 0.0625rem;
  background: #000;
  left: 0;
  top: -0.625rem;
}
@media (max-width: 679.98px) {
  .figure__body-inner::before {
    top: 0;
  }
}
.figure__body-inner::after {
  content: "";
  position: absolute;
  height: 125rem;
  width: 0.0625rem;
  background: #000;
  right: 0;
  top: -0.625rem;
}
@media (max-width: 679.98px) {
  .figure__body-inner::after {
    top: 0;
  }
}
.figure__name {
  position: relative;
  padding-block: 0.9375rem;
  font-family: "Panama";
  font-size: 1.875rem;
  padding-inline: 3.75rem;
}
@media (max-width: 679.98px) {
  .figure__name {
    padding-block: 1.5625rem;
    padding-inline: 1.5625rem;
    font-size: 1.5rem;
  }
}
.figure__name-text {
  display: inline-block;
  padding: 0.625rem 1.5625rem;
  position: relative;
  line-height: 1.5;
}
.figure__name-text svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}
@media (max-width: 679.98px) {
  .figure__name-text {
    padding-block: 0.375rem;
    padding-inline: 1.125rem;
    line-height: 1.4;
  }
}
.figure__name:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -4.375rem;
  right: -4.375rem;
  height: 0.0625rem;
  background-color: #000;
}
@media (max-width: 679.98px) {
  .figure__name:before {
    left: 0;
    right: 0;
  }
}
.figure__desc {
  position: relative;
  padding: 2.5rem 3.75rem;
  font-size: 1.375rem;
  line-height: 1.2;
  letter-spacing: -0.03125rem;
}
@media (max-width: 1199.98px) {
  .figure__desc {
    font-size: 1.125rem;
    padding: 2.5rem 5rem;
  }
}
@media (max-width: 991.98px) {
  .figure__desc {
    padding: 2.5rem 3.75rem;
    font-size: 1rem;
  }
}
@media (max-width: 679.98px) {
  .figure__desc {
    font-size: 1rem;
    padding: 1.875rem 1.5625rem;
    line-height: 1.5;
  }
}
.figure__desc:before {
  content: "";
  position: absolute;
  left: -0.5rem;
  right: -0.5rem;
  bottom: 0;
  height: 0.0625rem;
  background-color: #000;
}
@media (max-width: 679.98px) {
  .figure__desc:before {
    left: 0;
    right: 0;
  }
}
.figure__desc-outside {
  position: absolute;
  height: 1px;
  border: 0;
  padding: 0;
  left: 0;
  top: 0;
  right: 0;
  white-space: nowrap;
  width: 100%;
}
.figure__desc-outside:before {
  content: "";
  position: absolute;
  top: 0;
  left: -0.5rem;
  height: 125rem;
  background-color: #000;
  width: 0.0625rem;
}
@media (max-width: 679.98px) {
  .figure__desc-outside:before {
    left: 0.625rem;
  }
}
.figure__desc-outside:after {
  content: "";
  position: absolute;
  top: 0;
  right: -0.5rem;
  height: 125rem;
  background-color: #000;
  width: 0.0625rem;
}
@media (max-width: 679.98px) {
  .figure__desc-outside:after {
    right: 0.625rem;
  }
}
.figure__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  position: relative;
  padding: 2.5rem 3.75rem;
}
@media (max-width: 679.98px) {
  .figure__bottom {
    padding: 1.875rem 1.5625rem;
  }
}
.figure__bottom:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -4.375rem;
  right: -4.375rem;
  height: 0.0625rem;
  width: 125rem;
  background-color: #000;
  will-change: transform;
}
@media (max-width: 679.98px) {
  .figure__bottom:before {
    left: 0;
    right: 0;
    width: 100%;
    bottom: 0.625rem;
  }
}
.figure__logo {
  flex-shrink: 0;
}
.figure__logo:only-child {
  margin-inline: auto;
}
.figure__logo img {
  width: 100%;
  max-width: 12.8125rem;
  max-height: 6.375rem;
}
@media (max-width: 679.98px) {
  .figure__logo img {
    max-width: 9.0625rem;
    max-height: 4.625rem;
  }
}
.figure__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 6.25rem;
  height: 6.25rem;
  background-color: #000;
  border: 0.0625rem solid transparent;
  border-radius: 50%;
  font-size: 0.75rem;
  color: #fff;
  transition: all 0.4s ease;
  padding: 0.9375rem;
  box-sizing: border-box;
}
@media (max-width: 679.98px) {
  .figure__btn {
    width: 5.5rem;
    height: 5.5rem;
  }
}
@media (hover: hover) {
  .figure__btn:hover {
    color: #000;
    background-color: #fff;
    border-color: #000;
  }
}
@media (hover: none) {
  .figure__btn:active {
    color: #000;
    background-color: #fff;
    border-color: #000;
  }
}

.section-history__figure {
  margin-bottom: 3.75rem;
}
@media (max-width: 679.98px) {
  .section-history__figure {
    margin-bottom: 2.5rem;
  }
}

.history-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-flow: row dense;
  padding-inline: 2.5rem;
}
@media (max-width: 1199.98px) {
  .history-layout {
    padding-inline: 0;
  }
}
@media (max-width: 991.98px) {
  .history-layout {
    grid-template-columns: 1fr 1fr;
    padding-inline: 1.25rem;
  }
}
@media (max-width: 679.98px) {
  .history-layout {
    margin-block: -0.9375rem;
    margin-inline: 0;
    grid-template-columns: 1fr;
    padding-inline: 0;
  }
}
@media (max-width: 991.98px) {
  .history-layout > div:only-child {
    border-right: unset !important;
  }
}
@media (max-width: 679.98px) {
  .history-layout div.history-layout__item.card-history:nth-child(3n):not(:last-child) {
    border-bottom: 0.0625rem solid #000 !important;
  }
}
.history-layout__item:last-child {
  border-right: 0.0625rem solid #000;
}
@media (max-width: 991.98px) {
  .history-layout__item.history-layout__item--pos-3:nth-last-child(2) {
    padding-bottom: 0 !important;
  }
}
@media (max-width: 679.98px) {
  .history-layout__item.history-layout__item--pos-3:nth-last-child(2) {
    padding-bottom: 0.9375rem !important;
  }
}
@media (max-width: 991.98px) {
  .history-layout__item.history-layout__item--pos-4:nth-last-child(1) {
    padding-bottom: 0 !important;
  }
}
@media (max-width: 679.98px) {
  .history-layout__item.history-layout__item--pos-4:nth-last-child(1) {
    padding-bottom: 0.9375rem !important;
  }
}
.history-layout:not(:has(.history-layout__item--pos-6.card-history + .history-layout__item--pos-7.card-history:last-child)) .history-layout__item--pos-4.card-history:nth-last-child(3) {
  border-bottom: 0.0625rem solid #000;
}
@media (max-width: 991.98px) {
  .history-layout:not(:has(.history-layout__item--pos-6.card-history + .history-layout__item--pos-7.card-history:last-child)) .history-layout__item--pos-4.card-history:nth-last-child(3) {
    border-bottom: unset;
  }
}
.history-layout:not(:has(.history-layout__item--pos-6.card-history + .history-layout__item--pos-7.card-history:last-child)) .history-layout__item--pos-5.card-history:nth-last-child(2) {
  border-bottom: 0.0625rem solid #000;
}
.history-layout:not(:has(.history-layout__item--pos-6.card-history + .history-layout__item--pos-7.card-history:last-child)) .history-layout__item--pos-6.card-history:last-child {
  border-right: 0.0625rem solid #000;
}
.history-layout:has(.history-layout__item--pos-7.card-history + .history-layout__item--pos-1.card-history:last-child) .history-layout__item--pos-7.card-history:nth-last-child(2) {
  border-bottom: 0.0625rem solid #000;
}
@media (max-width: 679.98px) {
  .history-layout:has(.history-layout__item--pos-7.card-history + .history-layout__item--pos-1.card-history:last-child) .history-layout__item--pos-7.card-history:nth-last-child(2) {
    border: unset;
  }
}
.history-layout:has(.history-layout__item--pos-7.card-history + .history-layout__item--pos-1.card-history:last-child) .history-layout__item--pos-1.card-history:last-child {
  border-right: 0.0625rem solid #000;
}
.history-layout:has(.history-layout__item--pos-7 ~ .history-layout__item--pos-2:last-child) .history-layout__item--pos-2:last-child {
  border-top: unset;
}
@media (max-width: 991.98px) {
  .history-layout:has(.history-layout__item--pos-7 ~ .history-layout__item--pos-2:last-child) .history-layout__item--pos-2:last-child {
    border-top: 0.0625rem solid #000;
  }
}
@media (max-width: 679.98px) {
  .history-layout:has(.history-layout__item--pos-7 ~ .history-layout__item--pos-2:last-child) .history-layout__item--pos-2:last-child {
    border: unset;
  }
}
.history-layout:has(.history-layout__item--pos-7 ~ .history-layout__item--pos-2:last-child) .history-layout__item--pos-7:nth-last-child(3) {
  border-bottom: 0.0625rem solid #000;
}
@media (max-width: 991.98px) {
  .history-layout:has(.history-layout__item--pos-7 ~ .history-layout__item--pos-2:last-child) .history-layout__item--pos-7:nth-last-child(3) {
    border-bottom: unset;
  }
}
@media (max-width: 991.98px) {
  .history-layout:has(.history-layout__item--pos-2 + .history-layout__item--pos-3:last-child:nth-child(odd)) .history-layout__item--pos-2:nth-last-child(2) {
    border-bottom: 0.0625rem solid #000 !important;
  }
}
@media (max-width: 679.98px) {
  .history-layout:has(.history-layout__item--pos-2 + .history-layout__item--pos-3:last-child:nth-child(odd)) .history-layout__item--pos-2:nth-last-child(2) {
    border-bottom: unset !important;
  }
}
@media (max-width: 991.98px) {
  .history-layout:has(.history-layout__item--pos-4 + .history-layout__item--pos-5:last-child:nth-child(odd)) .history-layout__item--pos-4:nth-last-child(2) {
    border-bottom: 0.0625rem solid #000 !important;
  }
}
@media (max-width: 679.98px) {
  .history-layout:has(.history-layout__item--pos-4 + .history-layout__item--pos-5:last-child:nth-child(odd)) .history-layout__item--pos-4:nth-last-child(2) {
    border-bottom: unset !important;
  }
}
@media (max-width: 991.98px) {
  .history-layout:has(.history-layout__item--pos-5 + .history-layout__item--pos-6:last-child:nth-child(odd)) .history-layout__item--pos-5:nth-last-child(2) {
    border-bottom: 0.0625rem solid #000 !important;
  }
}
@media (max-width: 679.98px) {
  .history-layout:has(.history-layout__item--pos-5 + .history-layout__item--pos-6:last-child:nth-child(odd)) .history-layout__item--pos-5:nth-last-child(2) {
    border-bottom: unset !important;
  }
}
@media (max-width: 991.98px) {
  .history-layout:has(.history-layout__item--pos-6 + .history-layout__item--pos-7:last-child:nth-child(odd)) .history-layout__item--pos-6:nth-last-child(2) {
    border-bottom: 0.0625rem solid #000 !important;
  }
}
@media (max-width: 679.98px) {
  .history-layout:has(.history-layout__item--pos-6 + .history-layout__item--pos-7:last-child:nth-child(odd)) .history-layout__item--pos-6:nth-last-child(2) {
    border-bottom: unset !important;
  }
}
@media (max-width: 991.98px) {
  .history-layout:has(.history-layout__item--pos-1 + .history-layout__item--pos-2:last-child:nth-child(odd)) .history-layout__item--pos-1:nth-last-child(2) {
    border-bottom: 0.0625rem solid #000 !important;
  }
}
@media (max-width: 679.98px) {
  .history-layout:has(.history-layout__item--pos-1 + .history-layout__item--pos-2:last-child:nth-child(odd)) .history-layout__item--pos-1:nth-last-child(2) {
    border-bottom: unset !important;
  }
}
@media (max-width: 991.98px) {
  .history-layout:has(.history-layout__item:nth-child(3)) .history-layout__item.history-layout__item--pos-2:last-child {
    padding-bottom: 0 !important;
  }
}
@media (max-width: 679.98px) {
  .history-layout:has(.history-layout__item:nth-child(3)) .history-layout__item.history-layout__item--pos-2:last-child {
    padding-bottom: 0.9375rem !important;
  }
}
.history-layout__item:nth-child(-n+3) {
  border-top: none;
  padding-top: 0;
}
@media (max-width: 991.98px) {
  .history-layout__item:nth-child(-n+3) {
    border-top: unset;
    padding-top: 1.375rem;
  }
}
@media (max-width: 679.98px) {
  .history-layout__item:nth-child(-n+3) {
    padding-top: 0;
  }
}
.history-layout__item {
  border-top: 0.0625rem solid #000;
  border-left: 0.0625rem solid #000;
}
@media (max-width: 991.98px) {
  .history-layout__item {
    border-left: unset;
  }
}
@media (max-width: 679.98px) {
  .history-layout__item {
    padding-block: 0.9375rem !important;
  }
}
@media (max-width: 991.98px) {
  .history-layout__item:nth-child(even) {
    border-right: unset !important;
    padding-right: 0 !important;
  }
}
@media (max-width: 991.98px) {
  .history-layout__item:nth-child(odd) {
    border-top: 0.0625rem solid #000 !important;
    border-right: 0.0625rem solid #000 !important;
    border-left: unset !important;
    padding-left: 0 !important;
  }
}
@media (max-width: 679.98px) {
  .history-layout__item:nth-child(odd) {
    border-top: unset !important;
    border-right: unset !important;
    border-left: unset !important;
  }
}
@media (max-width: 991.98px) {
  .history-layout__item:nth-last-child(1) {
    border-bottom: unset !important;
  }
}
@media (max-width: 991.98px) {
  .history-layout__item:nth-last-child(2):nth-child(odd) {
    border-bottom: unset !important;
  }
}
@media (max-width: 991.98px) {
  .history-layout__item:nth-child(1) {
    border-top: unset !important;
    padding-top: 0 !important;
  }
}
@media (max-width: 679.98px) {
  .history-layout__item:nth-child(1) {
    padding-top: 0.9375rem !important;
  }
}
@media (max-width: 991.98px) {
  .history-layout__item:nth-child(2) {
    border-top: unset !important;
    padding-top: 0 !important;
  }
}
@media (max-width: 679.98px) {
  .history-layout__item:nth-child(2) {
    padding-top: 0.9375rem !important;
  }
}
@media (max-width: 679.98px) {
  .history-layout__item {
    border: unset !important;
  }
}
.history-layout__item .card-history__picture img {
  max-height: 25.125rem;
  height: auto;
}
@media (max-width: 679.98px) {
  .history-layout__item .card-history__picture img {
    max-height: 24.375rem;
  }
}
.history-layout__item--pos-1.card-history {
  border-left: unset;
  padding-left: 0;
}
@media (max-width: 991.98px) {
  .history-layout__item--pos-1.card-history {
    padding-left: 1.375rem;
  }
}
@media (max-width: 679.98px) {
  .history-layout__item--pos-1.card-history {
    padding-left: 0;
  }
}
.history-layout__item--pos-1.card-history:last-child {
  border-right: unset;
}
.history-layout__item--pos-3.card-history:has(+ .card-history.history-layout__item--pos-4:last-child) {
  border-bottom: 0.0625rem solid #000;
}
.history-layout__item--pos-3.card-history:last-child {
  border-right: unset;
}
@media (max-width: 991.98px) {
  .history-layout__item--pos-3.card-history {
    border-left: unset;
    border-right: 0.0625rem solid #000;
  }
}
.history-layout__item--pos-4.card-history {
  border-left: unset;
  padding-left: 0;
}
@media (max-width: 991.98px) {
  .history-layout__item--pos-4.card-history {
    padding-left: 1.375rem;
  }
}
@media (max-width: 679.98px) {
  .history-layout__item--pos-4.card-history {
    padding-left: 0;
  }
}
.history-layout__item--pos-4.card-history .card-history__picture img {
  max-height: 27.5rem;
}
@media (max-width: 679.98px) {
  .history-layout__item--pos-4.card-history .card-history__picture img {
    max-height: 24.375rem;
  }
}
.history-layout__item--pos-5.card-history:last-child {
  border-right: unset;
}
@media (max-width: 991.98px) {
  .history-layout__item--pos-5.card-history {
    border-left: unset;
    border-right: 0.0625rem solid #000;
  }
}
.history-layout__item--pos-6.card-history {
  border-left: unset;
  padding-left: 0;
}
@media (max-width: 991.98px) {
  .history-layout__item--pos-6.card-history {
    padding-left: 1.375rem;
  }
}
@media (max-width: 679.98px) {
  .history-layout__item--pos-6.card-history {
    padding-left: 0;
  }
}
.history-layout__item--pos-6.card-history:last-child {
  border-top: unset;
}
@media (max-width: 991.98px) {
  .history-layout__item--pos-6.card-history:last-child {
    border-top: 0.0625rem solid #000;
  }
}
@media (max-width: 679.98px) {
  .history-layout__item--pos-6.card-history:last-child {
    border-top: unset;
  }
}
.history-layout__item--pos-7.card-history:last-child {
  border-right: unset;
}
@media (max-width: 991.98px) {
  .history-layout__item--pos-7.card-history {
    border-left: unset;
  }
}
.history-layout__item--pos-7.card-history .card-history__picture img {
  max-height: 27.5rem;
}
@media (max-width: 679.98px) {
  .history-layout__item--pos-7.card-history .card-history__picture img {
    max-height: 24.375rem;
  }
}
.history-layout__item--pos-1, .history-layout__item--pos-2, .history-layout__item--pos-3 {
  grid-column: span 1;
}
@media (max-width: 991.98px) {
  .history-layout__item--pos-1, .history-layout__item--pos-2, .history-layout__item--pos-3 {
    grid-column: unset;
  }
}
.history-layout__item--pos-4 {
  grid-column: span 2;
}
@media (max-width: 991.98px) {
  .history-layout__item--pos-4 {
    grid-column: unset;
  }
}
.history-layout__item--pos-5 {
  grid-column: span 1;
}
@media (max-width: 991.98px) {
  .history-layout__item--pos-5 {
    grid-column: unset;
  }
}
.history-layout__item--pos-6 {
  grid-column: span 1;
}
@media (max-width: 991.98px) {
  .history-layout__item--pos-6 {
    grid-column: unset;
  }
}
.history-layout__item--pos-7 {
  grid-column: span 2;
}
@media (max-width: 991.98px) {
  .history-layout__item--pos-7 {
    grid-column: unset;
  }
}

.card-history {
  padding: 2.5rem;
}
.card-history a {
  border-bottom: 0.0625rem solid #000;
}
@media (max-width: 1199.98px) {
  .card-history {
    padding: 1.375rem;
  }
}
@media (max-width: 991.98px) {
  .card-history {
    padding: 1.375rem;
  }
}
@media (max-width: 679.98px) {
  .card-history {
    padding-inline: 0;
    padding-top: 1.875rem;
    padding-bottom: 1.875rem;
  }
}
.card-history__name {
  font-size: 3.8125rem;
  font-family: "Panama";
  line-height: 1.05;
  margin-bottom: 0.375rem;
}
@media (max-width: 991.98px) {
  .card-history__name {
    font-size: 3.1875rem;
  }
}
@media (max-width: 679.98px) {
  .card-history__name {
    font-size: 2.125rem;
    line-height: 1.2;
  }
}
.card-history__desc {
  letter-spacing: -0.03125rem;
  margin-bottom: 1.25rem;
}
@media (max-width: 1199.98px) {
  .card-history__desc {
    font-size: 0.9375rem;
  }
}
@media (max-width: 679.98px) {
  .card-history__desc {
    letter-spacing: -0.0125rem;
    font-size: 1rem;
  }
}
.card-history__wrapper {
  display: inline-block;
}
.card-history__picture {
  display: inline-block;
  position: relative;
}
.card-history__picture .svg-frame {
  width: 100%;
  height: 100%;
  display: block;
}
.card-history__picture .svg-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  aspect-ratio: 1/1;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.card-history__picture svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.card-history__picture img {
  max-width: 100%;
  height: auto;
  border: 0.0625rem dotted #000;
}
.card-history__label {
  display: block;
  width: 100%;
  font-size: 0.75rem;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
  position: relative;
  z-index: 10;
  padding-top: 0.3125rem;
  margin-top: -0.0625rem;
}
.card-history__label svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 991.98px) {
  .card-history__label {
    font-size: 0.5625rem;
    padding-top: 0.625rem;
  }
}
@media (max-width: 679.98px) {
  .card-history__label {
    font-size: 0.6875rem;
    line-height: 1.2;
    padding-top: 0.3125rem;
    padding-bottom: 0.125rem;
  }
}
.card-history__group {
  position: relative;
  padding-bottom: 0.1875rem;
}
@media (max-width: 679.98px) {
  .card-history__group {
    max-width: max-content;
  }
}

.banner-about {
  padding: 2.5rem;
  position: relative;
  background: url("/local/templates/atlasblago/assets/images/back-about-banner.png");
  border: 0.0625rem solid #000;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 1199.98px) {
  .banner-about {
    margin-inline: -2.8125rem;
  }
}
@media (max-width: 991.98px) {
  .banner-about {
    margin-inline: 0;
    padding-inline: 8.4375rem;
    overflow: hidden;
  }
}
@media (max-width: 679.98px) {
  .banner-about {
    background: url("/local/templates/atlasblago/assets/images/back-about-banner-sm.png");
    background-repeat: no-repeat;
    background-size: cover;
    width: 100vw;
    transform: translateX(-50%);
    margin-left: 50%;
    padding: 1.25rem;
  }
}
.banner-about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: url("/local/templates/atlasblago/assets/images/about-banner-decor.svg");
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
}
@media (max-width: 991.98px) {
  .banner-about::before {
    top: 0;
    left: 0;
    right: 0;
    height: 55.625rem;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
}
@media (max-width: 679.98px) {
  .banner-about::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    /* до поворота: width = визуальная высота, height = визуальная ширина */
    width: 84.0625rem;
    height: 47.3125rem;
    background: url("/local/templates/atlasblago/assets/images/about-banner-decor.svg") no-repeat center;
    background-size: cover;
    transform: rotate(270deg) translateX(-100%);
    transform-origin: top left;
    z-index: 0;
    background-position: top -18.5625rem left 24.4375rem;
  }
}
.banner-about__row {
  display: grid;
  grid-template-columns: 31.6875rem 1fr;
  gap: 4.0625rem;
}
@media (max-width: 1199.98px) {
  .banner-about__row {
    grid-template-columns: 22.75rem 1fr;
  }
}
@media (max-width: 991.98px) {
  .banner-about__row {
    grid-template-columns: 1fr;
    gap: 1.875rem;
  }
}
@media (max-width: 679.98px) {
  .banner-about__row {
    gap: 1.5rem;
  }
}
.banner-about__col-left {
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-about__col-right {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 10;
  background: #fff;
  border: 0.0625rem solid #000;
}
.banner-about__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 31.6875rem;
  height: 31.6875rem;
  border-radius: 50%;
  border: 0.0625rem solid #000;
  padding: 2.5rem;
  background-color: #fff;
  position: relative;
  z-index: 10;
}
.banner-about__logo svg {
  width: 100%;
  height: 100%;
}
@media (max-width: 1199.98px) {
  .banner-about__logo {
    width: 22.75rem;
    height: 22.75rem;
  }
}
@media (max-width: 679.98px) {
  .banner-about__logo {
    width: 100%;
    height: 19.75rem;
  }
}
.banner-about__desc {
  font-size: 1.25rem;
  letter-spacing: -0.03125rem;
  line-height: 1.45;
  padding: 2.1875rem 2.1875rem 2.1875rem;
  position: relative;
}
@media (max-width: 1199.98px) {
  .banner-about__desc {
    font-size: 0.9375rem;
    padding: 1.875rem 2.1875rem;
    letter-spacing: -0.0125rem;
    line-height: 1.4;
  }
}
@media (max-width: 991.98px) {
  .banner-about__desc {
    font-size: 0.875rem;
    line-height: 1.55;
    padding-inline: 1.8125rem;
  }
}
@media (max-width: 679.98px) {
  .banner-about__desc {
    font-size: 1rem;
    padding: 1.25rem;
    line-height: 1.35;
  }
}
.banner-about__layout {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.banner-about__soc1als {
  padding: 3.375rem 1.875rem 2.5rem;
  margin-top: auto;
  position: relative;
}
@media (max-width: 1199.98px) {
  .banner-about__soc1als {
    padding: 2.625rem 1.875rem 1.75rem;
  }
}
@media (max-width: 679.98px) {
  .banner-about__soc1als {
    padding: 2.25rem 1.25rem 1.375rem;
  }
}
.banner-about__soc1als::before {
  position: absolute;
  display: flex;
  content: "";
  background: url("/local/templates/atlasblago/assets/images/about-banner-line.png");
  width: 100%;
  height: 0.75rem;
  background-size: cover;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  right: 0;
  border-top: 0.0625rem solid #000;
  border-bottom: 0.0625rem solid #000;
}
.banner-about__soc1als ul {
  display: flex;
  flex-wrap: wrap;
  column-gap: 2.1875rem;
  row-gap: 1.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: -0.03125rem;
}
@media (max-width: 1199.98px) {
  .banner-about__soc1als ul {
    font-size: 0.9375rem;
    letter-spacing: -0.0125rem;
    line-height: 1.3;
  }
}
@media (max-width: 679.98px) {
  .banner-about__soc1als ul {
    font-size: 1rem;
  }
}
.banner-about__soc1als ul a[href] {
  border-bottom: 0.125rem solid #000;
}

.footer__inner {
  padding-inline: 1.25rem;
  padding-block: 0.625rem;
  font-size: 1rem;
  line-height: 1.5;
}
@media (max-width: 991.98px) {
  .footer__inner {
    font-size: 0.875rem;
  }
}
@media (max-width: 679.98px) {
  .footer__inner {
    font-size: 0.75rem;
    line-height: 2;
    padding-block: 0.5rem;
    padding-inline: 0.625rem;
  }
}

.fonds {
  display: grid;
  grid-template-columns: 31.6875rem 1fr;
  padding-right: 5rem;
  gap: 4.375rem;
}
@media (max-width: 1199.98px) {
  .fonds {
    grid-template-columns: 1fr;
    padding-right: 0;
  }
}
.fonds__picture-block {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: url("/local/templates/atlasblago/assets/images/back-fonds.png");
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 50%;
  overflow: hidden;
  width: 31.6875rem;
  height: 31.6875rem;
}
.fonds__picture-block svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.fonds__title {
  position: relative;
  z-index: 10;
  font-family: "Panama";
  line-height: 1;
  font-size: 5rem;
  text-align: center;
  letter-spacing: -0.1125rem;
  text-transform: uppercase;
  padding: 1.5625rem;
}
@media (max-width: 1199.98px) {
  .fonds__col-left {
    display: none;
  }
}
.fonds__col-right {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
@media (max-width: 1199.98px) {
  .fonds__col-right {
    gap: 2.5rem;
  }
}
.fonds__image-wrap {
  position: sticky;
  top: 5rem;
}
.fonds__item {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
@media (max-width: 1199.98px) {
  .fonds__item {
    display: grid;
    grid-template-columns: 22.875rem 1fr;
    column-gap: 3.75rem;
    row-gap: 1.875rem;
  }
}
@media (max-width: 991.98px) {
  .fonds__item {
    position: relative;
    margin-inline: 2.5rem;
  }
}
@media (max-width: 679.98px) {
  .fonds__item {
    margin-inline: 0;
    grid-template-columns: 1fr;
    row-gap: 1.5625rem;
  }
}
.fonds__item-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  line-height: 1.2;
  font-family: "Panama";
  position: relative;
  width: 4rem;
  height: 4rem;
  padding: 0.3125rem;
  box-sizing: border-box;
}
@media (max-width: 991.98px) {
  .fonds__item-order {
    position: absolute;
    right: 0;
    top: 0;
  }
}
@media (max-width: 679.98px) {
  .fonds__item-order {
    position: relative;
    font-size: 1.5rem;
    line-height: 1.1;
    width: 3.75rem;
    height: 3.75rem;
  }
}
.fonds__item-order svg {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}
.fonds__item-desc {
  font-size: 1.25rem;
  letter-spacing: -0.03125rem;
  line-height: 1.45;
}
.fonds__item-desc a {
  border-bottom: 0.125rem solid #000;
}
@media (max-width: 1199.98px) {
  .fonds__item-desc {
    font-size: 0.875rem;
    letter-spacing: -0.0125rem;
    line-height: 1.6;
  }
}
@media (max-width: 991.98px) {
  .fonds__item-desc {
    grid-column: 1/span 2;
    font-size: 1rem;
    letter-spacing: -0.03125rem;
  }
}
@media (max-width: 679.98px) {
  .fonds__item-desc {
    grid-column: unset;
    letter-spacing: -0.0125rem;
  }
}
.fonds__circle {
  display: none;
}
@media (max-width: 1199.98px) {
  .fonds__circle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: url("/local/templates/atlasblago/assets/images/back-fonds.png");
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 50%;
    overflow: hidden;
    width: 22.875rem;
    height: 22.875rem;
    grid-row: 1/span 2;
  }
}
@media (max-width: 679.98px) {
  .fonds__circle {
    width: 19.875rem;
    height: 19.875rem;
  }
}
@media (max-width: 1199.98px) {
  .fonds__circle svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 1199.98px) {
  .fonds__circle-title {
    position: relative;
    z-index: 10;
    font-family: "Panama";
    line-height: 1;
    font-size: 5rem;
    text-align: center;
    letter-spacing: -0.1125rem;
    text-transform: uppercase;
    font-size: 3.1875rem;
    padding: 1.5625rem;
  }
}
@media (max-width: 679.98px) {
  .fonds__circle-title {
    font-size: 2.875rem;
    padding: 1.5625rem;
  }
}

.section-seasons__row {
  display: flex;
  flex-wrap: wrap;
  column-gap: 6.875rem;
  row-gap: 2.5rem;
}
@media (max-width: 1199.98px) {
  .section-seasons__row {
    column-gap: 4.375rem;
    row-gap: 3.125rem;
  }
}
@media (max-width: 991.98px) {
  .section-seasons__row {
    column-gap: 2.5rem;
    row-gap: 2.5rem;
    padding-inline: 1.5625rem;
  }
}
@media (max-width: 679.98px) {
  .section-seasons__row {
    flex-direction: column;
    padding-inline: 0;
  }
}
.section-seasons__item {
  width: calc(50% - 3.4375rem);
}
@media (max-width: 1199.98px) {
  .section-seasons__item {
    width: calc((100% - 4.375rem) / 2);
  }
}
@media (max-width: 991.98px) {
  .section-seasons__item {
    width: calc((100% - 2.5rem) / 2);
  }
}
@media (max-width: 679.98px) {
  .section-seasons__item {
    width: 100%;
  }
}
.section-seasons__item:not(:first-child):nth-child(odd) {
  margin-inline: auto;
}
.section-seasons__item:only-child {
  margin-inline: auto;
}

.card-season {
  display: flex;
  flex-direction: column;
}
.card-season--new .card-season__top-picture {
  position: relative;
}
.card-season--new .card-season__top-picture:before {
  content: "";
  position: absolute;
  width: 12.5rem;
  height: 8.5rem;
  right: 0;
  bottom: -1.25rem;
  background: url("/local/templates/atlasblago/assets/images/new_label.png");
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 1199.98px) {
  .card-season--new .card-season__top-picture:before {
    bottom: -2.25rem;
    right: -1.25rem;
  }
}
@media (max-width: 991.98px) {
  .card-season--new .card-season__top-picture:before {
    width: 8.5rem;
    height: 5.8125rem;
    bottom: -1.5625rem;
  }
}
@media (max-width: 679.98px) {
  .card-season--new .card-season__top-picture:before {
    width: 9.1875rem;
    height: 5.8125rem;
  }
}
.card-season--micro {
  position: relative;
}
.card-season--micro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 2.5rem;
  width: 19.5625rem;
  height: 30.9375rem;
  background: url("/local/templates/atlasblago/assets/images/micro.png");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}
@media (max-width: 1199.98px) {
  .card-season--micro::before {
    width: 18.3125rem;
    height: 29.4375rem;
  }
}
@media (max-width: 991.98px) {
  .card-season--micro::before {
    width: 13rem;
    height: 21.3125rem;
    left: 1.25rem;
  }
}
@media (max-width: 679.98px) {
  .card-season--micro::before {
    width: 13.375rem;
    height: 21.9375rem;
  }
}
.card-season__top-picture {
  margin-bottom: 1.25rem;
  width: 100%;
  aspect-ratio: 483/174;
  max-height: 12.25rem;
}
@media (max-width: 1199.98px) {
  .card-season__top-picture {
    margin-bottom: 2.5rem;
    max-height: 9.125rem;
  }
}
@media (max-width: 991.98px) {
  .card-season__top-picture {
    margin-bottom: 1.25rem;
    order: 1;
    max-height: 6.1875rem;
  }
}
@media (max-width: 679.98px) {
  .card-season__top-picture {
    margin-bottom: 1rem;
    max-height: 7.25rem;
  }
}
.card-season__top-picture img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.card-season__name {
  font-family: "Panama";
  font-size: 9.0625rem;
  text-transform: uppercase;
  letter-spacing: -0.1125rem;
  line-height: 1;
}
@media (max-width: 1199.98px) {
  .card-season__name {
    font-size: 6.25rem;
  }
}
@media (max-width: 991.98px) {
  .card-season__name {
    font-size: 5rem;
  }
}
.card-season__subtitle {
  font-family: "Panama";
  font-size: 1.8125rem;
  line-height: 1.1;
  letter-spacing: -0.1125rem;
  text-transform: uppercase;
  margin-bottom: 0.875rem;
}
@media (max-width: 1199.98px) {
  .card-season__subtitle {
    font-size: 2.625rem;
  }
}
@media (max-width: 991.98px) {
  .card-season__subtitle {
    font-size: 1.875rem;
    line-height: 1.05;
    margin-bottom: 0.75rem;
  }
}
@media (max-width: 679.98px) {
  .card-season__subtitle {
    font-size: 2rem;
  }
}
@media (max-width: 991.98px) {
  .card-season__first-row {
    order: 2;
  }
}
.card-season__second-row {
  display: flex;
  justify-content: space-between;
  gap: 6.875rem;
  align-items: center;
  border-top: 0.0625rem solid #000;
  border-bottom: 0.0625rem solid #000;
}
@media (max-width: 1199.98px) {
  .card-season__second-row {
    gap: 1.5625rem;
  }
}
@media (max-width: 991.98px) {
  .card-season__second-row {
    display: contents;
  }
}
.card-season__short-desc {
  font-size: 1.25rem;
  line-height: 1.2;
  padding-block: 1.25rem;
  letter-spacing: -0.03125rem;
}
@media (max-width: 1199.98px) {
  .card-season__short-desc {
    font-size: 1rem;
  }
}
@media (max-width: 991.98px) {
  .card-season__short-desc {
    padding-block: 0.875rem;
    font-size: 0.9375rem;
    order: 3;
    border-top: 0.0625rem solid #000;
  }
}
@media (max-width: 679.98px) {
  .card-season__short-desc {
    font-size: 1rem;
    padding-top: 0.4375rem;
  }
}
.card-season__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: #fff;
  background: #000;
  letter-spacing: -0.03125rem;
  border-radius: 1.5rem;
  padding: 0.4375rem 0.875rem;
  line-height: 1.55;
  border: 0.0625rem solid transparent;
  transition: all 0.4s ease;
}
@media (max-width: 991.98px) {
  .card-season__btn {
    width: 100%;
    order: 5;
  }
}
@media (hover: hover) {
  .card-season__btn:hover {
    background: #fff;
    border-color: #000;
    color: #000;
  }
}
@media (hover: none) {
  .card-season__btn:active {
    background: #fff;
    border-color: #000;
    color: #000;
  }
}
.card-season__third-row {
  display: flex;
  gap: 1.875rem;
  padding-top: 1.25rem;
  background-color: white;
}
@media (max-width: 991.98px) {
  .card-season__third-row {
    order: 4;
    padding-top: 0.875rem;
    margin-bottom: 1rem;
    border-top: 0.0625rem solid #000;
    gap: 0.4375rem;
  }
}
@media (max-width: 679.98px) {
  .card-season__third-row {
    padding-top: 1rem;
  }
}
.card-season__third-row > span {
  font-size: 0.9375rem;
  flex-shrink: 0;
  letter-spacing: -0.03125rem;
  line-height: 1.1;
}
@media (max-width: 1199.98px) {
  .card-season__third-row > span {
    font-size: 0.75rem;
  }
}
@media (max-width: 991.98px) {
  .card-season__third-row > span {
    font-size: 0.625rem;
  }
}
@media (max-width: 679.98px) {
  .card-season__third-row > span {
    font-size: 0.75rem;
  }
}
.card-season__third-row--1 img {
  max-width: 14.125rem;
  max-height: 3.1875rem;
}
@media (max-width: 991.98px) {
  .card-season__third-row--1 img {
    max-width: 9.9375rem;
    max-height: 2.3125rem;
  }
}
@media (max-width: 1199.98px) {
  .card-season__third-row--2 {
    flex-direction: column;
    align-items: center;
    row-gap: 0.9375rem;
  }
}
.card-season__third-row--2 .card-season__images {
  display: flex;
  gap: 1.25rem;
}
.card-season__third-row--2 img {
  max-width: 12.75rem;
  max-height: 3.1875rem;
}
@media (max-width: 1199.98px) {
  .card-season__third-row--2 img {
    max-width: calc((100% - 1.25rem) / 2);
  }
}
.card-season__third-row--more2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.card-season__third-row--more2 .card-season__images {
  display: flex;
  justify-content: center;
  gap: 0.625rem;
  width: 100%;
}

.slider-logos-partner {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.slider-logos-partner__item {
  width: auto !important;
}
.slider-logos-partner img {
  display: block;
  max-width: 14.125rem;
  max-height: 3.1875rem;
}
@media (max-width: 1199.98px) {
  .slider-logos-partner img {
    max-width: 12rem;
  }
}
@media (max-width: 991.98px) {
  .slider-logos-partner img {
    max-width: 9.9375rem;
    max-height: 2.3125rem;
  }
}

.section-routes__title {
  font-size: 7.5rem;
  font-family: "Panama";
  text-transform: uppercase;
  text-align: center;
  line-height: 0.8;
  letter-spacing: -0.1125rem;
  margin-bottom: 0.5rem;
}
@media (max-width: 1199.98px) {
  .section-routes__title {
    font-size: 5.625rem;
  }
}
@media (max-width: 991.98px) {
  .section-routes__title {
    font-size: 5rem;
  }
}
@media (max-width: 679.98px) {
  .section-routes__title {
    font-size: 3.75rem;
    letter-spacing: -0.0625rem;
  }
}
.section-routes__subtitle {
  text-align: center;
  font-size: 1.75rem;
  line-height: 1.1;
}
@media (max-width: 1199.98px) {
  .section-routes__subtitle {
    font-size: 1.375rem;
  }
}
@media (max-width: 991.98px) {
  .section-routes__subtitle {
    font-size: 1.625rem;
  }
}
@media (max-width: 679.98px) {
  .section-routes__subtitle {
    font-size: 1.25rem;
  }
}
.section-routes__body-header {
  margin-bottom: 3.75rem;
}
@media (max-width: 1199.98px) {
  .section-routes__body-header {
    margin-bottom: 2rem;
  }
}
@media (max-width: 679.98px) {
  .section-routes__body-header {
    margin-bottom: 1.25rem;
  }
}

.routes-list {
  padding-inline: 2.5rem;
}
@media (max-width: 1199.98px) {
  .routes-list {
    padding-inline: 0;
  }
}

.card-route {
  display: grid;
  grid-template-columns: 10.0625rem 19.5rem 1fr;
  gap: 2.5rem;
  padding-block: 1.25rem;
  border-top: 0.0625rem solid #000;
  min-height: 8.875rem;
  overflow: hidden;
}
@media (max-width: 1199.98px) {
  .card-route {
    grid-template-columns: 10.0625rem 15.75rem 1fr;
    gap: 1.875rem;
  }
}
@media (max-width: 991.98px) {
  .card-route {
    grid-template-columns: 8.75rem 11.25rem 1fr;
    gap: 1.25rem;
    min-height: 10.4375rem;
  }
}
@media (max-width: 679.98px) {
  .card-route {
    grid-template-columns: 5rem 1fr;
    row-gap: 0;
    column-gap: 0.9375rem;
  }
}
.card-route:last-child {
  border-bottom: 0.0625rem solid #000;
}
.card-route__name {
  font-size: 2rem;
  font-family: "Panama";
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.1125rem;
}
@media (max-width: 991.98px) {
  .card-route__name {
    font-size: 1.625rem;
  }
}
@media (max-width: 679.98px) {
  .card-route__name {
    font-size: 1rem;
    letter-spacing: -0.0625rem;
  }
}
.card-route__group1 {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
}
@media (max-width: 679.98px) {
  .card-route__group1 {
    display: contents;
  }
}
.card-route__title {
  font-size: 1.75rem;
  line-height: 1.1;
}
@media (max-width: 1199.98px) {
  .card-route__title {
    font-size: 1.375rem;
  }
}
@media (max-width: 991.98px) {
  .card-route__title {
    font-size: 1.125rem;
  }
}
@media (max-width: 679.98px) {
  .card-route__title {
    font-size: 1.25rem;
    letter-spacing: -0.0125rem;
    margin-bottom: 0.625rem;
  }
}
.card-route__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1.5rem;
  font-size: 0.75rem;
  border: 0.0625rem solid transparent;
  background-color: #000;
  transition: all 0.4s ease;
  color: #fff;
  letter-spacing: -0.03125rem;
  padding: 0.625rem 0.9375rem;
  line-height: 1.55;
}
@media (max-width: 1199.98px) {
  .card-route__btn {
    padding-block: 0.375rem;
    padding-inline: 0.875rem;
  }
}
@media (max-width: 679.98px) {
  .card-route__btn {
    order: 5;
    grid-column: 1/span 2;
    max-height: 2.0625rem;
  }
}
@media (hover: hover) {
  .card-route__btn:hover {
    background-color: #fff;
    color: #000;
    border-color: #000;
  }
}
@media (hover: none) {
  .card-route__btn:active {
    background-color: #fff;
    color: #000;
    border-color: #000;
  }
}
.card-route__desc {
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: -0.03125rem;
}
@media (max-width: 1199.98px) {
  .card-route__desc {
    font-size: 1rem;
    line-height: 1.3;
  }
}
@media (max-width: 991.98px) {
  .card-route__desc {
    font-size: 0.9375rem;
    line-height: 1.4;
  }
}
@media (max-width: 679.98px) {
  .card-route__desc {
    font-size: 1rem;
    margin-bottom: 0.625rem;
  }
}
.card-route__group2 {
  position: relative;
}
@media (max-width: 679.98px) {
  .card-route__group2 {
    grid-column: 1/span 2;
  }
}
.card-route__group2 img {
  position: absolute;
  width: 35.625rem;
  height: 10.25rem;
  object-fit: contain;
  top: -1.25rem;
  left: -2.8125rem;
  right: 0;
  bottom: -1.25rem;
  z-index: -1;
  object-position: left;
}
@media (max-width: 1199.98px) {
  .card-route__group2 img {
    height: 9rem;
    width: 28.125rem;
    left: -1.875rem;
  }
}
@media (max-width: 991.98px) {
  .card-route__group2 img {
    width: 18.75rem;
    left: -1.25rem;
  }
}
@media (max-width: 679.98px) {
  .card-route__group2 img {
    top: 0;
    left: 0;
    right: 0;
    bottom: unset;
    width: 19.5rem;
    height: 8.4375rem;
    object-position: top center;
  }
}

.season-page {
  padding-top: 6.25rem;
  padding-bottom: 3.75rem;
}
@media (max-width: 1199.98px) {
  .season-page {
    padding-top: 1.25rem;
  }
}
@media (max-width: 679.98px) {
  .season-page {
    padding-top: 0;
  }
}
.season-page__preview {
  display: grid;
  grid-template-columns: calc((100% - 5rem) / 2) calc((100% - 5rem) / 2);
  gap: 5rem;
  margin-bottom: 6.875rem;
}
@media (max-width: 1199.98px) {
  .season-page__preview {
    gap: 2.8125rem;
    grid-template-columns: calc((100% - 2.8125rem) / 2) calc((100% - 2.8125rem) / 2);
    margin-bottom: 3.125rem;
  }
}
@media (max-width: 991.98px) {
  .season-page__preview {
    margin-bottom: 2.125rem;
  }
}
@media (max-width: 679.98px) {
  .season-page__preview {
    grid-template-columns: 100%;
    gap: 0.625rem;
  }
}
.season-page__col-left--new {
  position: relative;
}
.season-page__col-left--new .season-page__top-picture {
  position: relative;
}
.season-page__col-left--new .season-page__top-picture:before {
  content: "";
  position: absolute;
  width: 12.5rem;
  height: 8.5rem;
  right: -1.25rem;
  bottom: -1.25rem;
  background: url("/local/templates/atlasblago/assets/images/new_label.png");
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 1199.98px) {
  .season-page__col-left--new .season-page__top-picture:before {
    width: 10.75rem;
    height: 7.3125rem;
    right: -1.875rem;
  }
}
@media (max-width: 991.98px) {
  .season-page__col-left--new .season-page__top-picture:before {
    width: 7rem;
    height: 4.75rem;
  }
}
@media (max-width: 679.98px) {
  .season-page__col-left--new .season-page__top-picture:before {
    width: 9.1875rem;
    height: 6.3125rem;
    right: 0;
  }
}
.season-page__col-left--micro {
  position: relative;
}
.season-page__col-left--micro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 3.75rem;
  width: 17.3125rem;
  height: 28.25rem;
  background: url("/local/templates/atlasblago/assets/images/micro.png");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}
@media (max-width: 1199.98px) {
  .season-page__col-left--micro::before {
    width: 15rem;
    height: 24.25rem;
  }
}
@media (max-width: 991.98px) {
  .season-page__col-left--micro::before {
    width: 11.25rem;
    height: 17.9375rem;
    left: 1.25rem;
  }
}
@media (max-width: 679.98px) {
  .season-page__col-left--micro::before {
    width: 11.6875rem;
    height: 18.75rem;
  }
}
.season-page__top-picture {
  width: 100%;
  aspect-ratio: 483/174;
  margin-bottom: 1.75rem;
  max-width: 30.1875rem;
}
@media (max-width: 1199.98px) {
  .season-page__top-picture {
    margin-bottom: 2.375rem;
  }
}
@media (max-width: 991.98px) {
  .season-page__top-picture {
    margin-bottom: 1.25rem;
  }
}
@media (max-width: 679.98px) {
  .season-page__top-picture {
    margin-bottom: 1.5rem;
  }
}
.season-page__top-picture img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.season-page__name {
  font-size: 9.375rem;
  font-family: "Panama";
  line-height: 0.8;
  text-transform: uppercase;
  letter-spacing: -0.1125rem;
  margin-bottom: 0.3125rem;
}
@media (max-width: 1199.98px) {
  .season-page__name {
    font-size: 6.25rem;
    margin-bottom: 0.625rem;
  }
}
@media (max-width: 991.98px) {
  .season-page__name {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 0rem;
  }
}
.season-page__subtitle {
  font-size: 2.8125rem;
  line-height: 1.15;
  letter-spacing: -0.1125rem;
  font-family: "Panama";
  text-transform: uppercase;
  padding-bottom: 1.125rem;
}
@media (max-width: 1199.98px) {
  .season-page__subtitle {
    font-size: 2.625rem;
    padding-bottom: 0.9375rem;
  }
}
@media (max-width: 991.98px) {
  .season-page__subtitle {
    font-size: 1.875rem;
    line-height: 1.1;
    padding-bottom: 0.875rem;
  }
}
.season-page__subtitle:has(+ .season-page__bottom) {
  border-bottom: 0.0625rem solid #000;
}
.season-page__desc-text {
  font-size: 1.25rem;
  line-height: 1.45;
  letter-spacing: -0.03125rem;
  padding-right: 1rem;
}
@media (max-width: 1199.98px) {
  .season-page__desc-text {
    padding-right: 0rem;
    font-size: 0.9375rem;
    letter-spacing: -0.0125rem;
  }
}
@media (max-width: 679.98px) {
  .season-page__desc-text {
    font-size: 1rem;
    letter-spacing: unset;
    line-height: 1.54;
  }
}
.season-page__desc-label {
  font-size: 0.75rem;
  line-height: 1.3;
  position: relative;
  display: inline-flex;
  border-radius: 1rem;
  padding: 0.75rem 0.75rem;
  margin-bottom: 1.875rem;
}
@media (max-width: 1199.98px) {
  .season-page__desc-label {
    padding-inline: 0.875rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 679.98px) {
  .season-page__desc-label {
    font-size: 0.875rem;
  }
}
.season-page__desc-label svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.season-page__bottom {
  display: flex;
  gap: 1.875rem;
  padding-top: 1.125rem;
  background-color: #fff;
}
@media (max-width: 1199.98px) {
  .season-page__bottom {
    gap: 1.25rem;
  }
}
@media (max-width: 991.98px) {
  .season-page__bottom {
    padding-top: 0.875rem;
    gap: 0.625rem;
  }
}
@media (max-width: 679.98px) {
  .season-page__bottom {
    padding-bottom: 0.25rem;
  }
}
.season-page__bottom--more2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}
@media (max-width: 991.98px) {
  .season-page__bottom--more2 {
    gap: 0.875rem;
  }
}
.season-page__bottom > span {
  font-size: 0.9375rem;
}
@media (max-width: 1199.98px) {
  .season-page__bottom > span {
    font-size: 0.875rem;
  }
}
@media (max-width: 991.98px) {
  .season-page__bottom > span {
    font-size: 0.625rem;
  }
}
@media (max-width: 679.98px) {
  .season-page__bottom > span {
    font-size: 0.75rem;
  }
}
.season-page__bottom-images {
  display: flex;
  gap: 1.25rem;
}
@media (max-width: 1199.98px) {
  .season-page__bottom-images {
    gap: 0.625rem;
  }
}
.season-page__bottom-images--2.season-page__bottom-images img {
  max-width: 13.125rem;
  max-height: 2.625rem;
}
@media (max-width: 1199.98px) {
  .season-page__bottom-images--2.season-page__bottom-images img {
    max-width: 9.375rem;
  }
}
@media (max-width: 991.98px) {
  .season-page__bottom-images--2.season-page__bottom-images img {
    max-width: 6.75rem;
    max-height: 2rem;
  }
}
.season-page__bottom-images img {
  max-width: 14.125rem;
  max-height: 3.25rem;
}
@media (max-width: 1199.98px) {
  .season-page__bottom-images img {
    max-width: 11.75rem;
    max-height: 2.6875rem;
  }
}
@media (max-width: 991.98px) {
  .season-page__bottom-images img {
    max-width: 8.5625rem;
    max-height: 2.6875rem;
  }
}
@media (max-width: 679.98px) {
  .season-page__bottom-images img {
    max-width: 10rem;
    max-height: 2.25rem;
  }
}
.season-page__bottom .slider-logos-partner {
  width: 100%;
  max-height: 100%;
  overflow: hidden;
  position: relative;
}
.season-page__bottom .slider-logos-partner__item {
  width: auto !important;
}
.season-page__bottom .slider-logos-partner img {
  max-width: 14.125rem;
  max-height: 3.25rem;
}
@media (max-width: 1199.98px) {
  .season-page__bottom .slider-logos-partner img {
    max-width: 11.25rem;
    max-height: 2.6875rem;
  }
}
@media (max-width: 1199.98px) {
  .season-page__bottom .slider-logos-partner img {
    max-width: 8.5625rem;
    max-height: 1.9375rem;
  }
}
@media (max-width: 679.98px) {
  .season-page__bottom .slider-logos-partner img {
    max-width: 9.9375rem;
    max-height: 2.25rem;
  }
}

.list-podcast {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4.375rem;
  padding-left: 1.5625rem;
  padding-right: 6.25rem;
  overflow: hidden;
}
@media (max-width: 1199.98px) {
  .list-podcast {
    padding-right: 0px;
    padding-left: 0px;
    gap: 3.125rem;
  }
}

.card-podcast {
  display: grid;
  grid-template-columns: 14.5rem 1fr;
  grid-template-rows: 1fr 4rem;
  column-gap: 1.875rem;
  padding-inline: 1.875rem;
  padding-top: 1.875rem;
  border: 0.0625rem solid #000;
  min-height: 37.5rem;
  row-gap: 1.5625rem;
}
@media (max-width: 1199.98px) {
  .card-podcast {
    grid-template-columns: 11rem 1fr;
    min-height: 39.4375rem;
  }
}
@media (max-width: 991.98px) {
  .card-podcast {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 679.98px) {
  .card-podcast {
    display: grid;
    grid-template-columns: 1fr 4.0625rem;
    padding-inline: 0.9375rem;
    padding-top: 0.9375rem;
    gap: 0;
    grid-auto-rows: auto;
    grid-template-rows: auto;
    align-items: start;
    column-gap: 1.125rem;
  }
}
.card-podcast__col-left {
  display: flex;
  flex-direction: column;
}
@media (max-width: 991.98px) {
  .card-podcast__col-left {
    display: grid;
    grid-template-columns: 12.625rem 1fr;
    column-gap: 1.25rem;
  }
}
@media (max-width: 679.98px) {
  .card-podcast__col-left {
    display: contents;
  }
}
.card-podcast__col-right {
  display: flex;
  flex-direction: column;
}
@media (max-width: 679.98px) {
  .card-podcast__col-right {
    display: contents;
  }
}
.card-podcast__top-picture {
  width: 13.75rem;
  height: 13.75rem;
  border: 0.0625rem solid #000;
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 0.875rem;
}
@media (max-width: 1199.98px) {
  .card-podcast__top-picture {
    width: 11rem;
    height: 11rem;
  }
}
@media (max-width: 991.98px) {
  .card-podcast__top-picture {
    margin-bottom: 0;
    grid-row: 1/span 2;
    width: 12.5rem;
    height: 12.5rem;
  }
}
@media (max-width: 679.98px) {
  .card-podcast__top-picture {
    grid-column: 1/span 2;
    grid-row: 1/span 1;
    width: 18rem;
    height: 18rem;
    margin-bottom: 1.25rem;
    order: 1;
  }
}
.card-podcast__top-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-podcast__additional-text {
  font-size: 0.75rem;
  line-height: 1.3;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03125rem;
}
.card-podcast__additional-text p {
  margin-bottom: 0.8rem;
}
.card-podcast__additional-text p:only-child {
  margin-bottom: 0;
}
.card-podcast__additional-text p:not(:only-child):nth-last-of-type(1) {
  margin-bottom: 0;
}
@media (max-width: 679.98px) {
  .card-podcast__additional-text {
    order: 3;
    letter-spacing: 0;
    font-size: 0.6875rem;
  }
}
.card-podcast__time {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  position: relative;
  width: max-content;
  padding-inline: 0.75rem;
  min-height: 2.125rem;
  border-radius: 1.5625rem;
  overflow: hidden;
  font-size: 0.75rem;
  line-height: 1.35;
}
@media (max-width: 679.98px) {
  .card-podcast__time {
    order: 4;
    margin-top: unset;
  }
}
.card-podcast__time > svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.card-podcast__name {
  font-family: "Panama";
  font-size: 2.875rem;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.1125rem;
  margin-bottom: 1.125rem;
}
@media (max-width: 1199.98px) {
  .card-podcast__name {
    font-size: 2.625rem;
    margin-bottom: 0.75rem;
  }
}
@media (max-width: 991.98px) {
  .card-podcast__name {
    margin-bottom: 0.5rem;
  }
}
@media (max-width: 679.98px) {
  .card-podcast__name {
    font-size: 2rem;
    order: 2;
    grid-column: 1/span 2;
    margin-bottom: 0.75rem;
  }
}
.card-podcast__desc {
  letter-spacing: -0.03125rem;
  margin-bottom: 1.625rem;
  line-height: 1.39;
}
@media (max-width: 1199.98px) {
  .card-podcast__desc {
    font-size: 0.9375rem;
    padding-right: 0.25rem;
  }
}
@media (max-width: 679.98px) {
  .card-podcast__desc {
    font-size: 1rem;
    padding-right: 0;
    letter-spacing: -0.0125rem;
    grid-column: 1/span 2;
    order: 5;
    margin-bottom: 1.25rem;
  }
}
.card-podcast__desc-main:has(+ .card-podcast__desc-secondary) {
  padding-bottom: 0.75rem;
  border-bottom: 0.0625rem solid #000;
}
.card-podcast__desc-main:has(+ .card-podcast__desc-secondary) + .card-podcast__desc-secondary {
  padding-top: 0.75rem;
}
.card-podcast__audio {
  margin-bottom: 1.375rem;
}
@media (max-width: 1199.98px) {
  .card-podcast__audio {
    margin-bottom: 2.5rem;
  }
}
@media (max-width: 679.98px) {
  .card-podcast__audio {
    margin-bottom: 0.75rem;
  }
}
.card-podcast__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  font-size: 0.75rem;
}
.card-podcast__links > a {
  border: 0.0625rem solid #000;
  padding: 0.4375rem 0.6875rem;
  border-radius: 1.5625rem;
  transition: all 0.4s ease;
}
@media (hover: hover) {
  .card-podcast__links > a:hover {
    background-color: #000;
    color: #fff;
  }
}
@media (hover: none) {
  .card-podcast__links > a:active {
    background-color: #000;
    color: #fff;
  }
}
.card-podcast__texture {
  grid-column: 1/span 2;
  height: 4rem;
  display: flex;
  margin-inline: -1.875rem;
  border-top: 0.0625rem solid #000;
  position: relative;
  overflow: hidden;
}
@media (max-width: 679.98px) {
  .card-podcast__texture {
    flex-direction: column;
    margin-inline: -0.9375rem;
    height: auto;
    grid-column: 1/span 2;
    order: 10;
  }
}
.card-podcast__texture > img {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  mix-blend-mode: multiply;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 679.98px) {
  .card-podcast__texture > img {
    height: 4.375rem;
  }
}
.card-podcast__texture-wave {
  height: 100%;
  flex-grow: 1;
  border-right: 0.0625rem solid #000;
}
@media (max-width: 991.98px) {
  .card-podcast__texture-wave {
    overflow: hidden;
    flex-grow: 1;
    position: relative;
  }
}
@media (max-width: 679.98px) {
  .card-podcast__texture-wave {
    width: 100%;
    height: 4.375rem;
    border-right: unset;
    border-bottom: 0.0625rem solid #000;
  }
}
.card-podcast__texture-wave svg {
  width: 100%;
  height: 100%;
}
@media (max-width: 991.98px) {
  .card-podcast__texture-wave svg {
    position: absolute;
    inset: 0;
    width: 55rem;
  }
}
@media (max-width: 679.98px) {
  .card-podcast__texture-wave svg {
    width: 63.125rem;
  }
}
.card-podcast__texture-heart {
  width: 13.125rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991.98px) {
  .card-podcast__texture-heart {
    width: 11.25rem;
  }
}
@media (max-width: 679.98px) {
  .card-podcast__texture-heart {
    width: 100%;
    height: 4.375rem;
    background-color: #fff;
  }
}
.card-podcast__texture-heart svg {
  width: 2.375rem;
  height: 2rem;
}
@media (max-width: 679.98px) {
  .card-podcast__texture-heart svg {
    width: 2.625rem;
    height: 2.3125rem;
  }
}
.card-podcast__group {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media (max-width: 679.98px) {
  .card-podcast__group {
    grid-column: 1/span 2;
    order: 6;
    margin-bottom: 1.625rem;
  }
}

.excursion-page {
  padding-top: 1.875rem;
  padding-inline: 2.5rem;
  padding-bottom: 3.75rem;
}
.excursion-page:not(:has(.excursion-partner--top)) .excursion-page__preview {
  margin-bottom: 3.75rem;
}
@media (max-width: 991.98px) {
  .excursion-page:not(:has(.excursion-partner--top)) .excursion-page__preview {
    margin-bottom: 1.875rem;
  }
}
@media (max-width: 1199.98px) {
  .excursion-page {
    padding-inline: 0rem;
    padding-top: 0.625rem;
    padding-bottom: 2.5rem;
  }
}
@media (max-width: 991.98px) {
  .excursion-page {
    padding-inline: 2.5rem;
  }
}
@media (max-width: 679.98px) {
  .excursion-page {
    padding-inline: 0;
    padding-bottom: 1.25rem;
  }
}
.excursion-page__banner {
  margin-bottom: 3.4375rem;
}
@media (max-width: 1199.98px) {
  .excursion-page__banner {
    margin-bottom: 1.875rem;
  }
}
.excursion-page__preview {
  display: grid;
  grid-template-columns: 31.6875rem 1fr;
  gap: 1.875rem;
}
@media (max-width: 1199.98px) {
  .excursion-page__preview {
    grid-template-columns: 27.5rem 1fr;
    gap: 1.875rem;
  }
}
@media (max-width: 991.98px) {
  .excursion-page__preview {
    grid-template-columns: 100%;
    padding-right: 6.875rem;
    gap: 1.5625rem;
  }
}
@media (max-width: 679.98px) {
  .excursion-page__preview {
    padding-right: 0;
  }
}
@media (max-width: 679.98px) {
  .excursion-page__preview:has(.excursion-page__preview-images) {
    gap: 0.875rem;
  }
}
.excursion-page__preview-text {
  font-size: 2.8125rem;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.1125rem;
  font-family: "Panama";
}
@media (max-width: 1199.98px) {
  .excursion-page__preview-text {
    font-size: 2.5625rem;
  }
}
@media (max-width: 679.98px) {
  .excursion-page__preview-text {
    font-size: 1.875rem;
  }
}
.excursion-page__preview-text:has(+ .excursion-page__preview-images) {
  padding-bottom: 1rem;
  border-bottom: 0.0625rem solid #000;
}
@media (max-width: 1199.98px) {
  .excursion-page__preview-text:has(+ .excursion-page__preview-images) {
    padding-bottom: 0.875rem;
  }
}
@media (max-width: 679.98px) {
  .excursion-page__preview-text:has(+ .excursion-page__preview-images) {
    padding-bottom: 0.625rem;
  }
}
.excursion-page__preview-full {
  font-size: 1.25rem;
  letter-spacing: -0.03125rem;
  line-height: 1.4;
}
@media (max-width: 1199.98px) {
  .excursion-page__preview-full {
    font-size: 0.875rem;
    line-height: 1.5;
  }
}
@media (max-width: 679.98px) {
  .excursion-page__preview-full {
    font-size: 1rem;
    line-height: 1.35;
    letter-spacing: unset;
  }
}
.excursion-page__preview-images {
  padding-top: 1rem;
}
@media (max-width: 1199.98px) {
  .excursion-page__preview-images {
    padding-top: 0.875rem;
  }
}
@media (max-width: 679.98px) {
  .excursion-page__preview-images {
    padding-bottom: 0.625rem;
  }
}
@media (max-width: 679.98px) {
  .excursion-page__preview-images {
    padding-bottom: 0;
  }
}
.excursion-page__partners-logo {
  display: flex;
  gap: 1.875rem;
}
@media (max-width: 1199.98px) {
  .excursion-page__partners-logo--1.excursion-page__partners-logo {
    gap: 3.125rem;
  }
}
@media (max-width: 991.98px) {
  .excursion-page__partners-logo--1.excursion-page__partners-logo {
    gap: 2.5rem;
  }
}
@media (max-width: 679.98px) {
  .excursion-page__partners-logo--1.excursion-page__partners-logo {
    gap: 0.625rem;
  }
}
.excursion-page__partners-logo--2.excursion-page__partners-logo {
  display: flex;
  flex-direction: column;
  row-gap: 1.25rem;
}
@media (max-width: 1199.98px) {
  .excursion-page__partners-logo--2.excursion-page__partners-logo {
    row-gap: 0.875rem;
  }
}
@media (max-width: 1199.98px) {
  .excursion-page__partners-logo--2.excursion-page__partners-logo img {
    max-width: 12.6875rem;
  }
}
@media (max-width: 679.98px) {
  .excursion-page__partners-logo--2.excursion-page__partners-logo img {
    max-width: 9rem;
  }
}
.excursion-page__partners-logo > span {
  font-size: 0.9375rem;
  text-align: center;
}
@media (max-width: 1199.98px) {
  .excursion-page__partners-logo > span {
    font-size: 0.75rem;
  }
}
@media (max-width: 679.98px) {
  .excursion-page__partners-logo > span {
    font-size: 0.875rem;
    letter-spacing: -0.03125rem;
  }
}
.excursion-page__partners-logo img {
  max-width: 14.125rem;
  max-height: 3.25rem;
}
@media (max-width: 1199.98px) {
  .excursion-page__partners-logo img {
    max-width: 12.875rem;
    max-height: 3rem;
  }
}
@media (max-width: 679.98px) {
  .excursion-page__partners-logo img {
    max-width: 10.375rem;
    max-height: 2.375rem;
  }
}
.excursion-page__partners-group {
  display: flex;
  column-gap: 1.875rem;
}
.excursion-page__slider-wrapper > span:first-child {
  width: 100%;
  display: inline-flex;
  font-size: 0.9375rem;
  margin-bottom: 1.25rem;
  justify-content: center;
}
@media (max-width: 1199.98px) {
  .excursion-page__slider-wrapper > span:first-child {
    font-size: 0.75rem;
    margin-bottom: 0.875rem;
  }
}
.excursion-page__top-partner {
  margin-top: 4.375rem;
  margin-bottom: 3.75rem;
}
@media (max-width: 1199.98px) {
  .excursion-page__top-partner {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }
}
.excursion-page__map {
  aspect-ratio: 1120/695;
  display: flex;
  margin-bottom: 1.875rem;
}
@media (max-width: 991.98px) {
  .excursion-page__map {
    margin-bottom: 1.25rem;
  }
}
.excursion-page__map img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.excursion-page__audio {
  margin-bottom: 3.75rem;
}
.excursion-page__epilog {
  display: grid;
  grid-template-columns: 31.8125rem 1fr;
  gap: 2.5rem;
  margin-bottom: 4.0625rem;
}
@media (max-width: 1199.98px) {
  .excursion-page__epilog {
    grid-template-columns: 27.5625rem 1fr;
    margin-bottom: 2.5rem;
  }
}
@media (max-width: 991.98px) {
  .excursion-page__epilog {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 1.875rem;
  }
}
@media (max-width: 679.98px) {
  .excursion-page__epilog {
    gap: 1.875rem;
    margin-bottom: 2.5rem;
  }
}
.excursion-page__epilog-title {
  font-size: 2.8125rem;
  line-height: 1;
  text-transform: uppercase;
  font-family: "Panama";
  letter-spacing: -0.1125rem;
}
@media (max-width: 1199.98px) {
  .excursion-page__epilog-title {
    font-size: 2.5625rem;
  }
}
@media (max-width: 679.98px) {
  .excursion-page__epilog-title {
    font-size: 1.875rem;
  }
}
.excursion-page__epilog-desc {
  font-size: 1.25rem;
  line-height: 1.45;
  letter-spacing: -0.03125rem;
}
@media (max-width: 1199.98px) {
  .excursion-page__epilog-desc {
    font-size: 0.9375rem;
  }
}
@media (max-width: 679.98px) {
  .excursion-page__epilog-desc {
    font-size: 1rem;
    line-height: 1.35;
    letter-spacing: unset;
  }
}

.banner-excursion {
  width: 100%;
  aspect-ratio: 1120/625;
  padding: 3.125rem;
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991.98px) {
  .banner-excursion {
    padding: 1.875rem;
    margin-inline: -0.0625rem;
  }
}
@media (max-width: 679.98px) {
  .banner-excursion {
    padding: 1.25rem;
  }
}
.banner-excursion__image {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.banner-excursion__inner {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 10;
  max-width: 41.875rem;
  text-align: center;
}
.banner-excursion__title {
  font-family: "Panama";
  text-transform: uppercase;
  font-size: 9.375rem;
  line-height: 0.8;
  margin-bottom: 1.25rem;
}
@media (max-width: 1199.98px) {
  .banner-excursion__title {
    font-size: 7.1875rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 991.98px) {
  .banner-excursion__title {
    font-size: 6.25rem;
  }
}
@media (max-width: 679.98px) {
  .banner-excursion__title {
    font-size: 3.125rem;
    margin-bottom: 0.5rem;
  }
}
.banner-excursion__sub-title {
  font-size: 1.75rem;
  line-height: 1.1;
}
@media (max-width: 1199.98px) {
  .banner-excursion__sub-title {
    font-size: 1.375rem;
  }
}
@media (max-width: 991.98px) {
  .banner-excursion__sub-title {
    font-size: 1.375rem;
  }
}
@media (max-width: 679.98px) {
  .banner-excursion__sub-title {
    font-size: 1rem;
  }
}

/*Партнер баннер */
.excursion-partner {
  max-width: 58rem;
  margin-inline: auto;
  border: 0.0625rem solid #000;
  padding: 3.875rem 4.0625rem;
  background-position: center !important;
}
@media (max-width: 1199.98px) {
  .excursion-partner {
    max-width: 48.75rem;
    padding: 1.25rem;
  }
}
@media (max-width: 991.98px) {
  .excursion-partner {
    padding: 1.875rem;
  }
}
@media (max-width: 679.98px) {
  .excursion-partner {
    padding: 1.5625rem;
  }
}
.excursion-partner--bottom:has(+ .excursion-podcasts) {
  margin-bottom: 5rem;
}
.excursion-partner.excursion-partner--top .excursion-partner__desc {
  width: 21.5625rem;
}
@media (max-width: 1199.98px) {
  .excursion-partner.excursion-partner--top .excursion-partner__desc {
    width: unset;
    width: 18.75rem;
  }
}
@media (max-width: 991.98px) {
  .excursion-partner.excursion-partner--top .excursion-partner__desc {
    width: 100%;
  }
}
.excursion-partner__inner {
  border: 0.0625rem solid #000;
  display: flex;
  padding: 2.5rem 5rem 2.5rem 3.125rem;
  gap: 1.25rem;
  justify-content: space-between;
  background-color: #fff;
}
@media (max-width: 991.98px) {
  .excursion-partner__inner {
    flex-direction: column;
    gap: 1.875rem;
    align-items: center;
    padding: 1.875rem;
  }
}
@media (max-width: 679.98px) {
  .excursion-partner__inner {
    padding: 2.5rem 1.25rem;
  }
}
.excursion-partner__desc {
  font-size: 1.25rem;
  line-height: 1.45;
  width: 22.375rem;
  flex-shrink: 0;
  letter-spacing: -0.03125rem;
}
@media (max-width: 1199.98px) {
  .excursion-partner__desc {
    letter-spacing: -0.0125rem;
    font-size: 0.875rem;
    line-height: 1.45;
  }
}
@media (max-width: 991.98px) {
  .excursion-partner__desc {
    font-size: 0.9375rem;
    text-align: center;
    letter-spacing: -0.03125rem;
  }
}
@media (max-width: 679.98px) {
  .excursion-partner__desc {
    font-size: 1rem;
    letter-spacing: unset;
    line-height: 1.35;
    width: 100%;
  }
}
.excursion-partner__group {
  display: flex;
  gap: 0.625rem;
}
@media (max-width: 1199.98px) {
  .excursion-partner__group {
    gap: 2.5rem;
  }
}
@media (max-width: 991.98px) {
  .excursion-partner__group {
    gap: 0.3125rem;
  }
}
.excursion-partner__logo {
  flex-shrink: 0;
}
.excursion-partner__logo img {
  max-width: 8rem;
  max-height: 6.3125rem;
}
@media (max-width: 679.98px) {
  .excursion-partner__logo img {
    max-width: 7.125rem;
    max-height: 5.625rem;
  }
}
.excursion-partner__btn {
  display: flex;
  color: #fff;
  width: 6.25rem;
  height: 6.25rem;
  border-radius: 50%;
  background-color: #000;
  border: 0.0625rem solid transparent;
  padding: 0.4375rem;
  box-sizing: border-box;
  font-size: 0.75rem;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  text-align: center;
  transition: all 0.4s ease;
}
@media (hover: hover) {
  .excursion-partner__btn:hover {
    background-color: #fff;
    border: 0.0625rem solid #000;
    color: #000;
  }
}
@media (hover: none) {
  .excursion-partner__btn:active {
    background-color: #fff;
    border: 0.0625rem solid #000;
    color: #000;
  }
}
@media (max-width: 679.98px) {
  .excursion-partner__btn {
    width: 5.625rem;
    height: 5.625rem;
    font-size: 0.6875rem;
    padding: 0.3125rem;
  }
}

/*итемы экскурсии*/
.excursion-items {
  display: grid;
  gap: 3.75rem;
  margin-bottom: 5rem;
}
@media (max-width: 1199.98px) {
  .excursion-items {
    gap: 4.375rem;
  }
}
@media (max-width: 991.98px) {
  .excursion-items {
    gap: 2.5rem;
    margin-bottom: 4.0625rem;
  }
}
@media (max-width: 679.98px) {
  .excursion-items {
    gap: 3.125rem;
  }
}

.excursion-card {
  position: relative;
  overflow: hidden;
}
@media (max-width: 991.98px) {
  .excursion-card:has(.excursion-card__label--end):not(:first-child) .excursion-card__first-col {
    margin-bottom: 0;
  }
}
.excursion-card:has(.excursion-card__label--end) .excursion-card__third-col {
  display: flex;
  align-items: flex-end;
}
@media (max-width: 679.98px) {
  .excursion-card:has(.excursion-card__label--end) .excursion-card__next-route {
    display: none;
  }
}
.excursion-card:first-child:has(.excursion-card__label--end) .excursion-card__label--end {
  display: none;
}
.excursion-card:first-child:has(.excursion-card__label--end) .excursion-card__third-col {
  align-items: flex-start;
}
.excursion-card:first-child:has(.excursion-card__label--end) .excursion-card__next-route {
  display: block;
}
.excursion-card__order-wrap {
  display: flex;
  gap: 0.625rem;
  margin-bottom: 1.25rem;
}
@media (max-width: 679.98px) {
  .excursion-card__order-wrap {
    margin-bottom: 0.875rem;
  }
}
.excursion-card__order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  box-sizing: border-box;
  font-size: 2.3125rem;
  background-color: #000;
  color: #fff;
  border-radius: 50%;
  padding: 0.3125rem;
  line-height: 1;
}
@media (max-width: 1199.98px) {
  .excursion-card__order {
    width: 2.375rem;
    height: 2.375rem;
    font-size: 1.6875rem;
  }
}
@media (max-width: 679.98px) {
  .excursion-card__order {
    font-size: 1.375rem;
    width: 2rem;
    height: 2rem;
  }
}
.excursion-card__label {
  display: inline-flex;
  position: relative;
  width: 17.125rem;
  height: 3.5rem;
  padding-top: 0.625rem;
  padding-right: 0.625rem;
  background-color: rgb(242, 216, 244);
  box-sizing: border-box;
  font-size: 2.3125rem;
  line-height: 1.2;
  overflow: hidden;
}
@media (max-width: 1199.98px) {
  .excursion-card__label {
    font-size: 1.6875rem;
    width: 11.875rem;
    height: 2.5rem;
  }
}
@media (max-width: 679.98px) {
  .excursion-card__label {
    font-size: 1.375rem;
    width: 10.1875rem;
    height: 2.1875rem;
    padding-top: 0;
    line-height: 1.7;
  }
}
.excursion-card__label svg {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
}
.excursion-card__name {
  font-family: "Panama";
  text-transform: uppercase;
  font-size: 3.8125rem;
  line-height: 1.05;
  letter-spacing: -0.1125rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 1199.98px) {
  .excursion-card__name {
    font-size: 3.1875rem;
    line-height: 1.1;
    margin-bottom: 1rem;
  }
}
@media (max-width: 991.98px) {
  .excursion-card__name {
    font-size: 2.5625rem;
    line-height: 1.05;
    order: 1;
  }
}
@media (max-width: 679.98px) {
  .excursion-card__name {
    font-size: 2.25rem;
    letter-spacing: -0.1125rem;
    margin-bottom: 1.25rem;
  }
}
.excursion-card__group {
  display: grid;
  grid-template-columns: 22rem 31.4375rem 1fr;
  gap: 1.25rem;
}
@media (max-width: 1199.98px) {
  .excursion-card__group {
    grid-template-columns: 20rem 19.875rem 1fr;
    gap: 1.5625rem;
  }
}
@media (max-width: 991.98px) {
  .excursion-card__group {
    grid-template-columns: 100%;
    gap: 0px;
  }
}
.excursion-card__desc {
  font-size: 1rem;
  line-height: 1.35;
  margin-bottom: 1.875rem;
  letter-spacing: -0.03125rem;
}
@media (max-width: 1199.98px) {
  .excursion-card__desc {
    font-size: 0.9375rem;
  }
}
@media (max-width: 991.98px) {
  .excursion-card__desc {
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
  }
}
@media (max-width: 679.98px) {
  .excursion-card__desc {
    font-size: 1rem;
    line-height: 1.3;
    letter-spacing: -0.0125rem;
  }
}
.excursion-card__slider-wrap {
  position: relative;
}
@media (max-width: 679.98px) {
  .excursion-card__slider-wrap .slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    margin-top: 0.625rem;
  }
}
@media (max-width: 679.98px) {
  .excursion-card__slider-wrap .arrow {
    position: unset;
    transform: unset;
    transform-origin: center;
    width: 2.125rem;
    height: 2.125rem;
    background-color: rgb(213, 213, 213);
  }
  .excursion-card__slider-wrap .arrow svg path {
    stroke: black !important;
    stroke-width: 0.0375rem !important;
  }
}
@media (max-width: 991.98px) {
  .excursion-card__slider-wrap {
    display: flex;
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 679.98px) {
  .excursion-card__slider-wrap {
    flex-direction: column;
  }
}
.excursion-card__address {
  font-size: 0.75rem;
  line-height: 1.3;
  margin-bottom: 1.25rem;
}
@media (max-width: 1199.98px) {
  .excursion-card__address {
    line-height: 1.5;
  }
}
@media (max-width: 679.98px) {
  .excursion-card__address {
    font-size: 0.6875rem;
    line-height: 1.2;
    letter-spacing: -0.0125rem;
  }
}
.excursion-card__next-route {
  width: 100%;
  overflow: hidden;
}
.excursion-card__next-route img {
  width: 100%;
  height: auto;
  max-height: 16.3125rem;
  object-fit: contain;
  object-position: left;
}
@media (max-width: 991.98px) {
  .excursion-card__next-route img {
    max-width: 22.5rem;
    max-height: 29.375rem;
  }
}
.excursion-card__layout {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.excursion-card__layout img {
  max-height: 16.9375rem;
  max-width: 46.5rem;
}
@media (max-width: 1199.98px) {
  .excursion-card__layout img {
    max-width: 45.5rem;
    max-height: 12.5rem;
  }
}
@media (max-width: 991.98px) {
  .excursion-card__layout img {
    max-width: 38.75rem;
    max-height: 10.625rem;
  }
}
@media (max-width: 679.98px) {
  .excursion-card__layout img {
    max-width: 12.5rem;
    max-height: 9.375rem;
  }
}
@media (max-width: 991.98px) {
  .excursion-card__first-col {
    order: 3;
    margin-bottom: 1.875rem;
  }
}
@media (max-width: 991.98px) {
  .excursion-card__second-col {
    display: flex;
    width: 100%;
    overflow: hidden;
    order: 2;
    margin-bottom: 1.125rem;
  }
}
@media (max-width: 679.98px) {
  .excursion-card__second-col {
    margin-bottom: 0.875rem;
  }
}
@media (max-width: 991.98px) {
  .excursion-card__third-col {
    order: 4;
  }
}
@media (max-width: 991.98px) {
  .excursion-card__group-next {
    display: grid;
    grid-template-columns: 9.0625rem 1fr;
    gap: 1.25rem;
  }
}
@media (max-width: 679.98px) {
  .excursion-card__group-next {
    grid-template-columns: 7.1875rem 1fr;
    gap: 0.625rem;
  }
}
.excursion-card .swiper-pagination-bullet {
  background-color: rgb(255, 236, 174) !important;
  opacity: 1 !important;
  margin-inline: 0.375rem !important;
}
@media (max-width: 679.98px) {
  .excursion-card .swiper-pagination-bullet {
    width: 0.35rem;
    height: 0.35rem;
  }
}
.excursion-card .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #b89a38 !important;
}
.excursion-card .swiper-slide {
  opacity: 0;
  transition: opacity 0.5s ease;
}
.excursion-card .swiper-slide.swiper-slide-active {
  opacity: 1;
}

.excursion-slider {
  width: 100%;
  max-width: 100%;
}
.excursion-slider__item {
  width: 100%;
  aspect-ratio: 503/338;
  border: 0.0625rem solid #000;
  position: relative;
}
.excursion-slider__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Подскасты */
.excursion-podcasts {
  display: grid;
  grid-template-columns: 21.875rem minmax(0, 1fr);
  gap: 1.25rem;
  border-top: 0.0625rem solid #000;
  padding-top: 1.75rem;
}
.excursion-podcasts__wrapper-slider {
  display: flex;
  width: 100%;
  position: relative;
}
@media (max-width: 679.98px) {
  .excursion-podcasts__wrapper-slider .card-excursion-podcast--new .card-excursion-podcast__top-picture:before {
    right: 0;
  }
}
@media (max-width: 679.98px) {
  .excursion-podcasts__wrapper-slider {
    display: block;
  }
}
.excursion-podcasts__wrapper-slider .arrow {
  width: 2.125rem;
  height: 2.125rem;
}
.excursion-podcasts__wrapper-slider .arrow-next {
  right: -1.25rem;
}
@media (max-width: 991.98px) {
  .excursion-podcasts__wrapper-slider .arrow-next {
    right: -2.5rem;
  }
}
@media (max-width: 679.98px) {
  .excursion-podcasts__wrapper-slider .arrow-next {
    position: static;
    transform: unset;
  }
}
.excursion-podcasts__wrapper-slider .arrow-prev {
  left: -1.25rem;
}
@media (max-width: 991.98px) {
  .excursion-podcasts__wrapper-slider .arrow-prev {
    left: -2.5rem;
  }
}
@media (max-width: 679.98px) {
  .excursion-podcasts__wrapper-slider .arrow-prev {
    position: static;
    transform: unset;
    transform-origin: center;
  }
}
@media (max-width: 679.98px) {
  .excursion-podcasts__wrapper-slider .excursion-podcasts-slider-nav {
    display: flex;
    gap: 0.625rem;
    justify-content: center;
    margin-top: 1.25rem;
  }
}
@media (max-width: 1199.98px) {
  .excursion-podcasts {
    grid-template-columns: 17.3125rem minmax(0, 1fr);
  }
}
@media (max-width: 991.98px) {
  .excursion-podcasts {
    grid-template-columns: 100%;
    gap: 2.5rem;
  }
}
@media (max-width: 679.98px) {
  .excursion-podcasts {
    padding-top: 0.75rem;
    gap: 1.25rem;
  }
}
.excursion-podcasts__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.75rem;
}
@media (max-width: 679.98px) {
  .excursion-podcasts__items {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}
.excursion-podcasts__text {
  font-size: 1.25rem;
  line-height: 1.55;
  letter-spacing: -0.03125rem;
  position: relative;
}
@media (max-width: 1199.98px) {
  .excursion-podcasts__text {
    font-size: 0.9375rem;
    letter-spacing: unset;
  }
}
@media (max-width: 991.98px) {
  .excursion-podcasts__text {
    font-size: 0.9375rem;
  }
}
@media (max-width: 679.98px) {
  .excursion-podcasts__text {
    font-size: 1rem;
    line-height: 1.55;
  }
}
.excursion-podcasts__text::before {
  content: "";
  background: url("/local/templates/atlasblago/assets/images/micro.png");
  position: absolute;
  top: -1.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: 11.125rem;
  height: 18rem;
  z-index: -1;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 1199.98px) {
  .excursion-podcasts__text::before {
    width: 8.625rem;
    height: 14rem;
  }
}
@media (max-width: 991.98px) {
  .excursion-podcasts__text::before {
    width: 4.875rem;
    height: 7.9375rem;
  }
}
@media (max-width: 679.98px) {
  .excursion-podcasts__text::before {
    top: -0.75rem;
    width: 7.125rem;
    height: 11.25rem;
  }
}

.card-excursion-podcast {
  flex-shrink: 0;
}
@media (max-width: 679.98px) {
  .card-excursion-podcast {
    display: grid;
    grid-template-columns: 1fr 8.125rem;
    column-gap: 0.625rem;
    align-items: center;
  }
}
.card-excursion-podcast--new .card-excursion-podcast__top-picture:before {
  content: "";
  position: absolute;
  width: 5.25rem;
  height: 3.625rem;
  right: 0;
  bottom: -0.625rem;
  background: url("/local/templates/atlasblago/assets/images/new_label.png");
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 1199.98px) {
  .card-excursion-podcast--new .card-excursion-podcast__top-picture:before {
    width: 4.1875rem;
    height: 2.875rem;
  }
}
@media (max-width: 679.98px) {
  .card-excursion-podcast--new .card-excursion-podcast__top-picture:before {
    width: 10.3125rem;
    height: 7.0625rem;
    right: -1.25rem;
    bottom: -1.25rem;
  }
}
.card-excursion-podcast__top-picture {
  margin-bottom: 1.25rem;
  position: relative;
  aspect-ratio: 186/81;
}
@media (max-width: 679.98px) {
  .card-excursion-podcast__top-picture {
    grid-column: 1/span 2;
    margin-bottom: 0.625rem;
  }
}
.card-excursion-podcast__top-picture img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.card-excursion-podcast__name {
  font-size: 4.25rem;
  font-family: "Panama";
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.25rem;
  margin-bottom: 0.25rem;
  text-align: center;
}
@media (max-width: 1199.98px) {
  .card-excursion-podcast__name {
    font-size: 3.125rem;
    line-height: 1.05;
    margin-bottom: 0.625rem;
  }
}
@media (max-width: 679.98px) {
  .card-excursion-podcast__name {
    font-size: 3rem;
    margin-bottom: 0;
  }
}
.card-excursion-podcast__btn {
  text-transform: lowercase;
  display: inline-block;
  padding: 0.625rem;
  text-align: center;
  background-color: #000;
  border: 0.0625rem solid transparent;
  color: #fff;
  font-size: 0.75rem;
  border-radius: 1.5rem;
  width: 100%;
  line-height: 1.1;
  transition: all 0.4s ease;
}
@media (max-width: 1199.98px) {
  .card-excursion-podcast__btn {
    font-size: 0.875rem;
    padding-block: 0.5rem;
  }
}
@media (max-width: 679.98px) {
  .card-excursion-podcast__btn {
    font-size: 0.6875rem;
    padding-block: 0.625rem;
  }
}
@media (hover: hover) {
  .card-excursion-podcast__btn:hover {
    background-color: #fff;
    color: #000;
    border-color: #000;
  }
}
@media (hover: none) {
  .card-excursion-podcast__btn:active {
    background-color: #fff;
    color: #000;
    border-color: #000;
  }
}
.card-excursion-podcast__btn:first-letter {
  text-transform: uppercase;
}

.arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.875rem;
  height: 1.875rem;
  overflow: hidden;
  background-color: rgb(255, 236, 174);
  outline: none;
  border-radius: 50%;
  border: unset;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  transition: opacity 0.4s ease;
}
@media (hover: hover) {
  .arrow:hover {
    opacity: 0.8;
  }
}
@media (hover: none) {
  .arrow:active {
    opacity: 0.8;
  }
}
.arrow svg {
  height: 100%;
  width: 100%;
  scale: 1.5;
}

.arrow-prev {
  left: 1.25rem;
  rotate: 180deg;
  transform-origin: top;
}

.arrow-next {
  right: 1.25rem;
}

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