/* Google Fonts - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background-color: #ebebed;
}
img {
    width: 100%;
}

.slide-container {
    /* min-height: 500vh; */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ebebed;
}
.slide-container {
    max-width: 1120px;
    width: 100%;
    padding: 40px 0;
}
.slide-content {
    margin: 0 40px;
    overflow: hidden;
    border-radius: 25px;
}
.card {
    border-radius: 25px;
    background-color: #fff;
    border-color: white;
}
.image-content,
.card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 14px;
}
.image-content {
    position: relative;
    row-gap: 5px;
    padding: 25px 0;
}
.overlay {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #fff;
    border-radius: 25px 25px 0 25px;
}
.overlay::before,
.overlay::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -40px;
    height: 40px;
    width: 40px;
    background-color: #ffff;
}
.overlay::after {
    border-radius: 0 25px 0 0;
    background-color: #fff;
}
.card-image {
    position: relative;
    height: 150px;
    width: 150px;
    border-radius: 50%;
    background: #fff;
    padding: 3px;
}
.card-image .card-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #ffff;
}
.name {
    font-size: 18px;
    font-weight: 500;
    color: #333;
}
.description {
    font-size: 14px;
    color: #707070;
    text-align: center;
}
.button {
    border: none;
    font-size: 16px;
    color: #fff;
    padding: 8px 16px;
    background-color: green;
    border-radius: 40px;
    margin: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.button:hover {
    background: #265df2;
}

.swiper-navBtn {
    color: #6e93f7;
    transition: color 0.3s ease;
}
.swiper-navBtn:hover {
    color: #4070f4;
}
.swiper-navBtn::before,
.swiper-navBtn::after {
    font-size: 35px;
}
.swiper-button-next {
    right: 0;
}
.swiper-button-prev {
    left: 0;
}
.swiper-pagination-bullet {
    background-color: #6e93f7;
    opacity: 1;
}
.swiper-pagination-bullet-active {
    background-color: #4070f4;
}

@media screen and (max-width: 768px) {
    .slide-content {
        margin: 0 10px;
    }
    .swiper-navBtn {
        display: none;
    }
}

.card-content img {
    width: 5rem;
    margin-top: -1rem;
    margin-bottom: -1rem;
}

.main-banner-inner {
    display: flex;
    justify-content: space-between;
}

.main-banner-inner img {
    width: 40%;
}

.main-banner-inner .text {
    padding-top: 4rem;
    padding-bottom: 4rem;
    color: white;
    position: relative;
    z-index: 10;
}

.text h2 {
    line-height: 2.5rem;
}

.text span {
    color: #3ee668;
}

/* .btn-primary {
    background-color: transparent;
    border: 1px solid #3ee668;
} */
.topbar {
    background-color: transparent;
    border: 1px solid #3ee668;
}

.topbar:hover {
    background-color: #3ee668;
    border: 1px solid #3ee668;
}

.main_baneer-wrap {
    background-image: url("../images/bg.webp");
    background-repeat: no-repeat;
    background-position: 50% 67%;
    padding: 3rem;
    position: relative;
}

.main_baneer-wrap::before {
    content: "";
    background-color: rgba(0, 0, 0, 0.482);
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}

.about-wrap {
    padding: 4rem;
}
.about-inner {
    display: flex;
    justify-content: space-between;
    /* flex-wrap: wrap; */
}

.about-inner img {
    width: 35rem;
    border-radius: 10px 1px 10px 1px;
    box-shadow: -10px -14px 48px -48px black;
    margin-top: 6rem;
}
.about-inner .about-text {
    padding-top: 2rem;
    padding-right: 1rem;
}

.bundle-inner .heading {
    margin-bottom: 2rem !important;
}
.rating-flex {
    display: flex;
    justify-content: space-between;
    padding-top: 1rem;
}

.rating2 {
    margin-right: 3rem;
}
.rating-flex h3 {
    color: #3ee668;
}
.rating-flex h5 {
    color: #707070;
}

.heading {
    text-align: center;
    padding-top: 2rem;
}

.heading {
    position: relative;
    display: block;
    text-align: center;
}
.heading::after {
    content: "";
    display: block;
    width: 5%; /* Half width */
    height: 2px; /* Adjust the height of the line as needed */
    background-color: green;
    margin: 5px auto 0;
}
.navbar li a {
    color: #ffff;
}

.testimonial {
    background: #ffffff;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    color: #343a40;
    text-align: center;
}

.testimonial:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.testimonial img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.footer {
    background-color: #343a40;
    color: white;
    padding: 20px 0;
}

.footer a {
    color: #f8f9fa;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}
