.gradient-background-mob{
    background: var(--primary-gradient);
}

.hero-slide {
    background-color: var(--primary-color-light);
    overflow-x: hidden;
    padding: 10px 0 10px 0;
}

.hero-slide .track {
    display: flex;
    gap: 80px;
    will-change: transform;
    animation: marquee 10s linear infinite;
}

.hero-slide img {
    height: 100px;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.cta {
    background: url("../img/cta-bg.gif") center center / cover no-repeat fixed;
    padding: 40px 0;
    margin-top: 80px;
    color: var(--primary-white);
}

.cta h1 {
    text-align: center;
    font-size: 38px;
    font-weight: 600;
}

.cta p {
    color: var(--primary-para-color);
    text-align: center;
    font-size: 16px;
}

.cta .btn-container {
    margin: 28px auto;
    width: fit-content;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

@media (max-width:500px) {
    .cta .btn-container {
        margin-left: 18px;
    }

    .cta h1 {
        line-height: 1;
        margin-bottom: 16px;
    }
}

.cta .btn-container .chat-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta .btn-container .chat-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 44px;
    width: 44px;
    border: 1px solid;
    border-radius: 50%;
    color: var(--primary-white);
    transform: rotate(90deg);
}

.cta .btn-container .chat-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--primary-white);
}

.cta .btn-container .chat-info div {
    color: var(--primary-color-light);
    font-size: 1.125rem;
}

.cta .btn-container .chat-info a {
    font-size: 0.875rem;
    text-decoration: none;
}

.cta .star-review {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
    width: fit-content;
}

.book-wrap {
    width: 100%;
    aspect-ratio: 2 / 3;
    position: relative;
    transform-style: preserve-3d;
    transition: all ease-out 0.6s;
}

.book-wrap:hover {
    transform: rotateY(20deg);
}

.book {
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.side {
    height: 100%;
    width: 30px;
    background-size: cover;
    background-position: center center;
    position: absolute;
    left: 0;
    top: 0;
    transform: rotateY(-90deg) translateX(-30px);
    transform-origin: left;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}

.testimonials {
    margin-top: 90px;
}

.testimonials>h1 {
    margin: 0 auto;
    width: fit-content;
    display: flex;
    align-items: center;
    font-size: 32px;
    line-height: 1.3;
    font-weight: 600;
}

.testimonials h1 img {
    margin: 0 5px;
}

.testimonials>p {
    color: var(--primary-para-dark);
    font-size: 16px;
    margin: 5px auto 0 auto;
    text-align: center;
    width: 70%;
}

@media (max-width: 500px) {
    .testimonials h1 img {
        display: none;
    }

    .testimonials>h1 {
        font-size: 36px;
    }

    .testimonials>p {
        width: 95%;
        font-size: 20px;
        text-align: left;
        margin-top: 10px;
    }

}

.testimonials .swiper .testimonial {
    padding-top: 80px;
    padding-bottom: 60px;
}

.testimonials .swiper .testimonial .cont {
    position: relative;
    padding: 46px 25px 25px 25px;
    box-shadow: rgba(0, 0, 0, 0.07) 5px 6px 30px;
    border: 1px solid #bbbecc;
    border-radius: 5px;
}

.testimonials .testimonial .initials {
    height: 70px;
    width: 70px;
    background-color: var(--primary-color);
    box-shadow: rgba(0, 0, 0, 0.16) 8px 9px 30px;
    color: var(--primary-white);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 500;
    position: absolute;
    top: -35px;
    left: 15px;
}

.testimonials .testimonial h1 {
    font-size: 20px;
    font-weight: 500;
}

.testimonials .testimonial p {
    font-size: 14px;
    height: 150px;
    overflow-y: scroll;
    margin: 12px 0;
    padding: 0 15px 0 0;
    color: var(--primary-para-dark);
}

.testimonials .testimonial .star-trust {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

.testimonials .testimonial .star-trust i {
    color: gold;
}

.form-section {
    margin-top: 80px;
}

.form-section h1 {
    font-size: 40px;
    font-weight: 600;
    text-align: center;
}

.form-section p {
    text-align: center;
    color: var(--primary-para-dark);
}

.form-section p a {
    color: var(--primary-color);
}

.form-section form {
    margin: 22px auto 0 auto;
}

@media (min-width: 500px) {
    .form-section form {
        width: 75%;
    }
}

.form-section form>*+* {
    margin-top: 14px;
}

.form-section form input,
.form-section form textarea {
    display: inline-block;
    padding: 10px 15px;
    width: 100%;
    color: gray;
    border: 1px solid gray;
    border-radius: 3px;
}

footer {
    position: relative;
    background: linear-gradient(to right, #1C2B59, #1C2B59, #BE9A52);
    color: white;
    padding: 50px 0;
    overflow: hidden;
    margin-top: 80px;
}

footer .theme-section {
    display: grid;
    gap: 10px;
    position: relative;
    z-index: 10;
}

footer .logo h1 {
    font-size: 32px;
    font-weight: 500;
}

footer .logo p {
    color: var(--primary-para-color);
    margin-top: 12px;
    font-size: 15px;
}

footer .logo>div {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 23px;
    margin-top: 20px;
}

footer .logo>div>div {
    height: 50px;
    width: 50px;
    border: 2px solid var(--primary-white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer .payment ul {
    margin-top: 30px;
}

footer .payment ul>*+* {
    margin-top: 14px;
}

footer .payment li {
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width:500px) {
    footer .theme-section {
        row-gap: 50px;
    }
}

@media (min-width:500px) {
    footer .theme-section {
        grid-template-columns: repeat(10, minmax(0, 1fr));
    }

    footer .logo {
        grid-column: span 3 / span 3;
    }

    footer .payment {
        grid-column: span 3 / span 3;
        width: fit-content;
        margin: 0 auto;
    }

    footer .services {
        grid-column: span 4 / span 4;
    }

    footer .services div {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

footer .services h1 {
    font-size: 28px;
    font-weight: 500;
}

footer .services div {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 10px;
    font-size: 15px;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.btn-container {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.btn-container .chat-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-container .chat-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 44px;
    width: 44px;
    border: 1px solid;
    border-radius: 50%;
    color: black;
    transform: rotate(90deg);
}

.btn-container .chat-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: black;
}

.btn-container .chat-info div {
    color: var(--primary-color);
    font-size: 1.125rem;
}

.btn-container .chat-info a {
    font-size: 0.875rem;
    text-decoration: none;
}