section.homepage .hero-wrapper {
    height: 70vh;
    overflow: hidden;
    object-position: center;
    position: relative;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    align-content: center;
}

section.homepage .hero-wrapper .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.25);
}

section.homepage .hero-wrapper img {
    object-fit: cover;
    object-position: center;
    max-width: 100%;
    width: 100%;
    height: 100%;
}

section.homepage .hero-wrapper .container {
    position: absolute;
    z-index: 9;
    left: 50%;
    transform: translateX(-50%);
}

section.homepage .hero-wrapper .hero_button {
    background: #f0eeee;
}

section.homepage .hero-wrapper .hero_button:hover {
    background: #333;
}

section.homepage .second-section {
    background: #fff;
    display: flex;
    flex-flow: row wrap;
    position: relative;
    padding: 20px;
}

section.homepage .second-section img {
    max-width: 45%;
    height: 100%;
    object-fit: cover;
    -webkit-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.75);
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.75);
}

section.homepage .second-section .container {
    position: absolute;
    z-index: 9;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

section.homepage .third-section .container {
    position: absolute;
    z-index: 9;
    left: 50%;
    transform: translateX(-50%);
    bottom: 60px;
}

section.homepage .third-section {
    position: relative;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-end;
    height: 70vh;
    background: #F2EDE7;
}

section.homepage .third-section img {
    max-width: 30%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
}

section.homepage .fourth-section {
    padding: 100px 0;
}

section.homepage .fourth-section .headline {
    text-align: center;
    margin-bottom: 80px;
}


section.homepage .fourth-section .testimonials {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
}

section.homepage .fourth-section .testimonials .slick-list {
    order: 1;
    margin-bottom: 40px;
}

section.homepage .fourth-section .testimonials .slick-arrow-next {
    order: 2;
}

section.homepage .fourth-section .testimonials .slick-dots {
    order: 3;
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
}

section.homepage .fourth-section .testimonials .slick-dots .slick-active button {
    width: 10px;
    height: 10px;
}

section.homepage .fourth-section .testimonials .slick-dots li {
    margin: 0 4px;
}

section.homepage .fourth-section .testimonials .slick-dots button {
    width: 8px;
    height: 8px;
    font-size: 1px;
    background: #333;
    border-radius: 50%;
    cursor: pointer;
}

section.homepage .fourth-section .testimonials .slick-arrow-prev {
    order: 4;
}

section.homepage .fourth-section .testimonials .single-testimonial {
    min-height: 210px;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    align-content: center;
    justify-content: center;
}

section.homepage .fourth-section .testimonials .single-testimonial .content {
    text-align: center;
    margin-bottom: 24px;
}

section.homepage .fourth-section .testimonials .single-testimonial .content p {
    font-size: 22px;
    font-style: italic;
    text-align: center;
}

section.homepage .fourth-section .testimonials .single-testimonial .title {
    text-align: center;
}

section.homepage .fourth-section .testimonials .single-testimonial .title span {
    font-size: 16px;
    color: #333;
    font-weight: 700;
}

section.homepage .fifth-section {
    position: relative;
}

section.homepage .fifth-section-box {
    background: #922525;
    position: absolute;
    top: 40px;
    bottom: 40px;
    right: 0;
    left: 0;
    z-index: 1;
}

section.homepage .fifth-section .container {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 9;
}

section.homepage .fifth-section-box h2,
section.homepage .fifth-section-box p {
    color: #fff;
}

section.homepage .fifth-section-box .button_style_2 {
    margin-top: 24px;
}

section.homepage .fifth-section img {
    width: 30%;
    height: 60vh;
    object-fit: cover;
    object-position: center;
    position: relative;
    z-index: 2;
}

@media only screen and (max-width: 991px) {
    section.homepage .hero-wrapper {
        height: 90vh;
    }

    section.homepage .second-section .second-section-content {
        width: 50%;
        margin-left: 50%;
    }

    section.homepage .third-section .third-section-content {
        width: 55%;
    }

    section.homepage .third-section img {
        max-width: 40%;
    }

    section.homepage .fifth-section-box .fifth-section-content {
        width: 50%;
        margin-left: 30%;
    }

    section.homepage .fourth-section .headline {
        margin-bottom: 30px;
    }

    section.homepage .fourth-section .testimonials .single-testimonial .content p {
        font-size: 18px;
    }
}

@media only screen and (max-width: 767px) {
    section.homepage .fourth-section .testimonials .single-testimonial .content p {
        font-size: 16px;
    }

    section.homepage .fourth-section .testimonials .single-testimonial {
        min-height: 170px;
    }

    section.homepage .fourth-section .testimonials .slick-list,
    section.homepage .fourth-section .headline {
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 576px) {
    section.homepage .second-section {
        padding: 0;
    }

    section.homepage .second-section img {
        max-width: 100%;
        order: 2;
        box-shadow: none;
    }

    section.homepage .second-section .container {
        position: relative;
        left: unset;
        top: unset;
        transform: unset;
        order: 1;
    }

    section.homepage .second-section .second-section-content {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-top: 30px;
        margin-bottom: 30px;
    }

    section.homepage .third-section {
        height: auto;
    }

    section.homepage .third-section .container {
        position: relative;
        left: unset;
        bottom: unset;
        transform: unset;
    }

    section.homepage .third-section .third-section-content {
        width: 100%;
        margin-top: 30px;
        margin-bottom: 30px;
    }

    section.homepage .third-section img {
        max-width: 100%;
    }

    section.homepage .fourth-section {
        padding: 30px 0;
    }

    section.homepage .fifth-section {
        background: #922525;
        padding: 30px 0 0;
        display: flex;
        flex-flow: row wrap;
    }

    section.homepage .fifth-section-box {
        position: relative;
        top: unset;
        bottom: unset;
        right: unset;
        left: unset;
        margin-bottom: 30px;
    }

    section.homepage .fifth-section .container {
        position: relative;
        left: unset;
        top: unset;
        transform: unset;
    }

    section.homepage .fifth-section-box .fifth-section-content {
        width: 100%;
        margin-left: 0;
    }

    section.homepage .fifth-section img {
        width: 100%;
        height: auto;
    }
}