/* Header Css  */
.site-header {
    position: absolute;
    width: 100%;
    z-index: 99;
}

.site-header .mobile-header {
    position: fixed;
    width: 50%;
    height: 100vh;
    top: 0;
    right: 0;
    padding: 100px 40px 20px;
    background-color: var(--extra-color-1);
    min-height: 100%;
    transform: translateX(100%);
    transition: 0.2s;
    z-index: 9999;
}

.header-logo .logo-here {
    /* max-width: 300px;
    height: 160px; */
    object-fit: cover;
    width: 100%;
}

.cell-no:hover {
    color: var(--secondary-color);
}


@media (min-width: 1600px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1600px;
    }
}

@media (max-width: 991px) {
    .site-header .mobile-header.active {
        transform: translateX(0);
    }
}


/* Header Css  */

/* Banner Section Start Here */
.banner::after {
    content: "";
    position: absolute;
    background-image: url(../img/banner-bottom.png);
    background-repeat: no-repeat;
    width: 100%;
    height: 130px;
    bottom: -16px;
    background-size: cover;
    z-index: 9;
}

.banner-inner-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banner-wrapper {
    display: flex;
    justify-content: center;
    align-items: start;
    /* margin: auto; */
}

.banner-icon {
    background: transparent;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 50%;
}

.banner-icon:hover {
    background: #bb101642;
    color: var(--primary-color);
    backdrop-filter: blur(5px);
}

.banner-icon i {
    font-size: 22px;
}

.scroll-down-wrapper {
    bottom: -30px;
    z-index: 9999;
    right: 10px;
}

.scroll-down-wrapper .scrolldown-btn {
    background: var(--body-color);
    padding: 15px;
    border-radius: 30px;
}

/* Banner Section End Here */

/* basketball-section Css  */
.basketball-wrapper {
    border: 1px solid transparent;
    border-radius: 10px;
}

.basketball-wrapper:hover {
    border-color: #5d5858;
}

.basketball-wrapper .basketball-img {
    flex: 0 0 20%;
}

/* basketball-section Css  */

/* about-section Css  */

.about-section {
    padding: 80px 0px 110px;
    z-index: 9;
}

.about-img-wrapper figure:hover img.img-fluid {
    transform: scale(1.1);
}

.cell-no:hover {
    color: var(--secondary-color);
}

.about-section::before {
    content: "";
    position: absolute;
    background-image: url(../img/about-left.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 450px;
    height: 450px;
    top: 0;
    left: 0;
    z-index: -1;
}

.about-section::after {
    content: "";
    position: absolute;
    background-image: url(../img/about-right-img.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 300px;
    height: 450px;
    bottom: 0;
    right: 0;
}

/* about-section Css  */

/* working-section Css  */
.working-section {
    background-image: url(../img/working-bg.png);
}

.working-li {
    position: relative;
}

.working-li::before {
    content: "";
    position: absolute;
    background: var(--secondary-color);
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: block;
    left: -25px;
    top: 5px;
}

/* working-section Css  */

/* provisional-section Css  */
.provisional-section {
    background-image: url(../img/provisional-bg.png);
}

.provisional-section .table {
    border-collapse: separate;
    border-spacing: 20px;
}

.provisional-section .table thead tr th {
    border: 0;
}

.provisional-section .table tbody .table-left {
    background: var(--secondary-color);
}

.provisional-section .table tbody .table-left:hover {
    background: var(--extra-color-1);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.provisional-section .table tbody .table-common {
    background: #322d2f69;
    padding: 20px 50px;
    backdrop-filter: blur(3px);
}

.provisional-section .table tbody .table-common:hover {
    background: #51381887;
}

.provisional-section .table tbody tr td {
    padding: 20px 30px;
    border-radius: 20px;
    vertical-align: middle;
    border: 0;
}

/* provisional-section Css  */

/* video-section Css  */
.video-section:after {
    content: "";
    position: absolute;
    background-image: url(../img/video-bottom.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    width: 100%;
    height: 100%;
    top: 50%;
    z-index: -1;
}

/* video-section Css  */

/* client-section Css  */
.client-slider .slick-slide {
    /* background-image: url(../img/client-bg.png); */
    background-repeat: no-repeat;
    height: 100%;
    background-size: contain !important;
}

.client-slider .slide-1 {
    background-image: url(../img/client-bg.png);
}

.client-slider .slick-slide {
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    height: 410px;
}

.client-slide {
    margin: 0px 30px;
}

.client-slider {
    margin-top: 50px;
}

.client-slider .slide-2 {
    background-image: url(../img/client-bg2.png);
    background-repeat: no-repeat;
    width: 100%;
    background-size: cover;
}

.client-slider .slick-track {
    margin-top: 50px;
    height: 510px;
}

.client-slider .slick-current {
    background-image: url(../img/client-bg1.png);
    background-repeat: no-repeat;
    width: 100%;
    background-size: cover;
    transform: scale(1.2);
    height: 480px;
}

/* client-section Css  */

/* gallery-section Css  */
.gallery-section .gallery-slider .gallery-slide {
    margin: 0px 20px;
}

.gallery-img img.img-fluid {
    border-radius: 20px;
}

/* gallery-section Css  */

/* event-section Css  */
.event-section::after {
    content: "";
    position: absolute;
    background-image: url(../img/event-right.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 600px;
    height: 600px;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.event-img-wrapper:before {
    content: "";
    position: absolute;
    background-image: url(../img/event-circle.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    background-position: center;
    height: 730px;
    display: block;
    z-index: -1;
}

/* event-section Css  */

/* footer Css  */
footer {
    background-image: url(../img/footer-bg.png);
    padding: 180px 0px 0px;
}

/* footer Css  */