#homepage-slider {
    position: relative;
}
.homepage-slider-image {
    position: relative;
    padding-top: 56%;
}
.homepage-slider-image img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.homepage-slider-over {
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-flow: column;
    justify-content: center;
    z-index: 1;
    overflow: hidden;
}
.homepage-slider-over::before,
.homepage-slider-over::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    pointer-events: none;
}
.homepage-slider-over::before {
    left: 0;
    width: 65%;
    background: linear-gradient(to right, rgba(255,255,255,1) 25%,rgba(255,255,255,0) 100%);
    z-index: -1;
}
.homepage-slider-over::after {
    right: 0;
    width: 150px;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
}
.homepage-slider-over h2 {
    position: relative;
    padding-bottom: 25px;
    font-weight: 300;
    font-size: 60px;
    max-width: 695px;
    margin-bottom: 25px;
    line-height: 1.25;
    color: #213267;
}
.homepage-slider-over h2:after {
    content: "";
    position: absolute;
    border-top: 4px solid var(--secondary);
    bottom: 0;
    left: -1000px;
    right: calc(100% - 50px);
}
.homepage-slider-over p {
    font-size: 22px;
    max-width: 345px;
    margin-bottom: 30px;
    line-height: 1.4;
}
.homepage-slider-over a {
    display: inline-block;
    background-color: var(--secondary);
    color: white;
    padding: 22px;
    letter-spacing: 0.5px;
    font-weight: 400;
}
.homepage-slider-over a:hover {
    background-color: #213267;
}
.homepage-slider-small-image {
    width: 340px;
    position: absolute;
    top: 265px;
    right: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    flex-flow: column;
    justify-content: center;
}
.owl-carousel.homepage-slider .owl-nav button {
    position: absolute;
    top: -50px;
    bottom: 0;
    margin: auto;
    color: white;
    width: 65px;
    height: 16px;
}
.owl-carousel.homepage-slider .owl-nav button::before {
    content: "";
    border-top: 2px solid;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 0;
    margin: auto;
}
.owl-carousel.homepage-slider .owl-nav button::after {
    content: "";
    position: absolute;
    border-top: 2px solid;
    border-right: 2px solid;
    width: 10px;
    height: 10px;
}
.owl-carousel.homepage-slider .owl-nav button span {
    display: none;
}
.owl-carousel.homepage-slider .owl-nav button.owl-prev {
    display: none;
}
.owl-carousel.homepage-slider .owl-nav button.owl-next {
    right: 195px;
}
.owl-carousel.homepage-slider .owl-nav button.owl-next::after {
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    right: 2px;
    top: 2px;
}
.owl-carousel.homepage-slider .owl-nav button:hover {
    color: var(--secondary);
}
.homepage-slider-numbers {
    position: absolute;
    top: -50px;
    right: 318px;
    bottom: 0;
    font-weight: 500;
    margin: auto;
    display: flex;
    color: white;
    z-index: 1;
    line-height: 1;
    height: 1em;
    font-size: 16px;
}
.homepage-slider-number {
    position: relative;
    line-height: 1;
    white-space: nowrap;
    display: inline-block;
}
.homepage-slider-number .item {
    display: flex;
    align-items: center;
    opacity: 0;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}
.homepage-slider-number .item:not(:first-child) {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
}
.homepage-slider-number .item.active {
    opacity: 1;
}
.homepage-slider-box {
    position: absolute;
    right: 150px;
    top: 61%;
    background-color: var(--secondary);
    color: white;
    padding: 0 28px;
    z-index: 1;
    min-width: 260px;
}
.homepage-slider-box-title {
    font-weight: 600;
    padding: 20px 0px;
    border-bottom: 2px solid rgba(255,255,255,0.2);
    font-size: 19.25px;
    letter-spacing: 0.5px;
}
.homepage-slider-box-item {
    position: relative;
    border-bottom: 2px solid rgba(255,255,255,0.2);
    padding: 13px 0;
    cursor: pointer;
    -webkit-transition: 0.3s ease;
    font-size: 19.25px;
    transition: 0.3s ease;
}
.homepage-slider-box-item:last-child {
    border-bottom: none;
}
.homepage-slider-box-item:after {
    content: "";
    position: absolute;
    border-bottom: 2px solid;
    bottom: -2px;
    left: 0;
    width: 0;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}
.homepage-slider-box-item.active:after {
    width: 50px;
}
.homepage-slider-logos {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
    padding: 15px;
    display: none;
}
.homepage-slider-logos:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: -100px;
    background: linear-gradient(to bottom,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
    z-index: -1;
}
@media only screen and (max-width: 1550px) {
    .homepage-slider-over {
        top: 0;
    }
    .homepage-slider-small-image {
        top: 205px;
    }
    .homepage-slider-box {
        top: 64%;
    }
}
@media only screen and (max-width: 1349px) {
    .homepage-slider-over h2 {
        font-size: 40px;
        max-width: 500px;
    }
    .homepage-slider-image {
        padding-top: 60%;
    }
    .homepage-slider-box {
        padding: 5px 28px;
    }
    .homepage-slider-box-title {
        font-size: 19px;
        padding: 15px 0px;
    }
    .homepage-slider-box-item {
        padding: 10px 0;
        font-size: 18px;
    }
}
@media only screen and (max-width: 1240px) {
    .homepage-slider-small-image {
        display: none;
    }
    .homepage-slider-box {
        display: none;
    }
    .owl-carousel.homepage-slider .owl-nav button.owl-next {
        right: 45px;
        top: 0;
    }
    .homepage-slider-numbers {
        top: 0;
        right: 120px;
    }
}
@media only screen and (max-width: 1024px) {
    .homepage-slider-over {
        position: relative;
    }
    .homepage-slider-over .sk-grid {
        padding-top: 70px;
        padding-bottom: 50px;
    }
    .homepage-slider-box,
    .homepage-slider-small-image {
        display: none;
    }
    .homepage-slider-over h2 {
        font-size: 34px;
    }
    .homepage-slider-over p {
        font-size: 20px;
    }
    .homepage-slider-numbers,
    .owl-carousel.homepage-slider .owl-nav button {
        bottom: calc(57vw - 20px);
    }
    .homepage-slider-numbers {
        top: auto;
        right: 0;
        left: var(--grid);
    }
    .homepage-slider-image::after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%);
        height: 50px;
        pointer-events: none;
    }
    .owl-carousel.homepage-slider .owl-nav button.owl-next {
        right: auto;
        left: calc(var(--grid) + 40px);
        top: auto;
    }
    body.header-absolute header::before {
        display: none;
    }
}
@media only screen and (max-width: 768px) {
    .homepage-slider-image {
        padding-top: 70%;
    }
    .homepage-slider-over p,
    .homepage-slider-over h2::after {
        display: none;
    }
    .homepage-slider-over a {
        padding: 13px;
    }
    .homepage-slider-over h2 {
        padding-bottom: 5px;
        margin-bottom: 15px;
    }
    .homepage-slider-over .sk-grid {
        padding-top: 60px;
        padding-bottom: 40px;
    }
    .homepage-slider-numbers,
    .owl-carousel.homepage-slider .owl-nav button {
        bottom: calc(65vw - 20px);
    }
    .homepage-slider-logos {
        display: block;
    }
    .homepage-slider-over::after {
        display: none;
    }
    .homepage-slider-logos::before {
        top: -50px;
    }
    .homepage-slider-logos .sk-grid {
        padding: 0;
    }
}
@media only screen and (max-width: 576px) {
    .homepage-slider-over h2 {
        font-size: 28px;
    }
    .homepage-slider-over .sk-grid {
        padding-top: 50px;
        padding-bottom: 30px;
    }
    .homepage-slider-numbers,
    .owl-carousel.homepage-slider .owl-nav button {
        left: 25px;
    }
    .homepage-slider-logos::before {
        top: -30px;
    }
}
@media only screen and (max-width: 414px) {
    .homepage-slider-image {
        padding-top: 80%;
    }
}