* {
    box-sizing: border-box;
}


#scroll-button {
    display: block;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: var(--bs-purple);
    color: white;
    cursor: pointer;
    padding: 15px;
    width: 100%;
    height: 50px;

}

.side-img {
    overflow-x: scroll;
}

/* scroll top  */

/* additional  */
/* .additional {
    z-index: 9;
    position: fixed;
    right: 0;
    top: 50%;
    width: 200px;
    height: 50px;
}

.calls,
.mes,
.pdf {
    position: relative;
    right: -150px;
    transition: 0.5s;
    background-color: white;
    height: 50px;
}

.add-img {
    width: 50px;
    height: 50px;
    background-color: var(--bs-purple);
    display: flex;
    justify-content: center;
    align-items: center;
}

.add-img i {
    font-size: 1.8rem;
}

.additional-content h5 {
    margin-bottom: 2px;
}

.calls:hover,
.mes:hover,
.pdf:hover {
    right: 0;
} */


/* additional ends  */

header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;

}

.logo img {
    height: 50px;
}

.brand-logo {
    align-items: center;
}

.brand-logo img {
    margin-left: 10px;
}

button {
    height: fit-content;
}

header li a {
    font-size: 1.2rem !important;
}
/* 
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: var(--bs-purple);
    font-weight: 600;
}

.nav-link:focus,
.nav-link:hover {
    color: var(--bs-gray-100) !important;
    background-color: var(--bs-purple);
} */

a {
    border-radius: 5px;

}

/* header ends  */

main {
    margin-block: 60px;
}

.margin_top-100 {
    margin-top: 100px !important;
}
/* 
.carouselExampleCaptions,
.carousel-inner,
.carousel-item,
.carousel-item img {
    height: 310px;
} */

.carousel button {
    height: 100%;
}

/* banner ends  */
.tie-up {
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
}

.tie-up img {
    width: 90px;
}

/* tie up ends  */

.justify {
    text-align: justify;
}

.parallax-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;

}

.parallax-container {
    height: 350px;
    position: relative;
    color: white;
    text-align: center;
}

.parallax {
    background-image: url("assets/images/background.jpeg");
    min-height: 350px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.prallax-wrapper {
    width: 100%;
    height: 350px;
    background-color: #5931967d;
}

.video-btn {
    width: 50px;
    aspect-ratio: 1;
    position: relative;
}

.spins-grow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    animation: video-toggle-animate 1.9s linear 0s infinite;
    background-color: #fff;
    border-radius: 50%;
}

.modal-container {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);

}

.modal-container.active {
    display: block;
}

#close-modal {
    float: right;
}

/* parallax ends  */


.products {
    text-align: center;
    margin-block: 50px;
}

.products-wrapper {

    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
}

.cards {
    padding: 10px;
    aspect-ratio: 1;
    overflow: hidden;
}

.card-wrapper {
    height: 100%;
    border: 10px solid lightgray;
}

.cards img {
    width: 100%;
    height: 75%;
}

.card-content {
    background-color: gray;
    height: 25%;
    padding: 10px;
    color: white;
}

/* products ends */


.why {
    background-image: url(assets/images/background3.png);
    background-size: cover;
    background-repeat: no-repeat;
    color: white;
}

.line {
    width: 50px;
    height: 5px;
}

.line.first {
    background-color: var(--bs-purple);
}

.line.second {
    background-color: rgb(126, 105, 218);
}

.main-hand {
    aspect-ratio: 1;
}

.main-hand img {
    aspect-ratio: 1;
    width: 100%;
}

.list-img.col-2 {
    padding-right: 0;
}

.list-img img,
.clients img {
    width: 100%;
}

.list-img i {
    font-size: 1.8rem;
}

.message {
    color: var(--bs-purple);
}



/* our clients  */
.clientsContainer {
    overflow: hidden;
}

.clients-wrapper {
    position: relative;
    width: 1620px;
}

.clients {
    width: 130px !important;
    flex: 1;
    height: 50px;
    border: 1px solid gray;
}

.clients img {
    height: 100%;
}


/* footer end */

/* media  */
@media (max-width: 991px) {
    nav {
        position: relative;
    }

    header .brand-logo {
        flex-direction: column-reverse;
        width: fit-content;
    }

    .flex-columnss {
        display: flex;
        width: 300px;
        flex-direction: column-reverse !important;
        position: absolute;
        right: 0px;
        top: 98px;
        justify-content: flex-end;
        background: rgb(249, 248, 252);
        padding-left: 12px;
        /* border-top: 1px solid var(--bs-purple); */
        height: 100vh !important;
        z-index: 1000;
    }
}

@media (max-width: 540px) {
    header .brand-logo {
        display: none !important;
        background-color: red;
    }

}

@keyframes video-toggle-animate {
    0% {
        width: 70px;
        height: 70px;
        opacity: .8;
    }

    100% {
        width: 150px;
        height: 150px;
        opacity: 0;
    }
}