/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

/*============GENERAL CLASS===========*/
.ceoNameWrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.ceoNameWrap h2 {
    margin: 0;
    font-weight: 700;
}
.ceoNameWrap p {
    font-size: 1.25rem;
    font-weight: 600;
}
/*============GENERAL CLASS===========*/
/*===============SERVICES=============*/
section.servicesContainer {
    position: relative;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 5rem 1fr 5rem 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 5rem;
    margin-top: var(--spaceY);
}
.servicesWrap {
    width: 100%;
    position: relative;
    display: block;
}
.servicesMediaLogoWrap {
    position: relative;
    width: 100%;
    height: 32vh;
    margin-bottom: 4rem;
}
.servicesMedia {
    position: relative;
    width: 100%;
    height: 100%;
}
.servicesMedia img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.services-logo {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.services-logo > * {
    width: 7rem;
    height: 7rem;
    -o-object-fit: cover;
    object-fit: cover;
}
.servicesMedia::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--black);
    opacity: .3;
}
.servicesInfo h3 {
    font-size: 1.5rem;
    text-align: center;
    margin-top: 0;
    margin-bottom: 1.5rem;
}
.servicesInfo p.content {
    text-align: justify;
}
/*================SERVICES=============*/
/*===============MEMBERS===============*/
.membersWrapper {
    overflow: hidden;
    height: 100vh;
    min-height: 100vh;
    direction: ltr;
    position: relative;
}
.members {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-column-gap: 5rem;
    -moz-column-gap: 5rem;
    column-gap: 5rem;
    height: 100vh;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    /* padding-top: 5rem; */
}
.cardMember.memberWrap {
    width: 10vw;
    height: 40vh;
    color: var(--white);
    position: relative;
    min-width: auto
}
h2.membersTitle {
    position: absolute;
    width: 100%;
    left: 0;
    top: calc(var(--headerHeight) + 4rem);
    text-align: center;
    margin: 0;
}
.cardMember.memberWrap:nth-of-type(1) {
    margin-left: var(--spaceM);
}
.cardMember.memberWrap:nth-of-type(odd) {
    margin-top: 5rem;
}
.memberMedia {
    width: 100%;
    height: 10vw;
}

.memberMedia img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 50%;
}

.memberInfo {
    text-align: center;
}

.memberInfo p {
    font-size: 1.5rem;
    color: var(--lightGray);
}
.empty-box {
    width: 20vw;
}
.cardMember.memberWrap:nth-of-type(even) {
    margin-top: calc(12vw + 5rem);
}
.servicesWrap.completeVivus .services-logo svg path {
    fill: var(--white);
    -webkit-transition: fill .4s ease-in-out;
    -o-transition: fill .4s ease-in-out;
    transition: fill .4s ease-in-out;
}
.membersWrapper::before {
    content: '';
    background-image: url(../img/lines.svg);
    width: 100%;
    position: absolute;
    height: 48vh;
    background-size: cover;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-top: 4rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-repeat: repeat;
    z-index: 0;
}
/*===============MEMBERS===============*/
/*============VIDEO GALLERY============*/
section.videoGalleryContainer {
    position: relative;
    width: 100%;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.video-overlay-gallery {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}
.video-overlay-gallery video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.video-gallery-info {
    position: relative;
    z-index: 1;
    width: 30vw;
    margin-right: var(--spaceM);
    border: 13px solid var(--lightGray);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
    color: var(--darGray);
    padding: 3rem 3.5rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.video-gallery-info h2 {
    text-align: center;
    margin: 0;
}
.video-gallery-info p.content {
    text-align: center;
    margin-bottom: 2rem;
    text-align: justify;
}
.features__Items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.features__Item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    row-gap: 1.188rem;
}

.features__Item img {
    width: 3rem;
    height: 3rem;
    -o-object-fit: contain;
    object-fit: contain;
}
.video-gallery-info p.reserve-text {
    text-align: center;
    margin-top: 2.5rem;
}

.video-gallery-info .caBtn {
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-width: auto;
    width: 13.625rem;
    background-color: var(--white);
}
#videoGalleryModalContainer {
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 100;
    background-color: var(--white);
    top: 0;
    left: 0;
    pointer-events: none;
    -webkit-transition: all cubic-bezier(0, 0.23, 0.06, 0.99) 1s;
    -o-transition: all cubic-bezier(0, 0.23, 0.06, 0.99) 1s;
    transition: all cubic-bezier(0, 0.23, 0.06, 0.99) 1s;
    opacity: 0;
}
#videoGalleryModalContainer .videoGalleryModal {
    position: relative;
    width: 100%;
    height: 100vh;
}
#videoGalleryModalContainer .videoGalleryModal video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
#videoGalleryModalContainer.open {
    opacity: 1;
    pointer-events: auto;
}
#close-modal {
    position: absolute;
    z-index: 1;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    cursor: pointer;
}
.playGallery img{
    vertical-align: middle;
}
.playGallery {
    position: absolute;
    top: 50%;
    z-index: 2;
    left: var(--spaceM);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
    -webkit-transition: all ease-in-out .5s;
    -o-transition: all ease-in-out .5s;
    transition: all ease-in-out .5s;
}
.playGallery:hover {
    -webkit-filter: brightness(1) invert(1);
    filter: brightness(1) invert(1);
}
/*============VIDEO GALLERY============*/
/*=============TESTIMONIAL=============*/
section.testimonialContainer {
    position: relative;
    margin: var(--spaceY) 0;
    width: 100%;
    display: block;
}

section.testimonialContainer h2 {
    margin: 0 0 6rem 0;
    text-align: center;
}

.testimonialSliderWrapper {
    position: relative;
    width: 100%;
    display: block;
}

.testimonialSliderWrapper .swiper-slide {
    opacity: 0.3;
}

.testimonialSliderWrapper .swiper-slide.swiper-slide-next {
    opacity: 1;
}

.testimonial-wrap {
    position: relative;
    width: 100%;
    display: block;
}

.testimonial-media {
    width: 9.5rem;
    height: 9.5rem;
    margin: 0 auto 2.2rem;
}

.testimonial-media img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-info {
    position: relative;
    width: 100%;
    display: block;
    color: var(--gray);
}

.testimonial-info h3 {
    text-align: center;
    margin-bottom: 2.2rem;
}

.testimonial-info p {
    text-align: justify;
    margin: 0;
    position: relative;
}
.testimonial-info p::before{
    content: '';
    background-image: url(../img/qoute.svg);
    position: absolute;
    width: 2.25rem;
    height: 2rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    top: 0;
    right: 0;
    -webkit-transform: translateY(calc(-100% - 2rem));
    -ms-transform: translateY(calc(-100% - 2rem));
    transform: translateY(calc(-100% - 2rem));
}
.testimonial-info p::after{
    content: '';
    background-image: url(../img/qoute.svg);
    position: absolute;
    width: 2.25rem;
    height: 2rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    bottom: 0;
    left: 0;
    -webkit-transform: translateY(calc(100%)) rotate(180deg);
    -ms-transform: translateY(calc(100%)) rotate(180deg);
    transform: translateY(calc(100%)) rotate(180deg);
}
.testimonialSliderWrapper .swiper {
    padding-bottom: 7rem;
}
.swiper-pagination-bullet-active{
    background-color: var(--gray);
}
/*=============TESTIMONIAL=============*/
@media only screen and (max-width: 768px){
    #close-modal {
        font-size: 1.5rem;
    }
    /*==============SERVICES=================*/
    section.servicesContainer {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        grid-gap: 1.5rem;
    }
    .servicesMediaLogoWrap {
        height: 27vh;
        margin-bottom: 2rem;
    }
    .services-logo svg {
        width: 5rem;
        height: 5rem;
    }
    .servicesInfo p.content {
        font-size: .875rem;
    }
    .servicesInfo h3 {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
        font-weight: 600;
    }
    /*==============SERVICES=================*/
    /*===============MEMBERS=================*/
    h2.membersTitle {
        padding: 0 var(--spaceX);
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        position: relative;
        left: auto;
        top: auto;
        font-size: 1.5rem;
    }
    .members {
        height: auto;
        overflow-x: auto;
        width: auto;
        -webkit-column-gap: 2rem;
        -moz-column-gap: 2rem;
        column-gap: 2rem;
        padding-top: 1rem;
    }
    .membersWrapper {
        height: auto;
        min-height: auto;
        margin: 2rem 0;
    }
    .cardMember.memberWrap {
        width: 27vw;
        height: auto;
        min-width: 27vw;
    }
    .memberMedia {
        height: 27vw;
    }
    .memberInfo p {
        font-size: 1.25rem;
    }
    .cardMember.memberWrap:nth-of-type(even) {
        margin-top: 22vw;
    }
    .cardMember.memberWrap:nth-of-type(odd) {
        margin-top: 0;
    }
    .membersWrapper::before {
        margin-top: 2rem;
        height: 30vh;
    }
    /*===============MEMBERS=================*/
    /*============VIDEO GALLERY==============*/
    .video-gallery-info {
        width: calc(100% - var(--spaceX)*2);
        padding: 1.2rem;
        border: 4px solid var(--lightGray);
        margin-top: var(--spaceX);
    }
    .video-gallery-info p.content {
        font-size: .875rem;
    }
    .features__Item img {
        width: 2rem;
        height: 2rem;
    }
    .features__Item {
        font-size: .875rem;
    }
    section.videoGalleryContainer {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    .playGallery {
        top: auto;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        bottom: 2rem;
        left: 50%;
    }
    .playGallery img {
        width: 3.5rem;
    }
    /*============VIDEO GALLERY==============*/
    /*=============TESTIMONIAL===============*/
    .testimonial-info p {
        font-size: .875rem;
    }
    .testimonial-info p::before,.testimonial-info p::after {
        width: 1.5rem;
        height: 1.85rem;
    }
    section.testimonialContainer h2 {
        margin: 0 0 2rem 0;
    }
    .testimonialSliderWrapper .swiper-slide{
        opacity: 1;
    }
    /*=============TESTIMONIAL===============*/
}
@media only screen and (min-width: 640px) and (max-width: 768px){
    /*=============SERVICES===========*/
    section.servicesContainer {
        -ms-grid-columns: 1fr calc(var(--spaceX)*.5) 1fr calc(var(--spaceX)*.5) 1fr;
        grid-template-columns: 1fr 1fr 1fr;
        grid-gap: calc(var(--spaceX)*.5);
    }
    .servicesMediaLogoWrap {
        height: 18vh;
    }
    /*=============SERVICES===========*/
    /*=============GALLERY VIDEO SECTION===========*/
    section.videoGalleryContainer {
        height: auto;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        row-gap: 3rem;
        padding: 5rem var(--spaceX);
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }
    .playGallery {
        position: relative;
        top: auto;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        bottom: auto;
        left: auto;
    }
    .video-gallery-info {
        width: 100%;
        margin: 0;
    }
    /*=============GALLERY VIDEO SECTION===========*/
}
@media only screen and (min-width: 769px) and (max-width: 1199px){
    /*===============SERVICES SECTION==============*/
    section.servicesContainer {
        grid-gap: calc(var(--spaceX)*.5);
    }
    .servicesMediaLogoWrap {
        height: 16vh;
        margin-bottom: 2.5rem;
    }
    .services-logo > * {
        width: 4.5rem;
        height: 4.5rem;
    }
    .servicesInfo h3 {
        font-size: 1.2rem;
    }

    .servicesInfo p.content {
        font-size: .875rem;
    }
    /*===============SERVICES SECTION==============*/
    /*===============MEMBERS SECTION==============*/
    .members {
        height: auto;
        overflow: hidden;
        overflow-x: auto;
        width: auto;
    }
    .membersWrapper::before {
        height: 24vh;
        margin-top: 2rem;
    }
    .membersWrapper {
        height: auto;
        min-height: auto;
    }
    h2.membersTitle {
        position: relative;
        top: auto;
        left: auto;
    }
    .cardMember.memberWrap {
        height: auto;
        width: 16vw;
        min-width: 16vw;
    }
    section.membersContainer {
        padding: var(--spaceY) 0;
    }
    .memberMedia {
        height: 16vw;
    }
    .cardMember.memberWrap:nth-of-type(odd) {
        margin-top: 0;
    }
    .cardMember.memberWrap:nth-of-type(even) {
        margin-top: calc(10vw + 4rem);
    }
    .memberInfo p {
        font-size: 1.25rem;
    }
    /*===============MEMBERS SECTION==============*/
    /*===============GALLERY SECTION==============*/
    section.videoGalleryContainer {
        height: 70vh;
    }
    .video-gallery-info {
        width: 48vw;
        padding: 2rem 2.5rem;
    }
    .playGallery img {
        width: 4rem;
        height: auto;
        aspect-ratio: 1/1;
    }
    /*===============GALLERY SECTION==============*/
    /*===============TESTIMONIAL SECTION==============*/
    .testimonial-info p::before,.testimonial-info p::after {
        width: 1.5rem;
        height: 1.5rem;
    }
    .testimonial-info p {
        font-size: .875rem;
    }
    .testimonial-media {
        width: 7.5rem;
        height: 7.5rem;
    }
    /*===============TESTIMONIAL SECTION==============*/
}
@media only screen and (min-width: 1200px) and (max-width: 1400px){
    /*===============SERVICES===================*/
    section.servicesContainer {
        grid-gap: calc(var(--spaceX)*.5);
    }

    .services-logo > * {
        width: 4rem;
        height: 4rem;
    }

    .servicesMediaLogoWrap {
        margin-bottom: 2.5rem;
    }

    .servicesInfo h3 {
        font-size: 1.25rem;
    }

    .servicesInfo p.content {
        font-size: .9rem;
    }
    /*===============SERVICES===================*/
    /*================MEMBERS===================*/
    h2.membersTitle {
        top: calc(var(--headerHeight) + 1rem);
    }
    .memberInfo p {
        font-size: 1.35rem;
    }
    /*================MEMBERS===================*/
    /*================GALLERY===================*/
    .video-gallery-info {
        padding: 2rem 2.5rem;
        width: 35vw;
        border-width: 10px;
    }
    .features__Item img {
        width: 2.25rem;
        height: 2.25rem;
    }
    .playGallery img {
        width: 4rem;
        height: auto;
        aspect-ratio: 1/1;
    }
    /*================GALLERY===================*/
    /*================TESTIMONIAL===================*/
    .testimonial-info p::before,.testimonial-info p::after {
        width: 1.8rem;
        height: 1.5rem;
    }
    .testimonial-media {
        width: 8.5rem;
        height: 8.5rem;
    }
    /*================TESTIMONIAL===================*/
}
@media only screen and (min-width: 1401px) and (max-width: 1600px){
    /*================SERVICES=================*/
    section.servicesContainer {
        grid-gap: calc(var(--spaceX)*.5);
    }
    .servicesMediaLogoWrap {
        height: 28vh;
        margin-bottom: 3rem;
    }
    .servicesInfo h3 {
        font-size: 1.3rem;
        margin-bottom: 1.25rem;
    }
    .services-logo > * {
        width: 5rem;
        height: 5rem;
    }
    /*================SERVICES=================*/
    /*================MEMBERS=================*/
    .membersWrapper::before {
        height: 42vh;
        margin-top: 1rem;
    }
    /*================MEMBERS=================*/
    /*===========GALLERY SECTION==============*/
    .video-gallery-info {
        padding: 2rem 2.5rem;
        border-width: 10px;
        width: 35vw;
    }
    .features__Item img {
        width: 2.5rem;
        height: 2.5rem;
    }
    .playGallery img {
        width: 5rem;
    }
    /*===========GALLERY SECTION==============*/
    /*=============TESTIMONIAL================*/
    .testimonial-info p::before,.testimonial-info p::after {
        width: 1.5rem;
        height: 1.5rem;
    }
    .testimonial-media {
        width: 8.5rem;
        height: 8.5rem;
    }
    /*=============TESTIMONIAL================*/
}