#sp-footer {
    display: none;
}
.swiper-slide {
    width: 100vw;
    height: calc(100vh - 60px);
}
.slide__inner {
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    margin: auto;
    background: #fff;
}
.slide__img {
    flex-basis: 50%;
    position: relative;
}
.slide__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top right;
}
.img__title {
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    text-align: center;
    border: none;
    color: var(--color);
    text-shadow: 1px 3px 3px #000000c4;
    padding: 2vh 2vw;
    margin: 0;
}
.slide__content {
    padding: 4vh 4vw;
    flex-basis: 50%;
    overflow: hidden auto;
}
.slide__text {
    margin-bottom: 3rem;
}
.slide__text_highlighted {
    color: var(--color-grey);
    font-weight: bold;
}
.slide__text span {
    color: var(--color);
    font-weight: bold;
}
.slide__menu-list {
    margin-top: 1rem;
}
.slide__menu-item {
    padding-left: 0 !important;
}
.slide__menu-item::before {
    display: none;
}
.slide__menu-item:not(:last-child) {
    margin-bottom: 1rem;
}
.swiper-pagination {
    bottom: 0 !important;
    padding: 5px;
    z-index: 9;
}
.swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    opacity: 1;
    background: transparent;
    border: 1px solid var(--color);
    margin: 0 9px;
    transition: all 400ms;
}
.swiper-pagination-bullet:hover {
    background: var(--color);
}
.swiper-pagination-bullet-active {
    background: var(--color);
    scale: 1.2;
}
.swiper-button-wrapper {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    max-width: 100%;
    height: 44px;
    pointer-events: none;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    z-index: 5;
}
.swiper-button {
    position: relative;
    z-index: 6;
    pointer-events: auto;
}
.swiper-button {
    transition: opacity 400ms;
    color: var(--color) !important;
    background-color: #fff;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    opacity: 0.8;
    box-shadow: 0 4px 10px rgba(0,0,0,.15);
}
.swiper-button:not(.swiper-button-disabled):hover {
    opacity: 1;
}
.swiper-button-next::after {
    content: "";
}
.swiper-button-prev::after {
    content: "";
}
.swiper-button-next::after, .swiper-button-prev::after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 36px;
}
.swiper-button-disabled {
    opacity: 0 !important;
}
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right {
    background: transparent;
}

@media (max-width: 320px) {
    .slide__content {
        font-size: 16px;
    }
    .img__title {
        font-size: 24px;
    }
}
@media (max-width: 1500px) and (min-width: 321px) {
    .slide__content {
        font-size: calc(16px + 8 * (100vw - 320px) / 1180);
    }
    .img__title {
        font-size: calc(24px + 22 * (100vw - 320px) / 1180);
    }
}
@media (min-width: 1501px) {
    .slide__content {
        font-size: 24px;
    }
    .img__title {
        font-size: 46px;
    }
}
@media (max-width: 1800px) {
    .swiper svg {
        opacity: 0.3;
    }
}
@media (max-width: 1100px) and (orientation: portrait) {
    .slide__inner {
      -ms-flex-direction: column;
      flex-direction: column;
    }
    .slide__img {
        height: 40%;
        flex-basis: 40%;
    }
    .slide__content {
        padding: 34px 20px;
        flex-basis: 60%;
    }
    .swiper-button-wrapper {
        top: calc(20% - 22px);
    }
}
.swiper svg {
    position: absolute;
}
.swiper #circle1 {
    top: -5vh;
    left: -10vw;
    width: 60vh;
    height: 60vh;
}
.swiper #circle2 {
    bottom: -5vh;
    right: 5vw;
    width: 50vh;
    height: 50vh;
}
.swiper #circle3 {
    bottom: 20vh;
    right: 0vw;
    width: 20vh;
    height: 20vh;
}
.swiper #circle4 {
    top: 70vh;
    left: 0vw;
    width: 30vh;
    height: 30vh;
}
a[href="#"] {
    color: #252525;
}
.slide__menu-item a {
    display: flex;
    align-items: center;
}
.slide__menu-item a::before {
    content: url('/images/marker.svg');
    width: 40px;
    height: 40px;
    margin-right: 1rem;
    display: inline-block;
}