﻿:root {
    --UHV-red: #e1251b;
    --UHV-dark-red: #DA291C;
    --COB-blue: #3C7295;
    --black: #000000;
    --white: #ffffff;
    font-family: 'Montserrat', sans-serif;
}

section.testimonials {
    margin-top: 2.5rem;
}

.swiper {
    display: flex;
    margin-bottom: 2rem;
    margin-top: 2rem;
}

.gallery-thumbs {
    float: left;
    height: 325px;
    margin-right: 20px;
    width: calc(30% - 2px);
}

    .gallery-thumbs .swiper-slide {
        align-items: center;
        background-color: var(--COB-blue);
        border-radius: 20px;
        box-sizing: border-box;
        cursor: pointer;
        display: flex;
        justify-content: center;
    }

        .gallery-thumbs .swiper-slide img {
            border-radius: 20px;
            filter: opacity(0.45);
            height: 100%;
            object-fit: cover;
            width: 100%;
        }

    .gallery-thumbs .swiper-slide-active {
        border: 1px solid grey;
    }

        .gallery-thumbs .swiper-slide-active img {
            filter: contrast(1) blur(0px) !important;
        }

    .gallery-thumbs .swiper-slide:hover {
        border: 1px solid grey;
    }

.gallery-top {
    float: right;
    height: 325px;
    width: 70%;
}

    .gallery-top .swiper-slide {
        align-items: center;
        /*border: 1px solid grey;*/
        box-sizing: border-box;
        display: flex;
        /*justify-content: center;*/
    }

.quote-icon {
    display: block;
    margin-bottom: 0.15rem;
    margin-left: -3rem;
    width: 38px;
}

.openQuote {
    color: var(--COB-blue);
    font-family: 'Georgia';
    font-size: 4rem;
    font-weight: 600;
}

.quote {
    padding: 4rem;
}

    .quote p {
        font-size: 24px;
        letter-spacing: 0.02em;
        line-height: 30px;
    }

    .quote .name {
        color: var(--COB-blue);
        font-weight: bold;
        font-size: 18px;
        letter-spacing: 0.04em;
        line-height: 35px;
        text-align: left;
    }

.swiper-pagination-clickable .swiper-pagination-bullet {
    background: var(--COB-blue);
    cursor: pointer;
    height: 10px;
    margin: 10px 0 !important;
    opacity: 1;
    width: 10px;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
    background: var(--black) !important;
    opacity: 1;
}

/*CSS kicks in when the device is 1200 and below*/
@media only screen and (max-width: 1200px) {
    .quote-icon {
        margin-left: -1.5rem;
    }

    .quote {
        padding: 2rem;
    }

        .quote p {
            font-size: 1.45rem;
            letter-spacing: 0.02em;
            line-height: normal;
        }

    .swiper-pagination {
        display: none;
    }
}

/*CSS kicks in when the device is 1080 and below*/
@media only screen and (max-width: 1080px) {
    
}

/*CSS kicks in when the device is 932 and below*/
@media only screen and (max-width: 932px) {
    .quote-icon {
        margin-left: -1.5rem;
    }

    .quote {
        padding: 2rem;
    }

        .quote p {
            font-size: 1.5rem;
            letter-spacing: 0.02em;
            line-height: normal;
        }

    .swiper-pagination {
        display: none;
    }
}

/*CSS kicks in when the device is 896 and below*/
@media only screen and (max-width: 896px) {
    .quote-icon {
        margin-left: -1.5rem;
    }

    .quote {
        padding: 2rem;
    }

        .quote p {
            font-size: 1.2rem;
            letter-spacing: 0.02em;
            line-height: normal;
        }

    .swiper-pagination {
        display: none;
    }
}

/*CSS kicks in when the device is 667 and below*/
@media only screen and (max-width: 667px) {
    section.swiper {
        flex-direction: column;
    }

    .gallery-thumbs {
        float: unset;
        width: 75%;
    }

    .gallery-top {
        float: unset;
        height: 390px;
        width: 75%;
    }

    .quote-icon {
        margin-left: -1.5rem;
    }

    .quote {
        padding: 2rem 1rem;
    }

        .quote p {
            font-size: 1.15rem;
            letter-spacing: 0.02em;
            line-height: normal;
        }

    .swiper-pagination {
        display: none;
    }
}

/*CSS kicks in when the device width is 400 and below*/
@media only screen and (max-width: 450px) {
    .swiper {
        flex-direction: column;
    }
}