﻿#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 55555;
    overflow: hidden
}

.no-js #loader-wrapper {
    display: none
}

#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #3d8bcd;
    -webkit-animation: spin 1.7s linear infinite;
    animation: spin 1.7s linear infinite;
    z-index: 11
}

#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #893393;
    -webkit-animation: spin-reverse .6s linear infinite;
    animation: spin-reverse .6s linear infinite
}

#loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #f36f21;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@-webkit-keyframes spin-reverse {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg)
    }
}

@keyframes spin-reverse {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg)
    }
}

#loader-wrapper .loader-section {
    position: fixed;
    top: 0;
    width: 51%;
    height: 100%;
    background: #000;
    z-index: 10
}

#loader-wrapper .loader-section.section-left {
    left: 0
}

#loader-wrapper .loader-section.section-right {
    right: 0
}

.loaded #loader-wrapper .loader-section.section-left {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    transition: all .7s .3s cubic-bezier(0.645, 0.045, 0.355, 1)
}

.loaded #loader-wrapper .loader-section.section-right {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    transition: all .7s .3s cubic-bezier(0.645, 0.045, 0.355, 1)
}

.loaded #loader {
    opacity: 0;
    transition: all .3s ease-out
}

.loaded #loader-wrapper {
    visibility: hidden;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    transition: all .3s 1s ease-out
}

html,
body {
    overflow-x: hidden !important
}

body {
    background: #000;
    font-family: 'Play', sans-serif;
    font-weight: 400;
    font-style: normal
}

ul,
li {
    list-style: none;
    padding: 0;
    margin: 0
}

a,
p,
button {
    text-decoration: none;
    transition: all .5s ease
}

a:focus,
input:focus,
button:focus,
select:focus,
textarea:focus {
    outline: 0;
    outline-offset: 0;
    text-decoration: none;
    transition: all .5s ease
}

a:hover {
    text-decoration: none;
    cursor: pointer
}

img {
    border: none;
    outline: 0;
    display: block;
    transition: all .5s ease
}

img.responsive {
    width: 100%
}

button {
    border: 0
}

.clear-all,
.clearAll {
    clear: both
}

.float-left {
    float: left
}

.float-right {
    float: right
}

.img-responsive {
    width: 100%
}

.upper {
    text-transform: uppercase
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700
}

h4,
h5,
h6 {
    font-weight: 600
}

.anchor {
    font-size: 16px;
    padding: 10px 45px 10px 20px;
    background: #fff;
    color: #000;
    font-weight: 600;
    display: inline-block;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    margin: 15px 0
}

.anchor::before {
    display: block;
    width: 100%;
    position: absolute;
    border: #fff solid 2px;
    background-color: transparent;
    left: 6px;
    top: 6px;
    z-index: 1;
    content: '';
    height: 100%;
    transition: all .3s ease
}

.anchor::after {
    position: absolute;
    right: 15px;
    top: 6px;
    font-family: "IcoFont";
    color: #000;
    content: '\ea5d';
    z-index: 2;
    font-size: 20px;
    transform: translateX(0px);
    transition: all .5s ease-in-out
}

.anchor:hover,
.anchor:focus,
.anchor:active {
    background: #fff;
    color: #000
}

.anchor:hover::before,
.anchor:focus::before {
    left: 0;
    top: 0
}

.anchor:hover::after,
.anchor:focus::after {
    transform: translateX(40px);
    opacity: 0
}

.header {
    position: fixed;
    background-color: #000;
    min-height: 110px;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 5555
}

.header::after {
    content: '';
    width: 100%;
    bottom: -3px;
    height: 3px;
    display: block;
    background: #00adee;
    opacity: 0;
    visibility: hidden;
    position: absolute
}

.header.scrolled {
    -webkit-box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
    -moz-box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
    box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3)
}

.header.scrolled::after {
    opacity: 1;
    visibility: visible
}

.header .container,
.zeal-featured .container,
.dont-miss .container,
footer .container,
.breadcrumb-wrap .container {
    position: relative;
    width: 1380px
}

.header .logo {
    width: 150px;
    position: absolute;
    left: 15px;
    top: 25px;
    z-index: 55
}

.header .social {
    position: absolute;
    right: 210px;
    top: 7px;
    z-index: 55
}

.header .social li {
    float: left;
    width: 20px;
    height: 20px;
    margin: 5px 10px;
    transform: scale(1);
    transition: all .5s ease
}

.header .social li:hover {
    transform: scale(1.3)
}

.search-trigger {
    position: absolute;
    right: 15px;
    top: 60px;
    padding: 6px;
    display: block;
    background: transparent;
    width: 36px;
    height: 36px;
    border-radius: 100%;
    z-index: 55
}

.search-trigger:hover {
    background: #333
}

.search-container {
    position: absolute;
    right: 15px;
    top: 110px;
    width: 50%;
    background-color: #f1f3f3;
    padding: 15px
}

.search-container::before {
    width: 0;
    position: absolute;
    right: 10px;
    top: -15px;
    content: '';
    height: 0;
    border-style: solid;
    border-width: 0 10px 15px;
    border-color: transparent transparent #f1f3f3
}

.search-container .search-input {
    background-color: #f1f3f3;
    border: 0;
    font-size: 20px;
    color: #333;
    width: 100%
}

.search-container .search-input::-webkit-input-placeholder {
    color: #ccc
}

.search-container .search-input:-ms-input-placeholder {
    color: #ccc
}

.search-container .search-input::-moz-placeholder {
    color: #ccc;
    opacity: 1
}

.search-container .search-input:-moz-placeholder {
    color: #ccc;
    opacity: 1
}

.search-container .search-input:focus,
.search-container .search-input:active {
    color: #000
}

.language {
    font-family: 'Tajawal', sans-serif;
    position: absolute;
    top: 5px;
    right: 400px;
    color: #7d7d7d;
    padding: 10px;
    font-size: 16px;
    font-weight: 700;
    z-index: 55
}

.language:hover {
    color: #fff
}

.callnow {
    position: absolute;
    top: 0;
    right: 45px;
    background: #f36f21;
    padding: 8px 12px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    transition: all .5s ease;
    z-index: 55
}

.callnow img {
    width: 14px;
    height: 13px;
    display: inline-block;
    margin-right: 5px
}

.callnow:after {
    content: " ";
    position: absolute;
    display: block;
    width: 120%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background: #f36f21;
    transform-origin: bottom right;
    -ms-transform: skew(30deg, 0deg);
    -webkit-transform: skew(30deg, 0deg);
    transform: skew(30deg, 0deg);
    transition: all .5s ease
}

.callnow:hover {
    background: #00adee;
    color: #fff
}

.callnow:hover::after {
    background: #00adee
}

.menu-container {
    padding-left: 230px;
    position: relative;
    padding-top: 53px
}

.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
}

.menu > ul:before,
.menu > ul:after {
    content: "";
    display: table
}

.menu > ul:after {
    clear: both
}

.menu > ul > li {
    float: left;
    position: relative
}

.menu > ul > li a {
    text-decoration: none;
    padding: 18px 16px;
    display: block;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase
}

.menu > ul > li a:hover,
.menu > ul > li.active {
    background-color: transparent;
    color: #00adee
}

.menu > ul > li.active a {
    color: #00adee
}

.menu > ul > li a::after {
    position: absolute;
    bottom: 0;
    height: 5px;
    left: 0;
    width: 100%;
    background: #00adee;
    display: none;
    content: '';
    transform-origin: bottom left;
    -ms-transform: skew(-40deg, 0deg);
    -webkit-transform: skew(-40deg, 0deg);
    transform: skew(-40deg, 0deg)
}

.menu > ul > li.active a::after {
    display: block
}

.menu > ul > li > ul {
    display: none;
    width: 100%;
    background: #000;
    position: absolute;
    z-index: 99;
    left: 0;
    margin: 0;
    list-style: none;
    box-sizing: border-box;
    top: 100%;
    -webkit-box-shadow: 0 3px 4px 0 rgba(97, 97, 97, 0.6);
    -moz-box-shadow: 0 3px 4px 0 rgba(97, 97, 97, 0.6);
    box-shadow: 0 3px 4px 0 rgba(97, 97, 97, 0.6)
}

.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: .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: 280px;
    left: auto;
    padding: 20px 30px;
    border-top: #00adee solid 1px
}

.menu > ul > li > ul.normal-sub > li {
    width: 100%;
    position: relative
}

.menu > ul > li > ul.normal-sub > li a {
    border: 0;
    padding: 10px 0;
    text-transform: none;
    font-size: 14px;
    color: #fff;
    font-weight: 700;
    border-bottom: dotted #595959 2px;
    text-transform: uppercase
}

.menu > ul > li > ul > li > ul > li a:hover,
.menu > ul > li > ul.normal-sub > li a:hover {
    color: #00adee;
    border-bottom-color: #00adee
}

.menu > ul > li > ul.normal-sub > li:last-child a {
    border-bottom-width: 0
}

.has-drop-menu {
    position: absolute;
    right: 0;
    padding: 12px 15px;
    background: #151414;
    z-index: 5;
    top: 2px;
    display: none
}

.menu > ul > li > ul.normal-sub > li a::after {
    display: none !important
}

.has-drop-menu img {
    width: 20px;
    height: 20px
}

.show-drop-menu {
    display: block
}

.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
}

.tab-content > .tab-pane,
.pill-content > .pill-pane {
    display: block;
    height: 0;
    overflow: hidden
}

.tab-content > .active,
.pill-content > .active {
    height: auto
}

.slick-loading .slick-list {
    background: #000
}

.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: #fff;
    z-index: 99
}

.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: .25
}

.slick-prev:before,
.slick-next:before {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: "IcoFont";
    color: #000;
    font-size: 30px;
    line-height: 50px
}

.slick-prev {
    left: 0
}

[dir='rtl'] .slick-prev {
    right: 0;
    left: auto
}

.slick-prev:before {
    content: '\ea5c'
}

[dir='rtl'] .slick-prev:before {
    content: '\ea5d'
}

.slick-next {
    right: 0
}

[dir='rtl'] .slick-next {
    right: auto;
    left: 0
}

.slick-next:before {
    content: '\ea5d'
}

[dir='rtl'] .slick-next:before {
    content: '\ea5c'
}

.slick-prev::after,
.slick-next::after {
    display: block;
    width: 100%;
    position: absolute;
    border: #fff solid 2px;
    background-color: transparent;
    left: -6px;
    top: 6px;
    z-index: 1;
    content: '';
    height: 100%;
    transition: all .3s ease
}

.slick-next::after {
    left: auto;
    right: -6px
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    color: #000;
    outline: none;
    background: #fff
}

.slick-prev:hover::after,
.slick-prev:focus::after,
.slick-next:hover::after,
.slick-next:focus::after {
    top: 0
}

.slick-dotted.slick-slider {
    margin-bottom: 0
}

.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: 0;
    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-slide {
    -webkit-transform: translate3d(0, 0, 0)
}

.hero-banner {
    position: relative;
    background: #000
}

.hero-slider.slick-initialized,
.page-hero-slider.slick-initialized {
    visibility: visible;
    opacity: 1
}

.hero-slider li,
.page-hero-slider li {
    position: relative;
    display: none
}

.hero-slider li:first-child,
.page-hero-slider li:first-child {
    display: block;
    visibility: hidden
}

.hero-slider.slick-initialized li,
.page-hero-slider.slick-initialized li {
    display: block;
    visibility: visible !important
}

.hero-slider li {
    position: relative;
    background-color: #000;
    height: 100vh;
    overflow: hidden
}

.hero-slider li .slider-image {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 1
}

.hero-slider li .slider-caption {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
    width: 100%;
    z-index: 4;
    color: #fff
}

.hero-slider li .slider-caption h1 {
    font-size: 5rem;
    margin: 0;
    text-transform: uppercase;
    transform: translateX(-80px);
    transition: all 1.5s ease-in-out;
    opacity: 0
}

.hero-slider li .slider-caption p {
    font-size: 2.2rem;
    margin: 10px 0;
    transform: translateX(80px);
    transition: all 1.5s ease-in-out;
    opacity: 0;
    max-width: 40%
}

.hero-slider li .slider-caption .anchor {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 1.7s ease-in-out;
    margin-top: 30px
}

.hero-slider li.slick-active .slider-caption h1,
.hero-slider li.slick-active .slider-caption p,
.hero-slider li.slick-active .slider-caption .anchor {
    transform: translateY(0px);
    transform: translateX(0px);
    opacity: 1
}

.zeal-featured {
    padding: 70px 0 140px;
    position: relative;
    background: url(../images/brick-wall.jpg) top center no-repeat
}

.zeal-featured::before {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 90px;
    background: #000;
    top: -80px;
    transform-origin: bottom left;
    -ms-transform: skew(0deg, 2deg);
    -webkit-transform: skew(0deg, 2deg);
    transform: skew(0deg, 2deg)
}

.zeal-featured::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 90px;
    background: #000;
    bottom: -80px;
    transform-origin: bottom left;
    -ms-transform: skew(0deg, -2deg);
    -webkit-transform: skew(0deg, -2deg);
    transform: skew(0deg, -2deg);
    z-index: 55
}

.zeal-featured h2 {
    font-size: 4rem;
    margin: 0;
    color: #fff;
    text-align: center
}

.zeal-featured p {
    color: #999;
    font-size: 20px;
    text-align: center
}

.zeal-featured .item {
    margin-top: 40px
}

.zeal-featured .item .feat-art {
    transform-origin: bottom right;
    -ms-transform: skew(0deg, -4deg);
    -webkit-transform: skew(0deg, -4deg);
    transform: skew(0deg, -4deg);
    overflow: hidden;
    position: relative;
    min-height: 340px;
    margin: 0 10px
}

.zeal-featured .item .feat-art article {
    -ms-transform: skew(0deg, 4deg);
    -webkit-transform: skew(0deg, 4deg);
    transform: skew(0deg, 4deg);
    display: block;
    position: absolute;
    top: -13px;
    width: 100%;
    bottom: 0;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover
}

.zeal-featured .item .feat-content {
    background: #3d8bcd;
    padding: 0 40px 20px;
    position: relative
}

.zeal-featured .item .feat-content h3 {
    font-size: 3rem;
    margin: 0;
    color: #fff;
    position: relative
}

.zeal-featured .item .feat-content h3.barlow {
    font-family: 'Play', sans-serif
}

.zeal-featured .item .feat-content p {
    color: #acd9ff;
    font-size: 16px;
    text-align: inherit;
    margin: 5px 0
}

.zeal-featured .item .feat-content::before {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 50px;
    background: #3d8bcd;
    top: -50px;
    transform-origin: bottom left;
    -ms-transform: skew(0deg, 6deg);
    -webkit-transform: skew(0deg, 6deg);
    transform: skew(0deg, 6deg)
}

.zeal-featured .item .feat-content .anchor {
    background: #5aa8ea;
    color: #fff
}

.zeal-featured .item .feat-content .anchor::before {
    border: #5aa8ea solid 2px
}

.zeal-featured .item .feat-content .anchor::after {
    color: #fff
}

.zeal-featured .item.games .feat-content,
.zeal-featured .item.games .feat-content::before {
    background: #893393
}

.zeal-featured .item.games .feat-content p {
    color: #d392db
}

.zeal-featured .item.games .feat-content .anchor {
    background: #a34bad;
    color: #fff
}

.zeal-featured .item.games .feat-content .anchor::before {
    border: #a34bad solid 2px
}

.zeal-featured .item.food .feat-content,
.zeal-featured .item.food .feat-content::before {
    background: #f36f21
}

.zeal-featured .item.food .feat-content p {
    color: #ffd8c1
}

.zeal-featured .item.food .feat-content .anchor {
    background: #f99052;
    color: #fff
}

.zeal-featured .item.food .feat-content .anchor::before {
    border: #f99052 solid 2px
}

.zeal-featured .item .feat-content .anchor:hover,
.zeal-featured .item .feat-content .anchor:focus,
.zeal-featured .item .feat-content .anchor:active {
    background: #fff;
    color: #000
}

.zeal-featured .item .feat-content .anchor:hover::before {
    border-color: #fff
}

.attractions {
    padding: 140px 0 120px;
    text-align: center;
    background: url(../images/attraction-bg.jpg) top center no-repeat;
    position: relative
}

.attractions h3 {
    font-size: 4rem;
    margin: 0 0 20px;
    color: #fff;
    text-align: center
}

.attractions::before,
.attractions::after {
    position: absolute;
    width: 20%;
    height: 100%;
    top: 0;
    content: '';
    z-index: 3
}

.attractions::before {
    left: 0;
    background: -moz-linear-gradient(left, rgba(18, 25, 49, 1) 38%, rgba(18, 25, 49, 1) 39%, rgba(18, 25, 49, 0.72) 66%, rgba(1, 1, 1, 0) 99%, rgba(0, 0, 0, 0) 100%);
    background: -webkit-linear-gradient(left, rgba(18, 25, 49, 1) 38%, rgba(18, 25, 49, 1) 39%, rgba(18, 25, 49, 0.72) 66%, rgba(1, 1, 1, 0) 99%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(to right, rgba(18, 25, 49, 1) 38%, rgba(18, 25, 49, 1) 39%, rgba(18, 25, 49, 0.72) 66%, rgba(1, 1, 1, 0) 99%, rgba(0, 0, 0, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#121931', endColorstr='#00000000', GradientType=1)
}

.attractions::after {
    right: 0;
    background: -moz-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(2, 1, 1, 0) 1%, rgba(55, 31, 47, 0.72) 34%, rgba(55, 31, 47, 1) 61%, rgba(55, 31, 47, 1) 62%);
    background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(2, 1, 1, 0) 1%, rgba(55, 31, 47, 0.72) 34%, rgba(55, 31, 47, 1) 61%, rgba(55, 31, 47, 1) 62%);
    background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(2, 1, 1, 0) 1%, rgba(55, 31, 47, 0.72) 34%, rgba(55, 31, 47, 1) 61%, rgba(55, 31, 47, 1) 62%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#371f2f', GradientType=1)
}

.attraction-slider {
    text-align: center
}

.attraction-slider li {
    opacity: .5;
    transition: all .5s ease-in-out
}

.attraction-slider li .content {
    padding: 30px;
    position: relative
}

.attraction-slider li p {
    font-size: 20px;
    font-weight: 700;
    padding: 10px 0 0;
    opacity: 0;
    visibility: hidden;
    transition: all .5s ease-in-out;
    text-transform: uppercase;
    color: #fff;
    margin: 0
}

.attraction-slider li.slick-center {
    z-index: 55;
    position: relative;
    transform: scale(1.3);
    opacity: 1
}

.attraction-slider li.slick-center .content {
    padding: 10px;
    border: #f1ecec solid 2px
}

.attraction-slider li.slick-center .content::after {
    opacity: .8;
    visibility: visible
}

.attraction-slider li.slick-center p {
    opacity: 1;
    visibility: visible
}

.attraction-slider .slick-track {
    padding: 80px 0 50px
}

.dont-miss {
    padding: 100px 0 150px;
    position: relative
}

.dont-miss .thunder {
    position: absolute;
    z-index: 55;
    top: -30px;
    left: 50%
}

.dont-miss .thunder.lg {
    width: 140px;
    margin-left: -400px
}

.dont-miss .thunder.sm {
    width: 80px;
    margin-left: 350px;
    transform: rotate(-40deg);
    -ms-transform: rotate(-40deg);
    -webkit-transform: rotate(-40deg);
    top: 120px
}

.dont-miss h4 {
    font-size: 3.6rem;
    margin: 0;
    color: #fff;
    text-align: center;
    font-weight: 800
}

.dont-miss p {
    color: #999;
    font-size: 20px;
    text-align: center
}

.dont-miss .specials {
    padding-top: 40px
}

.dont-miss .specials .sp-item {
    background: #212121;
    min-height: 525px;
    display: block;
    position: relative;
    transition: all .5s ease-in-out
}

.dont-miss .specials .sp-item article {
    padding: 30px 40px 0;
    position: relative
}

.dont-miss .specials .sp-item article h5 {
    font-size: 2.4rem;
    margin: 0;
    color: #fff
}

.dont-miss .specials .sp-item article p {
    font-size: 18px;
    color: #666;
    margin: 10px 0;
    text-align: inherit;
    font-weight: 300
}

.dont-miss .specials .sp-item::after {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 5px;
    background: #f36f21;
    content: '';
    width: 100%;
    transition: all .5s ease-in-out
}

.dont-miss .specials li:first-child .sp-item::after {
    background: #3d8bcd
}

.dont-miss .specials li:last-child .sp-item::after {
    background: #ec057c
}

.dont-miss .specials .sp-item:hover {
    transform: scale(1.06)
}

.dont-miss .specials .sp-item:hover article p {
    color: #afafaf
}

.dont-miss .specials .sp-item:hover::after {
    height: 10px
}

.dont-miss .specials .sp-item article::before {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 20px;
    background: #212121;
    top: 0;
    transform-origin: bottom left;
    -ms-transform: skew(0deg, -2deg);
    -webkit-transform: skew(0deg, -2deg);
    transform: skew(0deg, -2deg)
}

footer {
    background: #1d1d1d;
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden
}

footer h6 {
    color: #fff;
    font-weight: 600;
    margin: 0 0 25px;
    font-size: 2.3rem
}

footer p {
    color: #999;
    font-size: 15px;
    margin: 0
}

footer p a {
    color: #999
}

footer p a:hover {
    color: #00adee
}

footer p.phone a {
    direction: ltr;
    font-weight: 400;
    color: #fff;
    font-size: 26px;
    margin-top: 10px;
    display: inline-block
}

footer .social li {
    float: left;
    width: 30px;
    height: 30px;
    margin-right: 30px;
    transform: scale(1);
    transition: all .5s ease
}

footer .social li:hover {
    transform: scale(1.3)
}

footer p.opening {
    margin-bottom: 10px;
    color: #fff
}

footer p.opening span {
    width: 150px;
    color: #999;
    display: inline-block
}

footer p.opening span.numbers {
    color: #fff;
    width: auto
}

footer hr,
.divider {
    background: transparent;
    width: 100%;
    border-top: dotted #989898 3px;
    margin-top: 40px;
    margin-bottom: 30px;
    display: block
}

footer .foot-nav {
    width: 100%;
    display: inline-block;
    margin-bottom: 30px
}

footer .foot-nav li {
    float: left;
    margin-right: 30px
}

footer .foot-nav li a {
    font-size: 18px;
    color: #fff
}

footer .foot-nav li a:hover,
footer .foot-nav li.active a {
    color: #00adee
}

footer::before {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 90px;
    background: #000;
    top: -80px;
    transform-origin: bottom left;
    -ms-transform: skew(0deg, .7deg);
    -webkit-transform: skew(0deg, .7deg);
    transform: skew(0deg, .7deg);
    z-index: 3
}

footer::after {
    position: absolute;
    left: 0;
    content: '';
    width: 60%;
    height: 70px;
    background: #ec057c;
    bottom: -30px;
    transform-origin: bottom left;
    -ms-transform: skew(0deg, 4deg);
    -webkit-transform: skew(0deg, 4deg);
    transform: skew(0deg, 4deg)
}

footer .thunder {
    width: 820px;
    height: 57px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 4
}

.go-up {
    width: 46px;
    height: 46px;
    position: absolute;
    background: #383838;
    right: 20px;
    bottom: 20px;
    z-index: 222;
    text-align: center;
    line-height: 46px;
    border-radius: 100%;
    color: #666;
    font-size: 28px
}

.go-up:hover {
    background: #fff;
    color: #00adee
}

.page-wrapper {
    padding: 110px 0 50px
}

.breadcrumb-wrap {
    background: #191919
}

.breadcrumb {
    padding: 13px 0
}

.breadcrumb li {
    display: inline-block;
    padding-right: 25px;
    position: relative
}

.breadcrumb li,
.breadcrumb li a {
    font-size: 14px;
    color: #555
}

.breadcrumb li::after {
    font-family: "IcoFont";
    content: '\ea79';
    font-size: 14px;
    color: #555;
    position: absolute;
    right: 5px;
    top: 0
}

.breadcrumb li:last-child::after {
    display: none
}

.breadcrumb li a:hover {
    color: #00adee
}

.page-hero-banner {
    position: relative
}

.page-hero-banner::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 80px;
    background: #000;
    bottom: -70px;
    transform-origin: bottom left;
    -ms-transform: skew(0deg, -2deg);
    -webkit-transform: skew(0deg, -2deg);
    transform: skew(0deg, -2deg);
    z-index: 55
}

.page-hero-slider li {
    position: relative;
    background-color: #000;
    height: 60vh;
    overflow: hidden
}

.page-hero-slider li .slider-image {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 1
}

.page-title {
    position: absolute;
    bottom: 130px;
    left: 0;
    width: 100%;
    z-index: 22
}

.page-title h3 {
    color: #fff;
    font-size: 3rem;
    font-weight: 800
}

.page-title h3 span {
    font-size: 7rem;
    display: block;
    line-height: .8
}

.page-contents {
    position: relative;
    padding: 40px 0;
    z-index: 66
}

.page-contents h1 {
    color: #00adee;
    font-size: 4rem;
    margin: 0 0 30px;
    line-height: 1.1
}

.page-contents p {
    color: #bbb;
    font-size: 18px;
    margin-bottom: 20px
}

.page-contents h2 {
    font-size: 3.6rem;
    color: #fff;
    margin: 20px 0
}

.about-zeal {
    position: relative
}

.about-zeal .thunder {
    position: absolute;
    z-index: 55
}

.about-zeal .thunder.lg {
    width: 140px;
    right: 10px;
    top: -160px
}

.about-zeal .thunder.sm {
    width: 80px;
    transform: rotate(-40deg);
    -ms-transform: rotate(-40deg);
    -webkit-transform: rotate(-40deg);
    left: 50%;
    margin-left: -20px;
    bottom: -20px
}

.relative {
    position: relative
}

.about-zeal-img {
    position: absolute;
    left: 15px;
    top: 0;
    z-index: 2
}

.zeal-feat-links {
    background-image: none;
    padding: 40px 0 60px
}

.zeal-feat-links h2 {
    margin-bottom: 60px;
    font-size: 3.6rem
}

.zeal-feat-links::before,
.zeal-feat-links::after {
    display: none
}

.highlight-txt {
    color: #fff !important;
    font-size: 28px !important;
    font-weight: 700
}

.package-list,
.package-list li {
    width: 100%
}

.package-list li {
    margin-bottom: 30px;
    background: #1a1a1a;
    padding: 40px;
    border-top: #026ab4 solid 5px
}

.package-list li h4 {
    color: #fff;
    font-size: 2.3rem;
    margin: 0 0 10px
}

.package-list li p strong {
    color: #fff;
    font-weight: 700
}

.package-list li ul li {
    margin-bottom: 0;
    padding: 5px 30px;
    position: relative;
    color: #fff;
    border: 0;
    font-size: 16px
}

.package-list li ul li::before {
    position: absolute;
    left: 0;
    top: 5px;
    font-family: "IcoFont";
    content: '\f00e';
    color: #026ab4
}

.package-list li .pack-details {
    border-right: #999 solid 1px
}

.package-list li .pack-price {
    padding-left: 20px
}

.package-list li .pack-price .aed {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 600
}

.package-list li .amount {
    color: #026ab4;
    font-size: 6rem;
    font-weight: 600;
    margin: 0;
    line-height: .8
}

.package-list li .amount span,
.package-list li .minimun {
    font-size: 18px;
    color: #a1a1a1
}

.package-list li .amount span {
    font-weight: 400
}

.package-list li .minimun {
    font-weight: 600;
    margin: 25px 0 0 5px
}

.pack-customize {
    padding: 80px 0;
    background: #000 url(../images/party-bg.jpg) center center no-repeat;
    background-size: cover;
    text-align: center
}

.pack-customize h6 {
    color: #fff;
    font-size: 3rem;
    margin: 20px 0
}

.age-grp {
    color: #5a5a5a !important;
    font-size: 2.4rem !important;
    text-transform: uppercase;
    margin: 0;
    font-weight: 600
}

.box-cols {
    margin-bottom: 30px;
    background: #1a1a1a;
    padding: 30px 40px;
    border-top: #026ab4 solid 5px
}

.box-cols ul li {
    margin-bottom: 0;
    padding: 8px 30px;
    position: relative;
    color: #fff;
    border: 0;
    font-size: 18px
}

.box-cols ul li::before {
    position: absolute;
    left: 0;
    top: 8px;
    font-family: "IcoFont";
    content: '\f000';
    color: #026ab4
}

.box-cols .amount {
    color: #026ab4;
    font-size: 5rem;
    font-weight: 600;
    margin: 0;
    line-height: .8;
    margin: 15px 0
}

.box-cols .amount span {
    font-size: 2.6rem;
    color: #fff
}

.package-list li:nth-child(1),
.price-list li:nth-child(1) .box-cols {
    border-color: #026ab4
}

.package-list li:nth-child(1) .amount,
.package-list li:nth-child(1) ul li::before,
.price-list li:nth-child(1) .box-cols .amount,
.price-list li:nth-child(1) .box-cols ul li::before {
    color: #026ab4
}

.package-list li:nth-child(2),
.price-list li:nth-child(2) .box-cols {
    border-color: #f36f21
}

.package-list li:nth-child(2) .amount,
.package-list li:nth-child(2) ul li::before,
.price-list li:nth-child(2) .box-cols .amount,
.price-list li:nth-child(2) .box-cols ul li::before {
    color: #f36f21
}

.package-list li:nth-child(3),
.price-list li:nth-child(3) .box-cols {
    border-color: #ec057c
}

.package-list li:nth-child(3) .amount,
.package-list li:nth-child(3) ul li::before,
.price-list li:nth-child(3) .box-cols .amount,
.price-list li:nth-child(3) .box-cols ul li::before {
    color: #ec057c
}

.package-list li:nth-child(4),
.price-list li:nth-child(4) .box-cols {
    border-color: #893393
}

.package-list li:nth-child(4) .amount,
.package-list li:nth-child(4) ul li::before,
.price-list li:nth-child(4) .box-cols .amount,
.price-list li:nth-child(4) .box-cols ul li::before {
    color: #893393
}

.slider {
    padding: 15px 0
}

.slider .slick-prev {
    left: -25px
}

.slider .slick-next {
    right: -25px
}

.contact-zeal h1,
.page-head {
    margin-bottom: 10px;
    color: #fff !important
}

.contact-zeal h4 {
    color: #f36f21;
    margin: 0 0 20px;
    font-size: 2.5rem
}

.contact-zeal .address,
.contact-zeal .address li {
    width: 100%
}

.contact-zeal .address li {
    font-size: 18px;
    color: #d1d1d1;
    padding: 5px 0
}

.contact-zeal .address li a {
    text-decoration: underline;
    color: #d1d1d1
}

.contact-zeal .address li a:hover {
    color: #00adee
}

.contact-zeal .social li {
    float: left;
    width: 50px;
    height: 50px;
    margin-right: 20px;
    transform: scale(1);
    transition: all .5s ease;
    border-radius: 100%;
    padding: 10px;
    background: #fff
}

.contact-zeal .social li:hover {
    transform: scale(1.3)
}

.contact-zeal .location {
    font-size: 20px;
    color: #fff;
    text-decoration: underline;
    width: 80%;
    display: block
}

.contact-zeal .location:hover {
    color: #00adee
}

.contact-form .form-group {
    margin-bottom: 30px;
    display: inline-block;
    width: 100%
}

.contact-form label {
    font-size: 18px;
    color: #d1d1d1;
    font-weight: 400;
    margin-bottom: 10px;
    width: 100%;
    display: block
}

.contact-form .form-control {
    background: #191919;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 15px 20px !important;
    height: inherit;
    width: 100%;
    color: #fff;
    font-size: 16px
}

.contact-form .form-control:focus {
    background: #2b2b2b
}

.required-msg {
    position: absolute;
    right: 20px;
    color: #f42b2b;
    font-size: 14px
}

.intl-tel-input {
    width: 100%
}

.red-star,
span.red-star {
    color: #f42b2b;
    font-weight: 700;
    font-size: 16px;
    line-height: 0
}

.contact-form .select-wrapper::after {
    color: #999
}

.contact-form textarea {
    resize: none
}

.select-wrapper {
    position: relative;
    float: left;
    width: 100%
}

.select-wrapper::after {
    font-family: "IcoFont";
    content: "\eac8";
    font-size: 34px;
    position: absolute;
    top: -2px;
    right: 10px;
    z-index: 5;
    pointer-events: none
}

.select-wrapper select {
    -webkit-appearance: none;
    -ms-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    padding: 0 !important;
    background: transparent;
    border: 0;
    min-height: 42px;
    font-size: 14px;
    border-radius: 0 !important
}

.contact-form .anchor {
    background: #00adee;
    color: #fff
}

.contact-form .anchor::before {
    border-color: #00adee
}

.contact-form .anchor::after {
    color: #fff
}

.contact-form .anchor:hover,
.contact-form .anchor:focus,
.contact-form .anchor:active {
    background: #fff;
    color: #000
}

.contact-form .anchor:hover::before {
    border-color: transparent
}

.contact-form .anchor.cancel {
    background: #000;
    margin-left: 20px
}

.contact-form .anchor.cancel::before,
.contact-form .anchor.cancel::after {
    display: none
}

.contact-form .anchor.cancel:hover {
    color: #666
}

.fizz-featured {
    padding: 0 !important
}

.fizz-featured::before,
.fizz-featured::after {
    display: none
}

.additional-service {
    padding-bottom: 30px
}

.additional-service h3 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 0
}

.additional-service h4 {
    font-size: 2.4rem;
    color: #00adee;
    margin: 15px 0
}

.additional-service ul,
.additional-service ul li {
    width: 100%;
    display: inline-block
}

.additional-service ul li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #ccc
}

.additional-service ul li span {
    float: left;
    width: 50%;
    display: block
}

.search-results p.highlight {
    color: #fff;
    font-size: 20px;
    font-weight: 700
}

.search-list li {
    padding: 20px 30px;
    background: #2b2b2b;
    margin-bottom: 20px;
    transition: all .3s ease-in-out
}

.search-list li h5 {
    color: #fff;
    font-size: 3.2rem;
    margin: 0;
    transition: all .3s ease-in-out
}

.search-list li p {
    font-size: 16px;
    color: #989898
}

.search-list li .anchor {
    margin-top: 0
}

.search-list li:hover {
    background: #141414
}

.search-list li:hover h5 {
    color: #00adee
}

.custom-radiobtn label {
    width: inherit;
    margin-right: 20px
}

.c-checkbox,
.c-radio {
    display: inline-block !important;
    vertical-align: middle;
    position: relative;
    cursor: pointer
}

.c-checkbox__input:checked,
.c-checkbox__input:not(checked),
.c-radio__input:checked,
.c-radio__input:not(checked) {
    opacity: 0;
    position: absolute;
    height: 1px;
    width: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0)
}

.c-checkbox__input:checked + .c-checkbox__label,
.c-checkbox__input:not(checked) + .c-checkbox__label,
.c-radio__input:checked + .c-radio__label,
.c-radio__input:not(checked) + .c-radio__label {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    padding-left: 24px
}

.c-checkbox__input:not(checked) + .c-checkbox__label:before,
.c-radio__input:not(checked) + .c-radio__label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    display: inline-block;
    height: 16px;
    width: 16px;
    vertical-align: middle;
    border-radius: 3px;
    border: 1px solid #ddd;
    background: #fff;
    transition: all .2s ease-out
}

.c-radio__input:not(checked) + .c-radio__label:before {
    border-radius: 50%
}

.c-checkbox__input:checked + .c-checkbox__label:before {
    vertical-align: middle;
    content: 'âœ“';
    font-size: 12px;
    line-height: 16px;
    text-indent: 1px;
    color: #fff;
    background: #4e9bf6;
    text-align: center
}

.c-radio__input:checked + .c-radio__label:before {
    background: #fff;
    border-color: #4e9bf6;
    box-shadow: inset 0 0 0 4px #4e9bf6
}

.c-checkbox:hover .c-checkbox__label:before,
.c-radio:hover .c-radio__label:before {
    border: 1px solid #4e9bf6
}

.c-checkbox__input[disabled] + .c-checkbox__label,
.c-radio__input[disabled] + .c-radio__label {
    color: #bbb;
    cursor: not-allowed
}

.c-checkbox__input[disabled] + .c-checkbox__label:before,
.c-radio__input[disabled] + .c-radio__label:before {
    cursor: not-allowed;
    background-color: #bbb;
    border-color: #bbb;
    cursor: not-allowed
}

.c-radio__input[disabled]:checked + .c-radio__label:before {
    background: #fff;
    box-shadow: inset 0 0 0 4px #bbb
}

.c-checkbox:hover .c-checkbox__input[disabled] + .c-checkbox__label:before,
.c-radio:hover .c-radio__input[disabled] + .c-radio__label:before {
    border: 1px solid #bbb
}

.register-banner {
    margin-bottom: 30px !important
}

.scroll-down {
    position: absolute;
    left: 50%;
    bottom: 10%;
    width: 40px;
    height: 40px;
    margin-left: -20px;
    z-index: 55;
    font-size: 40px;
    color: #fff
}

@-moz-keyframes bounce {

    0%, 20%, 50%, 80%, 100% {
        -moz-transform: translateY(0);
        transform: translateY(0)
    }

    40% {
        -moz-transform: translateY(-30px);
        transform: translateY(-30px)
    }

    60% {
        -moz-transform: translateY(-15px);
        transform: translateY(-15px)
    }
}

@-webkit-keyframes bounce {

    0%, 20%, 50%, 80%, 100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    40% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px)
    }

    60% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px)
    }
}

@keyframes bounce {

    0%, 20%, 50%, 80%, 100% {
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    40% {
        -moz-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px)
    }

    60% {
        -moz-transform: translateY(-15px);
        -ms-transform: translateY(-15px);
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px)
    }
}

.bounce {
    -moz-animation: bounce 2s infinite;
    -webkit-animation: bounce 2s infinite;
    animation: bounce 2s infinite
}

.location-link {
    position: absolute;
    right: -110px;
    bottom: 100px;
    background: #00adee;
    padding: 12px 15px 12px 50px;
    color: #fff;
    z-index: 4;
    font-size: 20px;
    text-transform: uppercase;
    transition: all .4s ease-in-out
}

.location-link::before {
    position: absolute;
    left: 10px;
    top: 5px;
    content: '\ef79';
    font-family: "IcoFont";
    font-size: 30px
}

.location-link:after {
    content: " ";
    position: absolute;
    display: block;
    width: 120%;
    height: 100%;
    top: 0;
    left: -14px;
    z-index: -1;
    background: #00adee;
    transform-origin: bottom left;
    -ms-transform: skew(-15deg, 0deg);
    -webkit-transform: skew(-15deg, 0deg);
    transform: skew(-15deg, 0deg);
    transition: all .5s ease
}

.location-link:hover,
.location-link:focus {
    right: 0;
    color: #fff
}

.alert-success {
    color: #02adee !important;
    font-weight: 700;
    font-size: 20px
}

.content-list {
    margin: 20px 0
}

.content-list li {
    padding: 10px 30px;
    color: #bbb;
    font-size: 18px;
    position: relative
}

.content-list li::before {
    left: 0;
    top: 5px;
    font-family: "IcoFont";
    content: '\ea69';
    font-size: 24px;
    position: absolute;
    color: #00adee
}



.no-promo-msg {
    color: white;
    font-size: 22px;
    margin-bottom: 100px;
}

.promolist {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
}

.promolist a {
    display: block;
    background-color: #1a1a1a;
    border-bottom: 5px solid transparent;
}

.promolist a.type--event {
    border-bottom-color: #00adee;
}

.promolist a.type--promo {
    border-bottom-color: #ec057c;
}


.promolist a .content {
    padding: 30px 30px 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.promolist a .content h3 {
    color: white;
    font-size: 26px;
    margin-top: 0;
    margin-bottom: 12px;
}

.promolist a .date-time,
.event-promo-details .date-time {
    display: flex;
    flex-wrap: wrap;
}

.promolist a .date-time span {
    color: #666;
}

.promolist a .date-time span:first-child,
.event-promo-details .date-time span:first-child {
    margin-inline-end: 30px;
}

@media (prefers-reduced-motion: no-preference) {

    .promolist a .content h3,
    .promolist a .date-time span,
    .promolist a p {
        transition: color ease-in-out .2s;
    }
}

@supports(gap: inherit) {

    .promolist a .date-time,
    .event-promo-details .date-time {
        gap: 40px;
    }

    .promolist a .date-time span:first-child,
    .event-promo-details .date-time span:first-child {
        margin-inline-end: 0;
    }
}

.promolist a p {
    font-weight: 300;
    font-size: 16px;
    color: #999;
    margin-bottom: 0;
}

.promolist a:hover {
    transform: scale(1.04) !important;
}

.promolist a.type--event:hover .content h3 {
    color: #00adee;
}

.promolist a.type--promo:hover .content h3 {
    color: #ec057c;
}

.promolist a:hover .date-time span {
    color: #999;
}

.promolist a:hover p {
    color: white;
}

@media(max-width:600px) {
    .promolist {
        grid-template-columns: auto;
        gap: 20px;
    }

    .promolist a .content {
        padding: 25px 25px 30px;
    }

    .promolist a .content h3 {
        font-size: 20px;
    }

    .promolist a .date-time,
    .event-promo-details .date-time {
        gap: 10px;
    }
}


.event-promo-details .date-time {
    margin-bottom: 20px;
}

.event-promo-details .date-time span {
    font-size: 16px;
    color: white;
}

.event-promo-details .more-details p a {
    color: #00adee;
    text-decoration: underline;
}

.event-promo-details .terms h4 {
    font-size: 22px;
    color: #f36f21;
}

.event-promo-details .terms ul {
    display: grid;
    gap: 15px;
}

.event-promo-details .terms ul li {
    font-size: 16px;
    color: #bbb;
    padding-inline-start: 20px;
    position: relative;
    line-height: 1.7;
}

.event-promo-details .terms ul li::before {
    content: '-';
    position: absolute;
    left: 0;
    top: -4px;
    font-size: 20px;
    font-weight: bold;
}


@media(max-width:1460px) {
    .header .container {
        width: auto;
    }

    .zeal-featured .container,
    .dont-miss .container,
    footer .container,
    .breadcrumb-wrap .container {
        width: 1200px
    }

    .about-zeal-img {
        position: relative;
        left: 0;
        width: 100%
    }
}

@media(max-width:1361px) {
    .menu-container {
        padding-left: 180px;
    }
}

@media(max-width:1200px) {

    .header .container,
    .breadcrumb-wrap .container {
        width: 100%
    }

    .zeal-featured .container,
    .dont-miss .container,
    footer .container {
        width: 970px
    }

    .menu-container {
        padding-left: 200px
    }

    .zeal-featured::before {
        top: -40px
    }

    footer p.opening span {
        width: 100px
    }

    footer .thunder {
        width: 670px;
        top: -10px
    }

    .header .social {
        display: none
    }

    .language {
        right: 210px
    }
}

@media(max-width:1080px) {
    .has-drop-menu {
        display: block
    }

    .menu-container {
        width: 100%;
        padding: 0
    }

    .menu-mobile {
        display: block;
        float: right;
        width: 50px;
        padding: 10px;
        height: 50px;
        margin-top: 52px
    }

    .menu-dropdown-icon:before {
        display: none
    }

    .menu > ul {
        display: none;
        padding-left: 0
    }

    .menu > ul > li {
        width: 100%;
        float: none;
        display: block;
        margin-bottom: 5px
    }

    .menu > ul > li a {
        padding: 14px 15px;
        width: 100%;
        display: block
    }

    .menu > ul > li > ul {
        position: relative;
        top: 0 !important;
        margin-bottom: 10px
    }

    .menu > ul > li > ul.normal-sub {
        width: 100%;
        padding: 10px 20px;
        background: #141414
    }

    .menu > ul > li > ul.normal-sub > li a {
        width: 100%;
        padding: 10px 0;
        font-size: 16px
    }

    .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.200, 0.965, 0.000, 1.005);
        transition: all 600ms cubic-bezier(0.200, 0.965, 0.000, 1.005)
    }

    .menu > ul > li > ul.normal-sub > li a::after {
        display: none !important
    }

    .search-trigger,
    .search-container {
        right: 75px
    }

    .zeal-featured .container,
    .dont-miss .container,
    footer .container {
        width: 100%
    }
}

@media(max-width:992px) {
    .hero-slider li .slider-caption {
        left: 70px;
        width: auto
    }

    .zeal-featured .item .feat-art {
        min-height: 220px
    }

    .hero-slider li .slider-caption h1,
    .zeal-featured h2,
    .attractions h3,
    .dont-miss h4 {
        font-size: 4rem
    }

    .zeal-featured {
        background-size: cover;
        padding: 50px 0 80px
    }

    .zeal-featured .item .feat-content {
        padding: 0 20px 20px
    }

    .zeal-featured .item .feat-content h3 {
        font-size: 3rem
    }

    .attractions {
        padding: 50px 0 60px;
        background-size: cover
    }

    .attraction-slider {
        padding: 0 80px
    }

    .attraction-slider li p {
        font-size: 16px
    }

    .zeal-featured::before,
    .zeal-featured::after,
    .attractions::before,
    .attractions::after {
        display: none
    }

    .dont-miss {
        padding: 60px 0 100px
    }

    .dont-miss .specials .sp-item {
        min-height: 450px
    }

    .dont-miss .thunder.lg {
        left: 20px;
        margin-left: 0;
        width: 80px
    }

    .dont-miss .thunder.sm {
        left: auto;
        right: 20px;
        margin-left: 0;
        width: 50px
    }

    .dont-miss .specials .sp-item article {
        padding: 20px 30px 0
    }

    .dont-miss .specials .sp-item article h5 {
        font-size: 2.4rem
    }

    .dont-miss .specials .sp-item article p {
        font-size: 16px
    }

    footer h6 {
        font-size: 2.2rem
    }

    footer .social li {
        margin-right: 20px
    }

    footer p {
        font-size: 14px
    }

    footer p.opening span {
        width: 80px
    }

    .about-zeal-img {
        margin-top: 30px
    }

    .about-zeal .thunder.sm {
        left: 10%;
        bottom: -60px
    }
}

@media(max-width:772px) {
    .header {
        position: relative
    }

    .header .logo {
        width: 140px
    }

    .language {
        top: 60px;
        right: 120px
    }

    .search-container {
        right: 20px;
        width: 90%
    }

    .search-container::before {
        right: 70px
    }

    .callnow {
        right: 15px
    }

    .callnow:after {
        width: 150%
    }

    .hero-slider li {
        height: 50vh
    }

    .slick-prev,
    .slick-next {
        width: 40px;
        height: 40px
    }

    .slick-prev:before,
    .slick-next:before {
        font-size: 22px;
        line-height: 40px
    }

    .slick-prev::after,
    .slick-next::after {
        border-width: 1px
    }

    .anchor {
        font-size: 14px;
        padding: 10px 35px 10px 15px
    }

    .anchor::before {
        border: #fff solid 1px;
        left: 3px;
        top: 3px
    }

    .anchor::after {
        right: 10px;
        top: 8px;
        font-size: 18px
    }

    .hero-slider li .slider-caption h1,
    .zeal-featured h2,
    .attractions h3,
    .dont-miss h4 {
        font-size: 2.6rem
    }

    .zeal-featured {
        padding: 50px 0
    }

    .zeal-featured p,
    .dont-miss p {
        font-size: 16px
    }

    .zeal-featured .item {
        margin-top: 20px
    }

    .zeal-featured .item .feat-content h3 {
        font-size: 2.6rem
    }

    .hero-slider li .slider-caption {
        left: 50px;
        top: 70%
    }

    .hero-slider li .slider-caption p {
        font-size: 1.4rem;
        max-width: 90%
    }

    .hero-slider li .slider-caption .anchor {
        margin-top: 0
    }

    .attractions {
        padding: 50px 0
    }

    .attractions h3 {
        margin: 0
    }

    .attraction-slider {
        padding: 0 15px
    }

    .attraction-slider .slick-track {
        padding: 50px 0 25px
    }

    .attraction-slider li.slick-center .content {
        padding: 5px;
        border-width: 1px
    }

    .dont-miss {
        padding: 50px 0
    }

    .dont-miss .thunder.lg {
        width: 50px
    }

    .dont-miss .thunder.sm {
        width: 30px
    }

    .dont-miss .specials .sp-item {
        min-height: inherit;
        margin-bottom: 20px
    }

    .dont-miss .specials .sp-item article {
        padding-bottom: 30px
    }

    footer {
        padding: 60px 0 80px
    }

    footer::after {
        width: 100%;
        bottom: -40px
    }

    footer .foot-nav li {
        margin-right: 15px
    }

    footer .foot-nav li a {
        font-size: 14px;
        padding: 10px 10px 10px 0;
        display: inline-block
    }

    footer h6 {
        margin: 30px 0 15px;
        font-size: 1.6rem
    }

    .page-wrapper {
        padding-top: 0
    }

    .page-hero-slider li {
        height: 40vh
    }

    .page-title {
        bottom: 30px
    }

    .page-title h3 {
        font-size: 2rem
    }

    .page-title h3 span {
        font-size: 4rem
    }

    .about-zeal .thunder.lg {
        width: 50px;
        top: -90px
    }

    .page-contents h1 {
        font-size: 3rem
    }

    .page-hero-banner::after {
        height: 50px;
        bottom: -30px
    }

    .page-contents {
        padding: 30px 0
    }

    .page-contents p {
        font-size: 16px
    }

    .about-zeal .thunder.sm {
        display: none
    }

    .about-zeal-img {
        margin-top: 10px
    }

    .divider {
        margin: 20px 0
    }

    .zeal-feat-links {
        padding: 20px 0
    }

    .zeal-feat-links h2 {
        margin-bottom: 0
    }

    .zeal-feat-links .item .feat-content {
        padding: 20px
    }

    .zeal-feat-links .item .feat-content::before {
        display: none
    }

    .breadcrumb {
        padding: 8px 0
    }

    .breadcrumb li,
    .breadcrumb li a,
    .breadcrumb li::after {
        font-size: 12px
    }

    .breadcrumb li::after {
        top: 2px
    }

    .highlight-txt {
        font-size: 18px !important
    }

    .page-contents h2 {
        font-size: 2.6rem
    }

    .package-list li {
        margin-bottom: 20px;
        padding: 25px
    }

    .package-list li h4 {
        font-size: 1.8rem
    }

    .package-list li ul li {
        font-size: 15px
    }

    .package-list li .pack-details {
        border-right-width: 0;
        padding-bottom: 20px
    }

    .package-list li .pack-price {
        padding-left: 0
    }

    .package-list li .amount {
        font-size: 4rem
    }

    .package-list li .amount span,
    .package-list li .minimun {
        font-size: 14px;
        color: #a1a1a1
    }

    .package-list li .pack-price .aed {
        font-size: 1.6rem
    }

    .package-list li .minimun {
        margin: 15px 0 0 5px
    }

    .pack-customize {
        padding: 15px 0
    }

    .pack-customize h6 {
        font-size: 2rem;
        margin: 20px 0;
        line-height: 1
    }

    .age-grp {
        font-size: 2rem !important
    }

    .box-cols {
        margin-bottom: 15px;
        padding: 20px 30px
    }

    .box-cols ul li {
        padding: 6px 30px;
        font-size: 15px
    }

    .box-cols ul li::before {
        top: 6px
    }

    .box-cols .amount {
        font-size: 4rem;
        line-height: .8;
        margin: 15px 0
    }

    .box-cols .amount span {
        font-size: 2rem;
        color: #fff
    }

    .slider .slick-prev {
        left: -15px
    }

    .slider .slick-next {
        right: -15px
    }

    .contact-zeal h4 {
        font-size: 2rem;
        margin: 10px 0
    }

    .contact-zeal .address li,
    .contact-zeal .location,
    .contact-form label,
    .content-list li {
        font-size: 16px
    }

    .contact-form .form-control {
        padding: 10px 15px !important
    }

    .contact-form .form-group {
        margin-bottom: 10px
    }

    .additional-service h3 {
        font-size: 2.4rem
    }

    .additional-service h4 {
        font-size: 2rem
    }

    .additional-service ul li {
        font-size: 14px
    }

    .search-list li {
        padding: 15px 20px
    }

    .search-list li h5 {
        font-size: 2rem
    }
}

@font-face {
    font-family: "IcoFont";
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    src: url("../fonts/icofont.woff2") format("woff2"), url("../fonts/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-smoothing: antialiased
}

.icofont-arrow-up::before {
    content: '\ea5e'
}

.icofont-simple-down:before {
    content: '\eab2'
}

.covid-notify {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 55555;
    background: #ec057c;
    padding: 20px 0;
    text-align: center;
}

.covid-notify p {
    color: white;
    font-size: 20px;
}

@media(max-width:768px) {
    .covid-notify p {
        font-size: 16px;
    }
}



.home-pup {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(1, 1, 1, .8);
    z-index: 5555;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.home-pup .invite {
    max-width: 900px;
}

.home-pup .close-pup {
    color: white;
    font-size: 22px;
    padding: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.home-pup .close-pup i {
    font-size: 30px;
}

.home-pup.hide {
    display: none;
}
