:root {
    --ff-ubuntu: "Ubuntu", sans-serif;
    --fw-light: 300;
    --fw-regular: 400;
    --fw-bold: 700;
    --clr-primary: #121b60;
}

body {
    background: #fff;
    font-family: var(--ff-ubuntu);
    font-weight: var(--fw-regular);
    font-style: normal;
    overflow-x: hidden !important;
    position: relative;
}

ul,
li {
    list-style: none;
    padding: 0;
}

a,
p,
button {
    text-decoration: none;
    transition: all 0.5s ease;
}

p {
    line-height: 24px;
    font-weight: 300;
}

a:focus,
input:focus,
button:focus,
select:focus,
textarea:focus {
    outline: 0;
    outline-offset: 0;
    text-decoration: none;
    transition: all 0.5s ease;
}

a:hover {
    text-decoration: none;
    cursor: pointer;
}

img {
    border: none;
    outline: 0;
    display: block;
    transition: all 0.5s ease;
    max-width: 100%;
}

    img.responsive,
    .img-responsive {
        width: 100%;
    }

button {
    border: 0;
}

.clear-all,
.clearAll {
    clear: both;
}

.float-left {
    float: left;
}

.float-right {
    float: right;
}

header {
  padding-top: 15px;
}

    header .container {
        position: relative;
    }

.flex-space-between-center {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .flex-space-between-center::after,
header .flex-space-between-center::before {
  display: none;
}

header .logo {
    float: left;
    width: 130px;
    margin-bottom: 15px;
}

header .ad-alain {
    max-width: 240px;
}

header aside {
  display: grid;
  grid-auto-flow: column;
  align-items: center;
  gap: 40px;
}

a.lang {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
    "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", 
    sans-serif;
  font-size: 15px;
  font-weight: bold;
  padding: 10px 10px 15px;
  border: 1px solid #dce1eb;
  line-height: 1;
  color: #016bb5;
  border-radius: 3px;
}

    a.lang:hover {
        background-color: #016bb5;
        color: white;
    }

.menu-container {
    width: 100%;
    background: var(--clr-primary);
    position: relative;
}

.menu-mobile {
    display: none;
    padding: 10px;
    text-align: center;
}

    .menu-mobile:after {
        content: "\efa2";
        font-family: "IcoFont";
        font-size: 2.5rem;
        padding: 0;
        float: right;
        position: relative;
        top: 22%;
        -webkit-transform: translateY(-25%);
        -ms-transform: translateY(-25%);
        transform: translateY(-25%);
        color: #fff;
    }

.menu > ul {
  margin: 0;
  list-style: none;
  padding: 0;
  position: relative;
  box-sizing: border-box;
  display: grid;
  grid-auto-flow: column;
  justify-content: start;
  gap: 1px;
}

    .menu > ul:before,
    .menu > ul:after {
        display: none;
    }

    .menu > ul:after {
        clear: both;
    }

    .menu > ul > li {
        position: relative;
    }

        .menu > ul > li a {
            text-decoration: none;
            padding: 12px 20px;
            display: block;
            color: #fff;
            font-weight: 700;
            font-size: 15px;
            text-transform: uppercase;
        }

        .menu > ul > li:hover,
        .menu > ul > li.active {
            background-color: #5786c5;
            color: #fff;
        }

            .menu > ul > li.active a {
                color: #fff;
            }

        .menu > ul > li > ul {
            display: none;
            width: 100%;
            background: #5786c5;
            position: absolute;
            z-index: 99;
            left: 0;
            margin: 0;
            list-style: none;
            box-sizing: border-box;
            top: 45px;
            -webkit-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.27);
            -moz-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.27);
            box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.27);
        }

            .menu > ul > li > ul:before,
            .menu > ul > li > ul:after {
                content: "";
                display: table;
            }

            .menu > ul > li > ul:after {
                clear: both;
            }

            .menu > ul > li > ul > li {
                margin: 0;
                padding-bottom: 0;
            }

                .menu > ul > li > ul > li a {
                    color: #777;
                    padding: 0.2em 0;
                    display: block;
                    border-bottom: 1px solid #ccc;
                }

                .menu > ul > li > ul > li > ul {
                    margin: 0;
                    display: none;
                    background: #026ab4;
                    padding: 20px;
                    position: absolute;
                    z-index: 99;
                    left: 100%;
                    top: -20px;
                    width: 240px;
                }

            .menu > ul > li > ul.normal-sub {
                width: 240px;
                left: auto;
                padding: 20px 10px;
            }

                .menu > ul > li > ul.normal-sub > li {
                    width: 100%;
                    position: relative;
                }

                    .menu > ul > li > ul.normal-sub > li a {
                        border: 0;
                        padding: 10px 10px;
                        text-transform: none;
                        font-size: 16px;
                        color: #fff;
                        font-weight: 700;
                    }

                        .menu > ul > li > ul > li > ul > li a:hover,
                        .menu > ul > li > ul.normal-sub > li a:hover {
                            color: #333;
                            background: #fff;
                        }

.has-drop-menu {
    position: absolute;
    right: 0;
    padding: 10px 15px;
    background: #fff;
    z-index: 5;
    top: 0;
    display: none;
}

    .has-drop-menu img {
        width: 20px;
        height: 20px;
    }

.show-drop-menu {
    display: block;
}

/* Video BG */
.video-container {
  padding-top: 0;
  position: relative;
  overflow: hidden;
}

    /* .video-container .mask{position: absolute; left: 0; right: 0; bottom: 5px; top: 0; background-color: rgba(0, 0, 0, 0.2); z-index: 5}  */
    /* .video-container video { object-fit: cover;   
  min-width: 100%; 
  min-height: 100%; 
  width: auto;
  height: auto; 
  -webkit-background-size:cover!important;
  -moz-background-size:cover!important;
  -o-background-size:cover!important;
  background-size:cover!important; 
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
} */
    .video-container video {
        object-fit: cover;
        min-width: 100%;
        min-height: 100%;
        width: 100%;
        height: 100%;
        -webkit-background-size: cover !important;
        -moz-background-size: cover !important;
        -o-background-size: cover !important;
        background-size: cover !important;
        position: relative;
    }

        .video-container video poster,
        .video-container video poster img,
        .video-container video img {
            width: 100%;
            max-width: 100%;
        }

.video-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    color: #fff;
}

    .video-caption h1 {
        font-size: 8rem;
        margin: 0 0 20px 0;
        font-weight: 700;
        line-height: 1.2;
        text-transform: uppercase;
    }

    .video-caption p {
        font-size: 24px;
        margin-bottom: 30px;
    }

        .video-caption p.date {
            font-size: 30px;
            font-weight: 700;
        }

    .video-caption .btn-main {
        display: inline-block;
        background: transparent;
        border: #fff solid 1px;
        margin: 0;
    }

        .video-caption .btn-main:hover,
        .video-caption .btn-main:focus {
            background: #016bb5;
            color: #fff;
            border-color: transparent;
        }

.full-width-hero-banner {
    position: relative;
    height: auto;
    overflow: hidden;
}

    .full-width-hero-banner .hero-full-width-slider li {
        width: 100%;
        position: relative;
    }

.fullscreen-caption {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
    z-index: 10;
    color: #fff;
    width: 100%;
}

    .fullscreen-caption h1 {
        font-size: 36px;
        margin-bottom: 20px;
        font-weight: 700;
    }

    .fullscreen-caption p {
        font-size: 20px;
        margin-bottom: 30px;
    }

.video-container .scroll-more {
    position: absolute;
    left: 50%;
    margin-left: -27px;
    bottom: -60px;
    width: 54px;
    height: 54px;
    border-radius: 100%;
    z-index: 2;
}

    .video-container .scroll-more img {
        width: 35px;
        margin: 0 auto;
        margin-top: 20px;
    }

.mob-banner-slider {
    padding-top: 0;
    position: relative;
    overflow: hidden;
    display: none;
}

    .mob-banner-slider .slick-dots {
        bottom: 30px !important;
    }

@-moz-keyframes arrowbounce {
    0%, 20%, 50%, 80%, 100% {
        -moz-transform: translateY(0);
        transform: translateY(0);
    }

    40% {
        -moz-transform: translateY(-15px);
        transform: translateY(-15px);
    }

    60% {
        -moz-transform: translateY(-10px);
        transform: translateY(-10px);
    }
}

@-webkit-keyframes arrowbounce {
    0%, 20%, 50%, 80%, 100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }

    60% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
}

@keyframes arrowbounce {
    0%, 20%, 50%, 80%, 100% {
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    40% {
        -moz-transform: translateY(-15px);
        -ms-transform: translateY(-15px);
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }

    60% {
        -moz-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
}

.arrow-bounce {
    -moz-animation: arrowbounce 2s infinite;
    -webkit-animation: arrowbounce 2s infinite;
    animation: arrowbounce 2s infinite;
}

/* slick slider */
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

    .slick-list:focus {
        outline: none;
    }

    .slick-list.dragging {
        cursor: pointer;
        cursor: hand;
    }

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

    .slick-track:before,
    .slick-track:after {
        display: table;
        content: "";
    }

    .slick-track:after {
        clear: both;
    }

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir="rtl"] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

/* bootstrap hack: fix content height inside hidden tabs */
.tab-content > .tab-pane,
.pill-content > .pill-pane {
  display: block;
  height: 0;
  overflow: hidden;
}

.tab-content > .active,
.pill-content > .active {
  height: auto;
}

/* bootstrap hack end */

/* slick slider base theme */
.slick-loading .slick-list {
    background: #fff url(./ajax-loader.gif) center center no-repeat;
}

.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 50px;
  height: 50px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}

    .slick-prev:hover,
    .slick-prev:focus,
    .slick-next:hover,
    .slick-next:focus {
        color: transparent;
        outline: none;
        background: transparent;
    }

        .slick-prev:hover:before,
        .slick-prev:focus:before,
        .slick-next:hover:before,
        .slick-next:focus:before {
            opacity: 1;
        }

    .slick-prev.slick-disabled:before,
    .slick-next.slick-disabled:before {
        opacity: 0.25;
    }

    .slick-prev:before,
    .slick-next:before {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        font-family: "IcoFont";
        color: #fff;
        font-size: 40px;
        line-height: 50px;
    }

.slick-prev {
    left: -25px;
}

[dir="rtl"] .slick-prev {
    right: -25px;
    left: auto;
}

.slick-prev:before {
    content: "\eac9";
}

[dir="rtl"] .slick-prev:before {
    content: "\eaca";
}

.slick-next {
    right: -25px;
}

[dir="rtl"] .slick-next {
    right: auto;
    left: -25px;
}

.slick-next:before {
    content: "\eaca";
}

[dir="rtl"] .slick-next:before {
    content: "\eac9";
}

.slick-dotted.slick-slider {
    margin-bottom: 0px;
}

.slick-dots {
  position: absolute;
  bottom: 35px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  z-index: 55;
}

    .slick-dots li {
        position: relative;
        display: inline-block;
        width: 13px !important;
        height: 13px !important;
        margin: 0 5px;
        padding: 0;
        cursor: pointer;
    }

        .slick-dots li button {
            font-size: 0;
            line-height: 0;
            display: block;
            width: 13px;
            height: 13px;
            padding: 0px;
            cursor: pointer;
            color: transparent;
            border: 0;
            outline: none;
            border-radius: 100%;
            background: rgba(255, 255, 255, 0.5);
            border: 0;
        }

        .slick-dots li.slick-active button {
            background: transparent;
            border: #fff solid 3px;
        }

        .slick-dots li button:hover,
        .slick-dots li button:focus {
            outline: none;
        }

.slick-container-wrap {
    position: relative;
}

.slick-control-top-right {
  right: 0;
  top: -40px;
  position: absolute;
  display: block;
  width: 80px;
  height: 30px;
}

    .slick-control-top-right a {
        width: 30px;
        height: 30px;
        display: block;
        float: left;
    }

        .slick-control-top-right a.sl-left {
            margin-right: 20px;
        }

.slick-control-left-right {
    position: absolute;
    top: 50%;
    margin-top: -30px;
    left: 0;
    right: 0;
    z-index: 55;
}

    .slick-control-left-right a {
        width: 30px;
        height: 30px;
        display: block;
        position: absolute;
    }

    .slick-control-left-right .slick-left {
        left: -60px;
    }

    .slick-control-left-right .slick-right {
        left: auto;
        right: -60px;
    }

.btn-main {
    display: inline-block;
    background: #edbc53;
    padding: 10px 20px;
    border-radius: 5px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
}

    .btn-main:hover {
        background: #56b1de;
        color: #ffffff;
    }

.featured {
  background: var(--clr-primary);
  position: relative;
  top: -7px;
}

    .featured::after {
        width: 50%;
        right: 0;
        top: 0;
        bottom: 0;
        background: #324e87;
        content: "";
        position: absolute;
        z-index: 1;
    }

    .featured h2 {
        text-transform: uppercase;
        color: #fff;
        font-weight: 700;
        margin: 0 0 20px 0;
        border-bottom: #4765ad solid 1px;
        position: relative;
        font-size: 22px;
        padding-bottom: 20px;
    }

        .featured h2::after {
            width: 100px;
            height: 6px;
            background: #4765ad;
            position: absolute;
            bottom: -6px;
            content: "";
            left: 0;
        }

.featured-content {
  padding: 80px 40px;
}

    .featured-content.abt-mall p {
        color: #b8c3d9;
        margin: 25px 0;
        font-size: 16px;
    }

    .featured-content.abt-mall .btn-main {
        background: #edbc53;
        color: #324e87;
    }

        .featured-content.abt-mall .btn-main:hover {
            background: #fff;
        }

    .featured-content.draw-infos {
        z-index: 4;
        position: relative;
    }

        .featured-content.draw-infos h2 {
            border-bottom: #fcba5e solid 1px;
        }

            .featured-content.draw-infos h2::after {
                background: #fcba5e;
            }

        .featured-content.draw-infos .drawinfoslide {
            width: 100%;
        }

            .featured-content.draw-infos .drawinfoslide li {
                padding: 20px 0;
                display: inline-block;
                width: 100%;
            }

                .featured-content.draw-infos .drawinfoslide li h3 {
                    font-size: 20px;
                    color: #fff;
                    font-weight: 600;
                    margin-bottom: 15px;
                }

                .featured-content.draw-infos .drawinfoslide li ul li {
                    width: 100%;
                    float: left;
                    padding: 10px 0;
                    font-size: 16px;
                    color: #fff5e7;
                    font-weight: 600;
                }

            .featured-content.draw-infos .drawinfoslide .slick-prev,
            .featured-content.draw-infos .drawinfoslide .slick-next {
                top: -70px;
                -webkit-transform: translate(0, 0);
                -ms-transform: translate(0, 0);
                transform: translate(0, 0);
                right: -20px;
            }

            .featured-content.draw-infos .drawinfoslide .slick-prev {
                left: auto;
                right: 30px;
            }

.participate-malls {
    padding: 100px 0;
    background: #f6f6f4;
    text-align: center;
    background-size: cover;
    position: relative;
    top: -7px;
}

    .participate-malls h3 {
        color: var(--clr-primary);
        text-transform: uppercase;
        font-size: 30px;
        font-weight: 700;
        margin: 0;
    }

    .participate-malls p {
        color: #000;
        font-weight: 600;
        text-transform: uppercase;
        font-size: 20px;
        margin: 20px 0 0;
    }

    .participate-malls .malls-slider {
        margin: 40px 0 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }

        .participate-malls .malls-slider li {
            padding: 10px;
        }

            .participate-malls .malls-slider li img {
                width: auto;
                max-height: 150px;
                padding:15px;
                border:1px solid #ccc;
            }
            .participate-malls .malls-slider li:hover img{
                background:#fff;
            }

            .participate-malls .malls-slider .slick-prev {
                left: -50px;
            }

        .participate-malls .malls-slider .slick-next {
            right: -50px;
        }

            .participate-malls .malls-slider .slick-prev:before,
            .participate-malls .malls-slider .slick-next:before {
                font-size: 60px;
                color: #000;
            }

.grid-section {
  padding: 80px 0;
}

    .grid-section .img-thumbs {
        border: #ccc solid 1px;
        max-height: 200px;
        overflow: hidden;
    }

    .grid-section .content {
        padding: 0px 0;
    }

        .grid-section .content h4 {
            font-size: 20px;
            color: #333;
            font-weight: 600;
            border-bottom: #ccc solid 1px;
            padding-bottom: 15px;
            margin-bottom: 15px;
        }

        .grid-section .content p {
            color: #666;
            margin: 0 0 20px 0;
            font-size: 16px;
        }

    .grid-section .know-more {
        color: #5786c5;
        font-weight: 600;
        text-transform: uppercase;
        font-size: 16px;
    }

.featured-testimonials {
  background: var(--clr-primary);
  padding: 20px 30px 60px 30px;
}

    .featured-testimonials h4 {
        font-size: 20px;
        color: #fff;
        font-weight: 600;
        border-bottom: #4765ad solid 1px;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

.testimonial-slider li p {
  color: #b8c3d9;
  font-size: 16px;
  margin: 0;
}

    .testimonial-slider li p.name {
        color: #fff;
        font-weight: 700;
        margin: 10px 0;
    }

.testimonial-slider li span {
    color: #edbc53;
    font-size: 13px;
}

.testimonial-slider .slick-prev,
.testimonial-slider .slick-next {
  top: auto;
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  right: -20px;
  bottom: -60px;
}

.testimonial-slider .slick-prev {
  left: auto;
  right: 30px;
}

footer {
    background: #333 url("../images/footer-bg.jpg") top center repeat;
    padding: 50px 0 100px 0;
}

    footer h5 {
        color: #fff;
        font-weight: 700;
        margin: 0 0 30px 0;
        font-size: 20px;
    }

    footer ul {
        margin-bottom: 20px;
    }

        footer ul li {
            display: inline-block;
            padding-right: 20px;
        }

            footer ul li a {
                color: #b4b4b4;
                font-size: 16px;
            }

        footer ul.main li {
            padding-right: 30px;
        }

            footer ul.main li a {
                color: #edbc53;
                font-size: 18px;
                font-weight: 600;
            }

                footer ul.main li a:hover,
                footer ul li a:hover {
                    color: #fff;
                }

    footer .social {
        margin: 20px 0 0;
        display: grid;
        grid-auto-flow: column;
        justify-content: start;
        gap: 15px;
        width: 100%;
    }

        footer .social li {
            margin: 0px;
            padding: 0;
        }

            footer .social li a {
                font-size: 22px;
                color: #fff;
                background: #5e5e5e;
                border-radius: 100%;
                width: 40px;
                height: 40px;
                text-align: center;
                display: block;
                line-height: 38px;
            }

                footer .social li a:hover {
                    background: var(--clr-primary);
                    color: #fff;
                }

    footer p,
    footer p a {
        color: #fff;
        font-size: 20px;
    }

        footer p a:hover {
            color: #d1841a;
        }

        footer p.copyright {
            color: #717171;
            font-size: 16px;
        }

.page {
  padding: 40px 0;
  min-height: 60vh;
}

    .page h1 {
        font-size: 32px;
        color: var(--clr-primary);
        margin: 0 0 30px;
        font-weight: 700;
    }

    .page p {
        font-size: 16px;
        margin-bottom: 15px;
    }

.terms-list li {
    font-size: 16px;
    color: #333;
    padding-inline-start: 30px;
    position: relative;
    margin-bottom: 20px;
    line-height: 24px;
}

    .terms-list li::before {
        font-family: "IcoFont";
        content: "\ea69";
        color: #fec028;
        font-size: 22px;
        left: 0;
        top: 0;
        position: absolute;
    }

    .terms-list li ul {
        width: 100%;
        margin: 10px;
        display: inline-block;
    }

        .terms-list li ul li {
            margin: 10px 0;
        }

            .terms-list li ul li::before {
                content: "\ea94";
                font-size: 24px;
            }

.lulu-privacy h3 {
  font-weight: 700;
  font-size: 18px;
  margin: 20px 0;
}

.article-listing {
    margin-bottom: 20px;
    display: inline-block;
    width: 100%;
}
    .article-listing img{ border:1px solid #ccc;}
    .article-listing img,
    .news-img {
        margin-bottom: 20px;
    }

    .article-listing .article-details {
        padding-left: 10px;
    }

        .article-listing .article-details h4 {
            font-weight: 600;
            color: #000;
            font-size: 2.4rem;
            margin: 0 0 30px;
        }

        .article-listing .article-details span,
        .published-date {
            font-weight: 600;
            color: #333;
            font-size: 14px;
            padding-bottom: 20px;
            display: block;
        }

        .article-listing .article-details p {
            font-size: 16px;
            color: #666;
        }

        .article-listing .article-details .btn-main {
            background: #edbc53;
            color: #fff;
            display: table;
            margin-top: 25px;
        }

            .article-listing .article-details .btn-main:hover {
                background: #337ab7;
                color: #fff;
            }

.pagination {
    display: block;
    padding-left: 0;
    margin: 15px 0;
    border-radius: 0;
}

    .pagination > li {
        display: inline-block;
    }

        .pagination > li > a,
        .pagination > li > span {
            position: relative;
            text-align: center;
            font-size: 16px;
            float: left;
            margin: 0 2px;
            line-height: 40px;
            color: #999;
            text-decoration: none;
            border: #ccc solid 1px;
            width: 40px;
            height: 40px;
            border-radius: 5px;
        }

        .pagination > li:first-child > a,
        .pagination > li:first-child > span {
            margin-left: 0;
        }

        .pagination > li > a:hover,
        .pagination > li > span:hover,
        .pagination > li > a:focus,
        .pagination > li > span:focus {
            z-index: 2;
            color: #000;
            border-color: #000;
        }

    .pagination > .active > a,
    .pagination > .active > span,
    .pagination > .active > a:hover,
    .pagination > .active > span:hover,
    .pagination > .active > a:focus,
    .pagination > .active > span:focus {
        z-index: 3;
        color: #fff;
        cursor: default;
        background-color: #d20562;
        border-color: transparent;
        width: 40px;
        height: 40px;
    }

    .pagination > .disabled > span,
    .pagination > .disabled > span:hover,
    .pagination > .disabled > span:focus,
    .pagination > .disabled > a,
    .pagination > .disabled > a:hover,
    .pagination > .disabled > a:focus {
        color: #777;
        cursor: not-allowed;
        background-color: #fff;
        border-color: #ddd;
    }

.winners .article-details {
    padding-left: 0;
}

    .winners .article-details h4 {
        font-size: 2rem;
        margin-bottom: 20px;
        color: #d20562;
    }

    .winners .article-details span {
        padding-bottom: 10px;
    }

a:-webkit-any-link {
    text-decoration: none !important;
}

.md-gallery {
    position: relative;
}

    .md-gallery .md-albums {
        margin-bottom: 20px;
        display: block;
        position: relative;
        overflow: hidden;
        cursor: pointer;
    }

        .md-gallery .md-albums .md-thumb {
            width: 100%;
            height: 240px;
            display: block;
            position: relative;
            background-color: #ccc;
            background-size: cover;
            background-repeat: no-repeat;
            -webkit-transition: all 0.3s ease-in-out;
            transition: all 0.3s ease-in-out;
            background-size: cover;
            background-position: center;
        }

            .md-gallery .md-albums .md-thumb .album-title {
                position: absolute;
                z-index: 4;
                bottom: -45px;
                right: 0;
                width: 100%;
                padding: 10px 15px;
                overflow: hidden;
                transition: all 0.3s ease-in-out;
                background: #323232;
            }

                .md-gallery .md-albums .md-thumb .album-title p {
                    color: #fff;
                    font-size: 16px;
                    padding: 0;
                    margin: 0;
                    position: relative;
                    font-weight: 600;
                    transition: all 0.3s ease-in-out;
                }

                    .md-gallery .md-albums .md-thumb .album-title p.uploded-date {
                        font-size: 10px !important;
                        margin-bottom: 5px;
                        font-weight: 400;
                    }

                .md-gallery .md-albums .md-thumb .album-title .view--photos {
                    display: inline-block;
                    border: #fff solid 1px;
                    border-radius: 5px;
                    color: #fff;
                    font-size: 13px;
                    padding: 5px 10px;
                    margin-top: 15px;
                    opacity: 0;
                    transition: all 0.3s ease-in-out;
                }

        .md-gallery .md-albums:hover .md-thumb .album-title {
            bottom: 0;
            background: #121b60;
        }

            .md-gallery .md-albums:hover .md-thumb .album-title .view--photos {
                opacity: 1;
            }

.light-md-gallery-container {
    margin: 0 0 20px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.light-md-gallery,
.light-md-gallery > ul {
    width: 100%;
}

    .light-md-gallery > ul {
        margin-bottom: 0;
    }

        .light-md-gallery > ul > li {
            margin-bottom: 15px;
            height: 200px;
            overflow: hidden;
        }

            .light-md-gallery > ul > li a {
                display: block;
                overflow: hidden;
                position: relative;
                float: left;
            }

                .light-md-gallery > ul > li a > img {
                    -webkit-transition: -webkit-transform 0.15s ease 0;
                    -moz-transition: -moz-transform 0.15s ease 0;
                    -o-transition: -o-transform 0.15s ease 0;
                    transition: transform 0.15s ease 0;
                    -webkit-transform: scale3d(1, 1, 1);
                    transform: scale3d(1, 1, 1);
                    height: 100%;
                    width: 100%;
                }

                .light-md-gallery > ul > li a:hover > img {
                    -webkit-transform: scale3d(1.1, 1.1, 1.1);
                    transform: scale3d(1.1, 1.1, 1.1);
                }

                .light-md-gallery > ul > li a:hover .light-md-gallery-poster > img {
                    opacity: 1;
                }

                .light-md-gallery > ul > li a .light-md-gallery-poster {
                    background-color: rgba(0, 0, 0, 0.1);
                    bottom: 0;
                    left: 0;
                    position: absolute;
                    right: 0;
                    top: 0;
                    -webkit-transition: background-color 0.15s ease 0;
                    -o-transition: background-color 0.15s ease 0;
                    transition: background-color 0.15s ease 0;
                }

                    .light-md-gallery > ul > li a .light-md-gallery-poster > img {
                        left: 50%;
                        margin-left: -10px;
                        margin-top: -10px;
                        opacity: 0;
                        position: absolute;
                        top: 50%;
                        -webkit-transition: opacity 0.3s ease 0;
                        -o-transition: opacity 0.3s ease 0;
                        transition: opacity 0.3s ease 0;
                    }

                .light-md-gallery > ul > li a:hover .light-md-gallery-poster {
                    background-color: rgba(0, 0, 0, 0.5);
                }

    .light-md-gallery .justified-gallery > a > img {
        -webkit-transition: -webkit-transform 0.15s ease 0;
        -moz-transition: -moz-transform 0.15s ease 0;
        -o-transition: -o-transform 0.15s ease 0;
        transition: transform 0.15s ease 0;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
        height: 100%;
        width: 100%;
    }

    .light-md-gallery .justified-gallery > a:hover > img {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    .light-md-gallery .justified-gallery > a:hover .light-md-gallery-poster > img {
        opacity: 1;
    }

    .light-md-gallery .justified-gallery > a .light-md-gallery-poster {
        background-color: rgba(0, 0, 0, 0.1);
        bottom: 0;
        left: 0;
        position: absolute;
        right: 0;
        top: 0;
        -webkit-transition: background-color 0.15s ease 0;
        -o-transition: background-color 0.15s ease 0;
        transition: background-color 0.15s ease 0;
    }

        .light-md-gallery .justified-gallery > a .light-md-gallery-poster > img {
            left: 50%;
            margin-left: -10px;
            margin-top: -10px;
            opacity: 0;
            position: absolute;
            top: 50%;
            -webkit-transition: opacity 0.3s ease 0;
            -o-transition: opacity 0.3s ease 0;
            transition: opacity 0.3s ease 0;
        }

    .light-md-gallery .justified-gallery > a:hover .light-md-gallery-poster {
        background-color: rgba(0, 0, 0, 0.5);
    }

    .light-md-gallery .video .light-md-gallery-poster img {
        height: 48px;
        margin-left: -24px;
        margin-top: -24px;
        opacity: 0.8;
        width: 48px;
    }

    .light-md-gallery > ul > li a .album-hover {
        position: absolute;
        z-index: 5;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgb(42 116 167 / 65%);
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        opacity: 0;
        padding: 20px;
        overflow: hidden;
    }

        .light-md-gallery > ul > li a .album-hover .magnify {
            width: 40px;
            height: 40px;
            position: absolute;
            left: 50%;
            top: 40%;
            margin-left: -20px;
            margin-top: -20px;
        }

    .light-md-gallery > ul > li a:hover .album-hover {
        opacity: 1;
    }

    .light-md-gallery > ul > li.video a p {
        color: #fff;
        font-weight: 600;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        font-size: 14px;
        padding: 20px;
        margin: 0;
        z-index: 3;
        background: -moz-linear-gradient( top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 87% );
        background: -webkit-linear-gradient( top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 87% );
        background: linear-gradient( to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 87% );
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#99000000', GradientType=0);
    }

.accordion-container {
  position: relative;
  height: auto;
  margin: 10px auto;
}

.set {
  position: relative;
  width: 100%;
  height: auto;
  background-color: #fff;
}

    .set > a {
        display: block;
        padding: 15px 40px 15px 0;
        text-decoration: none;
        color: #231f20;
        font-size: 16px;
        font-weight: 600;
        border-bottom: 1px solid #e5e5e5;
        -webkit-transition: all 0.2s linear;
        -moz-transition: all 0.2s linear;
        transition: all 0.2s linear;
        position: relative;
        cursor: pointer;
    }

        /* .set > a i{ font-size: 20px; font-size:1.2rem;color:#ccc;position:absolute; z-index: 55; right: 10px; top: 22px} */
        .set > a:after {
            width: 30px;
            height: 30px;
            border: 1px solid #ccc;
            content: "";
            position: absolute;
            right: 0px;
            top: 15px;
            border-radius: 100%;
        }

        .set > a:hover,
        .set > a.active {
            color: #000;
            border-bottom-color: #edbc53;
        }

.accord-content {
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  display: none;
}

    .accord-content p {
        padding: 20px 0;
        margin: 0;
        color: #000;
        font-size: 16px;
    }

.set > a::before {
    font-family: "IcoFont";
    content: "\efc2";
    font-size: 20px;
    font-size: 1.2rem;
    color: #ccc;
    position: absolute;
    z-index: 55;
    right: 10px;
    top: 22px;
}

.set > a.active::before {
  content: "\ef9a";
}

@media (max-width: 1200px) {
    .light-md-gallery > ul > li {
        height: 150px;
    }
}

@media (max-width: 1080px) {
    .has-drop-menu {
        display: block;
    }

    .menu-container {
        width: 100%;
    }

  .menu-mobile {
    display: block;
    float: right;
    width: 50px;
    padding: 10px;
    height: 50px;
    border-radius: 5px;
  }

    .menu-dropdown-icon:before {
        display: none;
    }

    .menu > ul {
        display: none;
        padding-left: 0;
    }

        .menu > ul > li {
            width: 100%;
            float: none;
            display: block;
        }

            .menu > ul > li a {
                padding: 10px 15px;
                width: 100%;
                display: block;
            }

            .menu > ul > li > ul {
                position: relative;
                top: 0 !important;
            }

                .menu > ul > li > ul.normal-sub {
                    width: 100%;
                    padding: 10px 20px;
                }

                    .menu > ul > li > ul.normal-sub > li a {
                        width: 100%;
                        padding: 10px 0;
                        font-size: 14px;
                    }

                .menu > ul > li > ul > li {
                    float: none;
                    width: 100%;
                }

                    .menu > ul > li > ul > li:first-child {
                        margin: 0;
                    }

                    .menu > ul > li > ul > li > ul {
                        position: relative;
                    }

                        .menu > ul > li > ul > li > ul > li {
                            float: none;
                        }

    .menu .show-on-mobile {
        display: block;
        float: left;
        width: 100%;
        padding: 10px;
        -webkit-transition: all 600ms cubic-bezier(0.2, 0.965, 0, 1.005);
        transition: all 600ms cubic-bezier(0.2, 0.965, 0, 1.005);
    }

    .menu > ul > li > ul.normal-sub > li a::after {
        display: none !important;
    }

    .menu-container::before {
        position: absolute;
        left: 30px;
        top: 10px;
        color: #fff;
        content: "Menu";
        font-size: 20px;
        font-weight: 700;
    }
}

@media (max-width: 992px) {
    .featured-testimonials {
        margin-top: 50px;
    }
}

@media (max-width: 772px) {
    .grid-section .img-thumbs {
        max-height: inherit;
    }

    .featured::after {
        display: none;
    }

    .featured-content.draw-infos {
        background: #4765ad;
    }

    footer .social {
        margin-bottom: 20px;
    }
}

@media (max-width: 700px) {
    .mob-banner-slider {
        display: block;
    }

  .slick-dots {
    bottom: 10px;
  }

    .full-width-hero-banner .fullscreen-caption {
        display: none;
    }

    header .logo {
        width: 100px;
    }

    header .ad-alain {
        max-width: 140px;
    }

  header aside {
    gap: 20px;
  }

    .menu-container::before {
        left: 20px;
    }

    .featured-content {
        padding: 30px 0;
    }

        .featured-content.draw-infos {
            padding: 30px 20px;
        }

    .featured h2 {
        font-size: 18px;
    }

  .featured-content.abt-mall p,
  .grid-section .content h4,
  .testimonial-slider li p,
  footer ul.main li a,
  footer ul li a,
  footer p.copyright,
  .terms-list li {
    font-size: 14px;
  }

  .participate-malls {
    padding: 50px 0;
    background-image: none;
  }

        .participate-malls h3 {
            font-size: 2.2rem;
        }

        .participate-malls p {
            font-size: 16px;
        }

        .participate-malls .malls-slider {
            margin: 0 15px;
        }

            .participate-malls .malls-slider li {
                width: 50%;
                padding: 10px 5px;
            }

    .grid-section {
        padding: 40px 0;
    }

        .grid-section .content {
            padding: 5px 0;
        }

            .grid-section .content p {
                display: none;
            }

    footer {
        padding: 40px 0;
    }

        footer h5 {
            font-size: 16px;
            margin-bottom: 20px;
        }

        footer ul.main li {
            padding-right: 20px;
        }

        footer ul li {
            padding: 10px 20px 10px 0;
        }

    .page {
        padding: 30px 0;
    }

        .page h1 {
            font-size: 22px;
        }

    .winners .article-details h4 {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }

    .winners .article-details span {
        font-size: 12px;
        padding-bottom: 5px;
    }

    .winners .col-xs-7 {
        padding-left: 0;
    }

  .light-md-gallery > ul > li {
    height: 90px;
  }

        .light-md-gallery > ul > li a .album-hover p {
            display: none;
        }

    .video-gallery .light-md-gallery > ul > li a .album-hover .magnify {
        padding: 0;
        width: 30px;
        height: 30px;
        margin: 0 auto;
    }

    .md-gallery .md-albums .md-thumb .album-title {
        bottom: 0;
    }

        .md-gallery .md-albums .md-thumb .album-title .view--photos {
            opacity: 1;
        }

  .light-md-gallery > ul > li.video a p {
    font-size: 12px;
    padding: 10px;
  }
}

@font-face {
    font-family: "IcoFont";
    font-weight: 400;
    font-style: Regular;
    font-display: swap;
    src: url(icofont.woff2) format("woff2"), url(icofont.woff) format("woff");
}

[class^="icofont-"],
[class*=" icofont-"] {
    font-family: "IcoFont" !important;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    line-height: 1;
    -webkit-font-feature-settings: liga;
    font-feature-settings: liga;
    -webkit-font-smoothing: antialiased;
}

.icofont-facebook:before {
    content: "\ed37";
}

.icofont-twitter:before {
    content: "\ed7a";
}

.icofont-instagram:before {
    content: "\ed46";
}

.icofont-youtube:before {
    content: "\ed8b";
}

.icofont-plus:before {
    content: "\efc2";
}

.icofont-minus:before {
    content: "\ef9a";
}

.head-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.event-item {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 25px;
    padding-block-end: 25px;
    margin-block-start: 3%;
}

.container.car-win .head-wrap {
}
.wrap.mega-win.one-million {
    display: block;
}

    .wrap.mega-win.one-million .event-item {
        grid-template-columns: 1fr 1fr 1fr;
    }
.container.car-win {
    grid-template-columns: 1fr 1fr 1fr;
    display: grid;
    border-bottom: 1px solid #324e87;
    padding-block-end: 4%;
    margin-block-start: 4%;
    margin-block-end: 4%;
    gap: 25px;
}
    .container.car-win .event-item {
        grid-template-columns: 1fr;
        gap: 25px;
        justify-items: center;
        text-align: center;
    }

.container.car-win::before{ display:none;}
.mega-win .img-wrap img {    max-width: 300px; margin:0 auto;}


.container.car-win .head-wrap {
    grid-area: 1 / 4 / 1 / 1;
}
.event-item:nth-child(even) .img-wrap {
    order: 2;
}

    .event-item h2,
    .event-item h3,
    .event-item span,
    .event-home h2 {
        color: var(--clr-primary);
        display: block;
        text-transform: uppercase;
        font-weight: 700;
        margin-block-start: 0;
    }

.event-item h3 {
    margin: 0px;
    font-size: 20px;
   
}

.event-item span {
    margin-inline-end: 5%;
    color: #5786c5;
}

    .event-item .event-date {
        display: flex;
        margin-block-end: 4%;
    }

.events select {
    background: var(--clr-primary);
    padding: 10px;
    color: #fff;
    border: 0;
}

.mega-win .event-item {
    align-items: center;
    gap: 5%;
}

.winner .box {
    display: inline-block;
    margin-bottom: 20px;
    padding: 30px 0;
    background: #efefef;
    vertical-align: top;
    text-align: center;
    cursor: pointer;
    position: relative;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius:5px;
}

.winner .content {
    position: relative;
    padding: 40px;
    background: #324e87;
    color: #fff;
    display: grid;
    align-items: start;
    align-content: center;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-block-end: 20px;
    width: 100%;
}

.winner .wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.winner .grid-section .wrap {
    justify-content: flex-start;
}
    .winner .content div {
        padding: 0px;
        border-inline-end: 1px solid #fff;
    }

    .winner .content div:nth-child(even) {
        border: 0;
    }

    .winner .content div p {
        margin: 10px 0px;
        color: #fff;
    }

.winner .current {
    background: #324e87;
    color: #fff;
}

    .winner .current::after {
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        bottom: -30px;
        left: 0px;
        background: #324e87;
        z-index: -1;
    }

.winner-slider .slick-slider {
    margin-block-end: 5%;
}

    .winner-slider .slick-slider .element {
        color: #000;
        display: inline-block;
        border: 1px solid #324e87;
        margin: 0px 10px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        font-size: 20px;
        flex-wrap: wrap;
        align-content: flex-start;
    }

.slick-slider .slick-disabled {
    opacity: 0;
    pointer-events: none;
}

.winner-info {
    padding: 4%;
    flex-basis: 40%;
}

.slick-slider .days {
    width: 150px;
    height: 150px;
    background: #324e87;
    border-radius: 50%;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 30px;
    line-height: normal;
}

    .slick-slider .days:after {
        content: "";
        width: 1px;
        height: 100%;
        position: absolute;
        background: #324e87;
        z-index: -1;
    }

.winner-info p,
.mega-win p {
    font-weight: 500;
}

.winner-slider .slick-dots {
    position: relative;
    bottom: 0;
}

    .winner-slider .slick-dots li button {
        background: #4a67a3;
    }

    .winner-slider .slick-dots li.slick-active button {
        border: solid 3px #121b60;
    }

.winner-slider h3,
.winner-slider a {
    color: var(--clr-primary);
    display: block;
    text-transform: uppercase;
    font-weight: 700;
    margin: 0 auto;
    text-align: center;
    margin-block-end: 45px;
    padding-block-end: 22px;
    border-bottom: 1px solid;
    max-width: 400px;
}
.winner-slider a:hover {color: #edbc53;}
.winner-slider h3 {font-size: 30px;}
.winner-slider a {font-size: 20px;}

.event-home .wrap {
    display: grid;
    align-items: center;
    grid-template-columns: 1.5fr 3fr;
}

.winner .grid-section{ padding:0px;}
.event-home .event-img-wrap {
    display: grid;
    grid-template-columns: 2fr 1.5fr;
    grid-template-rows: repeat(5, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    max-height: 420px;
}

.div1 {
    grid-area: 1 / 1 / 4 / 2;
}

.div2 {
    grid-area: 3 / 2 / 6 / 3;
}

.div3 {
    grid-area: 1 / 2 / 3 / 3;
}

.div4 {
    grid-area: 4 / 1 / 6 / 2;
}




.event-home .wrap .event-img-wrap picture img {
    grid-area: 1/1;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

.event-home .wrap .event-img-wrap figure {
    position: relative;
    overflow: hidden;
}

    .event-home .wrap .event-img-wrap figure:hover figcaption {
        height: 100%;
        opacity: 1;
        transition: all 0.5s ease-out;
    }

.event-home .wrap .event-img-wrap figcaption a {
    font-size: 14px;
    margin-block-start: 20px;
}

.event-home .wrap .event-img-wrap figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient( 180deg, #324e8742 20%, #324e87e6 90%, #324e87 100% );
    z-index: 2;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    transition: all 0.5s ease-out;
    padding: 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
    color: #fff;
    font-size: 20px;
}
section.event-home.page {
    display: block;
    margin-block-end: 5%;
    border-top: 1px solid #ccc;
    padding-block-start: 5%;
}
section.winner-slider {
    padding-block-start: 5%;
}
.contents h4{
    font-weight: 600;
    margin-block-end: 3%;
}
.featured-content h4 {
    font-weight: 400;
    margin-block-start: 6%;
    color: #fff;
    text-transform: uppercase;
    padding-inline-start: 30px;
    position: relative;
}
    .featured-content h4::before {
        font-family: "IcoFont";
        content: "\ea69";
        color: #fec028;
        font-size: 22px;
        left: 0;
        top: 0;
        position: absolute;
    }
.mallevents.page{ min-height:auto}
.mallevents ul {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    width: 100%;
    text-align: center;
    align-items: flex-start;
    align-content: flex-start;
}

    .mallevents ul li {
        padding-block-end: 25px;
        border: 1px solid #ccc;
        max-width: 350px;
        min-width: 300px;
        min-height:430px;
        background: #cccccc30;
    }
        .mallevents ul li h4 {
            padding-block-start: 25px;
            font-size: 20px;
            margin-block-end: 30px;
            font-weight: 600;
            color: #1f1f1fcc;
        }
        .mallevents ul li a {
            color: #121b60;
            border: 1px solid #121b60;
            padding: 10px 25px;
            font-size: 16px;
            display: inline-block;
        }
        .mallevents ul li a:hover {background: #121b60; color:#fff;  }
.event-item a {
    color: #121b60;
    display:inline-block;
    border: 1px solid #121b60;
    margin-block-start:25px;
    padding: 10px 25px;
    font-size: 16px;
}
    .event-item a:hover {
        background: #121b60;
        color: #fff;
    }

    @media (max-width: 700px) {
        .event-item {
        grid-template-columns: 1fr;
    }
        .event-home .event-img-wrap {
            max-height: 100%;
        }
            .winner .content {
        grid-template-columns: 1fr;
    }

        .winner .content div {
            padding: 0px 0px 40px 0px;
            border-inline-end: 0px;
            border-block-end: 1px solid #fff;
        }

    .event-item:nth-child(even) .img-wrap {
        order: 0;
    }

    .winner-slider .slick-slider .element {
        flex-direction: column;
        margin: 0px;
    }

    .event-home .wrap {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .winner .grid-section {
        padding: 15px;
    }

    .slick-slider .days:after {
        content: "";
        width: 100%;
        height: 1px;
        z-index: -1;
    }

    .winner-slider a {
        font-size: 20px;
    }

    .winner-info {
        padding: 8%;
        flex-basis: 100%;
    }

    .event-home .event-img-wrap {
        display: flex;
        gap: 25px;
        flex-direction: column;
    }

    .mega-win .event-item {
        text-align: center;
    }

    .winner .grid-section .content p {
        display: block;
    }
    .container.car-win {
        display: flex;
       flex-direction: column;
        flex-wrap: wrap;
    }
    .wrap.mega-win.one-million .event-item {
        grid-template-columns: 1fr;
    }
    .winner .head-wrap h1{ margin-block-start:15px;}

    }
