.banner .enter_text_sms h1 {
    font-size: 70px;
    line-height: 86px;
}

.solutions-banner .banner p {
    margin: 0px auto 0px;
    width: 80%;
}


/* Slider Section - 1 -- Start */

.slider_section_1 {
    position: relative;
    margin: 100px 0px;
}

.crew-carousel {
    height: 300px;
    margin-top: 60px;
}

.crew-track {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.8s ease;
}

.crew-card {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 20px;
    overflow: hidden;
    background: white;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.8s ease;
    cursor: pointer;
}

.crew-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.crew-card.center {
    z-index: 10;
    transform: scale(1.1);
}

.crew-card.left-1 {
    transform: translateX(-200px) scale(0.9);
    opacity: 0.8;
    filter: grayscale(80%);
}

.crew-card.left-2 {
    transform: translateX(-400px) scale(0.8);
    opacity: 0.6;
    filter: grayscale(100%);
}

.crew-card.right-1 {
    transform: translateX(200px) scale(0.9);
    opacity: 0.8;
    filter: grayscale(80%);
}

.crew-card.right-2 {
    transform: translateX(400px) scale(0.8);
    opacity: 0.6;
    filter: grayscale(100%);
}

.crew-card.hidden {
    opacity: 0;
    pointer-events: none;
}

.crew-info {
    text-align: center;
    margin-top: 30px;
}

.crew-name {
    font-size: 20px;
    color: #A8A8A8;
    /* deep orange */
}

.crew-role {
    font-size: 16px;
    text-transform: uppercase;
    color: #A8A8A8;
    letter-spacing: 0.1em;
}

.crew-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.crew-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(204, 85, 0, 0.2);
    /* orange tint */
    cursor: pointer;
}

.crew-dot.active {
    background: #A8A8A8;
}

.crew-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgb(250 207 234);
    /* orange base */
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1;
}

.crew-arrow:hover {
    background: rgb(54 139 209);
    /* deeper orange hover */
}

.crew-left {
    left: 20px;
}

.crew-right {
    right: 20px;
}

/* Slider Section - 1 -- End */

/* Slider Section - 2 -- Start */
.slider_section_2 .swiper .content {

    transition: all 0.3s ease-in-out;
    margin-top: 20px;

    h6 {
        font-weight: 600;
        font-size: 20px;
        text-align: center;
        color: #A8A8A8;
    }

    p {
        font-weight: 500;
        font-size: 18px;
        text-align: center;
        color: #A8A8A8;
        text-transform: uppercase;
    }
}

.slider_section_2 .swiper {
    overflow: hidden;
}

.slider_section_2 .swiper-slide {
    background-position: center;
    background-size: cover;
    /* width: 300px;
    height: 300px; */
}

.slider_section_2 .swiper-slide::after {
    position: absolute;
    content: "";
    inset: 0;
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background: linear-gradient(to bottom right, #b8b8b88f, #ffffff5e);
}

.slider_section_2 .swiper-slide-active::after {
    background: none;
}

.slider_section_2 .swiper-slide>div {
    text-align: center;
    display: none;
    opacity: 0;
}

.slider_section_2 .swiper-slide-active div {
    display: block;
    opacity: 1;
}

.slider_section_2 .swiper-slide h2 {
    font-size: 1.2rem;
    font-family: "Libre Baskerville", serif;
    position: relative;
}

.slider_section_2 .swiper-slide h2::after {
    position: absolute;
    content: "";
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    height: 2px;
    background: linear-gradient(#e66465, #9198e5);
}

@keyframes line {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

.slider_section_2 .swiper-slide-active h2::after {
    animation: line 0.5s linear forwards;
}

.slider_section_2 .swiper-slide img {
    display: block;
    width: 100%;
    object-fit: cover;
    box-shadow: 0px 3px 17px rgb(0 0 0 / 25%);
    border-radius: 50%;
    aspect-ratio: 1/1;
}

@media (min-width: 768px) {
    .slider_section_2 .swiper-slide h2 {
        font-size: 2rem;
    }
}

/* Slider Section - 2 -- End */

/* Slider Section - 3 -- Start */
.slider_section_3::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    /* size of shadow */
    height: 80%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 1) 60%,
            /* pure white */
            rgba(255, 255, 255, 0.8) 80%,
            /* slightly transparent */
            transparent 100%
            /* fade out */
        );
    z-index: 1;
    /* keep it above content */
    pointer-events: none;
}

.slider_section_3::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80%;
    background: linear-gradient(to left,
            rgba(255, 255, 255, 1) 60%,
            rgba(255, 255, 255, 0.8) 80%,
            transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.slider_section_3 {
    position: relative;

    .owl-nav {

        button {
            background-color: #ffffff !important;
            box-shadow: 0 0 10px 0 #ccc;
            border-radius: 50px !important;
            width: 40px;
            height: 40px;
        }

        .owl-prev {
            position: absolute;
            top: 30%;
            z-index: 3;
            left: 0%;
            width: 40px;

            span {
                font-size: 27px;
            }
        }

        .owl-next {
            position: absolute;
            top: 30%;
            right: 0%;
            z-index: 3;
            width: 40px;

            span {
                font-size: 27px;
            }
        }
    }

}

.slider_section_3 .owl-theme .owl-nav [class*=owl-]:hover {
    background: #869791;
    color: #000000;
    text-decoration: none;
}

.slider_section_3 .casestudy-slider {
    margin-top: 100px;
}

.slider_section_3 .casestudy-slider .client-item {
    transition: all 0.3s ease-in-out;
}

.slider_section_3 .casestudy-slider .client-item .content {
    transition: all 0.3s ease-in-out;
    visibility: hidden;
    margin-top: 20px;
    padding: 0 22px;
}

.slider_section_3 .casestudy-slider .client-item .content h6 {
    font-weight: 500;
    font-size: 18px;
    text-align: left;
    color: #a8a8a8;
    margin-bottom: 15px;
}

.slider_section_3 .casestudy-slider .client-item .content p {
    font-weight: 500;
    font-size: 16px;
    text-align: left;
    color: #a8a8a8;
	min-height: 50px;
    align-items: center;
    display: flex;
}

.slider_section_3 .casestudy-slider .client-item .content img.slider-logo {
    width: 140px;
    margin: 0px 0px 15px 0px;
}

.slider_section_3 .casestudy-slider .client-item img {
    filter: grayscale(100%);
    width: 90%;
    margin: auto;
}

.slider_section_3 .casestudy-slider .client-item:hover .content {
    visibility: visible;
}

.slider_section_3 .casestudy-slider .client-item:hover img {
    filter: unset;
}

/* Slider Section - 3 -- End */

.owl-carousel {
    z-index: unset;
}

.book_demo_register_now .pink_br {
    position: relative;
}

/*.book_demo_register_now .pink_br::after {
    content: "We send a few campaigns a week";
    display: block;
    position: absolute;
    bottom: -48px;
    visibility: visible;
    width: 100%;
    opacity: 1;
    font-size: 12px;
    color: #A8A8A8;
    font-weight: 500;
    text-align: center;
    left: 2px;
    font-size: 14px;
}*/
.book_demo_register_now .pink_br::after {
    display: none;
}

.form_our_customer {
    margin: 150px 0px;
}

.view-case-btn {
    font-size: 18px;
    line-height: 24px;
    color: #168BD1;
    border: 1px solid #168BD1;
    padding: 12px 6px;
    border-radius: 15px;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 15px;
    width: 200px;
    cursor: pointer;
}

@media screen and (max-width:768px) {
    .view-case-btn {
        margin: 30px auto 0;
    }
}

.view-case-btn:hover {
    background-color: #368cd3;
    color: #ffffff;
}


@media screen and (max-width:767px) {


    .slider_section_1 {
        overflow: hidden;
    }

    .slider_section_3 .casestudy-slider {
        margin-top: 40px;
    }

    .slider_section_3 .casestudy-slider .client-item {
        transition: all 0.3s ease-in-out;
    }

    .slider_section_3 .casestudy-slider .client-item .content h6 {
        text-align: center;
    }

    .slider_section_3 .casestudy-slider .client-item .content p {
        text-align: center;
		justify-content: center;
    }

    .slider_section_3 .casestudy-slider .client-item .content img.slider-logo {
        width: 120px;
        margin: 0 auto;
    }

    .slider_section_3 .casestudy-slider .client-item .content {
        visibility: visible;
    }


    .slider_section_3::after,
    .slider_section_3::before {
        content: "";
        width: 40px;
    }


    .solutions-banner .banner p {
        margin: 0px auto 0px;
        width: 100%;
        text-align: center;
    }

    .book_demo_register_now .blue_bg {
        padding: 6px 20px;
        font-size: 14px;
        line-height: 30px;
    }



}