@font-face {
    font-family: Slussen;
    src: url(../fonts/Slussen-Compressed-Black.woff2) format("woff2");
    font-display: swap;
    font-weight: 900;
    font-stretch: compressed;
}

@font-face {
    font-family: Slussen;
    src: url(../fonts/Slussen-Expanded-Black.woff2) format("woff2");
    font-display: swap;
    font-weight: 900;
    font-stretch: expanded;
}

@font-face {
    font-family: Slussen;
    src: url(../fonts/Slussen-Regular.woff2) format("woff2");
    font-display: swap;
    font-weight: 400
}

@font-face {
    font-family: Slussen;
    src: url(../fonts/Slussen-Bold.woff2) format("woff2");
    font-display: swap;
    font-weight: 700;
}

@font-face {
    font-family: "Anton", sans-serif;
    src: url(../fonts/Anton-Regular.ttf) format("ttf");
    font-display: swap;
    font-weight: 700;
}

/**global css start**/
* {
    margin: 0;
}

html {
    scroll-behavior: initial;
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden;
    overflow-y: scroll;
}

html,
body {
    width: 100%;
    min-height: 100%;
}

body {
    font-family: Slussen;
    font-size: 16px;
    font-weight: 400;
    background-color: #000;
    color: #fff;
    background-image: url(../images/bg.avif);
    background-size: contain;
    background-position: center;
    background-repeat: repeat;
    background-attachment: fixed;
}

h2 {
    font-size: 60px;
    font-weight: 900;
    line-height: 85%;
    border-left: 3px solid #ff98a2;
    padding: 25px;
    margin: 0
}

h2 span {
    display: block;
}

h3 {
    font-size: 20px;
    font-stretch: expanded;
    /* color: #ff98a2; */
    line-height: 100%;
}

h2,
h3,
h4 {
    text-transform: uppercase;
}

.title {
    font-size: 36px;
    text-transform: uppercase;
    font-weight: 800;
    color: #fff;
}

.container {
    width: 95%;
    margin: auto;
}

.cursor {
    width: 25px;
    height: 25px;
    border: 2px solid #fff;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.1s ease;
    display: none;
}

section {
    padding: 70px 0;
}

.col {
    width: 50%;
}

/***loader****/
/* Loader wrapper to cover the full page */
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Spin animation */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Zoom-out animation when closing */
@keyframes smoothZoomOut {
    from {
        transform: scale(1);
        opacity: 1;
    }

    to {
        transform: scale(0.8);
        opacity: 0;
    }
}

.zoom-out {
    animation: smoothZoomOut 0.5s ease-out forwards;
}

/* Smooth zoom-in animation for loading the next page */
@keyframes smoothZoomIn {
    from {
        transform: scale(1.2);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.zoom-in {
    animation: smoothZoomIn 0.5s ease-in forwards;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 5000000s ease-in-out 0s;
}

/* Transition for smooth animation */
.detail-section,
body {
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.common-btn {
    background: #f51c20;
    padding: 50px;
    display: block;
    border-radius: 24px;
    text-align: center;
    transition: opacity 0.3s ease;
    text-decoration: none;
    transition: transform .4s;
    margin-top: 50px;
    border: none;
}

.common-btn-text {
    position: relative;
    z-index: 2;
    border: none;
    font-size: 4vw;
    text-transform: uppercase;
    font-weight: 800;
    transition: opacity 0.3s ease;
    color: #fff;
    cursor: pointer;
}

.button-section {
    position: relative;
    display: table;
    margin: 0 auto;
}

.buttonglatch-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    z-index: revert-layer;
    overflow: hidden;
}

.common-btn:hover {
    transform: scale(.97);
}

.common-btn:hover .common-btn-text {
    -webkit-animation-duration: .5s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-name: shake;
    -webkit-animation-timing-function: linear;
    -webkit-transform-origin: 50% 100%;
    display: block;
}

.common-btn:hover .buttonglatch-video {
    opacity: 0.1;
}

@keyframes shake {
    0% {
        -webkit-transform: translate(2px, 1px)
    }

    10% {
        -webkit-transform: translate(-1px, -2px)
    }

    20% {
        -webkit-transform: translate(-3px)
    }

    30% {
        -webkit-transform: translateY(2px)
    }

    40% {
        -webkit-transform: translate(1px, -1px)
    }

    50% {
        -webkit-transform: translate(-1px, 2px)
    }

    60% {
        -webkit-transform: translate(-3px, 1px)
    }

    70% {
        -webkit-transform: translate(2px, 1px)
    }

    80% {
        -webkit-transform: translate(-1px, -1px)
    }

    90% {
        -webkit-transform: translate(2px, 2px)
    }

    to {
        -webkit-transform: translate(2px, 1px)
    }
}

.light-yellow {
    color: #f4f3e3 !important;
    opacity: 9 !important;
}

.relative {
    position: relative;
}

/**global css End**/
/**vertical section css start**/
#vertical {
    height: 200vh;
    width: 100vw;
}

.vertical__content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
}

.vertical__content .col_left {
    height: 100%;
    width: 40%;
}

.vertical__content .col.col_right {
    width: 50%;
}

.vertical__item:not(:last-child) {
    margin-bottom: 110px;
}

/**vertical section css End**/
/**horizontal section css start**/
#horizontal {
    padding: 100px 0;
}

.horizontal__content {
    display: flex;
}

.horizontal__item {
    border: 1px solid #efefef;
    padding: 200px 150px;
}

.horizontal__item:not(:last-child) {
    margin-right: 50px;
}

.horizontal__num {
    font-size: 80px;
    font-weight: 900;
    font-stretch: condensed;
    /* color: #ff98a2; */
}

/**horizontal section css End**/
/***header css***/
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 5;
    transition: all 0.3s ease;
}

.header__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo img {
    width: 150px;
}

.logo {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    opacity: 1;
    transform: translateY(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.logo:hover {
    color: #fff;
}

.hamburger {
    width: 35px;
    height: 60px;
    position: relative;
    cursor: pointer;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 5px;
    width: 100%;
    background: #fff;
    opacity: 1;
    transform: translateY(20px);
    transition: all 0.3s ease;
    border-radius: 0;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 14px;
}

.hamburger span:nth-child(3) {
    top: 18px;
}

@media (max-width: 768px) {
    .header__content {
        flex-direction: column;
        align-items: center;
    }

    .header__logo,
    .header__menu {
        margin-bottom: 0;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 24px;
    }

    .hamburger {
        width: 25px;
        height: 18px;
    }
}

/***sidebar css start***/
.slide-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    transition: right 0.5s ease;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide-menu.active {
    right: 0;
}

.menu-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    transform: scale(0);
    transition: transform 0.5s ease;
}

.menu-content {
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.slide-menu.active .menu-content {
    opacity: 1;
    transform: scale(1);
}

/* .close-btn {
    position: absolute;
    top: 35px;
    right: 48px;
    width: 30px;
    height: 30px;
    cursor: pointer;
}
*/
.close-btn img {
    width: 36px;
}

.close-btn {
    position: absolute;
    top: 42px;
    right: 40px;
    width: 37px;
    height: 30px;
    cursor: pointer;
}

.close-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    position: absolute;
    top: 50%;
    transform-origin: center;
}

.close-btn span:first-child {
    transform: rotate(45deg);
}

.close-btn span:last-child {
    transform: rotate(-45deg);
}

.slide-menu ul {
    list-style: none;
    padding: 0;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* width: 275px;
    */
}

.slide-menu ul li {
    margin: 20px 0;
    position: relative;
    cursor: pointer;
}

.slide-menu ul li video.tab-categoary-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 9;
    overflow: initial;
    display: block;
}

.slide-menu ul li:hover video.tab-categoary-video {
    opacity: 1;
}

.slide-menu ul li a {
    color: #fff;
    font-size: 48px;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 800;
    z-index: 99;
}

.slide-menu ul li a:hover {
    color: #ff98a2;
}

@media (max-width: 768px) {
    .slide-menu ul li a {
        font-size: 20px !important;
    }
}

/***sidebar css End***/
/**banner section css start***/
.video-container {
    position: relative;
    height: 100vh;
    /* height: 100%;
    */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -1;
}

/* Glitch Effect */
.glitch {
    font-size: 34vw;
    color: #f51c20;
    position: relative;
    text-transform: uppercase;
    display: inline-block;
    font-weight: 800;
    padding: 80px 0;
}

.glitch.text-md {
    font-size: 16vw;
    word-spacing: 15px;
}

.content {
    text-align: center;
}

/**banner section css End***/
/* Responsive Typography */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Darkens the video */
}

/* Responsive Styles */
@media screen and (max-width: 768px) {

    /* .glitch {
        font-size: 14vw;
   }
    */
    p {
        font-size: 1rem;
    }
}

.video-container {
    /* background-image: url('../images/banner.gif'); */
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.video-container.about-video {
    background-image: none;
}

/***tab section css start ***/
.links-filter ul {
    list-style: none;
    display: flex;
    gap: 15px;
    justify-content: center;
    padding: 30px 250px;
    /* padding: 100px 250px 0;
    */
    margin-bottom: 50px;
    position: sticky;
    top: 0 !important;
    z-index: 99;
}

.links-filter .tab-buttons.sticky {
    background: linear-gradient(180deg, #000000 23%, transparent);
}

.links-filter ul li a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 2vw;
    font-weight: 800;
    display: flex;
    gap: 8px;
    padding: 0 38px;
}

.links-filter .links-filter-content {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.tab-item {
    width: calc(33% - 40px);
}

.category-detail {
    padding-top: 30px;
}

.links-filter .tab-item-image {
    width: 530px;
    height: 570px;
    overflow: hidden;
    position: relative;
    background-image: url(../images/frame.avif);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 15px;
    transform: rotate(-6deg);
    transition: transform .4s;
    cursor: pointer;
}

.links-filter .tab-item-content:hover .tab-item-image {
    transform: rotate(5deg) translateZ(0) scale(1.05);
}

.links-filter .tab-item-content:hover .btn img {
    filter: brightness(0) invert(1);
}

.links-filter .tab-item-image img {
    width: 95%;
    height: 100%;
    object-fit: cover;
    margin: 0 auto;
    display: block;
}

.links-filter .tab-item-text {
    padding-left: 50px;
    margin-top: 65px;
}

.links-filter .tab-item-text a .date {
    margin-bottom: 15px;
    font-size: 18px;
    color: #fff;
    text-decoration: none;
}

.links-filter .tab-buttons li {
    position: relative;
}

.links-filter .tab-buttons .tab-button {
    position: relative;
    z-index: 2;
}

.links-filter .tab-buttons .tab-categoary-video {
    position: absolute;
    top: 45%;
    left: 45%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    overflow: initial;
}

.links-filter .tab-item-text .title {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all .3s ease-in-out;
    letter-spacing: 0.8px;
}

.links-filter .tab-buttons li:hover .tab-categoary-video,
.links-filter .tab-buttons .tab-button.active+.tab-categoary-video {
    opacity: 1;
}

.links-filter .tab-item-text a {
    text-decoration: none;
}

.links-filter .notifaction {
    font-size: clamp(21px, 3.6666rem, 36px);
    color: #ee1c20;
}

.latest-news .tab-item-text {
    width: 100%;
    max-width: 100%;
}

.fade-up {
    animation: fadeUpAnimation 0.5s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes fadeUpAnimation {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.load-more button.common-btn {
    padding: 20px 30px;
    max-width: fit-content;
    margin: 0 auto;
}

.load-more span.common-btn-text {
    font-size: 3vw;
}

/***tab section css End ***/
.text-animation-content {
    text-align: center;
}

.text-animation-text {
    font-size: 30vw;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0;
}

.text-animation-content {
    overflow: hidden;
}

.lenis-slide-up {
    display: inline-block;
    opacity: 0;
    transform: translateY(50px);
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.lenis-slide-up.show {
    opacity: 1;
    transform: translateY(0);
}

.lenis-slide-down {
    display: inline-block;
    opacity: 0;
    transform: translateY(-50px);
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.lenis-slide-down.show {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .text-animation {
        padding: 25px 0;
    }
}

/***footer section css start***/
.footer {
    padding-bottom: 0;
}

.footer-content {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin: 5px 0 50px;
    flex-wrap: wrap;
}

.footer-content .f-categoary {
    position: relative;
    cursor: pointer;
}

.footer-content .f-categoary-image {
    width: 100%;
    overflow: hidden;
    transition: transform .4s ease-in-out;
}

.footer-content .f-categoary-text {
    position: absolute;
    top: 41%;
    left: 0;
    transform: translate(-50%, -50%);
    text-transform: uppercase;
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    width: 80%;
    right: 0;
    margin: 0 auto;
    z-index: 9;
}

.footer-content .f-categoary-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease-in-out;
}

.footer-content .f-categoary:hover .f-categoary-image img {
    transform: scale(1.075);
    transition: transform .4s ease-in-out;
    cursor: pointer;
}

.bottom-footer {
    display: flex;
    justify-content: space-between;
    padding: 30px 0;
    margin: 0 25px;
    border-top: 1px solid #f51c20;
    gap: 15px;
    flex-wrap: wrap;
}

.bottom-footer ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
    padding-left: 0;
}

.bottom-footer ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
}

.bottom-footer ul li a:hover {
    text-decoration: underline;
}

.f-categoary-video {
    display: block;
    width: 150px;
    opacity: 0;
    transition: transform .4s ease-in-out;
    margin: 0 auto;
}

.footer-content .f-categoary:hover .f-categoary-video {
    opacity: 1;
}

.f-categoary {
    opacity: 0;
    transform: translateY(100px);
    transition: transform 1s ease-in-out, opacity 1s ease-in-out;
    will-change: transform, opacity;
    text-decoration: none;
    color: #fff;
}

.f-categoary.show {
    opacity: 1;
    transform: translateY(0);
}

.f-categoary-image img {
    transition: transform 1s ease-in-out;
}

.f-categoary:hover .f-categoary-image img {
    transform: scale(1.1);
}

body:not(.no-js) .image-wrap {
    transition: 1s ease-out;
    transition-delay: 0.2s;
    position: relative;
    width: auto;
    height: 100%;
    overflow: hidden;
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
    visibility: hidden;
}

body:not(.no-js) .image-wrap img {
    transform: scale(1.3);
    transition: 2s ease-out;
}

body:not(.no-js) .animating .image-wrap {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    visibility: visible;
    transform: skewY(0);
}

body:not(.no-js) .animating img {
    transform: scale(1);
    transition: 4s ease-out;
}

body:not(.no-js) .fadeup {
    opacity: 0;
    transition: 0.4s ease-out;
    transform: translateY(40px);
}

body:not(.no-js) .fading-up {
    opacity: 1;
    transition: 1s ease-out;
    transform: translateY(0px);
    transition-delay: 0.7s;
}

@media screen and (max-width: 576px) {
    .footer-content {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .f-categoary {
        width: 100%;
    }
}

@media screen and (min-width: 577px) and (max-width: 767px) {
    .footer-content {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .f-categoary {
        width: calc(50% - 10px);
    }
}

/****detail pages start***/
.detail-section {
    height: 100%;
    background: #000;
    padding: 0 40px;
}

.ds-content .categoary-detail {
    display: flex;
}

.ds-content .categoary-detail .ds-content-left {
    flex: 0.7 1;
}

.ds-content .categoary-detail .ds-content-right {
    width: 100%;
    flex: 1 1;
}

.detail {
    overflow-y: scroll;
    overflow-x: hidden;
}

.categoary-detail {
    margin-top: 115px;
}

.bg-color {
    background-color: #e2e1d3;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    border-radius: 40px;
}

.card-item-flip {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.card-label {
    top: -8px;
    position: relative;
    margin-bottom: 80px;
    padding-left: 52px;
}

.card-item-flip .card-i-img {
    max-width: 100%;
    width: 100%;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    border-radius: 40px;
}

.card-i-close {
    position: relative;
    top: 10px;
}

.card-i-close img:after {
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
    transform: scaleX(1)
}

.card-i-close img:hover:after {
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
    transform: scaleX(0)
}

.card-i-close img {
    position: relative;
    left: -webkit-calc(100% - 70px);
    left: -moz-calc(100% - 70px);
    left: calc(100% - 70px);
    right: 30px;
    top: 25px;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
    cursor: pointer;
    display: inline-block;
    -webkit-transition: -webkit-transform .4s ease;
    transition: -webkit-transform .4s ease;
    -o-transition: -o-transform .4s ease;
    -moz-transition: transform .4s ease, -moz-transform .4s ease;
    transition: transform .4s ease;
    transition: transform .4s ease, -webkit-transform .4s ease, -moz-transform .4s ease, -o-transform .4s ease;
    z-index: 1;
    cursor: pointer;
}

.card-i-close img:hover {
    -webkit-transform: rotate(1turn);
    -moz-transform: rotate(1turn);
    -ms-transform: rotate(1turn);
    -o-transform: rotate(1turn);
    transform: rotate(1turn)
}

.card-label .card-i-tit-sub {
    font-size: 14px;
    font-weight: 500;
    color: hsla(0, 0%, 7%, .5);
    text-transform: uppercase;
    margin: 0;
}

.card-label .card-i-title {
    font-size: clamp(16px, 4vw + 1rem, 22px);
    font-weight: 400;
    line-height: 1.25;
    margin: 0;
    color: #000;
}

.card-label .card-i-date {
    font-size: 14px;
    font-weight: 500;
    color: #f51c20;
    margin: 0;
}

.card-i-text {
    font-size: clamp(22px, 1.22222rem, 25px);
    font-weight: 400;
    line-height: 1.25;
    margin-bottom: 1.5rem;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    max-width: 800px;
    -webkit-box-pack: end;
    -webkit-justify-content: end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    display: block;
    position: relative;
    text-align: justify;
    margin: 0 auto;
    color: #000;
    padding: 50px;
}

.card-i-text img {
    width: 100%;
}

.card-i-text a {
    color: #121212;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, currentColor), color-stop(98%, currentColor));
    background: -webkit-linear-gradient(top, currentColor 0, currentColor 98%);
    background: -moz-linear-gradient(top, currentColor 0, currentColor 98%);
    background: -o-linear-gradient(top, currentColor 0, currentColor 98%);
    background: linear-gradient(180deg, currentColor 0, currentColor 98%);
    background-position: left 100%;
    background-repeat: no-repeat;
    -webkit-background-size: 100% 1px;
    -moz-background-size: 100% 1px;
    -o-background-size: 100% 1px;
    background-size: 100% 1px;
    display: inline-block;
    display: inline;
    -webkit-transition: -webkit-background-size .35s linear;
    transition: -webkit-background-size .35s linear;
    -o-transition: -o-background-size .35s linear;
    -moz-transition: background-size .35s linear, -moz-background-size .35s linear;
    transition: background-size .35s linear;
    transition: background-size .35s linear, -webkit-background-size .35s linear, -moz-background-size .35s linear, -o-background-size .35s linear;
    text-decoration: none;
}

.card-i-text a:hover {
    -webkit-background-size: 0 1px;
    -moz-background-size: 0 1px;
    -o-background-size: 0 1px;
    background-size: 0 1px;
}

.common-btn-item {
    background-color: #f51c20;
    color: #f4f3e3;
    text-transform: uppercase;
    padding: 10px;
    display: inline-block;
    position: relative;
    left: 35px;
    bottom: 30px;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    top: 20px;
    margin-bottom: 20px;
}

.card-i-heading {
    font-size: clamp(40px, 5vw, 80px);
    text-transform: uppercase;
    font-weight: 800;
    line-height: 1;
    /* max-width: 500px;
    */
    color: #000;
    padding-left: 35px;
    width: calc(100% - 12vw);
}

.social-icon {
    display: -ms-grid;
    display: grid;
    /* right: 72px; */
    right: 38px;
    position: absolute;
    gap: 20px;
    top: 230px;
}

.ds-content {
    position: relative;
}

.social-icon img {
    width: 25px;
    height: 25px;
}

.bg-img {
    display: none;
}

.card-i-text p {
    margin-bottom: 0px;
}

.categoary-text {
    width: calc(100% - 12vw);
    max-width: max-content;
}

/* Add zoom-in animation */
@keyframes zoomIn {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

/* Applied to the image on click */
.zoom-animation {
    animation: zoomIn 0.6s forwards;
}

@media screen and (max-width: 1023px) {
    .bg-img {
        display: block;
        position: -webkit-sticky;
        position: sticky;
        top: -18px;
        margin-top: 80px;
    }

    .bg-img img {
        width: 100%;
        border-radius: 20px;
    }

    .card-item-flip {
        display: none;
    }

    .card-i-close {
        display: block;
    }

    .card-label {
        top: 45px;
    }

    .bg-color {
        margin: 0 !important;
        position: relative;
        bottom: 50px;
        border-radius: 20px;
    }

    /* .social-icon {
        right: 60px;
        top: 45px;
   }
    */
    .card-i-text {
        max-width: none;
        padding: 20px;
    }

    .main-tag .tag-section {
        padding: 0 20px 50px 20px;
        max-width: 100%;
    }

    .card-label {
        margin-bottom: 80px;
        padding-left: 20px;
    }

    .common-btn-item {
        left: 20px;
    }

    .card-i-heading {
        padding-left: 20px;
    }

    .categoary-detail {
        margin-top: 0;
    }

    .detail-section {
        padding: 0 15px;
    }

    .ds-content .categoary-detail {
        flex-direction: column;
    }

    .card-item-flip .card-i-img {
        border-radius: 20px;
    }

    .social-icon {
        /* position: inherit;
        */
        display: flex;
        justify-content: center;
        gap: 15px;
        right: 60px;
        position: absolute;
        top: 40px;
    }

    .footer {
        background: #000;
        z-index: 99;
        position: relative;
    }

    .text-animation {
        background: #000;
        position: relative;
    }

    .detail-section {
        padding: 0;
        position: relative;
        z-index: 99;
    }

    .card-i-close img {
        left: calc(100% - 70px);
        width: 43px;
        top: 23px;
    }

    .social-icon.active {
        right: 98px;
    }

    .social-icon {
        right: 35px;
    }

    .social-icon img {
        width: 30px;
        height: 30px;
    }

    .card-i-close img {
        visibility: hidden;
    }

    .card-i-close.active img {
        visibility: visible;
    }

    .new-loading-screen {
        padding: 0 !important;
    }
}

@media screen and (max-width: 768px) {
    .bg-img {
        margin-top: 80px;
    }

    .card-i-heading {
        font-size: clamp(36px, 5vw, 80px);
    }

    .card-i-text {
        font-size: clamp(18px, 2vw, 22px);
    }

    .card-item-flip {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -moz-box-orient: horizontal;
        -moz-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .card-i-close {
        position: absolute;
        top: 10px;
        right: 20px;
    }

    .card-i-heading {
        padding: 0 20px;
    }

    /* .social-icon {
        padding: 20px;
   }
    */
    .ds-content .categoary-detail {
        flex-direction: column;
    }

    .card-item-flip .card-i-img {
        border-radius: 20px;
    }

    .social-icon {
        /* position: inherit;
        display: flex;
        justify-content: center;
        gap: 15px;
        */
        display: flex;
        justify-content: center;
        gap: 15px;
        top: 30px;
        right: 25px;
    }

    .social-icon.active {
        right: 68px;
    }

    .social-icon img {
        width: 23px;
        height: 23px;
    }

    .card-i-close img {
        visibility: hidden;
    }

    .card-i-close.active img {
        visibility: visible;
    }
}

@media screen and (max-width: 640px) {

    /* .social-icon {
        -ms-grid-columns: 1fr 10px 1fr 10px 1fr;
        grid-template-columns: repeat(3, 1fr);
        position: relative;
        top: -7px;
        left: 0px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        gap: 10px;
        margin: auto;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
   }
    */
    .bg-color {
        border-radius: 20px;
    }

    .detail-section {
        padding: 0;
        position: relative;
        z-index: 99;
    }

    .categoary-text {
        width: calc(100% - 16vw);
        max-width: max-content;
    }
}

@media (max-width: 767px) {
    .card-i-close img {
        left: 4px;
        width: 34px;
        top: 14px;
    }
}

@media screen and (max-width: 576px) {
    .bg-img {
        margin-top: 70px;
    }
}

/***detail pge End***/
/***pagination section css start***/
.pagination {
    margin: 50px 0 0;
    text-align: center;
}

.pagination-button ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.pagination-button li {
    position: relative;
    cursor: pointer;
}

.pagination-link {
    display: inline-block;
    padding: 0.5rem 0;
    color: #cccccc6b;
    text-decoration: none;
    font-size: 36px;
    font-weight: 800;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    width: 50px;
    overflow: unset;
}

.pagination-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 9;
    overflow: initial;
}

.pagination-button li:hover .pagination-video {
    opacity: 1;
}

.pagination-button li:hover a,
.pagination-button li.active a {
    color: #fff;
}

.pagination-button li.active .pagination-video {
    opacity: 1;
}

@media (max-width: 768px) {
    .pagination-button ul {
        gap: 3px;
    }

    .pagination-link {
        font-size: 24px;
        padding: 0.3rem 0.8rem;
        width: fit-content;
    }
}

/***pagination section css end***/
/***latest news section css start***/
.latest-news {
    backdrop-filter: blur(5px) saturate(67%);
    -webkit-backdrop-filter: blur(5px) saturate(67%);
    background-color: rgb(42 41 41 / 39%);
}

.latest-news .categoary-blog .image-section {
    display: flex;
    background: #000;
    position: relative;
    gap: 30px;
}

.latest-news .categoary-blog .sticky {
    height: 100vh;
    width: fit-content;
}

/* .latest-news .categoary-blog .scroll-image {
    width: 100%;
    height: 100%;
    transform: translate(100%, 5%);
    transition: transform 1s ease-out;
}
*/
/* .latest-news .categoary-blog .sticky:nth-child(1) {
    transform: translate(15%, 0%);
}
.latest-news .categoary-blog .sticky:nth-child(2) {
    transform: translate(20%, 5%);
}
.latest-news .categoary-blog .sticky:nth-child(3) {
    transform: translate(25%, 10%);
}
.latest-news .categoary-blog .sticky:nth-child(4) {
    transform: translate(30%, 15%);
}
*/
.latest-news .categoary-blog .image-container.sticky {
    position: sticky;
    top: 0;
    /* background: #000;
    */
    width: fit-content;
    height: 100%;
    transform: translate(0, 10%);
    transition: transform 1s ease-out;
    margin: 0 auto;
}

.latest-news .image-section.links-filter.categoary-blog {
    margin: 0 auto;
}

.latest-news .latest-news-title {
    text-align: center;
    font-size: 22.6vw;
    font-weight: 800;
    padding: 0 15px;
}

.latest-news .latest-news-title {
    text-align: center;
    font-size: 30vw;
    font-weight: 800;
    padding: 0 15px;
    /* opacity: 0.5;
    */
    color: #f51c20;
    text-transform: uppercase;
}

.latest-news .tab-item-text {
    visibility: hidden;
    -webkit-box-orient: horizontal;
    -webkit-line-clamp: 3;
    color: var(--black);
    display: -webkit-box;
    font-size: 18px;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all .3s ease-in-out;
    width: 500px;
}

.latest-news .image-container:hover .tab-item-text {
    visibility: visible;
    margin-bottom: 15px;
}

/***latest news section css end***/
/* contact us section css start */
.contact-us {
    background: #f4f3e3;
    border-radius: 30px 30px 0 0;
    margin-top: -30px;
    z-index: 99;
    position: relative;
}

.contact-us .contact-us-content {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-us-content .contact-us-content-left {
    width: 48%;
}

.contact-us-content .contact-us-content-right {
    width: 48%;
    padding-top: 30px;
}

.contact-us .card-i-title {
    color: #000;
    font-size: 2vw;
    text-transform: uppercase;
    font-weight: 800;
    padding-left: 0;
    padding-bottom: 100px;
}

.contact-us .card-i-heading {
    font-size: 9vw;
    max-width: 100%;
    padding-left: 0;
    padding-bottom: 20px;
    width: 100%;
}

.error-message {
    padding: 7px 0;
}

.contact-us-content .button-section .common-btn {
    padding: 20px;
}

.contact-us-content .custome-flex {
    display: flex;
    gap: 15px;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact-custom-field.textarea-effect .placeholder {
    position: absolute;
    top: -94px !important;
}

.contact .form-group {
    margin-bottom: 60px;
}

.contact .form-control {
    border-radius: 0;
    border: none;
    box-shadow: none;
    padding: 0;
    background: transparent;
    border-bottom: 1px solid rgb(187 186 174);
    padding-bottom: 5px;
    width: 100%;
    outline: none;
    line-height: 20px;
    font-size: 20px;
    cursor: pointer;
}

.contact-us .custom-form-group {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.contact-us .custom-form-group .form-group {
    width: calc(50% - 10px);
}

.contact-us-content .group {
    position: relative;
    margin-bottom: 60px;
}

.contact-us-content.contact input:focus {
    outline: none;
}

.contact-us-content label {
    color: #12121280;
    opacity: .5;
    font-size: 18px;
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    left: 0;
    top: 0;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
    text-transform: uppercase;
}

.contact-us-content input:focus~label,
.contact-us-content input:valid~label {
    top: -20px;
    font-size: 14px;
    color: rgba(0, 0, 0, .5);
}

.contact-us-content .bar {
    position: relative;
    display: block;
    width: 100%;
}

.contact-us-content .bar:before,
.contact-us-content .bar:after {
    content: '';
    height: 1px;
    width: 0;
    bottom: 0px;
    position: absolute;
    background: #000;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.contact-us-content .bar:before {
    left: 50%;
}

.contact-us-content .bar:after {
    right: 50%;
}

.contact-us-content input:focus~.bar:before,
.contact-us-content input:focus~.bar:after {
    width: 50%;
}

.contact-us-content .highlight {
    position: absolute;
    width: 100px;
    top: 25%;
    left: 0;
    pointer-events: none;
    opacity: 0.5;
}

/* active state */
.contact-us-content input:focus~.highlight {
    -webkit-animation: inputHighlighter 0.3s ease;
    -moz-animation: inputHighlighter 0.3s ease;
    animation: inputHighlighter 0.3s ease;
}

/* ANIMATIONS ================ */
@-webkit-keyframes inputHighlighter {
    from {
        background: #5264AE;
    }

    to {
        width: 0;
        background: transparent;
    }
}

@-moz-keyframes inputHighlighter {
    from {
        background: #5264AE;
    }

    to {
        width: 0;
        background: transparent;
    }
}

@keyframes inputHighlighter {
    from {
        background: #5264AE;
    }

    to {
        width: 0;
        background: transparent;
    }
}

.contact-us-content .text-group textarea {
    display: block;
    background: none;
    padding: 0.125rem 0.125rem 0.0625rem;
    border-width: 0;
    border-color: transparent;
    line-height: 1.9;
    width: 100%;
    -webkit-transition: all 0.28s ease;
    transition: all 0.28s ease;
    box-shadow: none;
    border-bottom: 1px solid rgb(187 186 174);
}

.contact-us-content .text-group textarea:focus~.input-label,
.contact-us-content .text-group textarea:valid~.input-label,
.contact-us-content .text-group textarea.form-file~.input-label,
.contact-us-content .text-group textarea.has-value~.input-label {
    font-size: 14px;
    color: gray;
    top: -1rem;
    left: 0;
}

.contact-us-content .text-group textarea:focus~.input-label {
    color: rgba(0, 0, 0, .5);
}

.contact-us-content .text-group textarea:focus~.bar::before {
    width: 100%;
    left: 0;
}

.contact-us-content .text-group {
    position: relative;
    margin-bottom: 4.25rem;
}

.country-list label {
    padding-left: 60px;
}

.contact-us-content .iti__flag-box,
.contact-us-content .iti__country-name {
    margin-right: 6px;
    color: #000;
}

.contact-us-content .iti--separate-dial-code .iti__selected-dial-code {
    margin-left: 6px;
    color: #000;
}

.contact-us-content .iti {
    width: 100%;
}

.contact-us-content .iti__flag-container {
    margin-right: 8px;
}

.contact-us-content .iti--allow-dropdown input,
.contact-us-content .iti--allow-dropdown input[type=text],
.contact-us-content .iti--allow-dropdown input[type=tel],
.contact-us-content .iti--separate-dial-code input,
.contact-us-content .iti--separate-dial-code input[type=text],
.contact-us-content .iti--separate-dial-code input[type=tel] {
    padding-left: 64px;
    font-size: 18px;
}

.form-control {
    padding-left: 70px;
}

.contact-us-content .iti--separate-dial-code .iti__selected-flag {
    background: transparent;
}

.contact-us-content .iti__selected-flag {
    padding: 0 10px 5px 8px;
    border-right: 1px solid #bbbaae;
}

.contact-us-content .iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
    background-color: transparent;
}

.contact-us-content .iti__flag-box,
.iti__country-name {
    color: #000;
}

.contact-us-content .iti__country-list {
    position: absolute;
    z-index: 2;
    list-style: none;
    text-align: left;
    padding: 0;
    margin: 0 0 0 -1px;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
    background-color: white;
    border: 1px solid #CCC;
    max-height: 200px;
    overflow-y: auto;
    white-space: normal;
    width: 250px;
}

.contact-us-content .iti__country {
    padding: 5px 10px;
    outline: none;
    display: flex;
}

.contact-us-content span.iti__country-name {
    font-size: 13px;
}

.contact-us-content .iti__dial-code {
    color: #999;
    font-size: 13px;
}

/* contact us section css end */

/***skeleton loader****/

/*--- Skeletant Css Start ---*/
.skeletant-bx {
    pointer-events: none;
}

.skeletant-design {
    background-color: #000;
    background-position: left;
    background-repeat: repeat;
    background-size: 1200px;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: shine-lines 1.5s infinite linear;
    pointer-events: none;
    border-radius: 0;
    background: linear-gradient(90deg, #2c2f36 25%, #3a3d45 50%, #2c2f36 75%);
    /* background-image: linear-gradient(90deg, rgba(55, 55, 55, 0) 25%, rgba(85, 85, 85, 0.5) 50%, rgba(55, 55, 55, 0) 75%); */
    /* background-image: linear-gradient(to right, #f6f6f6 8%, #f0f0f0 18%, #f6f6f6 33%); */
    /* background-image: linear-gradient(45deg, #e5e7eb 30%, #fff 50%, #e5e7eb 70%); */
    /* background-image: linear-gradient(90deg, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%); */
}

.skeletant-design-light {
    background-image: linear-gradient(to right, #f6f6f6 8%, #f0f0f0 18%, #f6f6f6 33%);
    background-color: #000;
    background-position: left;
    background-repeat: repeat;
    background-size: 1200px;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: shine-lines 1.5s infinite linear;
    pointer-events: none;
    border-radius: 0;
}

.sw-100 {
    width: 100%;
}


.sh-30 {
    height: 30px;
}

.sh-20 {
    height: 20px;
}

.sh-40 {
    height: 40px;
}

.sh-50 {
    height: 50px;
    margin-top: 7px;
}

.sh-60 {
    height: 60px;
}

.sh-70 {
    height: 70px;
    margin-top: 7px;
}

.sh-80 {
    height: 80px;
}

.sh-95 {
    height: 95px;
    margin-top: 20px;
}

.sh-105 {
    height: 105px;
}

.sh-125 {
    height: 125px;
    border-radius: 24px;
}

.sh-150 {
    height: 150px;
}

.sh-171 {
    height: 171px;
}

.sh-215 {
    height: 215px;
}

.sh-232 {
    height: 232px;
}

.sh-237 {
    height: 237px;
    margin-bottom: 20px;
}

.sh-274 {
    height: 274px;
}

.sh-285 {
    height: 285px;
}

.sh-342 {
    height: 342px;
}

.sh-364 {
    height: 364px;
}

.sh-386 {
    height: 380px;
}

.sh-413 {
    height: 413px;
}

.sh-464 {
    height: 464px;
}

.sh-440 {
    height: 440px;
}

.sh-476 {
    height: 476px;
}

.sh-500 {
    height: 500px;
}

.sh-520 {
    height: 520px;
}

.sh-651 {
    height: 651px;
}

.sh-655 {
    height: 655px;
}

.sh-816 {
    height: 500px;
    width: 100% !important;
    /* margin-left: 10px; */
}

.sh-700 {
    height: 600px;
    width: 100% !important;

    border-radius: 30px;
}

.tab-item-content-new {
    max-width: 100%;
    width: 100%;
}

@-webkit-keyframes shine-lines {
    0% {
        background-position: -100px;
    }

    100% {
        background-position: 1100px;
    }
}

@keyframes shine-lines {
    0% {
        background-position: -100px;
    }

    100% {
        background-position: 1100px;
    }
}

/* .sh-816 {
    height: 500px; 
    width: 100% !important;
    background-color: red;
    margin-left: 10px;
}


.tab-item-content-new{
    display: flex;
    justify-content: center;
    align-items: center;

} */

/*****responsive start*****/
@media screen and (min-width: 1211px) and (max-width: 1830px) {
    .links-filter .tab-item-image img {
        width: 95%;
        height: 100%;
    }

    /* .links-filter .tab-item-image {
        width: 95%;
        height: 100%;
   }
    */
    .links-filter ul {
        padding: 30px 0;
        margin-bottom: 50px;
        gap: 8px;
        background: linear-gradient(180deg, #000 20%, transparent);
        width: 100%;
    }

    .links-filter .notifaction {
        font-size: 24px;
        margin-top: -6px;
    }

    .links-filter .tab-item-text {
        padding-left: 40px;
        margin-top: 40px;
    }

    .links-filter-content {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .tab-item {
        width: calc(33% - 15px);
    }

    .links-filter .tab-item-text .date {
        margin-bottom: 5px;
    }

    .links-filter .links-filter-content {
        gap: 15px;
        justify-content: center;
    }

    .links-filter ul li a {
        font-size: 30px;
        padding: 0 15px;
    }

    /**footer css start**/
    .footer-content {
        gap: 10px;
    }

    /**footer css end**/
    /***latest news section css start***/
    .common-btn {
        border-radius: 15px;
        margin-top: 190px;
    }

    .common-btn-text {
        font-size: 6vw;
    }

    .latest-news {
        background-color: #000;
        border-radius: 0;
    }

    /* .latest-news .categoary-blog .scroll-image {
        transform: translate(30%, 5%);
   }
    */
    .latest-news .categoary-blog .sticky {
        height: auto;
    }

    /** contact us page css start**/
    .contact-us-content .button-section .common-btn {
        padding: 20px;
        margin-top: 0;
    }

    .common-btn-text {
        font-size: 4vw;
    }

    .contact-us-content .button-section .common-btn {
        padding: 8px;
    }

    .links-filter .tab-item-image {
        width: 95%;
        height: 100%;
    }

    .categoary-blog.links-filter .tab-item-image {
        width: 530px;
    }

    .categoary-blog.links-filter .tab-item-image img {
        width: 95%;
    }
}

@media screen and (max-width: 1210px) {
    .vertical__content .col_left {
        position: sticky;
        top: 20px;
    }

    .title {
        font-size: 22px;
    }

    /* .video-container {
        height: 50vh;
   }
    */
    .header {
        padding: 15px 0;
        z-index: 5;
    }

    section {
        padding: 35px 15px;
    }

    .bg-video {
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        transform: translate(0, 0);
    }

    .slide-menu ul li a {
        font-size: 28px !important;
    }

    .close-btn {
        top: 20px;
        right: 20px;
        width: 25px;
        height: 25px;
    }

    .close-btn img {
        width: 25px;
    }

    .header__content {
        flex-direction: row;
        align-items: center;
    }

    .hamburger {
        height: 60px;
    }

    .links-filter .tab-item-image img {
        width: 100%;
        height: 100%;
    }

    .categoary-blog.links-filter .tab-item-image img {
        width: 95%;
    }

    .links-filter .tab-item-image {
        width: fit-content;
        height: 100%;
    }

    .links-filter ul {
        padding: 30px 0;
        /* margin-bottom: 50px;
        */
        margin-bottom: 0;
        gap: 8px;
        background: linear-gradient(180deg, #000 20%, transparent);
        width: 100%;
    }

    .links-filter .notifaction {
        font-size: 24px;
        margin-top: -6px;
    }

    .links-filter .tab-item-text {
        padding-left: 40px;
        margin-top: 40px;
    }

    /* .title {
        font-size: 18px;
   }
    */
    .links-filter-content {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .tab-item {
        width: calc(33% - 15px);
    }

    .filter-tabs .links-filter .tab-item-text .date {
        margin-bottom: 5px;
    }

    /* .learn-more {
        width: 100px;
   }
    */
    .links-filter .links-filter-content {
        gap: 15px;
        justify-content: center;
    }

    .links-filter ul li a {
        font-size: 30px;
        padding: 0 15px;
    }

    .footer-content {
        margin: 5px 0 30px;
    }

    .footer-content .f-categoary-text {
        font-size: 30px;
    }

    .f-categoary {
        opacity: 1;
        transform: translateY(0);
        width: calc(30% - 5px);
    }

    .footer-content {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .bottom-footer ul li {
        font-size: 14px;
        text-align: center;
    }

    .bottom-footer ul {
        /* padding: 20px 0;
        */
        margin: 0 15px;
        justify-content: center;
        gap: 7px;
    }

    /***latest news section css start***/
    .common-btn {
        padding: 20px;
        border-radius: 15px;
    }

    .common-btn-text {
        font-size: 4vw;
    }

    .latest-news {
        background-color: #000;
        border-radius: 0;
    }

    .latest-news .latest-news-title {
        font-size: 13.6vw;
    }

    .latest-news .categoary-blog .scroll-image {
        transform: translate(0%, 5%);
    }

    .latest-news .categoary-blog .sticky {
        height: 100%;
    }

    .latest-news .categoary-blog .sticky:nth-child(1) {
        transform: translate(0%, 0%);
    }

    .latest-news .categoary-blog .sticky:nth-child(2) {
        transform: translate(0%, 0%);
    }

    .latest-news .categoary-blog .sticky:nth-child(3) {
        transform: translate(0%, 0%);
    }

    .latest-news .categoary-blog .sticky:nth-child(4) {
        transform: translate(0%, 0%);
    }

    .image-section.links-filter.categoary-blog {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

    .latest-news .categoary-blog .image-container.sticky {
        width: calc(45% - 5px);
        background: #000;
    }

    .latest-news .tab-item-text {
        visibility: visible;
    }

    /** contact us page css start**/
    .contact-us {
        border-radius: 15px 15px 0 0;
    }

    .contact-us .contact-us-content {
        gap: 15px;
    }

    .contact-us-content .group {
        margin-bottom: 40px;
    }

    .contact-us-content label {
        font-size: 14px;
    }

    .contact-us-content .iti--allow-dropdown input,
    .contact-us-content .iti--allow-dropdown input[type=text],
    .contact-us-content .iti--allow-dropdown input[type=tel],
    .contact-us-content .iti--separate-dial-code input,
    .contact-us-content .iti--separate-dial-code input[type=text],
    .contact-us-content .iti--separate-dial-code input[type=tel] {
        font-size: 16px;
    }

    .contact-us-content .button-section .common-btn {
        padding: 8px;
        width: 100%;
    }

    /**Contact us page css End**/
    /**about us page css start**/
    .about-video video {
        z-index: 2;
    }

    .about-video .overlay {
        z-index: 3;
    }

    .about-video .text-animation-content {
        z-index: 4;
    }

    /**about us page css end**/
    #vertical {
        height: auto;
        width: 100%;
        padding: 50px 0;
    }

    .vertical__item:not(:last-child) {
        margin-bottom: 50px;
    }

    /***tag section***/
    .main-tag .tag-section {
        padding: 0 20px 50px 20px;
    }

    .main-tag .tag-section .tag-s-inner {
        gap: 7px;
    }

    .video-container {
        height: calc(100% - 150px);
    }

    .about-video.video-container {
        height: 400px;
    }
}

@media screen and (max-width: 767px) {
    .header__logo img {
        width: 90px;
    }

    .vertical__item:not(:last-child) {
        margin-bottom: 30px;
    }

    .vertical__content .col_left {
        position: sticky;
        top: 0;
        padding: 12px 0;
        width: 100%;
        background: #000;
    }

    .header {
        padding: 10px 0;
        z-index: 5;
    }

    section {
        padding: 35px 20px;
    }

    .bg-video {
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        transform: translate(0, 0);
    }

    .video-container {
        /* height: 500px;
        */
        height: calc(100% - 150px);
    }

    .about-video.video-container {
        height: 400px;
    }

    .close-btn {
        top: 15px;
        right: 15px;
        width: 20px;
        height: 20px;
    }

    .close-btn img {
        width: 20px;
    }

    .header__content {
        flex-direction: row;
        align-items: center;
    }

    .hamburger {
        height: 60px;
    }

    .links-filter .tab-item-image img {
        width: 100%;
        height: 100%;
    }

    .links-filter .tab-item-image {
        width: fit-content;
        height: 100%;
    }

    .links-filter ul {
        padding: 20px 0;
        margin-bottom: 10px;
        gap: 3px;
        padding: 30px 0;
        margin-bottom: 10px;
        gap: 3px;
        background: linear-gradient(180deg, #000 20%, transparent);
        width: 100%;
    }

    .links-filter .notifaction {
        font-size: 16px;
        margin-top: -5px;
    }

    .links-filter .tab-item-text {
        padding-left: 5px;
        margin-top: 15px;
    }

    .title {
        font-size: 18px;
    }

    .links-filter-content {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .tab-item {
        width: calc(50% - 15px);
    }

    .filter-tabs .links-filter .tab-item-text .date {
        margin-bottom: 5px;
    }

    .learn-more {
        width: 100px;
    }

    .links-filter .links-filter-content {
        gap: 15px;
        justify-content: center;
    }

    .links-filter ul li a {
        font-size: 4vw;
        padding: 0 15px;
        gap: 5px;
    }

    .footer-content {
        margin: 5px 0 30px;
    }

    .footer-content .f-categoary-text {
        font-size: 20px;
    }

    .f-categoary {
        opacity: 1;
        transform: translateY(0);
        width: calc(50% - 5px);
    }

    .footer-content {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .bottom-footer ul li {
        font-size: 14px;
        text-align: center;
    }

    .bottom-footer ul {
        /* padding: 20px 0;
        margin: 0 15px;
        */
        justify-content: center;
        gap: 7px;
    }

    .bottom-footer {
        padding: 20px 0;
        margin: 0;
    }

    /*categoary card start*/
    .categoary-card {
        background: #000;
        position: relative;
    }

    .categoary-card .block {
        width: calc(50% - 15px);
    }

    .categoary-card .cc-blog .scroll-image {
        transform: translate(0, 0);
    }

    .categoary-card .cc-blog .image-section {
        gap: 15px;
    }

    /*categoary card end*/
    /***latest news section css start***/
    .common-btn {
        padding: 20px;
        border-radius: 15px;
    }

    .common-btn-text {
        font-size: 6vw;
    }

    .latest-news {
        background-color: #000;
        border-radius: 0;
    }

    .latest-news .latest-news-title {
        font-size: 13.6vw;
    }

    .latest-news .categoary-blog .scroll-image {
        transform: translate(0%, 5%);
    }

    .latest-news .categoary-blog .sticky {
        height: 100%;
    }

    .latest-news .categoary-blog .sticky:nth-child(1) {
        transform: translate(0%, 0%);
    }

    .latest-news .categoary-blog .sticky:nth-child(2) {
        transform: translate(0%, 0%);
    }

    .latest-news .categoary-blog .sticky:nth-child(3) {
        transform: translate(0%, 0%);
    }

    .latest-news .categoary-blog .sticky:nth-child(4) {
        transform: translate(0%, 0%);
    }

    .image-section.links-filter.categoary-blog {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

    .latest-news .categoary-blog .image-container.sticky {
        width: calc(49% - 5px);
        background: #000;
    }

    .latest-news .links-filter .tab-item-image {
        transform: rotate(0deg);
    }

    .latest-news .tab-item-text {
        visibility: visible;
    }

    /** contact us page css start**/
    .contact-us-content .contact-us-content-left,
    .contact-us-content .contact-us-content-right {
        width: 100%;
    }

    .contact-us .card-i-title {
        display: none;
    }

    .contact-us {
        border-radius: 15px 15px 0 0;
    }

    /* .contact-us .custom-form-group {
        display: block;
   }
    */
    /* .contact-us .custom-form-group .form-group {
        width: 100%;
   }
    */
    .contact-us-content .group {
        margin-bottom: 40px;
    }

    .contact-us-content label {
        font-size: 14px;
    }

    .contact-us-content .iti--allow-dropdown input,
    .contact-us-content .iti--allow-dropdown input[type=text],
    .contact-us-content .iti--allow-dropdown input[type=tel],
    .contact-us-content .iti--separate-dial-code input,
    .contact-us-content .iti--separate-dial-code input[type=text],
    .contact-us-content .iti--separate-dial-code input[type=tel] {
        font-size: 16px;
    }

    .contact-us-content .text-group {
        margin-bottom: 40px;
    }

    /**Contact us page css End**/
    /***aboutus page***/
    #vertical {
        height: auto;
        width: 100%;
        padding: 35px 0;
    }

    .vertical__content {
        gap: 10px;
        flex-direction: column;
    }

    .vertical__item:not(:last-child) {
        margin-bottom: 25px;
    }

    .vertical__content .col.col_right {
        width: 100%;
    }

    .about-information .vertical__content p {
        font-size: 16px;
        font-weight: 600;
        letter-spacing: 0.8px;
        font-stretch: normal;
    }

    /***tag section***/
    .main-tag .tag-section {
        padding: 0 20px 50px 20px;
    }

    .main-tag .tag-section .tag-s-inner {
        gap: 7px;
    }

    .main-tag .tag-section .tag-s-inner a {
        font-size: 10px;
    }

    .links-filter ul {
        justify-content: start;
        flex-wrap: nowrap;
        overflow: hidden;
        overflow-x: auto;
        padding: 15px 0;
        gap: 10px;
    }

    .about-video.video-container {
        height: 400px;
    }

    .about-information .vertical__content h3 {
        font-size: 18px !important;
        letter-spacing: 0.5px;
    }

    .category-detail {
        padding-top: 15px;
    }
}

@media screen and (max-width: 576px) {
    .header__logo img {
        width: 90px;
    }

    .hamburger span {
        height: 3px;
    }

    .hamburger span:nth-child(2) {
        top: 11px;
    }

    .header {
        padding: 10px 0;
        z-index: 5;
    }

    .logo {
        font-size: 28px;
    }

    section {
        padding: 35px 20px;
    }

    .bg-video {
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        transform: translate(0, 0);
    }

    .video-container {
        height: calc(100% - 150px);
    }

    .close-btn {
        top: 15px;
        right: 15px;
        width: 20px;
        height: 20px;
    }

    .close-btn img {
        width: 20px;
    }

    .header__content {
        flex-direction: row;
        align-items: center;
    }

    .hamburger {
        height: 60px;
    }

    .links-filter .tab-item-image {
        transform: rotate(0deg);
    }

    .links-filter .tab-item-image img {
        width: 100%;
        height: 100%;
    }

    .links-filter .tab-item-image {
        width: auto;
        height: 100%;
    }

    .links-filter-content {
        display: flex;
        flex-direction: column;
    }

    .tab-item {
        width: 100%;
    }

    .links-filter .tab-item-content:hover .tab-item-image {
        transform: rotate(0deg) translateZ(0) scale(1);
    }

    .links-filter ul {
        justify-content: start;
        flex-wrap: nowrap;
        overflow: hidden;
        overflow-x: auto;
        padding: 15px 0;
        gap: 10px;
    }

    .links-filter .notifaction {
        font-size: 14px;
        margin-top: -7px;
    }

    .links-filter .tab-item-text {
        padding-left: 5px;
        margin-top: 15px;
    }

    .title {
        font-size: 18px;
    }

    .filter-tabs .links-filter .tab-item-text .date {
        margin-bottom: 5px;
    }

    .learn-more {
        width: 100px;
    }

    .links-filter .links-filter-content {
        gap: 15px;
    }

    .links-filter ul li a {
        font-size: 5vw;
        padding: 0 7px;
        gap: 5px;
    }

    .footer-content {
        margin: 5px 0 30px;
    }

    .footer-content .f-categoary-text {
        font-size: 20px;
    }

    .f-categoary {
        opacity: 1;
        transform: translateY(0);
        width: 100%;
    }

    .footer-content {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .bottom-footer ul li {
        font-size: 14px;
        text-align: center;
    }

    .bottom-footer ul {
        padding: 0 0;
        margin: 0 0px;
        display: flex;
        gap: 10px;
    }

    .bottom-footer {
        padding: 15px 0;
        gap: 8px;
        flex-wrap: wrap;
        margin: 0;
        justify-content: center;
        flex-direction: column-reverse;
    }

    /*categoary card start*/
    .categoary-card {
        background: #000;
        position: relative;
    }

    .categoary-card .cc-blog {
        gap: 15px;
    }

    .categoary-card .block {
        width: 100%;
    }

    .categoary-card .cc-blog .scroll-image {
        transform: translate(0, 0);
    }

    .categoary-card .cc-blog .image-section {
        gap: 15px;
    }

    /*categoary card end*/
    /***latest news section css start***/
    .common-btn {
        padding: 20px;
        border-radius: 15px;
    }

    .common-btn-text {
        font-size: 6vw;
    }

    .image-section.links-filter.categoary-blog {
        gap: 24px;
    }

    .latest-news {
        background-color: #000;
        border-radius: 0;
    }

    .latest-news .latest-news-title {
        font-size: 13.6vw;
    }

    .latest-news .categoary-blog .scroll-image {
        transform: translate(0%, 5%);
        background: #000;
    }

    .latest-news .categoary-blog .image-container.sticky {
        width: 100%;
    }

    .latest-news .categoary-blog .image-container.sticky {
        height: 140%;
    }

    .latest-news .categoary-blog .sticky {
        height: 100%;
    }

    .latest-news .categoary-blog .sticky:nth-child(1) {
        transform: translate(0%, 0%);
    }

    .latest-news .categoary-blog .sticky:nth-child(2) {
        transform: translate(0%, 0%);
    }

    .latest-news .categoary-blog .sticky:nth-child(3) {
        transform: translate(0%, 0%);
    }

    .latest-news .categoary-blog .sticky:nth-child(4) {
        transform: translate(0%, 0%);
    }

    /** contact us page css start**/
    .contact-us-content .contact-us-content-left,
    .contact-us-content .contact-us-content-right {
        width: 100%;
    }

    .contact-us .card-i-title {
        display: none;
    }

    .contact-us {
        border-radius: 15px 15px 0 0;
    }

    .contact-us .custom-form-group {
        display: block;
    }

    .contact-us .custom-form-group .form-group {
        width: 100%;
    }

    .contact-us-content .group {
        margin-bottom: 40px;
    }

    .contact-us-content label {
        font-size: 14px;
    }

    .contact-us-content .iti--allow-dropdown input,
    .contact-us-content .iti--allow-dropdown input[type=text],
    .contact-us-content .iti--allow-dropdown input[type=tel],
    .contact-us-content .iti--separate-dial-code input,
    .contact-us-content .iti--separate-dial-code input[type=text],
    .contact-us-content .iti--separate-dial-code input[type=tel] {
        font-size: 16px;
    }

    .contact-us-content .text-group {
        margin-bottom: 40px;
    }

    /**Contact us page css End**/
    /**term and condition css start**/
    .terms-condition-section .tcs-detail .text {
        padding-bottom: 5px;
    }

    .terms-condition-section .tcs-detail {
        padding: 10px 0 !important;
    }

    /**term and condition css end**/
    /***aboutus page***/
    #vertical {
        height: auto;
        width: 100%;
        padding: 35px 0;
    }

    .vertical__content {
        gap: 10px;
        flex-direction: column;
    }

    .vertical__item:not(:last-child) {
        margin-bottom: 25px;
    }

    .vertical__content .col.col_right {
        width: 100%;
    }

    .about-information .vertical__content p {
        font-size: 15px;
        font-weight: 700;
        letter-spacing: 0.8px;
        font-stretch: normal;
    }
}

/***About us page css start**/
.about-news {
    position: relative;
}

.about-news .ln-content {
    font-size: 5vw;
    width: 100%;
    padding: 0;
    border: none;
    padding-left: 0;
    text-align: justify;
    color: #f51c20;
    display: inline;
}

.about-news .l-news {
    width: fit-content;
    height: auto;
    display: inline-block;
    position: absolute;
}

.about-news .l-news video {
    width: 8vw;
}

.about-video {
    padding: 0;
}

.about-news-detail {
    display: inline-block;
}

.about-information h2 {
    font-size: 12vw;
    color: #fff;
    border: none;
    padding: 0;
}

.about-information h3 {
    font-size: 4vw;
    color: #f51c20;
    font-weight: 800;
    font-stretch: normal;
    padding-bottom: 15px;
}

.about-information p {
    font-size: 2vw;
    font-weight: 800;
    letter-spacing: 0.8px;
}

/***about us css End***/
/***start term and condition css***/
.terms-condition-section .text {
    font-size: 6vw;
    letter-spacing: -.01em;
    line-height: 100%;
    font-weight: 900 !important;
    margin: 0;
    width: 100%;
    color: rgb(182, 182, 182, 0.2);
    background: linear-gradient(to right, #c13e3e, #c13e3e) no-repeat;
    -webkit-background-clip: text;
    background-clip: text;
    background-size: 0%;
    transition: background-size cubic-bezier(.1, .5, .5, 1) 0.5s;
    border-bottom: 1px solid #2F2B28;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    padding: 0;
    border: none;
    padding-bottom: 20px;
}

.terms-condition-section .text.text-sm {
    font-size: 3vw;
    font-weight: 800;
    background: linear-gradient(to right, #b6b6b6, #b6b6b6) no-repeat;
    -webkit-background-clip: text;
    background-clip: text;
    background-size: 0%;
    transition: background-size cubic-bezier(.1, .5, .5, 1) 0.5s;
}

.terms-condition-section .tcs-detail {
    padding: 20px 0;
}
 .tcs-detail ul{
    font-size: 2vw !important;
    font-weight: 800;
    padding-left: 45px!important;
 }
 .tcs-detail ul li{
    padding-bottom: 10px;
 }

.terms-condition-section a {
    text-decoration: none;
    color: inherit;
}

.category-block h2 {
    border: none;
    text-align: center;
    padding-bottom: 80px;
}

.tab-categoary-video {
    display: none;
}

.tab-button:hover+.tab-categoary-video,
.tab-button.active+.tab-categoary-video {
    display: block;
}

.tab-button.active span {
    color: #f51c20;
}

/***tag section***/
.tag-section {
    max-width: 800px;
    -webkit-box-pack: end;
    -webkit-justify-content: end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    display: block;
    position: relative;
    text-align: left;
    margin: 0 auto;
    color: #000;
    padding: 0 50px 65px 50px;
}

.tag-section .tag-s-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-section .tag-s-inner a {
    color: #797777eb;
    background: transparent;
    line-height: normal;
    font-size: 12px;
    letter-spacing: 0;
    padding: 5px 12px;
    border: 1px solid #797777eb;
    border-radius: 99px;
    text-decoration: none;
    font-weight: 300;
    letter-spacing: 1px;
    transition: .4s;
}

.tag-section .tag-s-inner a:hover {
    border: 1px solid #f51c20;
    color: #f51c20;
    background: #f51c201c;
}

button.back-button {
    background: transparent;
    border: none;
    transition: transform .4s ease;
    transition: transform .4s ease, -webkit-transform .4s ease, -moz-transform .4s ease, -o-transform .4s ease;
    cursor: pointer;
}

button.back-button img {
    position: relative;
    -o-object-fit: cover;
    object-fit: cover;
    cursor: pointer;
    display: inline-block;
    -webkit-transition: -webkit-transform .4s ease;
    transition: -webkit-transform .4s ease;
    -o-transition: -o-transform .4s ease;
    -moz-transition: transform .4s ease, -moz-transform .4s ease;
    transition: transform .4s ease;
    transition: transform .4s ease, -webkit-transform .4s ease, -moz-transform .4s ease, -o-transform .4s ease;
    z-index: 1;
    cursor: pointer;
}

button.back-button img:hover {
    transition: transform 0.4s ease-in-out;
    -webkit-transform: rotate(1turn);
    -moz-transform: rotate(1turn);
    -ms-transform: rotate(1turn);
    -o-transform: rotate(1turn);
    transform: rotate(1turn);
}

@media screen and (max-width: 767px) {
    button.back-button img {
        width: 30px;
        top: 10px;
    }

    .header__logo.detail-content {
        top: 8px;
        position: relative;
    }

    .new-loading-screen {
        padding: 0 !important;
    }
}

@media screen and (min-width: 1025px) {
    .header__logo.detail-content {
        display: none;
    }

    button.back-button {
        display: none;
    }

    .categoary-detail {
        margin-top: 70px;
    }

    .social-icon {
        top: 120px;
    }
}

/***dropdown***/
/* This class will initially show the loading screen */
.new-loading-screen {


    padding: 0 40px;
    margin-top: 70px;
    /* semi-transparent white */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    /* Ensure it's on top */
}

/* Hide the actual content initially */
.new-content {
    display: none;
}



.crazzy-address-bx{
    display: flex;
    justify-content: center;
    padding: 15px;
    gap: 4px;
    line-height: 1.6;
}


.crazzy-address-bx svg{
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    color: #f51c20;
}

.d-inline-block{
    display: block !important;
}


/* glitch animation start  */
.glitch-animtion {
    color: #fff;
    padding: 50px 0;
    /* font-size: clamp(2rem, 10vw, 8rem);
    white-space: nowrap;
    font-weight: 900;
    position: relative;
    margin: 0 auto;
    user-select: none;
    cursor: pointer; */
        font-weight: 800;
  }
  
  .glitch-animtion::after,
  .glitch-animtion::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    color: #fff;
    background-color: #000000;
    overflow: hidden;
    clip-path: inset(0 0 0 0);
    font-weight: 800;
        padding: 50px 0;
  }
  
  .glitch-animtion:not(.enable-on-hover)::after {
    left: 10px;
    text-shadow: var(--after-shadow, -10px 0 red);
    animation: animate-glitch var(--after-duration, 3s) infinite linear alternate-reverse;
  }
  .glitch-animtion:not(.enable-on-hover)::before {
    left: -10px;
    text-shadow: var(--before-shadow, 10px 0 cyan);
    animation: animate-glitch var(--before-duration, 2s) infinite linear alternate-reverse;
  }
  
  .glitch-animtion.enable-on-hover::after,
  .glitch-animtion.enable-on-hover::before {
    content: '';
    opacity: 0;
    animation: none;
  }
  
  .glitch-animtion.enable-on-hover:hover::after {
    content: attr(data-text);
    opacity: 1;
    left: 10px;
    text-shadow: var(--after-shadow, -10px 0 red);
    animation: animate-glitch var(--after-duration, 3s) infinite linear alternate-reverse;
  }
  .glitch-animtion.enable-on-hover:hover::before {
    content: attr(data-text);
    opacity: 1;
    left: -10px;
    text-shadow: var(--before-shadow, 10px 0 cyan);
    animation: animate-glitch var(--before-duration, 2s) infinite linear alternate-reverse;
  }
  
  @keyframes animate-glitch {
    0% {
      clip-path: inset(20% 0 50% 0);
    }
    5% {
      clip-path: inset(10% 0 60% 0);
    }
    10% {
      clip-path: inset(15% 0 55% 0);
    }
    15% {
      clip-path: inset(25% 0 35% 0);
    }
    20% {
      clip-path: inset(30% 0 40% 0);
    }
    25% {
      clip-path: inset(40% 0 20% 0);
    }
    30% {
      clip-path: inset(10% 0 60% 0);
    }
    35% {
      clip-path: inset(15% 0 55% 0);
    }
    40% {
      clip-path: inset(25% 0 35% 0);
    }
    45% {
      clip-path: inset(30% 0 40% 0);
    }
    50% {
      clip-path: inset(20% 0 50% 0);
    }
    55% {
      clip-path: inset(10% 0 60% 0);
    }
    60% {
      clip-path: inset(15% 0 55% 0);
    }
    65% {
      clip-path: inset(25% 0 35% 0);
    }
    70% {
      clip-path: inset(30% 0 40% 0);
    }
    75% {
      clip-path: inset(40% 0 20% 0);
    }
    80% {
      clip-path: inset(20% 0 50% 0);
    }
    85% {
      clip-path: inset(10% 0 60% 0);
    }
    90% {
      clip-path: inset(15% 0 55% 0);
    }
    95% {
      clip-path: inset(25% 0 35% 0);
    }
    100% {
      clip-path: inset(30% 0 40% 0);
    }
  }
/* glitch animation end  */