

.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;
        }

        .owl-next {
            position: absolute;
            top: 30%;
            right: 0%;
            z-index: 3;
            width: 40px;
        }
    }

}

.slider_section_3 .casestudy-slider {
    margin-top: 100px;

    .client-item {
        transition: all 0.3s ease-in-out;

        .content {

            transition: all 0.3s ease-in-out;
            visibility: hidden;
            margin-top: 20px;
			padding-left: 15px;

            h6 {
                font-weight: 500;
                font-size: 18px;
                text-align: left;
                color: #A8A8A8;
				margin-bottom: 8px;
            }

            p {
                font-weight: 500;
                font-size: 16px;
                text-align: left;
                color: #A8A8A8;
				text-transform: capitalize;
            }
			img.slider-logo{
				width: 120px;
				margin: 0;
			}
        }

        img {
            filter: grayscale(100%);
            width: 90%;
            margin: auto;

        }

        &:hover {
            .content {
                visibility: visible;
            }

            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;
}


@media screen and (max-width:767px) {
	

.slider_section_1{
	overflow: hidden;
}	

.slider_section_3 .casestudy-slider {
    margin-top: 40px;

    .client-item {
        transition: all 0.3s ease-in-out;

        .content {

            h6 {
                text-align: center;
            }

            p {
                text-align: center;
            }
			img.slider-logo{
				width: 120px;
				margin: 0 auto;
			}
        }


    }
}
	
	
	
}