.module-team {
    position: relative;
}

.module-team:before {
    width: 100%;
    height: 380px;

    content: "";
    position: absolute;
    z-index: -1;
}

@media screen and (max-width: 799px) {
    .module-team:before {
        height: 350px;
    }
}

.team-wrapper {
    display: flex;
}

.module-team .team {
    max-width: 1440px;
    margin: 0 auto;
    padding: 100px 5%;
}

@media screen and (max-width: 799px) {
    .module-team .team {
        padding: 50px 0%;
    }
}

.title {
    text-align: center;
    margin-bottom: 80px;
    font-size: 44px;
    line-height: normal;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1.3px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 100px;
}

.title:before {
    content: "";
    position: absolute;
    width: 80px;
    height: 10px;
    background: #14ecff;
    border-radius: 50px;
    bottom: 0;
    opacity: 0.2;
}

@media screen and (max-width: 799px) {
    .title:before {
        width: 60px;
        height: 5px;
    }
}

@media screen and (max-width: 799px) {
    .title {
        font-size: 32px;
        height: 60px;
        margin-bottom: 40px;
    }
}

.module-team .team .team-cards {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;

}

.module-team .team .team-cards .team-container {

    height: 390px;
    padding: 0 20px;
    cursor: default;
    /* Card */
}





.team-slide {
    background-color: #4a3b5733;
    width: 280px !important;
    height: 350px;

    border-radius: 4px;
    box-shadow: -1px 20px 17px -20px rgb(239 0 255 / 74%), 0px 0px 2px rgb(255 255 255 / 19%);

    position: relative;
    transition: all 0.4s ease;
}

.module-team .team .team-cards .team-container .team-slide:hover {

    box-shadow: 0px 0px 5px 0px #ca59ff;
}



.module-team .team .team-cards .team-container .team-slide .card {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    border: 0;
}

.module-team .team .team-cards .team-container .team-slide .card .bg {
    position: absolute;
    width: 100%;
    height: 100px;
    top: 0;
    border-radius: 4px 4px 0px 0px;
    transition: all 0.4s ease;
    background: linear-gradient(140deg, #D45B7A, #290041);
    z-index: 1;
}

.module-team .team .team-cards .team-container .team-slide .card .more {
    width: 24px;
    height: 24px;
    position: absolute;
    z-index: 2;
    right: 20px;
    top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transform: rotate(0deg);
    transition: all 0.4s ease;
    border-radius: 100%;
}

.module-team .team .team-cards .team-container .team-slide .card .more:before,
.module-team .team .team-cards .team-container .team-slide .card .more:after {
    width: 16px;
    height: 2px;
    background-color: white;
    content: "";
    position: absolute;
    border-radius: 4px;
    transition: all 0.4s ease;
}

.module-team .team .team-cards .team-container .team-slide .card .more:after {
    transform: rotate(90deg);
}

@media screen and (max-width: 799px) {
    .module-team .team .team-cards .team-container .team-slide .card .more {
        padding: 10px;
        top: 10px;
        right: 10px;
    }
}

.module-team .team .team-cards .team-container .team-slide .card .more:hover {
    transform: scale(1.1);
    background-color: rgba(255, 255, 255, 0.2);
}

@media screen and (max-width: 799px) {
    .module-team .team .team-cards .team-container .team-slide .card .more:hover {
        transform: scale(1);
        background-color: transparent;
    }
}

.module-team .team .team-cards .team-container .team-slide .card .photo {
    width: 120px;
    height: 120px;
    border-radius: 100%;
    overflow: hidden;
    z-index: 1;
    position: absolute;
    top: 40px;
    border: 3px solid #ffffff19;
    transition: all .3s .2s linear;
    box-shadow: 0px 4px 10px rgba(111, 112, 115, 0.3);
}

.module-team .team .team-cards .team-container .team-slide.show-more .card .photo {
    border-radius: 4px;
    border: 3px solid #00000000;
}


.module-team .team .team-cards .team-container .team-slide .card .photo:before,
.module-team .team .team-cards .team-container .team-slide .card .photo:after {
    width: 100%;
    height: 100px;
    border-radius: 4px;
    content: "";
    position: absolute;
    transition: all 0.4s ease;
    opacity: 0;
    left: 0;
    top: 0;
}

.module-team .team .team-cards .team-container .team-slide .card .photo:before {
    background: #403E3E;
    z-index: 1;
}

.module-team .team .team-cards .team-container .team-slide .card .photo:after {
    background: linear-gradient(140deg, #D45B7A, #290041);
    z-index: 2;
}

.module-team .team .team-cards .team-container .team-slide .card .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.module-team .team .team-cards .team-container .team-slide .card .text {
    z-index: 3;
    /*display: flex;
    align-items: center;
    flex-direction: column;
    */
    transition: all 0.3s ease;
    margin-top: 0px;
    transform: translateY(48px);

    padding: 0 20px;
    height: 100px;
    text-align: center;
}



.module-team .team .team-cards .team-container .team-slide .card .text .name {
    font-size: 20px;
    height: 60px;
    font-weight: 300;
    margin-bottom: 0.5em;
}

.module-team .team .team-cards .team-container .team-slide .card .text .role {
    font-size: 14px;
    font-weight: 600;
    color: #CBCBCB;
    letter-spacing: 0.8px;
    margin-top: 5px;
}

.module-team .team .team-cards .team-container .team-slide .card .text .desc {
    color: white;
    display: none;
    margin-top: 20px;
    font-size: 16px;
    letter-spacing: 0.6px;
    text-align: left;
    padding: 0 20px;
    font-weight: 400;
    line-height: 22px;
}

.module-team .team .team-cards .team-container .team-slide .card .social {
    z-index: 1;
    display: flex;
    align-items: center;

    box-shadow: inset 0px 11px 13px -20px #6F7073;
    width: 100%;
    position: absolute;
    bottom: 0;
    height: 50px;
    padding: 0 20px;
    box-sizing: border-box;
    transition: all 0.4s ease;

}

.module-team .team .team-cards .team-container .team-slide .card .social .pointer {
    display: block;
    width: 10px;
    height: 10px;
    z-index: 2;
    bottom: 50px;
    position: absolute;
    transform: translateX(25px);
    transition: all 0.4s ease;
    opacity: 0;
}

.module-team .team .team-cards .team-container .team-slide .card .social .pointer:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;


    transform: rotate(45deg);
}

@media screen and (max-width: 799px) {
    .module-team .team .team-cards .team-container .team-slide .card .social .pointer {
        display: none;
    }
}

.module-team .team .team-cards .team-container .team-slide .card .social .icons {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.module-team .team .team-cards .team-container .team-slide .card .social .icons .icon {
    width: 25%;
    height: 24px;
    opacity: 0.3;
    transition: all 0.4s ease;
    text-align: center;
    color: var(--bs-btn-color);
}

.module-team .team .team-cards .team-container .team-slide .card .social .icons .icon:hover {
    opacity: 0.6;
}

@media screen and (max-width: 799px) {
    .module-team .team .team-cards .team-container .team-slide .card .social .icons .icon:hover {
        opacity: 0.3;
    }
}

.module-team .team .team-cards .team-container .team-slide .card .social .icons .icon img {
    width: 100%;
    height: 100%;
}

.module-team .team .team-cards .team-container .team-slide .card .social:hover .pointer {
    opacity: 1;
    bottom: 45px;
}

.module-team .team .team-cards .team-container .team-slide:hover {
    transform: translateY(3px);
}

.module-team .team .team-cards .team-container .team-slide:hover:before {

    box-shadow: 0px 9px 20px 3px rgb(255 0 186 / 19%), 0px 0px 1px rgb(255 255 255 / 51%), 0px 3px 1rem 0px #2317a157, 0 0 4rem rgb(0 0 0 / 15%);
}

@media screen and (max-width: 799px) {
    .module-team .team .team-cards .team-container .team-slide:hover {
        transform: translateY(0px);
    }
}

.module-team .team .team-cards .team-container .team-slide:hover .card .photo {
    transform: translateY(-5px);
    box-shadow: 0px 6px 20px rgba(111, 112, 115, 0.3);
}


.module-team .team .team-cards .team-container .team-slide.show-more .card {
    overflow: hidden;
}



.module-team .team .team-cards .team-container .team-slide.show-more .card .more {
    transform: rotate(45deg) scale(1);
}

.module-team .team .team-cards .team-container .team-slide.show-more .card .more:hover {
    transform: rotate(45deg) scale(1.1);
}

@media screen and (max-width: 799px) {
    .module-team .team .team-cards .team-container .team-slide.show-more .card .more:hover {
        transform: rotate(45deg) scale(1);
    }
}

.module-team .team .team-cards .team-container .team-slide.show-more .card .social {
    transform: translateY(55px);
}

.module-team .team .team-cards .team-container .team-slide.show-more .card .text {
    color: white;
    transform: translateY(0px);
    transition: all 0.6s ease;
    margin-top: 50px;
    overflow-y: auto;
    height: auto;
}

.module-team .team .team-cards .team-container .team-slide.show-more .card .text .name,
.module-team .team .team-cards .team-container .team-slide.show-more .card .text .role {
    color: white;
}

.module-team .team .team-cards .team-container .team-slide.show-more .card .text .desc {
    display: block;
}

.module-team .team .team-cards .team-container .team-slide.show-more .card .photo {
    width: 100%;
    height: 100%;
    top: 0px;
    border: solid 0px transparent;

    box-shadow: 0px 4px 10px rgba(111, 112, 115, 0);
    transform: translateY(0px);
    transition: all .3s .2s linear;
}

.module-team .team .team-cards .team-container .team-slide.show-more .card .photo:before {
    height: 100%;
    opacity: 0.5;
}

.module-team .team .team-cards .team-container .team-slide.show-more .card .photo:after {
    height: 100%;
    opacity: 0.8;

}

.module-team .team .team-cards .team-container .team-slide.show-more .card .photo img {
    filter: grayscale(100%);
    width: 140%;
    height: 140%;
    animation: move 20s ease .2s infinite alternate;
    transform-origin: bottom left;
    transform: translate3d(0px, 0px, 0px);

}

@keyframes move {
    0% {
        width: 140%;
        height: 140%;
        transform-origin: bottom left;
        transform: translate3d(0px, 0px, 0px);

    }

    100% {
        width: 160%;
        height: 160%;
        transform-origin: bottom left;
        transform: translate3d(-50px, -10px, 30px);
    }
}

.module-team .team .team-cards .team-container .team-slide.show-more .card .photo:hover {
    transform: translateY(0px);
}

.module-team .team .team-cards .team-container .team-slide.show-more .card .bg {
    width: 100%;
    height: 100%;
}

.module-team .team .team-cards .team-container .team-slide.show-more .card .bg:before {
    opacity: 0.5;
}

.module-team .team .team-cards .team-container .team-slide.show-more .card .bg:after {
    opacity: 0.8;
}

.module-team .team .team-cards .team-pagination {
    bottom: 0;
    display: none;
}

@media screen and (max-width: 799px) {
    .module-team .team .team-cards .team-pagination {
        display: block;
    }
}

.module-team .team .team-cards .team-pagination .team-pagination-bullet {
    background-color: #6F7073;
    margin: 0 5px;
    border-radius: 5px;
    transition: all 0.4s ease;
}

.module-team .team .team-cards .team-pagination .team-pagination-bullet:focus {
    outline: 0;
}

.module-team .team .team-cards .team-pagination .team-pagination-bullet-active {
    background: linear-gradient(140deg, #D45B7A, #290041);
    width: 16px;
}

.module-team .team .team-cards .navigation {
    width: 1098px;
    height: 28px;
    position: absolute;
    margin: 0 auto;
    padding: 0 5%;
    box-sizing: border-box;
    top: 86px;
    display: flex;
    justify-content: start;
    align-items: center;
}

@media screen and (max-width: 1180px) {
    .module-team .team .team-cards .navigation {
        width: 750px;
    }
}

.module-team .team .team-cards .navigation .team-button-prev,
.module-team .team .team-cards .navigation .team-button-next {
    width: 28px;
    height: 28px;
    background-position: center;
    transition: all 0.4s ease;
    top: 0;
    margin-top: 0;
}

.module-team .team .team-cards .navigation .team-button-prev:focus,
.module-team .team .team-cards .navigation .team-button-next:focus {
    outline: none;
}

@media screen and (max-width: 799px) {

    .module-team .team .team-cards .navigation .team-button-prev,
    .module-team .team .team-cards .navigation .team-button-next {
        display: none;
    }
}

.module-team .team .team-cards .navigation .team-button-prev {
    background-image: url("https://rafaelalucas.com/dailyui/6/assets/arrow-prev.svg");
    background-position-x: 5px;
    transform: translateX(5px);
}

.module-team .team .team-cards .navigation .team-button-prev:hover {
    transform: translateX(0px);
}

.module-team .team .team-cards .navigation .team-button-next {
    background-image: url("https://rafaelalucas.com/dailyui/6/assets/arrow-next.svg");
    background-position-x: -5px;
    transform: translateX(-5px);
}

.module-team .team .team-cards .navigation .team-button-next:hover {
    transform: translateX(0px);
}



.reflect {
    -webkit-box-reflect: below 3px linear-gradient(transparent 70%, transparent, rgba(0, 0, 0, 0.3));
}

@media(min-width: 992px) {

    .reflect-if-lg {
        -webkit-box-reflect: below 3px linear-gradient(transparent 70%, transparent, rgba(0, 0, 0, 0.3));
    }
}


.callout-card {


    text-align: left;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 7rem;
    position: relative;
    text-align: center;
    border-radius: 1rem;

    border-radius: 1rem;
    box-shadow: inset 0 1px 1px 0 hsl(0deg 0% 100% / 15%), 0 50px 100px -20px rgb(50 50 93 / 30%), 0 30px 60px -30px rgb(0 0 0 / 50%), -10px 10px 60px -10px rgb(103 178 111 / 30%);
    color: #fff;
    text-align: left;
    background-size: 100% 100%;
    background-position: 0px 0px, 0px 0px, 0px 0px, 0px 0px, 0px 0px, 0px 0px, 0px 0px, 0px 0px;
    background: radial-gradient(40% 40% at 20% 50%, #50B3F0B0 0%, #07FFE500 100%), radial-gradient(40% 40% at 30% 60%, #15E1FF57 0%, #07FFE500 100%), radial-gradient(40% 28% at 49% 77%, #15FFC678 0%, #07FFE500 100%), radial-gradient(19% 27% at 62% 58%, #7AEFFF63 0%, #07FFE500 100%), radial-gradient(75% 75% at 90% 103%, #0D014BFF 0%, #777D9600 100%), linear-gradient(134deg, #002274FF 0%, #71C7FFFF 100%);


}



/* @media (min-width: 60rem) {
    .CTA-styles-module--image--2vuJ7 {
        position: absolute !important;
        right: -2rem;
        bottom: 0;

        max-width: 50%;
        transform: perspective(1000px) rotateX(8deg) rotateY(-38deg) rotate(6deg);
        box-shadow: 0 50px 100px -20px rgb(50 50 93 / 30%), 0 30px 60px -30px rgb(0 0 0 / 50%), -10px 10px 60px -10px rgb(255 0 116 / 30%);
        border-radius: 7px;
    }
} */


#gallery {
    width: 600px;
    transform: translate3d(-2px, -2px, 0) perspective(1000px) rotateX(15deg) rotateY(-35deg) rotate(9deg);
}

.img-wrapper {
    transition: all 1s;
    width: 50%;
}

.img-wrapper[data-main-image] {
    opacity: 0;
    transform: translateZ(0);
    transition: opacity .25s linear;
    will-change: opacity;
}

.img-wrapper img {

    height: 100%;

    margin: 0;
    max-width: none;
    padding: 0;

    width: 100%;
    object-fit: cover;
}

.img-wrapper img:hover {

    transform: translate3d(-2px, -2px, 0) perspective(1000px) rotateX(15deg) rotateY(-35deg) rotate(9deg);
}