/* office_tour_5_css
---------------------------------------------------------- */
.office_tour_5 {
    background-color: var(--main-color);
    padding: 100px 25px;
}
.office_tour_5 .office-tour-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: min(100%, 1700px);
    margin: 0 auto;
    background-color: #fff;
    padding: clamp(20px, 5vw, 80px);
}
.office_tour_5 .office-tour-left {
    width: min(50%, 806px);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: left;
    padding: min(5%, 50px) 50px;
}
.office_tour_5 .office-tour-left h2 {
    color: var(--tertiary-color);
}
.office_tour_5 .office-tour-left h3 {
    color: var(--secondary-color);
}
.office_tour_5 .office-tour-left p {
    margin: 0;
}
.office_tour_5 .office-tour-right {
    width: min(50%, 708px);
    position: relative;
    height: 100%;
}
.office_tour_5 .office-tour-photo {
    width: min(100%, 708px);
    height: min(38vw, 574px);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.loaded .office_tour_5 .tour1 {
    background-image: url('../images/bellcreek-office01.webp');
}
.loaded .office_tour_5 .tour2 {
    background-image: url('../images/bellcreek-office02.webp');
}
.loaded .office_tour_5 .tour3 {
    background-image: url('../images/bellcreek-office03.webp');
}
.loaded .office_tour_5 .tour4 {
    background-image: url('../images/bellcreek-office04.webp');
}
.loaded .office_tour_5 .tour5 {
    background-image: url('../images/bellcreek-office05.webp');
}
.loaded .office_tour_5 .tour6 {
    background-image: url('../images/bellcreek-office06.webp');
}
.loaded .office_tour_5 .tour7 {
    background-image: url('../images/bellcreek-office07.webp');
}
.office_tour_5 .office-tour-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 45px;
}
.office_tour_5 .office-tour-slider {
    position: relative;
    z-index: 1;
}
.office_tour_5 .office-tour-nav-holder {
    width: fit-content;
    padding: 20px 0 0;
    margin: 0 auto;
}
.office_tour_5 .office-tour-nav-holder ul.slick-dots button {
    background-color: transparent;
    font-size: 0;
    height: 15px;
    width: 15px;
    border-radius: 50%;
    transition: ease-in-out 0.5s;
    border: 2px solid var(--secondary-color);
}
.office_tour_5 .office-tour-nav-holder ul.slick-dots {
    justify-content: flex-start;
    display: flex;
    align-items: center;
    margin: 0 auto;
    list-style-type: none;
    gap: 25px;
}
.office_tour_5 .office-tour-nav-holder ul.slick-dots li {
    display: flex;
}
.office_tour_5 .office-tour-nav-holder ul.slick-dots button:hover,
.office_tour_5 .office-tour-nav-holder ul.slick-dots .slick-active button {
    background-color: var(--secondary-color);
}
@media (max-width: 1025px) {
    .office_tour_5 .office-tour-flex {
        height: auto;
        flex-direction: column-reverse;
    }
    .office_tour_5 .office-tour-photo {
        margin: 0 auto;
    }
    .office_tour_5 .office-tour-photo {
        height: min(80vw, 574px);
    }
    .office_tour_5 .office-tour-left {
        width: 100%;
        padding: 0;
    }
    .office_tour_5 .office-tour-right {
        width: 100%;
    }
    .office_tour_5 .office-tour-content h2,
    .office_tour_5 .office-tour-content h3 {
        text-align: center;
    }
    .office_tour_5 .office-tour-content {
        align-items: center;
        margin: 0 auto;
        text-align: center;
    }
    .office_tour_5 .office-tour-nav-holder ul.slick-dots {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 25px;
    }
    .office_tour_5 .office-tour-nav-holder {
        margin: 0 auto;
        max-width: 90%;
        justify-content: center;
        padding: 25px 0;
    }
    .office_tour_5 .office-tour-content .main-btn {
        margin: 0 auto;
    }
}
@media all and (max-width: 600px) {
    .office_tour_5 {
        padding: 50px 25px;
    }
}