/* Html and body set up */
html, body{
    height: auto;
    width: 100%;
    overflow-y: overlay;
}

::-webkit-scrollbar{
    width: 0.4em;
    transition: 0.5s ease-in-out;
    display: block;
    overflow: hidden;
}

::-webkit-scrollbar-thumb{
    background: rgb(0, 0, 0, 0.4);
    border-radius: 10px;
}

/* Body Container */
.bodyContainer{
    height: 100%;
    max-height: 100%;
}

/* Navigation Collapse */

.navigationCollapse{
    height: 12vh;
    
}

/* Navigation Expand */
.navigationExpand{
    height: 0vh;
    position: absolute;
    top: 12vh;
}

/* Body Content */
.bodyContent{
    height: 88vh;
    max-height: 88vh;
    position: relative;
    overflow-x: hidden;
    overflow-y: hidden;
    display: flex;
}

/* Current Testimonial Container */
.currentTestimonialContainer{
    height: 100%;
    width: 60%;
    position: relative;
    transform-origin: top left;
    background: linear-gradient(90deg, rgba(232,169,134,1) 0%, rgba(209,137,95,1) 50%, rgba(201,124,80,1) 100%);
    transform: skewX(-3deg);
    overflow: hidden;
    box-shadow: 1px 1px 12px -2px gray;
    z-index: 1;
}

.currentTestimonialContainer > *{
    transform: skewX(3deg);
    transform-origin: top left;
}


.header{
    width: 100%;
    height: 20%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
  
}

.header p{
    font-size: 2em;
    color: white;
    font-family: 'Source Pro';
    font-weight: bold;
    text-align: center;
}

.seperator{
    height: 0px;
    width: 40%;
    border-top: 2px solid white;
    border-radius: 5px;
}

.contentContainer{
    height: 80%;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

.contentContainer i{
    color: black;
    font-size: 4em;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;

}


.leftButton{
    position: absolute;
    left: 0px;
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 5%;
}

.leftButton i {
    display: none;
}


.leftButton i:hover{
    transform: translateX(-20%);
}

.rightButton{
    position: absolute;
    right: 0px;
    height: 100%;
    display: flex;
    align-items: center;
    padding-right: 5%;
}

.rightButton i:hover{
    transform: translateX(20%);
}

.reviewContainer{
    width: 100%;
    height: 70%;
    overflow-x: hidden;
}

.reviewSlider{
    width: 70%;
    height: 100%;
    margin-right: auto;
    margin-left: auto;
    display: flex;
    flex-wrap: nowrap;
    transition: 1s ease-in-out;

}

.review{
    width: 100%;
    flex-shrink: 0;
    height: 100%;
    border-radius: 10px;
    position: relative;
    background-color: white;
    overflow-y: overlay;
    box-sizing: content-box;
    transition: transform 0.5s ease-in-out;
    transform: scale(0.9,0.9);
    pointer-events: none;
}

.review::-webkit-scrollbar{
    width: 0.4em;
    transition: 0.5s ease-in-out;
    display: none;
    overflow: hidden;
}


.showScrollbar::-webkit-scrollbar{
    display: block;
}

.review::-webkit-scrollbar-thumb{
    background: rgb(0, 0, 0, 0.4);
    border-radius: 10px;
}

.review:nth-of-type(1){
    transform: scale(1,1);
    pointer-events: auto;
    filter: none;

}

.reviewContent {
    width: 100%;
    height: auto;
    position: relative;
    padding-top: 3%;
}

.fadedBackground{
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(204,135,96,0.7) 20%, rgba(204,135,96,1) 50%, rgba(232,169,134,1) 80%, rgba(255,255,255,0) 100%);
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    opacity: 1;
    transition: 0.5s ease-in-out 0.3s;
    z-index: -1;
}

.review:first-of-type .fadedBackground{
    opacity: 0;
}

.reviewerInfo{
    width: 90%;
    height: 30%;
    margin-right: auto;
    margin-left: auto;
    display: flex;
    flex-direction: column;
    border-bottom: 2.5px dashed rgb(252,185,125);
}

.nameAndPhoto{
    width: 100%;
    height: 70%;
    display: flex;
}

.profilePhoto{
    margin-right: 2%;
    display: flex;
    align-items: center;
}

.profilePhoto i {
    color: rgb(204,135,96);
}

.reviewerName{
    display: flex;
    align-items: center;
    
}

.reviewerName p{
    color: rgb(204,135,96);
    font-size: 1.6em;
    font-family: 'Roboto';
    font-weight: bold;
    text-align: center;
    padding-top: 10%;
}

.rating{
    width: 100%;
    height: 30%;
    display: flex;
    align-items: center;
}

.rating p{
    color: rgb(204,135,96);
    font-size: 1.2em;
}

.rating span{
    font-weight: bold;
    font-size: 1.25em;
}
.rating i{
    color: rgb(255, 175, 0);
    font-size: 1em;
}

.rating i:last-of-type{
    color: rgb(154,154,154,0.3);
}

.reviewDetail{
    width: 85%;
    height: 70%;
    margin-right: auto;
    margin-left: auto;
    padding-top: 2%;
    display: flex;
    flex-direction: column;
}

.reviewDetail p {
    font-family: "Roboto";
    font-size: 1.2em;
    color: rgb(204,135,96);
}

.reviewDetail a{
    color: rgb(252,185,125);
    font-weight: bold;
    font-style: italic;
}

.reviewDetail p:nth-of-type(2){
    font-weight: bold;
    font-size: 1.3em;

}

.imageContainer{
    width: 100%;
    height: auto;
    margin-bottom: 2%;
}

.imageContainer img{
    height: 20vh;
    margin-right: 3%;
    margin-bottom: 3%;
    border-radius: 5%;
    cursor: pointer;
    float: left;
}


/* Review Us */

.reviewUsMobile{
    width: 100%;
    position: absolute;
    bottom: 0px;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding-top: 2%;
    cursor: pointer;
    display: none;
}

.bar{
    width: 15%;
    height: 0%;
    border-top: 3px solid rgba(201,124,80,1);
    border-radius: 20px;
}

.reviewUsMobile p{
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(180deg, rgba(252,185,125,1) 0%, rgba(201,124,80,1) 100%);
    font-family: 'Roboto';
    font-size: 1.5em;
    font-style: italic;
    font-weight: bold;
    padding-left: 5%;
    padding-right: 5%;
    background-color: white;
}

.reviewUsMobile p i{
    font-size: 1.7em;
    color: rgb(204,135,96);
    opacity: 1;
}

.reviewUs{
    width: 40%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: white;
    transform: translateY(0%);
    transition: transform 0.5s ease-in-out;
}

.reviewUs > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.reviewUs > div > i{
    display: none;
}
.reviewUsTitle{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 15%;
    transform: skew(-5deg);
    width: 110%;
}

.reviewUsTitle::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    z-index: -1;
    border: 2px dashed rgb(204,135,96);
}

.reviewUsTitle p{
    font-size: 2.5em;
    padding-top: 2%;
    text-align: center;
    font-family: 'Source Pro';
    font-weight: bold;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  background-image: linear-gradient(180deg, rgba(252,185,125,1) 0%, rgba(201,124,80,1) 100%);

}

.socialMediaContainer{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: 10%;
    cursor: pointer;
}

.facebook{
    background: linear-gradient(90deg, rgba(135,152,189,1) 0%, rgba(64,100,172,1) 100%);
}

.google{
    background: linear-gradient(90deg, rgba(244,180,0,1) 0%, rgba(219,68,55,1) 100%);

}

.yelp{
    background: linear-gradient(90deg, rgba(232,100,100,1) 0%, rgba(196,18,0,1) 100%);

}

.socialMedia{
    font-size: 2em;
    font-family: 'Source Pro';
    font-weight: bold;
    padding-top: 3%;
    position: relative;
    z-index: 2;
    color: white;
}

.socialMedia a{
    color: white;
}

.socialMedia a:hover{
    text-decoration: none;
}
/* Image zoom container */

.imageZoom{
    height: 100%;
    width: 100%;
    background-color: rgb(0, 0, 0,0.5);
    position: absolute;
    top: 0px;
    z-index: 2;
    display: none;
    align-items: center;
    justify-content: center;
}

.imageZoomContainer{
    width: auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;  
    z-index: 2;
}

.imageZoomContainer img{
    height: 100%;
}

.imageZoomContainer i{
    position: absolute;
    right: 0px;
    top: 0px;
    color: white;
    font-size: 3.5em;
    cursor: pointer;
}

.blurBackgroundImageContainer{
    height: 100%;
    width: 80%;
    position: absolute;
    top: 0px;
    background-color: black;
    background-image: url(ReviewPhotos/photo1-reviewer1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
    filter: blur(20px);
}


@media only screen and (max-width: 1024px){
    .bodyContent{
        height: 88vh;
    }
    .currentTestimonialContainer{
        width: 100%;
        height: 88vh;
        transform: skewX(0deg);
    }

    .currentTestimonialContainer > *{
        transform: skewX(0deg);

    }

    .leftButton, .rightButton{
        margin-bottom: 20%;
    }
    
    .leftButton i:hover{
        transform: translateX(0%);
    }

    .rightButton i:hover{
        transform: translateX(0%);
    }

    .reviewContainer{
        margin-bottom: 20%;
    }

    .reviewUsMobile{
        display: flex;
    }

    .reviewUs{
        height: auto;
        width: 100%;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        z-index: 3;
    }

    .reviewUs > div {
        margin-top: 2%;
    }

    .reviewUs > div > i{
        margin-bottom: 5%;
        font-size: 2.5em;
        color: rgb(204,135,96);
        display: block;
    }

    .imageZoomContainer{
        width: 100%;
        height: auto;
    }

    .imageZoomContainer img{
        width: 100%
    }

    .blurBackgroundImageContainer{
        width: 100%;
        height: 80%;
    }
}





