.shadow-d1 {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

.shadow-a1 {
    box-shadow: rgba(0, 0, 0, 0.075) 0px 2px 4px 0px;
}

.shadow-a3 {
    box-shadow: rgba(0, 0, 0, 0.15) 0px 8px 16px 0px
}

.card-vid-1 {
    border-radius: 10px;
    width: 235px !important;
    margin: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-vid-1:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  }
.card-vid-1:last-child {
    margin-inline-end: 0;
}

.txt-middle {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    font-size: 1.5rem;
}



.vector-background {
    position: absolute;
    background: red;

    width: 100%;

    clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
}

#vector-background-1.vb1 {
    top: 0px;
    left: 0;
    height: 900px;
}

#vector-background-1.vb1.bg1 {
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradient 10s ease infinite;
}

#vector-background-1.vb1.bg2 {
    background: url('/img/football/landing-background-2.jpg');
    background-position: left 0px top -100px;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}



.header-grid {
    display: grid;
    gap: 1rem;
    /* grid-template-columns: 90px 1fr 300px
                           ads  ads 300px
                           mnu  mnu mnu; */
    grid-template-columns: 300px 1fr 1fr 135px;
    /* grid-auto-rows: minmax(50px, auto);  */
    grid-template-rows: 40px 120px;
    padding-block: 1rem;
    width: max(100%, 70rem);
    margin-inline: auto;
}

.grid-col-span-2 {
    grid-column: span 2;
}

.grid-col-span-3 {
    grid-column: span 3;
}

.grid-col-span-4 {
    grid-column: span 4;
}

.grid-col-logo {

    grid-column: 1;
    grid-row-start: 1;
    grid-row-end: span 2;
}

.h-30 {
    height: 30px
}

.h-90 {
    height: 90px
}

.h-grid-item {
    display: block;
    width: 100%;
    height: 100%;
    /* min-width: 60px;
    min-height: 30px; */
    /* background: #23d5ab; */
}

/* The Parent Container */
.flex-container {
    display: flex;
    /* Activates flexbox layout */
    flex-direction: row;
    /* Arranges items horizontally (default) */
    gap: 16px;
    /* Adds spacing between items */
    width: 100%;
}

/* Base Styles for Children */
.item {
    background-color: #3498db;
    padding: 20px;
    color: white;
}

/* Proportional Sizing (The "fr" Replacements) */
.flx-1 {
    flex: 1;
    /* Expands to 'flex: 1 1 0%' - takes 1 share of space */
}

.flx-2 {
    flex: 2;
    /* Expands to 'flex: 2 1 0%' - takes 2 shares of space */
}

.flx-60px {
    flex: 0 0 60px;
}
/*Fixed Adv*/

@media (min-width: 1200px) {
    .visible-sticky-lg {
        display: flex !important;
    }
}

.fixed-ads-skyscraper {
    display: flex;
    box-sizing: border-box;
    align-items: flex-start; /* Crucial for sticky height context */
    gap: calc(100% - 320px);
    background-color: transparent !important;
}
.fixed-ads-right {
    position: fixed;
    right: 0px;
    top: 240px;
    z-index: 999;
}

.fixed-ads-left {
    position: fixed; /* fixed */
    left: 0px;
    top: 240px;
    z-index: 999;
}
.skyscraper {
    height:600px; 
    width:160px;
    background-color: #e2e2e2;
}


@media only screen and (max-width: 1100px) {
    .navbar-toggle {
        float: right !important;
    }

    .sidenav-header-logo {
        display: block;
        float: left !important;
        width:130px !important;
    }
}

.main-slide .container-full .BigSliderTitle
 {height: 65px!important;}