/* Animations */
@keyframes jump {
    0% {
        justify-content: start;
        align-items: flex-start;
    }

    100% {
        justify-content: end;
        align-items: flex-end;
    }
}

@keyframes fade {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

@keyframes slide {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* end */

/* Scrollbar */
::-webkit-scrollbar {
    background-color: transparent;
    width: 0.3rem;
}

::-webkit-scrollbar-button {
    display: none;
}

::-webkit-scrollbar-thumb {
    background-image: linear-gradient(45deg, #cc00ff, #ff009d);
    border-radius: 1rem;
}

::-webkit-scrollbar-thumb:hover {
    background-image: linear-gradient(125deg, #cc00ff, #ff009d);
}

/* end */

* {
    margin: 0;
    padding: 0;
    font-size: 100%;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, system-ui, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: rgb(255, 255, 255);
    overflow-x: hidden;
    overflow-y: overlay;
    scrollbar-gutter: stable both-edges;
    user-select: none;

    height: 100vh;
    width: 100vw;
}

header {
    z-index: 5;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    width: 100vw;
    box-sizing: border-box;
    padding: 0.5rem 1.4rem;

    /* background-color: rgba(34, 34, 34, 0.281); */
    background-image: linear-gradient(45deg, #ffa600a2, #ffffff7c, #00ff5579);
}

header .logo {
    height: 100%;
    width: 8.4rem;
    animation: fade 0.5s;
}


header ul {
    display: flex;
    flex-direction: row;
    animation: fade 0.5s;
}

header ul li {
    list-style: none;
    margin-right: 1.2rem;
}

header ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: 0.5s;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    color: black
}

header ul li a img {
    height: 2rem;
    width: 2rem;
    animation: fade 0.5s;
}

header ul li a:hover {
    background-color: rgba(255, 255, 255, 0.568);
    border-radius: 0.6rem;
}

header #menu {
    display: none;
}

header #menu img {
    padding: 0.6rem;
    width: 1.4rem;
    height: 1.4rem;
}

footer {
    display: flex;
    flex-direction: column;
    color: white;
    box-sizing: border-box;
    padding: 2rem;
    background-color: rgb(39, 39, 39);

    margin-top: 6rem;
}

footer .content {
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: center;
}

footer .info {
    padding: 1rem;

    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    width: 60vw;
    border-radius: 0.4rem;

}

footer .info {
    font-size: 1.2rem;
}

footer .info h1 {
    text-decoration: underline;
    font-size: 1.4rem;
}

footer .info ul {
    margin-top: 1rem;
    display: flex;
    flex-direction: row;
    list-style: none;
}

footer .info img {
    font-size: 1.2rem;
    height: 2rem;
    width: 2rem;
    margin-right: 1rem;
}

footer .info p {
    margin-top: 0.4rem;
    color: white;
}

footer .info p a {
    text-decoration: none;
    color: white;
}

footer iframe {
    background-color: white;
    border-radius: 0.4rem;
    width: 380px;
    height: 580px;
    margin-bottom: 1rem;
}

#sidebar {
    z-index: 999;

    display: none;
    position: fixed;
}

#home,
#slider-sec,
#our-services {
    height: 100%;
    width: 100%;

    background-color: white;
    background-size: cover;
    background-position: center;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
}

#home #background-video,
#slider-sec #background-video,
#our-services #background-video {
    pointer-events: none;

    object-fit: cover;
    height: 100vh;
    width: 100vw;
    position: absolute;
    filter: blur(0.2rem);
    opacity: 0.8;
}

#home .content,
#slider-sec .content,
#our-services .content {
    color: rgb(0, 0, 0);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    text-align: center;

    animation: fade 1s;

}

#home .content .brand-name-header {
    font-size: 6rem;
    padding: 2rem;

    background: linear-gradient(to right, #ff0000, #ff9900);

    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;


}

#home .content .text-box {
    padding: 1rem;
    width: 80%;
    /* padding: 1rem; */
}

#home .content .text-box h3 {
    font-size: 1.6rem;
}

#home .content .text-box .subtitle {
    font-size: 2rem;
}

#slider-sec .content .sliding-text-container {
    overflow: hidden;
    width: 100vw;
    margin-bottom: 2rem;
}

#slider-sec .content .sliding-text-container .films,
#slider-sec .content .sliding-text-container .ads,
#slider-sec .content .sliding-text-container .reels-shorts,
#slider-sec .content .sliding-text-container .long-format,
#slider-sec .content .sliding-text-container .print-media {
    white-space: nowrap;
    animation: slide 10s ease-out infinite;
    transform: translateX(100%);

    font-size: 4rem;
}

#slider-sec .content .sliding-text-container .films {
    animation-delay: 0s;
}

#slider-sec .content .sliding-text-container .long-format {
    animation-delay: 0.5s;
}

#slider-sec .content .sliding-text-container .reels-shorts {
    animation-delay: 1s;
}

#slider-sec .content .sliding-text-container .ads {
    animation-delay: 1.5s;
}

#slider-sec .content .sliding-text-container .print-media {
    animation-delay: 1.5s;
}

#home .jumping-btn,
#slider-sec .jumping-btn {
    height: 1rem;
    margin-top: 3rem;
    padding: 1rem;
}

#home .jumping-btn a img,
#slider-sec .jumping-btn a img {
    height: 2rem;
    width: 2rem;
    filter: invert(100%);
    border-radius: 50%;
}

#home .jumping-btn a img:hover,
#slider-sec .jumping-btn a img:hover {
    background-color: rgba(109, 109, 109, 0.568);
}

#our-services .content .services {
    font-size: 4rem;
    padding: 1rem;

    background: linear-gradient(to right, #363636, #929292);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#our-services .content .text-box {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

#our-services .content .service-list {
    /* background-color: red; */
    margin-top: 4rem;
    width: 100%;
    height: 100%;
}

#our-services .content .service-list ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

#our-services .content .service-list ul .card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    width: 18%;
    height: 26rem;

    padding: 2rem 1rem;
    border-radius: 1rem;
    background-color: #313131;

    list-style: none;
    margin: 1rem;

    box-shadow: 0.6rem 0.6rem #ffff00c7;
}

#our-services .content .service-list ul .card img {
    height: 4rem;
    width: 4rem;
    margin: 0.5rem 0;
}

#our-services .content .service-list ul .card h3 {
    color: white;
    font-size: 1.4rem;
    font-weight: bold;
    margin: 0.5rem 0;
}


#our-services .content .service-list ul .card p {
    font-size: 1.2rem;
    color: white;
    text-align: center;
}

/* Media queries - Mobile */
@media screen and (max-width: 1300px) {
    header {
        width: 100vw;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 0.5rem 1rem;
    }

    header .logo {
        height: 100%;
        width: 5.4rem;
    }

    header ul {
        align-items: center;
    }

    header ul li a {
        padding: 0.2rem;
    }

    header .mid-ul {
        display: none;
    }

    header #menu {
        display: block;
    }

    header #menu a {
        font-weight: bold;
        font-size: 1rem;
        color: rgb(78, 78, 78);
        text-decoration: none;
    }

    header ul li a img {
        height: 1.6rem;
        width: 1.6rem;
    }

    footer {
        display: flex;
        flex-direction: column;
        align-self: center;
        justify-content: center;
        padding: 1rem;
        font-size: 0.8rem;
    }

    footer .content {
        width: 100%;
        display: flex;
        flex-direction: column;
        /* align-self: center; */
        /* justify-content: center; */
    }

    footer .content iframe {
        width: 90vw;
    }

    footer .content .info {
        width: 90vw;
        align-self: center;
        justify-content: center;
        margin-bottom: 2rem;
    }

    #home .content .brand-name-header {
        font-size: 3.4rem;
    }

    #home .content .text-box {
        padding: 0.4rem;
        width: 90%;
    }

    #our-services .content .text-box {
        width: 90%;
    }


    #home .content .text-box h3,
    #our-services .content .text-box h3,
    #our-services .content .service-list ul li h3 {
        font-size: 1rem;
    }


    #slider-sec .content .sliding-text-container .films,
    #slider-sec .content .sliding-text-container .ads,
    #slider-sec .content .sliding-text-container .reels-shorts,
    #slider-sec .content .sliding-text-container .long-format,
    #slider-sec .content .sliding-text-container .print-media {
        animation: slide 3s linear infinite;
        font-size: 2rem;
    }

    #slider-sec .content .sliding-text-container .films {
        animation-delay: 0s;
    }

    #slider-sec .content .sliding-text-container .long-format {
        animation-delay: 0.5s;
    }

    #slider-sec .content .sliding-text-container .reels-shorts {
        animation-delay: 1s;
    }

    #slider-sec .content .sliding-text-container .ads {
        animation-delay: 1.5s;
    }

    #slider-sec .content .sliding-text-container .print-media {
        animation-delay: 1.5s;
    }

    #our-services .content .services {
        font-size: 2rem;
    }

    #our-services .content .service-list {
        margin-top: 2rem;
    }

    #our-services .content .service-list ul {
        text-align: start;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }


    #our-services {
        width: 100vw;
        height: min-content;
        padding-top: 2rem;
    }

    #our-services .content .service-list ul .card {
        width: 80%;
        height: max-content;
        margin: 1rem;
    }

    #our-services .content .service-list ul li h3 span {
        font-weight: normal;
        font-size: 1rem;
    }

    #sidebar {
        flex-direction: column;

        position: -ms-page;
        right: 0;

        height: 100vh;
        width: 60%;

        box-sizing: border-box;
        padding: 1rem 1.6rem;

        background-color: rgb(53, 53, 53);
    }

    #sidebar .close-icon {
        display: flex;
        justify-content: flex-end;
        /* background-color: red; */
    }

    #sidebar .close-icon #closeBtn {
        height: 4rem;
        width: 4rem;

        color: white;
        font-weight: bold;
    }

    #sidebar .close-icon #closeBtn img {
        height: 1.2rem;
        width: 1.2rem;
    }

    #sidebar .content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    #sidebar .content .end-ul {
        margin-top: 1rem;
    }

    #sidebar ul {
        display: flex;
        flex-direction: column;
    }

    #sidebar ul li {
        list-style: none;
        margin-bottom: 1rem;
    }

    #sidebar ul li a {
        text-decoration: none;
        text-align: start;

        color: rgb(255, 255, 255);
        font-weight: bold;
        font-size: 1.2rem;
    }
}