/* Hero section */
.hero__single-slide {
    position: relative;
}

.hero__single-slide__image {
    height: 100vh;
    width: 100%;
    z-index: 1;
    object-fit: cover;
}

.slider .overlay,
.about-us .overlay,
.hero__single-slide .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    backdrop-filter: blur(1px);
    background: #FAFCFE99;
}

.hero__slider-arrows {
    display: none;
}

.hero__slider-arrows__holder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.hero__single-slide .container {
    z-index: 3;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.hero__single-slide__content {
    max-width: 734px;
    margin: 0 auto;
}

.hero__single-slide__content h1,
.hero__single-slide__content h2 {
    font-family: 'Open Sans';
    font-weight: 400;
    font-size: 30px;
    line-height: 1.1;
    text-align: center;
    color: #151515;
    margin-bottom: 16px;
}

.hero__single-slide__content p {
    font-family: 'Open Sans';
    font-weight: 400;
    font-size: 16px;
    line-height: 1.24;
    text-align: center;
    color: #151515;

}

.hero__single-slide__button {
    margin-top: 40px;
    display: flex;
    flex-flow: row;
    justify-content: center;
    align-items: center;
}

.hero .slick-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.hero .slick-dots li.slick-active span {
    background: #ED7625;
    width: 10px;
    height: 10px;
}

.hero .slick-dots li {
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: center;
}

.hero .slick-dots li span {
    background: rgba(237, 118, 37, 0.5);
    width: 7px;
    height: 7px;
    border-radius: 50%;
    display: inline-block;
    z-index: 3;
    cursor: pointer;
}

@media only screen and (min-width: 991px) {
    .hero__single-slide__image {
        height: 560px;
    }

    .hero__single-slide__content h1,
    .hero__single-slide__content h2 {
        font-size: 48px;
        line-height: 1.15;
        margin-bottom: 8px;
    }

    .hero__single-slide__content p {
        font-size: 20px;
    }

    .hero__slider-arrows {
        display: flex;
        flex-flow: row;
        align-items: center;
        justify-content: space-between;
    }

    .hero .slick-dots {
        bottom: 32px;
    }
}

/* Solutions section */

.solutions {
    position: relative;
    margin-bottom: 164px;
    overflow: hidden;
}

.solutions__holder {
    position: relative;
    padding-top: 154px;
}

.solutions__background-dots {
    position: absolute;
    left: 50%;
    top: 0;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%) scale(1.5);
    z-index: -1;
}

.solutions__image {
    max-width: 240px;
    height: auto;
    width: 100%;
    margin: 0 auto 90px;
}

.solutions__image-holder {
    position: relative;
}

.solutions__image-holder::after {
    content: '';
    width: 4px;
    background: #ED7625;
    box-shadow: 0px 0px 20px 0px #F57E1E80;
    display: block;
    height: 200px;
    position: absolute;
    bottom: -190px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: -1;
}

.solutions__single-solution {
    border: 1px solid #B1B1B1;
    background: #fff;
    padding: 24px 16px 16px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 24px;
}

.solutions__single-solution h3 {
    font-family: 'Open Sans';
    font-weight: 600;
    font-size: 20px;
    line-height: 1.2;
    color: #151515;
}

.solutions__single-solution:last-of-type {
    margin-bottom: 0;
}

.solutions__single-solution__image {
    width: 100%;
    height: 224px;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.solution-line {
    display: none;
    position: absolute;
    z-index: -1;
}

@media only screen and (min-width: 991px) {
    .solutions__list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .solutions__image-holder::after {
        content: none;
    }

    .solution-line-2,
    .solution-line-3 {
        display: block;
        top: 340px;
    }

    .solution-line-2 {
        left: 30%;
    }

    .solution-line-3 {
        left: 50%;
    }

    .solutions__single-solution__image {
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        border-radius: 10px;
    }

    .solutions__single-solution {
        border-radius: 20px;
    }
}

@media only screen and (min-width: 1399px) {
    .solutions__list {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }

    .solutions__background-dots {
        transform: translateX(-50%);
    }

    .solutions__image {
        max-width: 382px;
    }

    .solution-line-1,
    .solution-line-4 {
        display: block;
        top: 452px;
    }

    .solution-line-2, .solution-line-3 {
        top: 504px;
    }

    .solution-line-1 {
        left: 10%;
    }

    .solution-line-2 {
        left: 35%;
    }

    .solution-line-3 {
        left: 45%;
    }

    .solution-line-4 {
        left: 60%;
    }
}
