:root {
    /* --primary-color:#00D084; */
    --bs-primary: #1f90ff;
    --bs-sec: #f1f0fe;
}

::selection {
    background: #1f90ff;
}

/*** Spinner Start ***/

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
    color: white;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn {
    color: var(--bs-white);
    background-color: var(--bs-primary) ;
    border: none;
}

.wp {
    color: #FFFFFF !important;
    background-color: rgba(12, 168, 12, 0.74);
    border: none !important;
    outline: none !important;
    transition: all .3s;
}
.wp i {
    font-size: 30px;
    margin-right: 5px;
    font-weight: 400;
}
.btn.wp:hover {
    transform: scale(1.1);
    background-color: rgba(12, 168, 12, 0.74);
}

.social-media-link {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    position: fixed;
    bottom: 10%;
    left: 5px;
    z-index: 99999;
}

.social-media-link .btn.facebook {
    background-color: #7a6ad8;
    color: var(--bs-white);
    border-radius: none;
}

.social-media-link .btn.youtube {
    background-color: red;
    color: var(--bs-white);
    border-radius: none;
}

.social-media-link .btn.instagram {
    background-color: #ec3c8e;
    color: var(--bs-white);
    border-radius: none;
}

.social-media-link .btn:hover {
    transform: scale(1.1);
}

.btn:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}

.btn.btn-light {
    background-color: var(--bs-primary);
    color: var(--bs-white);
    opacity: 0.8;
    outline: none;
}

.btn.btn-light:hover, .btn-light:focus {
    opacity: 1;
    outline: none;
}

.btn-primary, .btn-primary:focus, .btn-primary:active {
    border: none !important;
}



/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: 'Roboto', sans-serif;
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: var(--bs-dark);
    font-size: 17px;
    font-weight: 500;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link,
.sticky-top.navbar-light .navbar-nav .nav-item .nav-link {
    padding: 20px 0;
    color: var(--bs-dark);
}

.navbar-light .navbar-nav .nav-item .nav-link {
    color: black;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-item .nav-link:hover,
.navbar-light .navbar-nav .nav-item .nav-link.active  {
    color: var(--bs-primary);
}

.navbar-light .navbar-brand {
    display: flex;
    justify-content: center;
    align-items:center;
    text-align: center;
}

.navbar-light .navbar-brand img {
    height: 50px;
    width: 50px;
    transition: .5s;
    border-radius: 50px;
    margin-right: 5px;
}

.sticky-top.navbar-light .navbar-brand img {
    height: 40px;
    width: 40px;
    transition: .5s;
    border-radius: 40px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "";
    font-family:sans-serif, Arial, Helvetica, sans-serif;
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: var(--bs-white);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        color: var(--bs-primary);
        border: none !important;
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--bs-dark);
    }

    .navbar-light .navbar-nav .nav-item .nav-link {
        color: var(--bs-dark);
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
    
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }

    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: var(--bs-light);
    }
}
/*** Navbar End ***/

/***  Hero Header Start ***/

.container.main_page {
    display: grid;
    gap: 32px;
    height:100vh;
    padding: 120px 5px;
    min-height: 600px;
    max-height: 800px;
}
.home_tag {
    background-color: black;
    color: #fff;
    padding: 5px 20px;
    border-radius: 20px;
    user-select: none;
}

.home_tag i {
    color: #fff;
    margin-left: 10px;
}




.hero_left {
    max-width: 50%;
    margin-top: 30px;
}

.hero_left h1 {
    font-size: 60px;
    font-weight: 800;
    line-height: 100%;
    letter-spacing: -1px;
    margin: 16px 0;
}

.hero_left h1 span {
    background: linear-gradient(90deg, #65a3e0 20%, #0277ec 60%);
    background-clip: text;
    color: transparent;
    -webkit-background-clip:text ;
}
.hero_left p {
    font-size: 16px;
    line-height: 160%;
}
 .hero_right {
    position: absolute;
    right: 10px;
    bottom: 0;
}

 .hero_right img{
    width: 100%;
    display: flex;
    height: 550px;
    object-fit: cover;
    
}
.bg_color {
    position: absolute;
    width: 400px;
    height: 400px;
    background-color:#1f8fff75 ;
    right: 10px;
    top:120px;
    z-index: -1;
    border-radius: 50%;
    filter: blur(115px);
}

.buttons {
    display: flex;
    gap: 24px;
    margin-top: 32px;
}

.buttons .outline {
    border: 2px solid #1f90ff;
    color:#1f90ff;
}

.outline:hover {
    color: var(--bs-white);
    background: var(--bs-primary);
   
}




/* .header-carousel .header-carousel-item img {
    animation-name: image-zoom;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 1s;
}

@keyframes image-zoom {
    0%  {height: 100%; opacity: 0.9;}

    25% {height: 110%; opacity: 0.50;}

    50% {height: 115%; opacity: 1;}

    75% {height: 110%; opacity: 0.50;}

    100% {height: 100%; opacity: 0.9;}
} */
/*** Carousel Hero Header End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/carousel-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 140px 0 60px 0;
    transition: 0.5s;
}

@media (min-width: 992px) {
    .bg-breadcrumb {
        padding: 140px 0 60px 0;
    }
}

@media (max-width: 991px) {
    .bg-breadcrumb {
        padding: 60px 0 60px 0;
    }
     .about-us .section-heading {
        margin-left: 0px;
        margin-top: 120px;
    }
    .about-us::before {
        display: none;
    }
    .about-us .section-heading p{
        margin-top: 30px;
    }
    .about-us .section-heading .main-button {
        margin-top: 30px;
    }
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}
/*** Single Page Hero Header End ***/


/*** Service Start ***/
.service .service-item {
    background: var(--bs-light);
    border-radius: 10px;
    transition: 0.5s;
}

.service .service-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, .2);
}

.service .service-item .service-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: 0.5s;
}

.service .service-item .service-img img {
    transition: 0.5s;
}

.service .service-item:hover .service-img img {
    transform: scale(1.2);
}
/*** Service End ***/


/*** Features Start ***/
.feature .feature-item {
    text-align: center;
    border-radius: 10px;
    background: var(--bs-light);
    border: 1px solid transparent;
    transition: 0.5s;
}

.feature .feature-item:hover {
    border: 1px solid var(--bs-primary);
}

.feature .feature-item .feature-icon {
    background: var(--bs-white);
    border-radius: 10px;
    display: inline-block;
}
/*** Features End ***/

/*** Offer Start ***/
.offer-section .nav a.accordion-link {
    width: 100%;
    border-radius: 10px;
    display: flex;
    background: var(--bs-sec);
    transition: 0.5s;
    justify-content: center;
    align-items: center;
}

.offer-section .nav a.accordion-link.active {
    color: var(--bs-white);
    background: var(--bs-primary);
}

.offer-section .nav a.accordion-link h5 {
    transition: 0.5s;
}

.offer-section .nav a.accordion-link.active h5 {
    color: var(--bs-white);
}
/*** Offer End ***/

/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
    background: var(--bs-white);
    box-shadow: inset 0 0 45px rgba(0, 0, 0, .1);
    transition: 0.5s;
}

.blog .blog-item a {
    transition: 0.5s;
}

.blog .blog-item:hover a:hover {
    color: var(--bs-primary);
}

.blog .blog-item .blog-img {
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: rgba(0, 208, 132, 0.1);
    opacity: 0;
    transition: 0.5s;
    z-index: 1;
}

.blog .blog-item:hover .blog-img::after {
    opacity: 1;
}

.blog .blog-item .blog-img .blog-title {
    position: absolute;
    bottom: 25px;
    left: 25px;
    z-index: 5;
}

.blog .blog-item .blog-img .blog-title a {
    color: var(--bs-white);
    background: var(--bs-primary);
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img .blog-title a:hover {
    color: var(--bs-dark);
}

.blog-carousel .owl-stage-outer {
    margin-top: 58px;
}

.blog .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    left: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 6px 35px;
    border-radius: 30px;
    transition: 0.5s;
}

.blog .owl-nav .owl-prev:hover {
    background: var(--bs-dark);
    color: var(--bs-primary);
}

.blog .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 6px 35px;
    border-radius: 30px;
    transition: 0.5s;
}

.blog .owl-nav .owl-next:hover {
    background: var(--bs-dark);
    color: var(--bs-primary);
}
/*** Blog End ***/


/*** FAQs Start ***/
.accordion {
  margin-top: -40px;
  margin-bottom: -40px;
  background-color: var(--bs-primary);
  border-radius: 40px;
  padding: 80px 50px 50px 50px;
}

.accordion-item {
  background-color: #fff;
  border-radius: 40px !important;
  margin-bottom: 30px;
  border: none;
}

.accordion-item .accordion-button {
  outline: none;
  box-shadow: none;
  border-radius: 40px !important;
}

.accordion-button:not(.collapsed) {
  color: #7a6ad8;
  background-color: #fff;
}

h2.accordion-header button {
  padding: 15px 25px;
  font-size: 16px;
  font-weight: 600;
}

.accordion-button::after {
  font-size: 18px;
  font-weight: 500;
  background-image: none;
  content: '+';
  width: 30px;
  height: 30px;
  display: inline-block;
  text-align: center;
  line-height: 30px;
  border-radius: 50%;
  background-color: var(--bs-primary);
  color: #fff;
}

.accordion-button:not(.collapsed)::after {
  background-image: none;
  line-height: 32px;
  content: '-';
}

.accordion-body {
  padding: 0px 25px 30px 25px;
  font-size: 14px;
  line-height: 28px;
  color: #4a4a4a;
}

.section-heading {
  margin-bottom: 60px;
}

.about-us .section-heading {
  margin-left: 60px;
  margin-bottom: 0px;
}

.about-us .section-heading .main-button {
  margin-top: 50px;
}

.section-heading h2 {
  font-size: 36px;
  font-weight: 600;
  text-transform: capitalize;
  margin: 20px 0;
  line-height: 44px;
}

.section-heading h2 em {
  color: #7a6ad8;
  font-style: normal;
}

.section-heading h6 {
  color: #7a6ad8;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
}
/*** FAQs End ***/

/*** Team Start ***/

.team .row.g-4 {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.team .row.g-4 > div[class^="col-"] {
    display: flex;
    flex-direction: column;
}


.team-member {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    padding: 24px 12px 18px 12px;
    margin-bottom: 24px;
}
.team-member:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
    background: #e6f0ff; 
}
.team-member .main-content img {
    width: 140px;
    height: 140px;
    object-fit: contain;
    border-radius: 50%;
    margin-bottom: 16px;
    border: 4px solid #f1f1f1;
    background: #f9f9f9;
    transition: box-shadow 0.2s, border-color 0.2s, width 0.2s, height 0.2s;
}
.team-member:hover .main-content img {
    box-shadow: 0 0 0 6px #b3d8ff;
    border-color: #1f90ff;
}
.team-member .category {
    display: block;
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 8px;
    font-weight: 500;
}
.team-member h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .team .row.g-4 > div[class^="col-"] {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .team-member .main-content img {
        width: 120px;
        height: 120px;
    }
}
@media (max-width: 767.98px) {
    .team .row.g-4 > div[class^="col-"] {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .team-member {
        padding: 18px 8px 14px 8px;
    }
    .team-member .main-content img {
        width: 100px;
        height: 100px;
    }
}


.team-item {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    padding: 28px 16px 22px 16px;
    margin-bottom: 24px;
}
.team-item:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
    background: #e6f0ff;
}
.team-item .team-img {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 18px;
}
.team-item .team-img img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #f1f1f1;
    background: #f9f9f9;
    transition: box-shadow 0.2s, border-color 0.2s, width 0.2s, height 0.2s;
}
.team-item:hover .team-img img {
    box-shadow: 0 0 0 6px #b3d8ff;
    border-color: #1f90ff;
}
.team-title h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 2px;
}
.team-title p {
    font-size: 0.98rem;
    color: #6c757d;
    margin-bottom: 0;
    font-weight: 500;
}


@media (max-width: 991.98px) {
    .team .row.g-4 > div[class^="col-"] {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .team-item .team-img img {
        width: 120px;
        height: 120px;
    }
}
@media (max-width: 767.98px) {
   .team .row.g-4 > div[class^="col-"] {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .team-item {
        flex-direction: column;
        align-items: center;
        padding: 18px 8px 14px 8px;
        position: relative;
        min-height: 0;
    }
    .team-item .team-img {
        position: static !important;
        width: 100%;
        margin-bottom: 12px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .team-item .team-img img {
        width: 100px;
        height: 100px;
        object-fit: cover;
        border-radius: 50%;
        border: 4px solid #f1f1f1;
        background: #f9f9f9;
    }
    .team-title {
        text-align: center;
        margin-top: 8px;
    }
}


/*** Team End ***/

/*** Testimonial Start ***/
.testimonial .testimonial-item {
    position: relative;
    margin-bottom: 30px;
    padding: 0 25px 25px 25px;
}

.testimonial .testimonial-item::before {
    content: "";
    position: absolute;
    width: 100%;
    height: calc(100% - 50px);
    bottom: 0;
    left: 0;
    border-radius: 10px;
    background: var(--bs-light);
    z-index: -1;
}

.testimonial .testimonial-item .testimonial-img {
    display: flex;
    justify-content: center;
}

.testimonial .testimonial-item .testimonial-img img {
    width: 100px; 
    height: 100px;
    border-radius: 100px;
    border: 5px solid var(--bs-light);
    border-style: double;
    background: var(--bs-white);
}

.testimonial .testimonial-item .testimonial-text {
    padding: 25px 0;
    text-align: center;
}

.testimonial .testimonial-item .testimonial-title {
    display: flex;
    justify-content: space-between;
}

.testimonial .testimonial-item  .testimonial-quote-left {
    position: absolute;
    width: 60px; 
    height: 60px;
    top: 20px;
    left: 25px;
    border-radius: 60px;
    color: var(--bs-primary);
    background: var(--bs-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial .testimonial-item  .testimonial-quote-right {
    position: absolute;
    width: 60px; 
    height: 60px;
    bottom: -30px;
    right: 25px;
    margin-top: -5px;
    border-radius: 60px;
    color: var(--bs-primary);
    background: var(--bs-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-stage-outer {
    margin-top: 58px;
    margin-right: -1px;
}

.testimonial .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    left: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-prev:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.testimonial .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-next:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.testimonial-carousel .owl-dots {
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    margin: 20px 10px 0 10px;
    background: var(--bs-primary);
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    background: var(--bs-secondary);
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot span {
    position: relative;
    margin-top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot.active span::after {
    background: var(--bs-primary);
}

.testimonial-carousel .owl-dots .owl-dot span::after {
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 15px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-white);
    transition: 0.5s;
}

/*** Testimonial End ***/

/*** Footer Start ***/
.footer {
    background: var(--bs-secondary);
}

.footer .footer-item {
    display: flex;
    flex-direction: column;
}

.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-white);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 25px;
}

.footer .footer-item a:hover {
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-primary);
}

.align-items-center {
    margin-bottom: 10px;
}
/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    background: var(--bs-dark);
}
/*** copyright end ***/








@media (max-width: 768px) {
    .container.main_page {
        display: flex;
        flex-direction: column;
        height: auto;
        min-height: 0;
        max-height: none;
        padding: 40px 10px;
        gap: 24px;
    }
    .hero_left {
        max-width: 100%;
        margin-top: 0;
        order: 1;
        text-align: center;
    }
    .hero_left h1 {
        font-size: 34px;
        line-height: 110%;
        margin: 12px 0;
    }
    .hero_left p {
        font-size: 15px;
    }
    .buttons {
        flex-direction: column;
        gap: 0px;
        margin-top: 24px;
        width: 100%;
        justify-content: center;
        align-items: center;
    }
    .hero_right {
        position: static;
        width: 100%;
        margin-top: 24px;
        order: 2;
        display: flex;
        justify-content: center;
    }
    .hero_right img {
        width: 100%;
        max-width: 400px;
        height: auto;
        object-fit: cover;
    }
    .bg_color {
        display: none;
    }
    .team .team-item .team-img {
        position: absolute;
    }
}