:root{
     --primary-color:#0b0c10;
     --secondary-color: #1f2833;
     --primary-text:#66fcf1;
     --secondary-text : #c5c6c7;
     --outline:#45a29e;
     --nav-height:12vh;
}
.row {
    padding: 70px;
    margin-right: 0.5px;
    margin-top: 120px;
}

.title {
    font-size: 50px;
    font-weight: 600;
}

.para {
    font-size: 25px;
    padding-top: 20px;
    font-weight: 500;
    color:#fff;
}
#title .conta{
     display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    transform: translateX(-12%);
    opacity: 1;
    font-weight: 600;
    margin-bottom: 12rem;
    margin-left: 8%;
}
#title .conta.show
{
    opacity: 1;
    transform: translateX(0);
}
.conta a {
    display: flex;
    justify-content: center;
    align-items: center;
 width: 14rem;
    margin-left: -247px;
    height: 4rem;
    border: solid 2px var(--primary-text);
    border-radius: 4rem;
    font-size: 1.6rem;
    text-decoration: none;
    color: var(--outline);
    text-transform: capitalize;
    background-color: transparent;
}

.conta a:hover {
    background-color: var(--primary-text);
    color: var(--secondary-color);
    box-shadow: 5px -5px 15px var(--primary-text);
}
.carousel-inner {
    border-radius: 30px;
}

.h {
    font-size: 65px;
    font-weight: 800;
    text-align: center;
    padding: 10px;
    margin-top: 10%;
}

.pa {
    font-size: 25px;
    font-weight: 400;
    text-align: center;
}

.counters {
    padding: 3em 2em;
    text-align: center;
}

.counters>div {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4em 2em;
}

.counter {
    position: relative;
}

.counter h1 {
    font-size: 3em;
    margin-bottom: 0.5em;
}

.counter:not(:last-child)::before {
    content: '';
    background: #bf2f2f;
    position: absolute;
    width: 2px;
    height: 3em;
    top: 50%;
    transform: translateY(-50%);
    right: -1em;
}
.box1 {
    margin: 0 auto;
    text-align: center;
    display: flex;
    height: 30vh;
    margin-top: 5px;
    width: 90%;
}
.count-heading {
    flex: 1;
    font-size: 40px;
    text-align: center;
    color: #ffffff;
    border-radius: 100px;
    border-radius: 50%;
    /*background: #0b0c10;*/
    text-align: center;
    padding-top: 1%;
   /* box-shadow: 10px 5px #320049; */
}
.container {
    /*display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 600px;
    height: 600px;
  /*  border: 4px solid rgb(42, 40, 40);
    border-radius: 50%;
    margin-top: -6%;*/
}
.img img{
        width: 97%;
    margin-top: -8%;
    margin-left: 34px;
}
.container .icon {
    position: relative;
    left: -50%;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.container .icon .imgBx {
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    transition: 0.5s;
    border: 1px solid black;
    box-shadow: 0 0 0 4px #b278f5, 0 0 0 6px #570099;
    transform: rotate(calc(360deg/8 * var(--i)));
    transform-origin: 340px;
    z-index: 100;
    overflow: hidden;
}

.container .icon .imgBx.active {
    box-shadow: 0 0 0 4px #605f5f, 0 0 0 12px #411852;
}

.container .icon .imgBx img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    transform: rotate(calc(-350deg/8 * var(--i)));
    transition: 0.5s;
    filter: grayscale(1);
}

.container .icon .imgBx.active img {
    filter: grayscale(0);
}

.content {
    position: absolute;
    inset: 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content::before {
    content: '';
    position: absolute;
    inset: 60px;
    border: 4px solid transparent;
    border-left: 4px solid #742abe;
    border-right: 4px solid rgb(149, 42, 230);
    border-radius: 50%;
    animation: animate_01 5s linear infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes animate_01 {
    0% {
        rotate: 0deg;
    }

    100% {
        rotate: 360deg;
    }
}

.content::after {
    content: '';
    position: absolute;
    inset: 120px;
    border: 4px solid transparent;
    border-left: 4px solid #0f100f;
    border-right: 4px solid rgb(27, 28, 27);
    border-radius: 50%;
    animation: animate_02 2.5s linear infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes animate_02 {
    0% {
        rotate: 360deg;
    }

    100% {
        rotate: 0deg;
    }
}

.contentBx {
    position: absolute;
    transform: scale(0);
    transition: 0.5s;
    opacity: 0;
}

.contentBx.active {
    transform: scale(1);
    opacity: 1;
    transition-delay: 0.5s;
}

.contentBx .card {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 15px;
}

.contentBx .card .imgBx {
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
}

.contentBx .card .imgBx img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contentBx .card .textBx {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}

.contentBx .card .textBx h2 {
    position: relative;
    font-size: 1.30em;
    font-weight: 600;
    color: #222;
    line-height: 1em;
    text-transform: uppercase;
    text-align: center;
}

.contentBx .card .textBx h2 span {
    font-size: 0.69em;
    color: #222;
    font-weight: 500;
    letter-spacing: 0.1em;
}

.contentBx .card .textBx .sci {
    position: relative;
    display: flex;
    gap: 7px;
    margin-top: 10px;
    text-align: center;
}

.contentBx .card .textBx .sci li {
    list-style: none;
}

.contentBx .card .textBx .sci li a {
    position: relative;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #d8c6e8;
    color: #63615f;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.5s;
}

.contentBx .card .textBx .sci li a:hover {
    background: #5700bb;
}

.team {
    margin-top: 2%;
    text-align: center;
}

.team h2 {
    font-size: 50px;
    font-weight: 900;
}
 
.team p {
    font-size: 22px;
    text-align: center;
    margin-left: 10%;
    margin-right: 10%;
}

.container1 {
    max-width: 1300px;
    width: 100%;
    margin-left: 10%;
    overflow: hidden;
    position: relative;
}

.slider-wrapper {
    position: relative;
    transition-duration: 0ms;
    transform: translate3d(0px, 0px, 0px);
    display: flex;
    transition: transform 0.3s ease-in-out;
}

.slider-wrapper .slide-button {
    position: absolute;
    top: 50%;
    height: 50px;
    width: 50px;
    color: #fff;
    border: none;
    outline: none;
    background: #000;
    font-size: 2.2rem;
    cursor: pointer;
    border-radius: 50%;
    transform: translateY(-50%);
}

.slider-wrapper .slide-button#prev-slide {
    left: -79px;
}

.slider-wrapper .slide-button#next-slide {
    right: -10px;
}

.slider-wrapper .image-list {
    display: grid;
    gap: 18px;
    font-size: 0;
    margin-bottom: 30px;
    overflow-x: auto;
    scrollbar-width: none;
    grid-template-columns: repeat(10, 1fr);
}

.slider-wrapper .image-list::-webkit-scrollbar {
    display: none;
}

.slider-wrapper .image-list .images-item {
    width: 405px;
    height: 350px;
    object-fit: cover;
}

.slider-scrollbar {
    height: 24px;
    width: 100%;
    display: flex;
    align-items: center;
}

.slider-scrollbar .scrollbar-track {
    height: 2px;
    width: 100%;
    background: #ccc;
    position: relative;
    border-radius: 4px;
}

.slider-scrollbar .scrollbar-thumb {
    position: absolute;
    height: 100%;
    width: 10%;
    background: #000;
    border-radius: inherit;
    cursor: grab;
}

.slider-scrollbar .scrollbar-thumb:active {
    cursor: grabbing;
    height: 8px;
    top: -2px;
}

.slider-scrollbar .scrollbar-thumb::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -10px;
    bottom: -10px;
}

.tineline-info {
    width: 425px;
    transition-duration: 0ms;
    transform: translate3d(0px, 0px, 0px);
    margin-bottom: 20px;
}
.tineline-info h3{
    font-size: 35px;
    margin-top: 9%;
    font-weight: 700;
}
.tineline-info p{
    font-size: 20px;
    margin-top: 7%;
    font-weight: 400;
}

.swiper {
    width: 90%;
    height: 100%;
    margin-top: 10%;
}

.swiper-container {
    width: 25%;
    height: 25%;
}

.swiper-wrapper {
    text-align: center;
    margin-left: 10px;
}

.swiper-slide {
    text-align: center;
    /* Center slide text vertically */
    display: flex;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 50%;
    height: 20%;
    object-fit: cover;
    border-radius: 50%;
    cursor: pointer;
}

.swiper-slide img:hover {
    transform: scale(1.1);
}

.swiper-slide:nth-child(2n) {
    width: 40%;
}

.swiper-slide:nth-child(3n) {
    width: 20%;
}

.card-custom .card-custom-image {
    overflow: hidden;
}

.link-custom .card-custom-image img {
    transition: all 0.4s ease;
}

.card-custom:hover .card-custom-image img {
    transform: scale(1.1);
}

.card-custom {
    width: 90%;
    margin-left: 10%;
    gap: 10px;
}

.card-custom-image {
    width: 100%;
    height: 100%;
    border-radius: 5%;
}
 .card-image :hover{
    transform: scale(0.9);
}
.card-custom-content {
    text-align: left;
}

.card-custom-content span {
    font-size: 20px;
    font-weight: 100;
}

.card-custom-content h3 {
    font-size: 28px;
    font-weight: 600;
    margin-top: 5%;
}

.card-custom-content p {
    font-size: 25px;
    font-weight: 300;
    margin-top: 5%;
    text-align: left;
}

.slider-wrapper-card {
    position: relative;
    width: 1300px;
    max-width: 1300px;
    margin: auto;
    overflow: hidden;
    border-radius: 10px;
}

.card-list-1 {
    display: flex;
    transition: transform 0.5s ease;
    width: 40%;
    height: 50%;
}

.card2 {
    min-width: 78%;
    box-sizing: border-box;
    padding: 21px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #ffffff;
    box-shadow: 0 20px 52px rgba(86, 68, 57, 1.1);
    border-radius: 18px;
    margin: 37px;
    color:black;
}

.card-image img {
    max-width: 100%;
    border-radius: 15px;
        height: 100%;
}

.card-title-1 h3 {
      margin: -10px 0px;
    font-size: 25px;
    font-weight: 600;
}
.card-title-1 p{
    font-size: 19px;
    font-weight: 400;
    margin-top: 5%;
}

.slide-buttons1 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 10;
}

#prev-slide-1 {
  top: -366px;
        left: -90px;
}

#next-slide-1 {
    right: -1040px;
        top: -366px;
}

/* Slider item styling */
.slider-item {
    min-width: 100%;
    box-sizing: border-box;
    padding: 20px;
}

/* Testimonials card styling */
.testimonials-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 50%;
    height: 50%;
}

/* Testimonial body styling */
.test-body {
    display: flex;
    align-items: center;
}

/* Testimonial image styling */
.test-img img {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    margin-right: 20px;
}

/* Testimonial footer styling */
.test-footer {
    margin-top: 20px;
}

.testi-user {
    font-weight: bold;
}

.para1 {
    color: #777;
}

/* Slider buttons styling */
.slide-buttons {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

#prev-slide {
    left: 10px;
}

#next-slide {
    right: 10px;
}

/* Scrollbar styling */
.slider-scrollbar {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 5px;
    background: #ddd;
}

.scrollbar-track {
    width: 100%;
    height: 100%;
}

.scrollbar-thumb {
    height: 100%;
    background: #333;
    width: 20%;
    transition: width 0.3s;
}
.container3{
    width: 100%;
    height: 100%;
    text-align: center;
}
.testimonial{
    margin: 90px auto;
}
.testimonial h1{
    text-align: center;
    font-weight:bold ;
    color: black;
    padding-bottom: 10px;
    text-transform: uppercase;
}
.testimonial .row{
    margin-top: 30px;
}
.col-md-4{
    margin: 40px auto;
}
.profile{
    padding: 70px 10px 10px;
    background-color: #0b0c10;
}
.profile img{
    top: 20px;
}
.user{
    width: 100px;
    height: 100px;
    border-radius: 50%;
}
.profile h3{
    font-size: 20px;
    margin-top: 15px;
    color: #b700ff;
}
.profile span{
    font-size: 12px;
}
blockquote{
    font-size: 16px;
    line-height: 30px;
}
.profile:hover{
    box-shadow: 0 0 15px 5px rgba(0,0,0,0.2);
    cursor: pointer;
    transform: scale(0.9);
}
.button1{
    margin-left: 40%;
    margin-top: 0.4%;
    width: 40%;
}
  @media(max-width:786px) {
    .container-fluid {
        width: 1447px;
    }
}