* {
    font-family: "Museo-Sans";
}

body {
    padding: 0;
    margin: 0;
    letter-spacing: 0.3px;
}

/*
Fonts for web
 */
@font-face {
    font-family: Font;
    src: url(../fonts/MyriadPro-Regular.woff)
}

@font-face {
    font-family: bold;
    src: url(../fonts/FuturaStd-Bold.woff)
}

@font-face {
    font-family: book;
    src: url('../fonts/FuturaStd-Book.woff')
}

@font-face {
    font-family: medium;
    src: url('../fonts/FuturaStd Medium.woff')
}

@font-face {
    font-family: bold-ob;
    src: url(../fonts/FuturaStd-BoldOblique.woff)
}

p {
    font-family: "Montserrat-Regular";
    line-height: 1.5;
    font-size: 15px;
    color: #6f7173;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    letter-spacing: 2px;
}

a {
    color: #333333;
    color: #333333;
    text-decoration: none;
    cursor: pointer;
}

li a {
    cursor: pointer !important;
}

.uppercase {
    text-transform: uppercase;
}

.capitalize {
    text-transform: capitalize;
}

.underline {
    text-decoration: underline;
}

.txt-center {
    text-align: center;
}

.txt-justify {
    text-align: justify;
}

.txt-bold {
    font-weight: bold;
}

.txt-light {
    font-weight: 300;
}

.txt-white {
    color: #ffffff;
}

.txt-black {
    color: #000000;
}

.txt-navy {
    color: #003f72;
}

.txt-gray {
    color: #6f7173;
}

.montserrat-bold {
    font-family: "Montserrat-Bold";
}

.montserrat-medium {
    font-family: "Montserrat-Medium";
}

.montserrat-regular {
    font-family: "Montserrat-Regular";
}

.divided p {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 40px;
    -moz-column-gap: 40px;
    column-gap: 40px;
}

.w-1 {
    width: 100%;
}

.w-2 {
    width: 50%;
}

.w-3 {
    width: 33.33%;
}

.w-4 {
    width: 25%;
}

.w-5 {
    width: 20%;
}

.w-6 {
    width: 16.66%;
}

.w-7 {
    width: 14.28%;
}

.w-8 {
    width: 12.5%;
}

.w-9 {
    width: 11.11%;
}

.w-13 {
    width: 66.67%;
}

.w-14 {
    width: 75%;
}

.w-15 {
    width: 80%;
}

.w-16 {
    width: 83.34%;
}

.w-17 {
    width: 85.72%;
}

.w-18 {
    width: 87.5%;
}

.w-19 {
    width: 88.89%;
}

.w-fit {
    width: fit-content;
}

.w-max {
    width: max-content;
}

.h-100 {
    height: 100%;
}

.h-80 {
    height: 80%;
}

.h-60 {
    height: 60%;
}

.h-40 {
    height: 40%;
}

/*.container {*/
/*width: 65%;*/
/*margin-right: auto;*/
/*margin-left: auto;*/
/*-webkit-box-sizing: border-box;*/
/*box-sizing: border-box;*/
/*}*/

.container {
    width: 1140px;
    margin: 0 auto;
}

.container-full {
    width: 100%;
}

@media (max-width: 768px) {
    .container {
        width: 100%;
    }
}

@media (max-width: 1440px) {
    .container {
        width: 80%;
    }
}

.container-75 {
    width: 75%;
    margin-right: auto;
    margin-left: auto;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.container-60 {
    width: 60%;
    margin-right: auto;
    margin-left: auto;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.container-25 {
    width: 25%;
    margin-right: auto;
    margin-left: auto;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/* Flexed */
.col-flexed {
    display: flex;
    flex-direction: column;
}

.flexed-1-gap {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.flexed-2-gap {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.flexed-3-gap {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.half-gap {
    gap: 0.5rem;
}

.flexed {
    display: flex;
}

.flexed-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flexed-end {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.flexed-start {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.flexed-spaced-btween {
    display: flex;
    justify-content: space-between;
}

.flexed-spaced-evenly {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.flexed-baseline {
    display: flex;
    align-items: baseline;
}

.flexed-marg-auto {
    display: flex;
    margin: auto;
}

.reverse {
    flex-direction: row-reverse;
}

.lftd {
    justify-content: flex-end;
    padding-bottom: 1rem;
}

/* Hide Elements on Desktop */
.hide-on-desktop {
    display: none;
}

.d-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.flex-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.d-grid {
    display: grid;
}

.d-block {
    display: block;
}

.d-inline-block {
    display: inline-block;
}

.hidden {
    display: none;
}

/* Content Justify */
.j-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.j-sb {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.j-sa {
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.j-start {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
}

.j-end {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
}

.align-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.align-start {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.align-end {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

/* Width */
.w100 {
    width: 100px;
}

.w-30 {
    width: 30%;
}

.w-40 {
    width: 40%;
}

.w-50 {
    width: 50%;
}

/* Paddings */
.p-0 {
    padding: 0;
}

.p-1 {
    padding: 1rem;
}

.p-2 {
    padding: 2rem;
}

.p-3 {
    padding: 3rem;
}

.p-4 {
    padding: 4rem;
}

.p-5 {
    padding: 5rem;
}

.pt-1 {
    padding-top: 1rem;
}

.pt-2 {
    padding-top: 2rem;
}

.pt-3 {
    padding-top: 3rem;
}

.pt-4 {
    padding-top: 4rem;
}

.pt-5 {
    padding-top: 5rem;
}

.pt-6 {
    padding-top: 6rem;
}

.pt-7 {
    padding-top: 7rem;
}

.pt-8 {
    padding-top: 8rem;
}

.pt-9 {
    padding-top: 9rem;
}

.pr-1 {
    padding-right: 1rem;
}

.pr-2 {
    padding-right: 2rem;
}

.pr-3 {
    padding-right: 3rem;
}

.pr-4 {
    padding-right: 4rem;
}

.pr-5 {
    padding-right: 5rem;
}

.pb-1 {
    padding-bottom: 1rem;
}

.pb-2 {
    padding-bottom: 2rem;
}

.pb-3 {
    padding-bottom: 3rem;
}

.pb-4 {
    padding-bottom: 4rem;
}

.pb-5 {
    padding-bottom: 5rem;
}

.pl-1 {
    padding-left: 1rem;
}

.pl-2 {
    padding-left: 2rem;
}

.pl-3 {
    padding-left: 3rem;
}

.pl-4 {
    padding-left: 4rem;
}

.pl-5 {
    padding-left: 5rem;
}

/* Margins */
.m-0 {
    margin: 0;
}

.m-1 {
    margin: 1rem;
}

.m-2 {
    margin: 2rem;
}

.m-3 {
    margin: 3rem;
}

.m-4 {
    margin: 4rem;
}

.m-5 {
    margin: 5rem;
}

.mt-0 {
    margin-top: 0;
}

.m-auto {
    margin: auto;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

.mt-4 {
    margin-top: 4rem;
}

.mt-5 {
    margin-top: 5rem;
}

.mr-0 {
    margin-right: 0;
}

.mr-1 {
    margin-right: 1rem;
}

.mr-2 {
    margin-right: 2rem;
}

.mr-3 {
    margin-right: 3rem;
}

.mr-4 {
    margin-right: 4rem;
}

.mr-5 {
    margin-right: 5rem;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.mb-4 {
    margin-bottom: 4rem;
}

.mb-5 {
    margin-bottom: 5rem;
}

.ml-0 {
    margin-left: 0;
}

.ml-1 {
    margin-left: 1rem;
}

.ml-2 {
    margin-left: 2rem;
}

.ml-3 {
    margin-left: 3rem;
}

.ml-4 {
    margin-left: 4rem;
}

.ml-5 {
    margin-left: 5rem;
}

/* Positions */
.p-rel {
    position: relative;
}

.p-abs {
    position: absolute;
}

/* Height */
.vh100 {
    height: 100vh;
}

/* Fonts */
.font-extra-big {
    font-size: 130px;
}

.font12 {
    font-size: 12px;
}

.font14 {
    font-size: 14px;
}

.font16 {
    font-size: 16px;
}

.font18 {
    font-size: 18px;
}

.font20 {
    font-size: 20px;
}

@keyframes float {
    0% {
        transform: translatey(0px);
    }
    50% {
        transform: translatey(-20px);
    }
    100% {
        transform: translatey(0px);
    }
}

.fa-chevron-left,
.fa-chevron-right,
.glide__slide p {
    color: #ffff;
    cursor: pointer;
    text-align: start;
}

/* Titles */
.section-title {
    font-family: Montserrat-Regular;
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    font-style: normal;
    letter-spacing: 2px;
    color: #ef3100;
    padding-bottom: 30px;
}

.block-title {
    font-family: Montserrat-Medium;
    text-transform: uppercase;
    font-size: 25px;
    color: #003f72;
}

.cat-title {
    font-size: 40px;
    color: #adced0;
    margin-bottom: 1rem;
    font-family: "Larken-Bold";
}

.Larken-Bold {
    font-family: "Larken-Bold";
}

.notfound-404 .cat-title {
    font-size: 100px;
}

/* Block Paragraphs */
.block-paragraph {
    font-size: 20px;
    line-height: 25px;
}

/* Tabs */
.tabs-section .tab {
    color: #ef3100;
    padding:6px 10px 6px 13px!important;
    border: 1px solid #ef3100;
    border-radius: 7px;
    margin: 7px;
    font-size: 13px;
    line-height: 20px;
    -webkit-transition: all 0.4s;
    font-weight: 400;
}

.tabs-section .tab:hover {
    background-color: #ef3100;
    color: #fff;
}

.tabs-section .enjoy-nav-active {
    background-color: #ef3100;
    color: #fff;
}

.tabs-section {
    padding-top: 4rem;
}

.tabs-section .tabs-wrapper a {
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;

}

.tab {
    cursor: pointer;
}

.tabs-section .flexed {
    gap: 3rem;
}

.tabs-section .tabs-wrapper a:hover {
    color: #b0776c;
}

.tabs-section .tabs-wrapper a.active {
    color: #b0776c;
    font-weight: bold;
}

.tabs-section .img-wrapper {
    margin: 3rem auto;
}

.tabs-section .img-wrapper img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

/* Overlay */

.openBtn {
    background: url(../../frontend-assets/images/icons/search.png) no-repeat center;
    border: none;
    width: 19px;
    height: 16px;
    cursor: pointer;
    margin-top: 6px;
}

.overlay {
    height: 100%;
    width: 100%;
    display: none;
    position: fixed;
    z-index: 999999;
    top: 0;
    left: 0;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.9);
}

.overlay-content {
    position: relative;
    top: 46%;
    width: 80%;
    text-align: center;
    margin-top: 30px;
    margin: auto;
}

.overlay .closebtn {
    position: absolute;
    top: 85px;
    right: 65px;
    font-size: 60px;
    cursor: pointer;
    color: white;
}

.overlay .closebtn:hover {
    color: #ccc;
}

.overlay input[type="text"] {
    padding: 15px;
    font-size: 17px;
    border: none;
    float: left;
    width: 80%;
    background: white;
}

.overlay input[type="text"]:hover {
    background: #f1f1f1;
}

.overlay button {
    float: left;
    width: 10%;
    padding: 15px;
    background: #ef3100;
    font-size: 17px;
    border: none;
    cursor: pointer;
    color: #fff;
}

.overlay button:hover {
    background: #204f7d;
}

.search-lang {
    direction: rtl;
}

.search-icon {
    width: 16px;
    margin-left: 2rem;
}

/* Header & Navbar */

.main-logo {
    width: 10rem;
}

.mobile-navbar {
    display: none;
}

.mobile-navbar-inner {
    display: none;
}

.mobile-logo {
    /*padding: 2rem 0 0;*/
    padding-top: 1.5rem;
}

.container .mobile-logo {
    justify-content: center;
    display: flex;
}

header .search-lang .lang-wrapper {
    font-size: 16px;
    border: 0;
    outline: 0;
    cursor: pointer;
}

.navbar {
    background-color: #adced0;
    padding: 1rem;
}

/*.navbar .container {*/
/*padding: unset;*/
/*}*/

.nav-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 0;
    margin-top: 10px;
    /*margin-bottom: 10px;*/
}

.nav-list li {
    list-style: none;
}

.list-item {
    text-decoration: none;
    cursor: pointer;
    color: #fff;
}

.menu-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.banner-img {
    width: 100%;
}

/* Cookies */
.ps-cookies-banner {
    position: fixed;
    bottom: 0;
    z-index: 999;
    color: #aaa;
    background: linear-gradient(rgba(19, 19, 19, .9), rgba(19, 19, 19, .9));
    padding: 15px;
    width: 100%;
}

.ps-cookies-banner p {
    font-size: 13px;
    line-height: 18px;
    font-weight: 200;
    margin-bottom: 0;
    margin-top: 0;
    float: left;
    width: 55%;
    color: #fff !important;
}

.ps-cookies-banner p a {
    color: #aaa;
    font-weight: 500;
    text-decoration-line: none;
}

.ps-cookies-banner a:hover {
    text-decoration: underline;
}

.ps-cookies-banner .btn-opt-in {
    font-size: 13px;
    min-width: 140px;
    padding: 8px 20px 9px;
    color: #dc4405;
    border: 1px solid #dc4405;
    background-color: transparent;
    float: right;
    white-space: normal;
    border-radius: 2px;
    cursor: pointer;
}

.ps-cookies-banner .btn-opt-out {
    float: right;
    color: #fff;
    font-size: 11px;
    margin-right: 15px;
    margin-top: 8px;
    text-decoration: none;
}

.cookie-btns {
    width: 98%;
}

.fw-normal {
    font-weight: normal;
}

.fw-500 {
    font-weight: 500;
}

/* Responsive Style */
@media (max-width: 680px) {
    .ps-cookies-banner p {
        width: 100%;
        margin-bottom: 20px;
    }

    .ps-cookies-banner {
        width: 99%;
    }
}

/* Foooter  */
footer {
    background-repeat: no-repeat;
    background-color: #191919;
    padding: 0.5rem 0 4rem 0;
    position: relative;
    margin-top: 10rem;
}

footer::before,
footer::after {
    background-color: transparent;
}

footer .rows-wrapper {
    gap: 50px;
}

footer ul {
    padding-left: 0;
}

footer li {
    list-style: none;
}

footer .second-row {
    align-items: flex-start;
    gap: 135px;
    padding: 30px 0;
}

footer .second-row li {
    margin-top: 5px;
    line-height: 1.4;
}

footer .justifiying-res {
    width: 134px;
    height: 23px;
}

footer .copy-rights {
    position: absolute;
    bottom: 0;
    border-top: 1px solid #fff;
    width: 100%;
}

footer .copy-rights > div {
    justify-content: space-evenly;
    margin: auto;
    padding: 0 15px;
}

/* Homepage Top Banner */
.ibn-hp-top-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ibn-hp-top-banner {
    margin-top: 2rem;
}

/* Video Section */
.img-box {
    position: absolute;
    right: 0;
    width: 50%;
    height: 100%;
}

.main-img-box {
    width: 40%;
    height: auto;
}

.main-img-box img {
    width: 100%;
}

.video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Category section */
.mall-categories {
    margin: auto;
}

.mall-categories p {
    color: #000;
}

.mall-categories .box {
    width: 30.33%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 90vh;
}

.mall-categories .box img {
    width: 100%;
    height: 20vw;
}

.mall-categories .box p {
    height: 120px;
}

.favorite-stores {
    direction: ltr;
}

.favorite-stores p {
    color: #ffff;
}

/* Container Boxes */
.box {
    width: 30%;
}

.main-content-box {
    width: 50%;
    height: max-content;
}

.box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Buttons Style */
.main-btn {
    color: #ef3100;
    padding: 0.5rem 2rem;
    border: 1px solid #ef3100;
    background: transparent;
    text-decoration: none;
    border-radius: 7px;
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 16px;
    line-height: 1.1;
    -webkit-transition: all 0.4s;
    font-weight: 100;
    cursor: pointer;
}

.main-btn:hover {
    color: #fff;
    background: #ef3100;
}

.cat-btn {
    color: #adced0;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
}

.cat-btn::before {
    content: "";
    display: inline-block;
    border-bottom: 1px solid #adced0;
    margin-right: 0.4rem;
    width: 28px;
}

.cat-btn::after {
    content: " >";
}

.store-btn {
    color: #adced0;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
}

.store-btn::before {
    content: "";
    display: inline-block;
    border-bottom: 1px solid #adced0;
    margin-right: 0.4rem;
    width: 28px;
}

.store-btn::after {
    content: " >";
}

/* Favourite Store Section */

.store-intro-r {
    color: #fff;
    margin-bottom: 2rem;
    margin-right: calc((100% - 1140px) / 2);
    width: 40%;
}

.store-intro-l {
    color: #fff;
    margin-bottom: 2rem;
    margin-left: calc((100% - 1140px) / 2);
    width: 40%;
}

.store-intro-r h3,
.store-intro-l h3 {
    font-size: 36px;
}

.store-intro p {
    line-height: 21px;
}

.store-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.store-img-box {
    width: 50%;
    margin-right: 3rem;
}

.store-img-box-l {
    width: 50%;
    margin-left: 3rem;
}

.store-box {
    padding: 3rem 0;
}

.first-store-box {
    padding-top: 6rem;
}

.favorite-stores {
    background-color: #222222;
}

.favourite-store-title {
    font-size: 46px;
    color: #adced0;
}

/* Slider Images */
.slider-section {
    position: relative;
}

.slider-item {
    position: relative;
    margin-bottom: 25rem;
}

.slider-img {
    width: 100%;
    height: 50vh;
    object-fit: cover;
}

.glide__track {
    direction: ltr;
}

.glide__slide {
    position: relative;
}

.glide__slides {
    overflow: visible;
    height: 70vh;
}

.glide__arrows {
    position: absolute;
    top: 80%;
    z-index: 9999999999;
    right: 0;
}

.glide__arrow {
    display: flex !important;
    box-shadow: unset !important;
    text-shadow: unset !important;
    background-color: unset !important;
    border: unset !important;
    direction: ltr;
}

.glide__bullets {
    position: absolute;
    z-index: 2;
    bottom: 2em;
    left: 50%;
    display: inline-flex;
    list-style: none;
    transform: translateX(-50%);
    top: 85%;
}

.glide__bullet {
    background-color: #d2d2d2; /* Bullet color */
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.glide__bullet--active {
    background-color: #adced0 !important;
}

.glide__bullet.active {
    background-color: #333; /* Active bullet color */
}

.glide__bullet:hover,
.glide__bullet:focus {
    border: 2px solid #adced0;
    background-color: #adced0;
}

.slider-arr-txt {
    color: #adced0;
    font-size: 16px;
    text-transform: capitalize;
    width: max-content;
}

.bg-color {
    background: #adced0;
    padding: 1rem;
    width: 50%;
    position: absolute;
    bottom: 0;
    z-index: 999999;
}

.bg-color h2 {
    font-size: 46px;
}

.btn-slider {
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
}

.btn-slider::before {
    content: "";
    display: inline-block;
    border-bottom: 1px solid #fff;
    margin-right: 0.4rem;
    width: 28px;
}

.btn-slider::after {
    content: " >";
}

.slider-description {
    color: #fff;
    margin-bottom: 2rem;
    margin-left: calc(100% - 40vw);
}

.circle-arrow {
    position: absolute;
    bottom: 12.5rem;
    right: 12rem;
    color: #adced0;
    cursor: pointer;
}

.circle-arrow.prev {
    right: 28rem;
}

.arrow-label {
    margin-left: 1rem;
}

.white-arrow {
    cursor: pointer;
    margin: 0 0.5rem;
}

/* Events Section */

.events {
    display: flex;
    justify-content: space-between;
}

.events-desc {
    color: #1c1c1c;
}

.arrow-color {
    color: #adced0;
}

.arrow-style {
    font-size: 35px;
    margin-top: 2rem;
}

.events-list-desc {
    padding: 1rem 2rem;
    padding-bottom: 3rem;
}

.events-description {
    padding: 2rem 3rem;
    width: 40%;
}

.events-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.events-box-img {
    width: 50%;
}

.events-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
}

.event-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.events-title {
    margin-top: 0rem !important;
    font-size: 23px;
    color: #adced0;
}

.events-btn {
    margin: 0 auto;
    text-align: center;
    margin-top: 3rem;
}

.events-list-btn {
    color: #adced0;
    border: 1px solid #adced0;
    background: transparent;
    padding: 1rem;
    width: 14rem;
    cursor: pointer;
}

.events-list-btn-inner-event {
    color: #adced0;
    border: 1px solid #adced0;
    background: transparent;
    padding: 0.7rem 1rem;
    width: fit-content;
    cursor: pointer;
    font-size: 14px;
}

.event-img-responsive img {
    width: 100%;
}

.bg-icon {
    background-image: url(../images/icons/icon_coart_name.webp);
    background-size: contain;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
}


.court-desc p {
    font-size: 11px;
}

.ctas {
    justify-content: space-between;
}

.ctas a,
.dataTables_empty {
    margin: auto 0;
    font-family: "Montserrat-Regular";
    line-height: 1.5;
    color: #6f7173;
    font-size: 11px;
}

.dataTables_empty {
    padding: 1rem 0 !important;
}

.cta-btn {
    color: #6d6e70;
    font-size: 10px;
    font-weight: 700;
    border: 1px solid #dc4405;
    padding: 4px 10px 3px;
    display: inline-block;
    margin: auto;
}

.story-head .flexed-spaced-btween a p {
    font-size: 12px;
}

.dataTable_wrapper {
    position: relative;
}

.dataTables_wrapper .dataTables_filter input {
    position: absolute;
    z-index: 1;
    right: 0;
    top: 40px;
    background-color: #e3e3e3 !important;
    border: unset;
    border-radius: 0;
    height: 25px;
    background: url("../images/icons/search_optimized.png") center right no-repeat ;
    padding-right:25px;

}

#dataTable th {
    background-color: unset;
}

.upper-cont {
    margin-bottom: 20px;
    position: absolute;
    top: 30px;
    z-index: 2;
    right: 170px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.dataTables_wrapper .dataTables_filter input:focus-visible {
    outline: unset;
}

.orange-selected,
.blue-selected {
    font-size: 12px;
}

table.dataTable tbody th,
table.dataTable tbody td {
    padding: unset;
}

.flexed-stories {
    overflow-x: auto;
}

.list {
    max-width: 100%;
    overflow-x: auto;
    position: relative;
}

#dataTable th {
    padding: 15px 0;
    text-align: start;
    border-bottom: #000 1px solid;
}

table.dataTable.display tbody tr.odd > .sorting_1,
table.dataTable.order-column.stripe tbody tr.odd > .sorting_1,
table.dataTable.stripe tbody tr.odd,
table.dataTable.display tbody tr.odd,
table.dataTable.display tbody tr.even > .sorting_1,
table.dataTable.order-column.stripe tbody tr.even > .sorting_1,
table.dataTable.hover tbody tr:hover,
table.dataTable.display tbody tr:hover {
    background-color: unset;
    height: 60px;
}

table.dataTable.display tbody tr.even > .sorting_1,
table.dataTable.order-column.stripe tbody tr.even > .sorting_1,
table.dataTable.stripe tbody tr.even,
table.dataTable.display tbody tr.even,
table.dataTable.display tbody tr.even > .sorting_1,
table.dataTable.order-column.stripe tbody tr.even > .sorting_1,
table.dataTable.hover tbody tr:hover,
table.dataTable.display tbody tr:hover {
    background-color: unset;
}

#dataTable {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
    border-spacing: 0;
}

#sortAZ,
#sortZA {
    background-color: unset;
    color: #000;
    padding: 10px 0px;
    border: none;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 4px;
}

.title-head {
    font-size: 16px;
}

.odd .story-head .title-sec,
.even .story-head .title-sec {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
}

#dataTable_wrapper {
    margin-top: 30px;
    margin-bottom: 30px;
}

.dataTable tr {
    border-bottom: 1px solid #ffae62;
}

.dataTable .story-head .title-sec a {
    width: 50%;
}

.breadcrumb li {
    margin: 0;
    padding: 0;
    list-style: none;
}

/*.nav-list > li > a {*/
/*padding: 0.2rem 0.5rem;*/
/*border: 1px solid transparent;*/
/*border-radius: 7px;*/
/*transition: 0.3s;*/
/*font-family: Montserrat-Regular;*/
/*font-size: 15px;*/
/*}*/

header .nav-list a.arrow {
    padding-right: 2rem;
}

/* Megamenu */
header .sub-list {
    top: 100%;
    background-color: white;
    display: none;
    z-index: 200;
    padding-left: 0;
}

header li > .sub-list {
    position: absolute;
    left: 0;
    width: 100%;
}

.sub-list li,
.sub-list a {
    padding: 0.5rem;
    font-family: Montserrat-Regular;
    color: #333333;
    transition: 0.3s;
}

.sub-list li:hover a {
    color: #db460d;
}

.sub-container {
    top: 100%;
    left: 0;
}

.nav-list > li:hover .sub-list {
    display: block;
}

.arrow::before {
    content: "\f107";
    position: absolute;
    right: 1.5rem;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    top: 50%;
    transform: translateY(-50%);
    color: #333333;
    padding: 0 5px;
}

/* Breadcrumb */
.breadcrumb {
    background-color: #adced0;
    padding: 0.6rem 1rem;
}

.row {
    margin: 0 -15px;
}

.breadcrumb ul li {
    margin: 0;
}

.breadcrumb ul svg {
    width: 7px;
}

.breadcrumb li a {
    letter-spacing: 0;
}

.breadcrumb li:hover a {
    text-decoration: underline;
}

.mobile-nav-list svg {
    width: 15px;
    transition: 0.3s;
}

@media (max-width: 1300px) {
    .glide__arrows {
        right: -100px;
    }

    .events-list {
        margin-top: unset;
    }

    .glide__slides {
        height: 55vh;
    }

    .glide__bullets {
        top: 75%;
    }
}

/* Responsive Design elements */
@media (max-width: 1200px) {
    .container {
        width: 85%;
        padding: 2rem 0.5rem;
    }

    .pb-1 {
        padding-bottom: 1rem;
    }

    .pb-2 {
        padding-bottom: 2rem;
    }

    .pb-3 {
        padding-bottom: 3rem;
    }

    .bg-color {
        background: #adced0;
        padding: 1rem;
        width: 70%;
        position: absolute;
    }

    .circle-arrow {
        bottom: unset;
    }

    .slider-section {
        margin-bottom: 10rem;
    }

    .glide__arrows {
        top: 110%;
    }

    .cat-title {
        font-size: 28px;
    }

    .mall-categories .box p {
        height: 150px;
    }

    .events-list .event-box {
        flex-direction: column;
    }

    .events-list {
        gap: 3rem;
    }

    .events-list-desc {
        padding: 1rem 0rem;
    }

    .dataTable .court-desc {
        width: 50%;
    }

    .dataTable .ctas {
        gap: unset;
    }

    .news-g .title-sec {
        gap: 5% !important;
        flex-direction: column;
    }

    .news-g .w-2 {
        width: 100%;
    }

    .img-pt {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .overlay button {
        width: 20%;
    }
    p {
        font-size: 14px;
    }

    h1 {
        font-size: 35px;
    }

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 20px;
    }

    h4 {
        font-size: 12px;
    }

    .divided p {
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 1;
    }

    .w-1,
    .w-2,
    .w-3,
    .w-4,
    .w-5,
    .w-6,
    .w-7,
    .w-8,
    .w-9,
    .w-13,
    .w-14,
    .w-15,
    .w-16,
    .w-17,
    .w-18,
    .w-19,
    .w-30,
    .w-50 {
        width: 100%;
    }

    .pb-1 {
        padding-bottom: 1rem;
    }

    .pb-2 {
        padding-bottom: 2rem;
    }

    .pb-3 {
        padding-bottom: 3rem;
    }

    .navbar {
        display: none;
    }

    /*.main-logo {*/
    /*width: 8rem;*/
    /*}*/
    .menu-btn {
        /*width: 25px;*/
        /*height: 25px;*/
        /*cursor: pointer;*/
        /*display: block !important;*/
        width: 35px;
        height: 30px;
        cursor: pointer;
        display: block !important;
    }

    .menu-btn-inner {
        width: 25px;
        height: 25px;
        cursor: pointer;
        display: block !important;
    }

    .mobile-navbar {
        background-color: #adced0;
        height: 100vh;
        position: fixed;
        z-index: 10;
        width: 100%;
        top: 0;
        margin-left: 50rem;
        transition: all 0.5s;
        display: unset;
    }

    .mobile-navbar-inner {
        background-color: #adced0;
        height: 100vh;
        position: fixed;
        z-index: 10;
        width: 100%;
        top: 0;
        margin-left: 50rem;
        transition: all 0.5s;
        display: unset;
    }

    .mobile-navbar.active {
        margin-left: 0;
        height: 100%;
    }

    .mobile-navbar-inner.active {
        margin-left: 0;
        height: 100%;
    }

    .remove-decoration {
        text-decoration: none;
    }

    .txt-white {
        color: #fff;
    }

    .mobile-logo {
        margin: 0 auto;
        padding-right: 1rem;
        padding-top: unset;
    }

    .container .mobile-logo {
        justify-content: space-between;
        display: flex;
    }

    .mobile-nav-list {
        /*list-style: none;*/
        /*color: #fff;*/
        /*text-align: center;*/
        line-height: 5rem;
        padding: unset;
    }

    .mobile-nav-delete {
        display: flex;
        justify-content: space-between;
        flex-direction: row-reverse;
        padding: 0 1rem;
    }

    .delete-icon {
        width: 23px;
        height: 23px;
    }


    .delete-icon-inner {
        width: 23px;
        height: 23px;
    }

    .delete-icon-inner img {
        width: 80%;
        height: 80%;
        padding: 4rem 0;
    }

    .mobile-nav-logo {
        margin: 0 auto;
        padding-right: 1rem;
    }


    .hide-icon-on-mobile {
        display: none;
    }

    .hide-on-mobile {
        display: none;
    }

    .hide-on-desktop {
        display: unset;
    }

    .menu-img {
        width: 80%;
        height: 80%;
    }

    .mall-categories {
        margin-top: unset;
    }

    .img-box {
        width: 100%;
        height: 100%;
    }

    .img-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .box {
        width: fit-content;
        padding: 2rem;
    }

    .store-img-box {
        width: 100%;
        margin: unset;
    }

    .white-arrow {
        width: 50px;
    }

    .store-intro-r h3,
    .store-intro-l h3 {
        font-size: 26px;
    }

    .cat-title {
        font-size: 22px;
        color: #adced0;
        margin-bottom: 1rem;
        margin-top: 0rem;
        width: fit-content;
    }

    .mall-categories .box {
        width: 100%;
        height: 100vh;
    }

    .mall-categories .box img {
        height: 100%;
    }

    .notfound-404 .cat-title {
        font-size: 65px;
    }

    .store-intro-r {
        color: aliceblue;
        margin-bottom: 2rem;
        margin-right: unset;
        width: 100%;
    }

    .store-intro-l {
        color: #fff;
        margin-bottom: 2rem;
        margin-left: unset;
        width: 100%;
    }

    .store-img-box-l {
        width: 100%;
        margin-left: unset;
    }

    .slider-description {
        margin-left: calc(100% - 550px);
    }

    .favorite-stores {
        background-color: #222222;
        padding: 2rem;
    }

    .reverse img {
        padding-right: 0rem !important;
    }

    .events {
        display: unset;
        justify-content: unset;
    }

    .events-box-img {
        width: 80%;
        padding: 2rem;
    }

    .latest-events .events-box-img,
    .latest-events .event-img-responsive,
    .latest-events .events-description,
    .latest-events .events-list-desc {
        width: 100%;
        padding: unset;
    }

    .latest-events .events-list-desc {
        padding-bottom: 1rem;
    }

    .favourite-store-title {
        padding: unset;
        margin: unset;
        font-size: 40px;
        color: #adced0;
    }

    .events-description {
        padding: 2rem;
        width: fit-content;
    }

    .events-list {
        display: unset;
        justify-content: unset;
        align-items: unset;
        margin-top: 3rem;
    }

    .event-box {
        display: unset;
        justify-content: unset;
        align-items: unset;
    }

    .event-img-responsive {
        padding: 2rem;
        width: 80%;
        height: 100%;
    }

    .event-img-responsive img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .store-box img {
        padding-right: unset;
    }

    .hide-txt-on-mobile {
        display: none;
    }

    .hide-icon-on-mobile {
        display: none;
    }

    .main-boxes {
        flex-direction: column;
    }

    .first-store-box {
        padding-top: 2rem;
        flex-direction: column;
    }

    .mobile-slider li {
        height: 100vh;
    }

    .mobile-slider .banner-img {
        height: 100%;
        object-fit: cover;
    }

    .slider-img {
        height: 70vh;
    }

    .slider-description {
        color: #fff;
        margin-bottom: 2rem;
        margin-left: unset;
        padding: 1rem;
    }

    .glide__slides {
        height: 100vh;
    }

    .bg-color {
        background: #adced0;
        padding: 1rem;
        width: 90%;
        position: absolute;
    }

    .bg-color h2 {
        font-size: 20px;
    }

    .glide__arrows {
        top: 100%;
        right: 0;
        display: flex;
        width: 100%;
        justify-content: center;
    }

    .glide__arrow {
        position: relative !important;
        top: 20%;
    }

    .circle-arrow {
        position: absolute;
        bottom: -5rem;
        right: 12rem;
        color: #adced0;
        cursor: pointer;
    }

    .circle-arrow.prev,
    .circle-arrow.next {
        right: unset;
        display: flex !important;
        width: 100px;
        left: unset;
    }

    .glide__bullets {
        bottom: 0;
        top: 125vh;
    }

    .slider-description p {
        font-size: 12px;
    }

    footer {
        margin-top: 10rem;
        text-align: center;
    }

    footer .second-row {
        padding: 0;
    }

    footer .second-row,
    footer .rows-wrapper,
    footer .copy-rights > div {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
    }

    footer .rows-wrapper {
        gap: 0;
        margin-top: 3rem;
    }

    footer .copy-rights > div {
        position: absolute;
        background-color: #191919;
        border-top: 1px solid #fff;
        padding: 45px 0;
        width: 100%;
        gap: 0;
    }

    footer .copy-rights li {
        padding: 15px 15px 0;
    }

    .tabs-section .tab {
        padding: 0.4rem 0.2rem;
        font-size: 12px;
        text-align: center;
    }

    .tabs-section .flexed {
        gap: 1.5rem;
        display: grid;
        grid-template-columns: 23% 23% 23%;
    }

    .location-box .flexed {
        gap: 1rem;
    }

    .terms .loc {
        flex-direction: column;
    }

    .hotels-section .two-blocks-section {
        flex-direction: column;
    }

    .hotels-section .main-img-box,
    .hotels-section .main-content-box {
        width: 80%;
    }

    .ctas {
        gap: unset;
        justify-content: space-between;
        margin-bottom: 1rem;
    }

    .ctas a {
        margin: unset;
    }

    .court-desc {
        justify-content: end;
        width: 50%;
    }

    .odd .story-head .flexed-spaced-btween,
    .even .story-head .flexed-spaced-btween {
        flex-direction: column;
    }

    .odd .story-head .title-sec,
    .even .story-head .title-sec {
        width: 100%;
    }

    .dataTables_wrapper .dataTables_filter input {
        width: 43.333%;
    }

    .dataTables_wrapper .dataTables_filter input {
        top: 50px;
    }

    .upper-cont {
        top: 75px;
        right: 0;
        justify-content: space-between;
    }

    #dataTable th {
        height: 40px;
        padding-bottom: 2rem;
    }

    .dataTable .ctas a {
        width: unset;
    }

    .mobile-navbar.active {
        margin-left: 0;
        height: 100%;
        overflow: scroll;
    }

    .mobile-navbar-inner.active {
        margin-left: 0;
        height: 100%;
        overflow: scroll;
    }


    .sub-mob-container {
        display: none;
    }

    .sub-mob-container.active {
        display: block;
    }

    .sub-mob-list {
        padding-left: 0;
    }

    svg.rotate {
        transform: rotate(180deg);
    }

    .mobile-nav-list .li {
        padding-right: unset;
    }

    .mobile-navbar .pl-1 {
        padding-right: 1rem;
    }

    .mobile-navbar-inner .pl-1 {
        padding-right: 1rem;
    }

    .article-share.clearfix {
        width: 100%;
    }

    .article-share > p {
        width: 100%;
        border-right: unset;
    }

    .news-g .title-sec {
        gap: 10% !important;
        flex-direction: column;
    }

    .img-pt {
        width: 100%;
        padding-bottom: 1rem;
    }

    p {
        font-size: 14px;
    }

    h1 {
        font-size: 35px;
    }

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 20px;
    }

    h4 {
        font-size: 12px;
    }

    .divided p {
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 1;
    }

    .w-1,
    .w-2,
    .w-3,
    .w-4,
    .w-5,
    .w-6,
    .w-7,
    .w-8,
    .w-9,
    .w-13,
    .w-14,
    .w-15,
    .w-16,
    .w-17,
    .w-18,
    .w-19,
    .w-30,
    .w-50 {
        width: 100%;
    }

    .container {
        padding: 1rem;
        width: 100%;
        max-width: 90%;
        margin: 0 auto;
    }

    .pb-1 {
        padding-bottom: 1rem;
    }

    .pb-2 {
        padding-bottom: 2rem;
    }

    .pb-3 {
        padding-bottom: 3rem;
    }

    .navbar {
        display: none;
    }

    /*.main-logo {*/
    /*width: 8rem;*/
    /*}*/
    .menu-btn {
        width: 35px;
        height: 30px;
        cursor: pointer;
        display: block !important;
    }

    .mobile-navbar {
        background-color: #adced0;
        height: 100vh;
        position: fixed;
        z-index: 10;
        width: 100%;
        top: 0;
        margin-left: 50rem;
        transition: all 0.5s;
        display: unset;
    }

    .mobile-navbar.active {
        margin-left: 0;
        height: 100%;
    }

    .remove-decoration {
        text-decoration: none;
    }

    .txt-white {
        color: #fff;
    }

    .container .mobile-logo {
        justify-content: space-between;
        display: flex;
    }

    /*.mobile-nav-list {*/
    /*list-style: none;*/
    /*color: #fff;*/
    /*text-align: center;*/
    /*line-height: 3rem;*/
    /*padding: 0 3rem;*/
    /*}*/
    .delete-icon {
        width: 23px;
        height: 23px;
    }

    .delete-icon img {
        width: 100%;
        height: 100%;
        /*padding: 4rem 0;*/
    }

    .mobile-nav-logo {
        margin: 0 auto;
        padding-right: 1rem;
    }

    .mobile-nav-delete {
        display: flex;
        justify-content: space-between;
        flex-direction: row-reverse;
        padding: 0 1rem;
    }

    .hide-icon-on-mobile {
        display: none;
    }

    .hide-on-mobile {
        display: none;
    }

    .hide-on-desktop {
        display: unset;
    }

    .menu-img {
        width: 80%;
        height: 80%;
    }

    .mall-categories {
        margin-top: unset;
    }

    .img-box {
        width: 100%;
        height: 100%;
    }

    .img-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .box {
        width: fit-content;
        padding: 2rem;
    }

    .store-img-box {
        width: 100%;
        margin: unset;
    }

    .white-arrow {
        width: 50px;
    }

    .store-intro-r h3,
    .store-intro-l h3 {
        font-size: 26px;
    }

    .cat-title {
        font-size: 22px;
        color: #adced0;
        margin-bottom: 1rem;
        margin-top: 0rem;
        width: fit-content;
    }

    .mall-categories .box {
        width: 100%;
        height: 100vh;
    }

    .mall-categories .box img {
        height: 100%;
    }

    .notfound-404 .cat-title {
        font-size: 65px;
    }

    .store-intro-r {
        color: aliceblue;
        margin-bottom: 2rem;
        margin-right: unset;
        width: 100%;
    }

    .store-intro-l {
        color: #fff;
        margin-bottom: 2rem;
        margin-left: unset;
        width: 100%;
    }

    .store-img-box-l {
        width: 100%;
        margin-left: unset;
    }

    .slider-description {
        margin-left: calc(100% - 550px);
    }

    .favorite-stores {
        background-color: #222222;
        padding: 2rem;
    }

    .reverse img {
        padding-right: 0rem !important;
    }

    .events {
        display: unset;
        justify-content: unset;
    }

    .events-box-img {
        width: 80%;
        padding: 2rem;
    }

    .latest-events .events-box-img,
    .latest-events .event-img-responsive,
    .latest-events .events-description,
    .latest-events .events-list-desc {
        width: 100%;
        padding: unset;
    }

    .latest-events .events-list-desc {
        padding-bottom: 1rem;
    }

    .favourite-store-title {
        padding: unset;
        margin: unset;
        font-size: 40px;
        color: #adced0;
    }

    .events-description {
        padding: 2rem;
        width: fit-content;
    }

    .events-list {
        display: unset;
        justify-content: unset;
        align-items: unset;
        margin-top: 3rem;
    }

    .event-box {
        display: unset;
        justify-content: unset;
        align-items: unset;
    }

    .event-img-responsive {
        padding: 2rem;
        width: 80%;
        height: 100%;
    }

    .event-img-responsive img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .store-box img {
        padding-right: unset;
    }

    .hide-txt-on-mobile {
        display: none;
    }

    .hide-icon-on-mobile {
        display: none;
    }

    .main-boxes {
        flex-direction: column;
    }

    .first-store-box {
        padding-top: 2rem;
        flex-direction: column;
    }

    .mobile-slider li {
        height: 100vh;
    }

    .mobile-slider .banner-img {
        height: 100%;
        object-fit: cover;
    }

    .slider-img {
        height: 70vh;
    }

    .slider-description {
        color: #fff;
        margin-bottom: 2rem;
        margin-left: unset;
        padding: 1rem;
    }

    .glide__slides {
        height: 100vh;
    }

    .bg-color {
        background: #adced0;
        padding: 1rem;
        width: 90%;
        position: absolute;
    }

    .bg-color h2 {
        font-size: 20px;
    }

    .glide__arrows {
        top: 100%;
        right: 0;
        display: flex;
        width: 100%;
        justify-content: center;
    }

    .glide__arrow {
        position: relative !important;
        top: 20%;
    }

    .circle-arrow {
        position: absolute;
        bottom: -5rem;
        right: 12rem;
        color: #adced0;
        cursor: pointer;
    }

    .circle-arrow.prev,
    .circle-arrow.next {
        right: unset;
        display: flex !important;
        width: 100px;
        left: unset;
    }

    .glide__bullets {
        bottom: 0;
        top: 125vh;
    }

    .slider-description p {
        font-size: 12px;
    }

    footer {
        margin-top: 10rem;
        text-align: center;
    }

    footer .second-row {
        padding: 0;
    }

    footer .second-row,
    footer .rows-wrapper,
    footer .copy-rights > div {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
    }

    footer .rows-wrapper {
        gap: 0;
        margin-top: 3rem;
    }

    footer .copy-rights > div {
        position: absolute;
        background-color: #191919;
        border-top: 1px solid #fff;
        padding: 45px 0;
        width: 100%;
        gap: 0;
    }

    footer .copy-rights li {
        padding: 15px 15px 0;
    }

    .tabs-section .tab {
        padding: 0.4rem 0.2rem;
        font-size: 12px;
        text-align: center;
    }

    .tabs-section .flexed {
        gap: 1.5rem;
        display: grid;
        grid-template-columns: 23% 23% 23%;
    }

    .location-box .flexed {
        gap: 1rem;
    }

    .terms .loc {
        flex-direction: column;
    }

    .hotels-section .two-blocks-section {
        flex-direction: column;
    }

    .hotels-section .main-img-box,
    .hotels-section .main-content-box {
        width: 80%;
    }

    .ctas {
        gap: unset;
        justify-content: space-between;
        margin-bottom: 1rem;
    }

    .ctas a {
        margin: unset;
    }

    .court-desc {
        justify-content: end;
        width: 50%;
    }

    .odd .story-head .flexed-spaced-btween,
    .even .story-head .flexed-spaced-btween {
        flex-direction: column;
    }

    .odd .story-head .title-sec,
    .even .story-head .title-sec {
        width: 100%;
    }

    .dataTables_wrapper .dataTables_filter input {
        width: 43.333%;
    }

    .dataTables_wrapper .dataTables_filter input {
        top: 50px;
    }

    .upper-cont {
        top: 75px;
        right: 0;
        justify-content: space-between;
    }

    #dataTable th {
        height: 40px;
        padding-bottom: 2rem;
    }

    .dataTable .ctas a {
        width: unset;
    }

    .mobile-navbar.active {
        margin-left: 0;
        height: 100%;
        overflow: scroll;
    }

    .mobile-nav-list li {
        list-style: none;
        color: #fff;
        text-align: center;
        line-height: 5rem;
    }


    .sub-mob-container {
        display: none;
    }

    .sub-mob-container.active {
        display: block;
    }

    .sub-mob-list {
        padding-left: 0;
    }

    svg.rotate {
        transform: rotate(180deg);
    }

    .mobile-nav-list .li {
        padding-right: unset;
    }

    .mobile-navbar .pl-1 {
        padding-right: 1rem;
    }

    .article-share.clearfix {
        width: 100%;
    }

    .article-share > p {
        width: 100%;
        border-right: unset;
    }

    .news-g .title-sec {
        gap: 10% !important;
        flex-direction: column;
    }

    .img-pt {
        width: 100%;
        padding-bottom: 1rem;
    }
}

@media (max-width: 520px) {
    .main-logo {
        width: 6rem;
    }

    .tabs-section .flexed {
        gap: 1rem;
        display: grid;
        grid-template-columns: 40% 40%;
    }

    .terms .loc-inner {
        flex-direction: column;
    }

    .main-btn {
        color: #ef3100;
        padding: 0.5rem 1.5rem;
        font-size: 14px;
    }

    .mobile-nav-list {
        padding: 0 1rem;
    }

    .mobile-logo {
        padding: unset;
    }

    .delete-icon img {
        padding: 2rem 0;
    }

    .delete-icon-inner img {
        padding: 2rem 0;
    }

    .main-logo {
        width: 6rem;
    }

    .tabs-section .flexed {
        gap: 1rem;
        display: grid;
        grid-template-columns: 40% 40%;
    }

    .terms .loc-inner {
        flex-direction: column;
    }

    .main-btn {
        color: #ef3100;
        padding: 0.5rem 1.5rem;
        font-size: 14px;
    }

    .mobile-nav-list {
        padding: 0 1rem;
    }

    .mobile-logo {
        padding: unset;
    }

    .delete-icon img {
        padding: 2rem 0;
    }
}

.j-end-section {
    justify-content: end;
}

.ml-auto {
    margin-left: auto !important;
}

.w-fit {
    width: fit-content !important;
}

.w-max {
    width: max-content;
}

.img-pt img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-pt {
    width: 40%;
}

.news-g .title-sec {
    gap: 10% !important;
}

.text-align-center {
    text-align: center;
}

/* Changes for Second Header*/
.header-v2 {
    padding: 0 0 20px;
}

.padding-top-5 {
    padding-top: 5px;
}

.top_bar_2 {
    background-color: #fff;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-v2 .main-logo {
    width: 202px !important;
    height: 85px;
    vertical-align: middle;
}

.header-v2 .header-icons {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    position: absolute;
    right: 52px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.font-Montserrat {
    font-family: Montserrat-Regular;
    font-size: 15px;
}

.header-v2 .main-menu-list .main-menu-list-link {
    padding-left: 8px;
    /* padding-right: 12px; */
    padding-top: 3px;
    padding-bottom: 2px;
    transition: 0.3s;
    border-radius: 7px;
}

.header-v2 .main-menu-list .p-r-15 {
    padding-right: 3px;
}

.header-v2 .main-menu-list:hover .main-menu-list-link {
    text-decoration: none;
    border: 1px solid #EF3100;
    color: #EF3100;
    border-radius: 7px;
    padding-left: 3px;
    /* padding-right: 12px; */
    padding-top: 3px;
    padding-bottom: 2px;
    transition: 0.3s;
}

.header-v2 #red-list-menu .main-menu-list:hover .main-menu-list-link {
    text-decoration: none;
    border: unset;
    color: #ffffff;
    border-radius: 7px;
    padding-left: 12px;
    /* padding-right: 12px; */
    padding-top: 3px;
    padding-bottom: 2px;
    transition: 0.3s;
}

@media only screen and (min-width: 1101px) and (max-width: 1460px) {
    .font-Montserrat  {
        font-size: 11px;
        padding-left: 6px;
        padding-right: 6px;
    }
}

/*second burger menu for second header*/
@media (max-width: 992px) {
    .header-v2 .hide-on-mobile {
        display: none;
    }
    .header-v2 .wrap_header_mobile {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex !important;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
        min-height: 80px;
        padding-left: 0px;
        padding-top: 10px;
        padding-bottom: 10px;
        background-color: white;

    }
    .hamburger {
        -webkit-transform: scale(0.8);
        -moz-transform: scale(0.8);
        -ms-transform: scale(0.8);
        -o-transform: scale(0.8);
        transform: scale(0.8);
        margin-top: 5px;
    }
    .hamburger {
        font: inherit;
        display: inline-block;
        overflow: visible;
        margin: 0;
        padding: 15px;
        cursor: pointer;
        transition-timing-function: linear;
        transition-duration: .15s;
        transition-property: opacity, filter;
        text-transform: none;
        color: inherit;
        border: 0;
        background-color: transparent;
        width: 20%;
    }

    .hamburger:hover {
        opacity: .7;
    }
    .wrap_header_mobile.hide-on-desktop .mobile-href {
        width: 40%;
    }

    .hamburger-box {
        position: relative;
        display: inline-block;
        width: 40px;
        height: 24px;
    }
    .hamburger--squeeze .hamburger-inner {
        transition-timing-function: cubic-bezier(.55,.055,.675,.19);
        transition-duration: .1s;
    }

    .hamburger-inner, .hamburger-inner:after, .hamburger-inner:before {
        position: absolute;
        width: 40px;
        height: 4px;
        transition-timing-function: ease;
        transition-duration: .15s;
        transition-property: transform;
        border-radius: 4px;
        background-color: #EF3100;
    }

    .hamburger-inner {
        top: 50%;
        display: block;
        margin-top: -2px;
    }
    .hamburger--squeeze .hamburger-inner:before {
        transition: top .1s ease .14s, opacity .1s ease;
    }

    .hamburger-inner:before {
        top: -10px;
    }
    .hamburger-inner, .hamburger-inner:after, .hamburger-inner:before {
        position: absolute;
        width: 40px;
        height: 4px;
        transition-timing-function: ease;
        transition-duration: .15s;
        transition-property: transform;
        border-radius: 4px;
        background-color: #EF3100;
    }
    .hamburger--squeeze .hamburger-inner:after {
        transition: bottom .1s ease .14s, transform .1s cubic-bezier(.55,.055,.675,.19);
    }
    .hamburger-inner:after {
        bottom: -10px;
    }
    .hamburger-inner:after, .hamburger-inner:before {
        display: block;
        content: '';
    }
    .header-v2 #close-nav {
        display: none;
        color: #e65540;
        font-size: 4rem;
    }
    .header-v2 .wrap-side-menu {
        width: 100%;
        background-color: white;
        display: none;
        border-top: 1px solid #ececec;
    }
    .header-v2 .wrap-side-menu .active{
        display: block !important;
    }

    .active{
        display: block !important;
    }
    .header-v2 .side-menu {
        width: 100%;
    }
    .header-v2 .side-menu .main-menu {
        margin-bottom: 0;
        padding: 0;
    }
    .header-v2  .side-menu .main-menu > li {
        color: white;
        position: relative;
    }

    .header-v2 .side-menu .main-menu > li > a {
        padding-left: 20px;
        font-family: Montserrat-Regular;
        font-size: 15px;
        color: white;
        line-height: 2.86;
    }
    .header-v2  .arrow::before {
        content: "\f107";
        position: absolute;
        right: 1.5rem;
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        top: 50%;
        transform: translateY(-50%);
        color: white;
        padding: 0 5px;
    }

    .pagination-item {
        display: inline-block !important;
    }

}

@media only screen and (min-width: 991px) and (max-width: 1100px) {
    .font-Montserrat {
        font-size: 10px;
    }

    .container-75{
        width: 90%;
    }
}

.search-mobile-form {
    width: 100%;
    display: flex;
}

@media (max-width: 768px) {
    .leftcontent{
        text-align: center;
    }
    .leftcontent > img {
        height: auto;
        width: auto;
    }

    .rightcontent{
        text-align: center;
    }
}
