:root {
    --swiper-navigation-size: 20px;
}

.swiper {
    width: 100%;
    height: 730px;
}

.swiper {
    width: 100%;
    height: 100vh;
}

.swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.swiper-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-col p,
.swiper-col h2 {
    color: white !important;
}

.swiper-col {
    display: flex;
    flex-direction: column;
    justify-content: end;
    border-left: 1px solid var(--grey);
}

.swiper-col div {
    background-color: transparent;
    transition: 0.2s ease-in-out;
}

.swiper-col div:hover {
    background-color: white;
}

.swiper-col div:hover p {
    color: black !important;
}

.swiper-col div:hover h2 {
    color: var(--primary) !important;
}

.swiper-col.active>div {
    background-color: white;
}

.swiper-col.active>div>p {
    color: black !important;
}

.swiper-col.active>div>h2 {
    color: var(--primary) !important;
}

.service-box {
    transition: .3s ease-in-out;
}

.service-box:hover>.service h2 {
    color: white !important;
}

.service-box:hover>.service p {
    color: white !important;
}

.link-color {
    color: var(--text-color);
    transition: color 0.3s;
}

.dark-theme .link-color {
    color: rgba(255, 255, 255, 0.5);
}

.light-theme .link-color {
    color: rgba(0, 0, 0, 0.5);
}