/* service slider clip css */
.angled-section {
    display: grid;
    grid-template-columns: 3.5fr 3fr;
    width: 100%;
    min-height: 550px;
    position: relative;
    overflow: hidden;
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
    background-color: #01304c;
}

/* LEFT IMAGE */
.angled-left {
    flex: 1;
    background-size: cover;
    background-position: center;
    clip-path: polygon(0% 0%, 100% 0%, 85% 100%, 0 100%);
}
img.image-content {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* RIGHT PANEL */
.angled-right {
    flex: 1;
    background: #01304c;
    color: #fff;
    position: relative;
    display: grid;
    align-items: flex-start;
    padding: 80px 40px 20px;
    /* clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%); */
}

/* CONTENT */
.angled-content {
    max-width: 600px;
}

.angled-content h2 {
    font-family: 'inter-semi-bold-italic';
    color: #ff5a2f;
    font-size: 34px;
    margin-bottom: 20px;
}

.angled-content p {
    font-size: 16px;
    font-family: "Inter", sans-serif;
    line-height: 1.5;
    opacity: 1;
    max-width: 31.25vw;
}

/* NAVIGATION ARROWS */
.controller-slider {
    display: flex;
    position: absolute;
    right: 30%;
    bottom: 20%;
    gap: 20px;
    z-index: 9;
    align-items: center;
}

.angled-prev,
.angled-next {
    /* position: absolute;
    top: 70%;
    transform: translateY(-50%); */
    width: 35px;
    height: 35px;
    background: #fff;
    color: #f15b29;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    font-size: 22px;
}
.angled-prev:hover,
.angled-next:hover {
    color: #fff;
    background: #f15b29;
}

/* .angled-prev { left: 45%; }
.angled-next { right: 40px; } */

/* PAGINATION DOTS */
.angled-pagination {
    /* position: absolute;
    bottom: 40px;
    left: 55%; */
    width: auto !important;
}

span.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    margin: 0 10px !important;
}

.swiper-pagination-bullet {
    background: #ccc;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #ff5a2f;
}
.angled-slider .swiper-wrapper{
    /* background-color: #0c3b4d; */
    /* clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%); */
}

/* Force swiper + slides to keep height */
.angled-slider,
.angled-slider .swiper-wrapper,
.angled-slider .swiper-slide {
    height: 100%;
}

/* Prevent height collapsing */
.angled-slider .swiper-slide {
    display: flex;
    /* background: #0c3b4d; */
}

/* Ensure section fills slide */
.angled-section {
    width: 100%;
    min-height: 550px;
}

/* Important fix */
.swiper {
    overflow: hidden;
}

/* RESPONSIVE */
@media(max-width: 1300px) {
    .angled-section {
        min-height: 700px;
    }
}

@media (max-width: 1000px){
    .angled-section, .angled-left{
        clip-path: unset;
    }
    .controller-slider{
        right: 10%;
        bottom: 15%;
    }
}

@media(max-width: 992px) {

    .angled-section {
        flex-direction: column;
    }

    .angled-right {
        clip-path: none;
        padding: 40px 30px;
    }

    .angled-left {
        height: 100%;
    }

    .angled-prev,
    .angled-next {
        top: auto;
        bottom: 20px;
    }
    .angled-section {
        grid-template-columns: 3fr 5fr;
    }
    .angled-content p{
        max-width: 100%;
    }
}

@media (max-width: 600px){
    .angled-section {
        grid-template-columns: 1fr;
        min-height: 800px;
    }
    .controller-slider{
        right: 50%;
        bottom: 10%;
        transform: translateX(50%);
        width: 100%;
        justify-content: center;
    }
    div#swiper-wrapper-073ee3ef2c488677 {
        height: auto;
    }
}

@media (max-width: 375px){
    .controller-slider {
        bottom: 8%;
        width: 100%;
        justify-content: center;
    }
    .controller-slider{
        gap: 5px;
    }
}