@font-face{
    font-family: 'Open Sans';
    src: url(OpenSans-Regular.ttf);
}

.bigContainer{
    background-image: url(3.jpg);
    height: 100%;
    max-height: 100%;
    width: 100%;
}

#innerContainer{
    flex-wrap: nowrap;
}

.blurNavigation{
    background-image: url(3.jpg);
}

/* Navigation */

#links li:nth-of-type(3) a{
    text-decoration: underline;
}

#linksMobile li:nth-of-type(3) a{
    text-decoration: underline;
}

/* Body Content */
#bodyContainer{
    height: 100%;
    padding-left: 0px;
}


#bodyContent{
    height: 80%;
    max-height: 80%;
    margin-left: 0px;
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

/* Control Buttons */

.controlButton {
    width: 10%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.controlButton i{
    font-size: 3vw;
    color: white;
    cursor: pointer;
}

/* Testimonial Container */
#outlineTestimonialContainer{
    width: 80%;
    height: 100%;
    padding-left: 0px;
    padding-right: 0px;
    display: flex;
    align-items: center;
    position: relative;
}


.testimonialContainer{
    width: 84%;
    height: 84%;
    
    margin-left: auto;
    margin-right: auto;
    box-shadow: 5px 5px 20px  black;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.blurTestimonialContainer{
    position: absolute;
    top: 8%;
    left: 8%;
    background-image: url(3.jpg);
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;;
    z-index: -1;
    filter: blur(10px);
    box-shadow: none;
}

/* Review Slider */

#reviewSlider{
    height: 90%;
    margin-left: 0px;
    display: flex;
    flex-wrap: nowrap;
}

.review{
    width: 100%;
    min-width: 100%;
    height: 100%;
   
    margin-left: 0px;
    margin-right: 0px;
    

}

.reviewImage{
    height: 100%;
    background-color: black;
    display: flex;
    justify-content: center;
}

.reviewImage img {
    height: 100%;
}

.reviewDetailContainer{
    height: 100%;
    padding-left: 0px;
    padding-right: 0px;
    display: flex;
    align-items: center;

}

.reviewDetail{
    height: 80%;
    max-height: 80%;
    margin-left: -5%;
    background-color: rgb(165,95,193);
    display: block;
    overflow-y: scroll;
}

.reviewDetail::-webkit-scrollbar{
    display: none;
}



.title{
    margin-left: 0px;
    overflow: hidden;
}

.title p{
    color: white;
    font-size: 2.5vw;
    font-weight: bold;
   transform: translateY(30px);
   opacity: 0;
}

.seperator{
    width: 0%;
    border: 1.6px solid white;
    border-radius: 5px;
}

.detail{
    width: 100%;
    max-height: auto;
    margin-left: 0px;
    margin-top: 2%;
    opacity: 0;
}

.detail p{
    color: white;
    font-size: 2vh;
}

.reviewButtonContainer{
    width: 100%;
    height: 65%;
    margin-left: 0px;
    margin-top: 5%;
}
.reviewButton{
    height: 50%;
}

.reviewButtonContainer div{
    height: 30%;
    margin-bottom: 3%;
}
.reviewButtonContainer button{
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    color: white;
    border: 0;
    border-radius: 10px;
    font-size: 2.5vh;
}

.reviewButton i{
    font-size: 2.5vh;
    color: white;
}


#FacebookButton{
    background-color: rgb(24,119,242);
}

#GoogleButton{
    background-color: rgb(227,62,43);
}

#YelpButton{
    background-color: rgb(217,35,46);
}


.writer{
    font-style: italic;
    font-weight: bold;
}

.source {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
}

.source a{
    width: 100%;
    text-align: center;
    color: rgb(165,95,193);
    font-size: 1.7vh;
    font-style: italic;
    font-weight: bold;
    border: 1px solid white;
    border-radius: 15px;
    background-color: white;
}


.source a:hover{
    color: white;
    text-decoration: none;
    background-color: rgb(165,95,193);
}

@media screen and (max-width: 1200px){
    .reviewDetailContainer{
        height: 50%;
    
    }

    .reviewImage{
        height: 50%;
    }

    .reviewDetail{
        height: 100%;
        max-height: 100%;
        margin-left: 0px;
    }

    .title p{
        font-size: 2.5vh;
    }

    .detail p{
        font-size: 3vw;
    }

    .source a{
        font-size: 2.5vw;
    }

    .controlButton i{
        font-size: 3vh;
    }
}


