@import url(../vendor/bootstrap/bootstrap.min.css);
@import url(animate.css);
@import url(../vendor/fontAwesome/all.css);
@import url(../vendor/fancyBox/jquery.fancybox.css);
@import url(../vendor/swiper/swiper-bundle.min.css);
@import url(../vendor/slick/slick.css);
@import url(../vendor/slick/slick-theme.css);
@import url(../vendor/odometer/odometer.css);
@import url(../vendor/niceSelect/nice-select.css);
@import url(../vendor/intlTelInput/intlTelInput.css);
@import url(../vendor/datePicker/jquery-ui.css);

/* Start Fonts */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

@font-face {
    font-family: 'DG';
    src: url(../fonts/DGAgnadeen-Regular.ttf);
}

@font-face {
    font-family: 'DG-Bold';
    src: url(../fonts/DGAgnadeen-Bold.ttf);
}

/* End Fonts */

:root {
    --main-color: #525278;
    --sec-color: #2d2d47;
    --dark-color: #211310;
    --more-color: #FC5757;
    --bg-color: #FCF8F5;
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: #000;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

a:hover {
    text-decoration: none;
    color: var(--sec-color);
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

a:focus {
    text-decoration: none;
    /* color: inherit; */
}

button,
button:hover {
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

body {
    padding: 0;
    margin: 0;
    font-family: 'DG';
    background: #fff;
    text-align: start;
    direction: rtl;
    overflow: hidden;
    overflow-y: auto;
}

section,
footer {
    /* overflow: hidden; */
    position: relative;
}

p {
    margin: 0;
    /* color: var(--title-color); */
    font-size: 15px;
    line-height: 25px;
    /* font-family: 'IBM Plex Sans Arabic'; */
}

ul {
    padding: 0;
    margin: 0;
    display: block;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

li {
    display: block;
    list-style: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

iframe {
    width: 100%;
    height: 100%;
}

.padding {
    padding: 0 !important;
}

img {
    max-width: 100%;
}

input,
button,
input:focus,
button:focus,
input:active,
button:active,
button:hover,
textarea:active,
textarea:focus,
select,
select:active,
select:focus {
    outline: none !important;
}

textarea {
    resize: none;
}

main {
    overflow: hidden;
    /* min-height: 100vh; */
}

.owl-carousel {
    direction: ltr;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-transform: capitalize;
}

/* Start Loading */

.loader {
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 999999999999999999999999999999;
    background: #fff;
    transition: all .5s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader .loader-inner {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
}

.loader .loader-inner img {
    max-width: 250px;
}


/* End Loading */


/* Start Not-found */

.not-found .not-found-pro {
    max-width: 500px;
    margin: auto;
    text-align: center;
}

.not-found .not-found-pro img {
    max-height: 400px;
}

.not-found .not-found-pro h2 {
    font-size: 30px;
    color: var(--dark-color);
    font-weight: bold;
}

.not-found .not-found-pro h4 {
    margin: 15px 0;
    font-size: 20px;
    color: #777;
}

.not-found .not-found-pro p {
    margin: 25px 0 15px;
    font-size: 14px;
    color: #777;
    /* font-weight: bold; */
    position: relative;
}

.not-found .not-found-pro .btn.go-home {
    padding: 0;
    line-height: normal;
    min-height: auto;
    background: transparent;
    color: var(--sec-color);
    font-size: 20px;
    text-decoration: underline;
    margin: 0 auto;
}

.not-found .not-found-pro p::after {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    border-bottom: 1px #f1f1f1 solid;
    margin: auto;
    width: 100%;
    bottom: 0;
    height: 1px;
    z-index: -2;
}

.not-found .not-found-pro p::before {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 50%;
    margin: auto;
    z-index: -1;
    border: 1px #f1f1f1 solid;
}

.not-found.not-found-404 .not-found-pro h2 {
    margin: 20px 0;
}


/* End Not-found */

/* Start Sidebar */

.cursor {
    opacity: 0;
    transition: all .5s;
    display: none;
}

.mobile-menu {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    padding: 30px 20px;
    z-index: -1;
    opacity: 0;
    transition: all .3s;
    background: #fff;
    visibility: hidden;
    /* transform: scaleY(0) translateY(-100%); */
    left: -100%;
    max-width: 350px;
}

.menu-backdrop {
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    /* background: #000; */
    z-index: -10;
    opacity: 0;
    transition: all .3s;
    /* display: none; */
}

.mobile-menu .menu-box {
    position: relative;
    z-index: 2;
}

.mobile-menu .menu-box .navigation li a {
    text-transform: capitalize;
    font-weight: 500;
    line-height: 27px;
    text-align: start;
    text-transform: capitalize;
    display: block;
    padding: 12px 0;
    position: relative;
    font-size: 20px;
    transition: all 0.6s;
    border-bottom: 1px #eaeaea solid;
    color: #1e2939;
}

.menu-right {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    gap: 37px;
}

body.mobile-menu-visible .mobile-menu {
    left: 0;
    opacity: 1;
    z-index: 999999;
    visibility: visible;
    /* transform: none; */
}


/* End Sidebar */


/***

====================================================================
Start Search Popup
====================================================================

***/

.search-popup {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 99999;
    display: none;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.9);
    /* height: 100%; */
    /* position: absolute; */
    cursor: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAVBAMAAABbObilAAAAMFBMVEVMaXH////////////////////////////////////////////////////////////6w4mEAAAAD3RSTlMAlAX+BKLcA5+b6hJ7foD4ZP1OAAAAkUlEQVR4XkWPoQ3CUBQAL4SktoKAbCUjgAKLJZ2ABYosngTJCHSD6joUI6BZgqSoB/+Shqde7sS9x3OGk81fdO+texMtRVTia+TsQtHEUJLdohJfgNNPJHyEJPZTsWLoxShqsWITazEwqePAn69Sw2TUxk1+euPis3EwaXy8RMHSZBIlRcKKnC5hRctjMf57/wJbBlAIs9k1BAAAAABJRU5ErkJggg==), progress;
}

.sidenav-bar-visible .search-popup {
    width: 80%;
}

.search-popup:before {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 560px;
    /* background-image: url(../images/waves-shape.png); */
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-top: 0px;
    content: "";
}

.search-active .search-popup {
    transform: translateY(0%);
    margin-top: 0;
    display: block;
}

.search-popup .close-search {
    position: absolute;
    left: 0;
    right: 0;
    top: 75%;
    margin: 0 auto;
    margin-top: -200px;
    border-radius: 50%;
    text-align: center;
    background: var(--main-color);
    width: 70px;
    cursor: pointer;
    box-shadow: 0px 0px 16px rgb(0 0 0 / 16%);
    border-bottom: 3px solid #ffffff;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    opacity: 0;
    visibility: hidden;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    text-align: center;
    padding: 0;
    opacity: 0;
    inset: 0;
    right: 0;
    left: 0;
    position: absolute;
}

.search-popup .close-search span {
    position: relative;
    display: block;
    height: 70px;
    width: 70px;
    font-size: 30px;
    line-height: 70px;
    color: #ffffff;
}

.search-active .search-popup .close-search {
    visibility: visible;
    top: 50%;
    -webkit-transition-delay: 1500ms;
    -moz-transition-delay: 1500ms;
    -ms-transition-delay: 1500ms;
    -o-transition-delay: 1500ms;
    transition-delay: 1500ms;
}

.search-popup form {
    position: absolute;
    z-index: 10;
    margin: auto;
    top: 0;
    right: 150px;
    left: 150px;
    bottom: 0;
    height: 60px;
    padding: 0;
    border-bottom: 1px solid #444243 !important;
    border: none;
    background-color: transparent;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    overflow: visible;
}

.search-active .search-popup form {
    transform: scaleX(1);
    -webkit-transition-delay: 1200ms;
    -moz-transition-delay: 1200ms;
    -ms-transition-delay: 1200ms;
    -o-transition-delay: 1200ms;
    transition-delay: 1200ms;
}

.search-popup .form-group {
    position: relative;
    margin: 0px;
    overflow: hidden;
}

.search-popup .form-group input[type="text"],
.search-popup .form-group input[type="search"] {
    border: none;
    line-height: 20px;
    /* background: transparent !important; */
    width: 100%;
    height: 60px;
    padding: 0px !important;
    background: none !important;
    color: #bababa;
    font-size: 16px;
    font-style: italic;
    outline: none !important;
    box-shadow: none !important;
    font-weight: 400;
}

.search-popup .form-group input[type="submit"],
.search-popup .form-group button {
    position: absolute;
    right: 30px;
    top: 0px;
    height: 70px;
    line-height: 70px;
    background: transparent;
    text-align: center;
    font-size: 24px;
    color: #fff;
    padding: 0;
    cursor: pointer;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    font-size: 30px;
    height: 60px;
    width: 60px;
    line-height: 60px;
}

.search-popup .form-group input[type="submit"]:hover,
.search-popup .form-group button:hover {
    color: var(--main-color);
}

.search-popup input::placeholder,
.search-popup textarea::placeholder {
    color: #fff;
}

.search-popup .close-search.style-two {
    position: absolute;
    right: 25px;
    left: auto;
    color: #ffffff;
    /* width: auto; */
    /* height: auto; */
    top: 25px;
    margin: 0px;
    border: none;
    background: none !important;
    box-shadow: none !important;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    inset: 0;
    width: 100%;
    cursor: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAVBAMAAABbObilAAAAMFBMVEVMaXH////////////////////////////////////////////////////////////6w4mEAAAAD3RSTlMAlAX+BKLcA5+b6hJ7foD4ZP1OAAAAkUlEQVR4XkWPoQ3CUBQAL4SktoKAbCUjgAKLJZ2ABYosngTJCHSD6joUI6BZgqSoB/+Shqde7sS9x3OGk81fdO+texMtRVTia+TsQtHEUJLdohJfgNNPJHyEJPZTsWLoxShqsWITazEwqePAn69Sw2TUxk1+euPis3EwaXy8RMHSZBIlRcKKnC5hRctjMf57/wJbBlAIs9k1BAAAAABJRU5ErkJggg==), progress;
    border-radius: 0;
}

.search-popup .close-search.style-two span {
    font-size: 20px;
    color: #ffffff;
}


/***

====================================================================
Start Search Popup
====================================================================

***/

/* Start Header */

.page-h {
    position: relative;
    z-index: 3;
    background: #fff;
    /* transition: all .5s; */
}

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

header.sticky {
    position: absolute;
    z-index: 3;
    right: 0;
    left: 0;
    top: 0;
    width: 100%;
    background: #FFFFFFCC;
    border-bottom: 1px solid #FFFFFF33;
    padding: 14px 0;
    overflow: hidden;
    box-shadow: 0px 12px 12px 0px #0000000F;
    z-index: 5;
}

.head-inner .logo a {
    max-width: 112px;
    display: block;
    width: 100%;
}

.menu-right .mobile-nav-toggler {
    width: 40px;
    height: 40px;
    /* UI Properties */
    background: var(--main-color);
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-align-items: center;
    color: #fff;
}

.menu-right .mobile-nav-toggler .lines {
    display: block;
    width: 22px;
    overflow: hidden;
}

.menu-right .mobile-nav-toggler .lines i {
    display: block;
    width: 1.4rem;
    height: 2px;
    /* background: var(--main-color); */
    margin: 6px 0;
    transition: all .5s;
    position: relative;
}

body.mobile-menu-visible {
    overflow: hidden;
    /* background: var(--sec-color); */
}

body.mobile-menu-visible .ScrollSmoother-wrapper {
    transform: scale(.8) translateX(32vw) translateZ(0) !important;
    height: 100vh;
}

.mobile-menu .close-btn {
    width: 50px;
    height: 50px;
    /* UI Properties */
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 1px solid #FFFFFF;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    display: flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
    position: relative;
    top: 0;
    margin: auto 0;
    bottom: 0;
    font-size: 22px;
    color: var(--sec-color);
    z-index: 9;
}

.ScrollSmoother-wrapper {
    transition: all .5s;
}

.page-h {
    transition: transform .8s cubic-bezier(.15, .2, .1, 1);
    transform-origin: center;
    position: absolute;
    z-index: 10;
    background: #fff;
    width: 100%;
    /* height: 100%; */
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    /* overflow: hidden; */
    z-index: 4;
}

body.mobile-menu-visible .page-h {
    /* transform: scale(.9) translateX(130vw) translateZ(0) !important; */
    /* height: 100vh; */
    vh; */
    transition: transform .8s cubic-bezier(.15, .2, .1, 1);
    /* transform-origin: center; */
    /* z-index: 0; */
    /* overflow: hidden; */
}

body.mobile-menu-visible .mobile-menu {
    z-index: 5;
    opacity: 1;
    /* width: 200px; */
}

.menu-right .mobile-nav-toggler .lines ::after,
.menu-right .mobile-nav-toggler .lines ::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: #fff;
    transition: all .5s;
    top: 0;
}

.menu-right .mobile-nav-toggler .lines ::after {
    transform: translateX(-50px);
    transition: all .3s;
}

.menu-right .mobile-nav-toggler:hover .lines ::after {
    transform: none;
}

.menu-right .mobile-nav-toggler:hover .lines ::before {
    transform: translateX(50px);
}

.menu-right .mobile-nav-toggler .lines .line2::after {
    transition: all .5s;
}

.menu-right .mobile-nav-toggler .lines .line3::after {
    transition: all .7s;
}

.nav-menu ul {
    display: flex;
    gap: 29px;
}

.nav-menu ul li a {
    position: relative;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #211310;
    text-transform: capitalize;
}

.nav-menu ul li {
    position: relative;
    /* margin: 0px 12px; */
}

.nav-menu ul li .sub-menu {
    position: absolute;
    display: block;
    min-width: 281.71px;
    top: 100%;
    clip-path: polygon(0 0, 100% 0%, 100% 0%, 0 0);
    transition: .3s ease-out;
    /* transition-delay: 0.2s; */
    overflow: hidden;
    border: 1px solid #EDEDED;
    border-bottom: 1px #fff solid;
    padding: 15px 3px;
    background: #FFFFFF;
    border-radius: 14px;
}

.nav-menu ul li:hover .sub-menu {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.item.res-menu {
    display: none;
}

.nav-menu ul li .sub-menu li a {
    margin: 0;
    border-bottom: 1px solid #EDEDED;
    padding: 8px 10px;
    position: relative;
    overflow: hidden;
    font-size: 15px;
    line-height: 18.86px;
    display: block;
    color: #11151D;
}

.nav-menu ul li .sub-menu li:nth-child(1) a {
    padding-top: 0;
}

.nav-menu ul li .sub-menu li:last-child a {
    padding-bottom: 0;
    border: none;
}

.nav-menu ul li .sub-menu li a::before {
    display: none;
    content: "\f355";
    font-family: 'Font Awesome 6 Pro';
    font-weight: bold;
    position: absolute;
    top: 0;
    font-size: 13.64px;
    top: 47%;
    transform: translateY(-50%) translateX(15px);
    transition: all .3s;
    overflow: hidden;
    right: 0;
    opacity: 0;
}

.nav-menu ul li .sub-menu li a:hover {
    padding-inline-start: 17px;
    color: var(--main-color);
}

.nav-menu ul li .sub-menu li a:hover::before {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
}

.lang-h a {
    color: #fff;
    display: flex;
    flex-direction: row-reverse;
    font-size: 18px;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    line-height: 28px;
}

.lang-h a i {
    line-height: 27px;
    margin-inline-start: 8px;
}

.lang-h a span {
    text-decoration: underline;
}

.lang-h a:hover {
    color: var(--main-color);
}

.nav-menu ul li a:hover {
    color: var(--main-color);
}

.nav-menu ul li.active a, .nav-menu ul li a:hover {
    color: var(--main-color);
}

.btn {
    border: none !important;
    transition: all .4s;
    background: var(--main-color);
    outline: none !important;
    text-transform: capitalize;
    min-width: 147px;
    border-radius: 8px;
    padding: 13px 15px;
    color: #fff;
    box-shadow: 0px 6px 12px 0px #66666629;
    font-family: 'DG-Bold';
    font-size: 16px;
    line-height: 26px;
    text-align: center;
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    outline: none !important;
}

.nav-menu ul li a::before {
    margin: 0 auto;
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    width: 1px;
    height: 0;
    top: -5px;
    background: var(--main-color);
    transition: all .5s;
}

.nav-menu ul li.current-menu-item a::before {
    /* height: 40px; */
}

.menu-right {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    gap: 20px;
}

.search-box-btn.search-box-outer {
    cursor: pointer;
    width: 18.76px;
}

.menu-right .img-2030 {
    margin: 0 28px;
    max-width: 44.41px;
}

.lang-h {
    text-transform: capitalize;
    color: #211310;
    font-family: 'DG-Bold';
    font-size: 18px;
    /* font-weight: 700; */
    line-height: 28px;
}

.nav-menu ul li .sub-menu li {
    margin: 0;
}

.head-inner .logo::before {
    content: "";
    position: absolute;
    right: -80%;
    top: -14px;
    /* background: url(../images/bg-logo.svg); */
    width: 246%;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: left top;
    height: 151%;
    z-index: -1;
}

/* End Header */

/* Start Banner-h */

.head-inner .logo,
.head-inner .nav-menu,
.head-inner .menu-right {
    position: relative;
    z-index: 2;
}

.banner-h {
    min-height: 100vh;
}

.overlay-img {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.overlay-img img,
.overlay-img video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.nav-menu {
    margin: 0 73px;
}

.head-inner .logo {
    width: 112px;
}

.head-inner .logo::after {
    content: "";
    position: absolute;
    right: -1950%;
    /* background: #fff; */
    height: 151%;
    width: 2000%;
    top: -14px;
    z-index: -1;
}

.banner-h .row {
    min-height: 100vh;
    align-items: center;
    -webkit-align-items: center;
}

.banner-h .text-banner {
    padding: 369px 0 261px;
    max-width: 760px;
}

.banner-h .text-banner h2 {
    font-family: 'DG-Bold';
    color: #fff;
    margin: 0;
    font-size: 64px;
    line-height: 80px;
}

.banner-social {
    /* position: absolute; */
    top: 0;
    bottom: 0;
    margin-inline-start: auto;
    left: 0;
    display: table;
    border-top: 1px solid #FFFFFF33;
    padding: 17px;
    text-align: center;
    border-radius: 8px;
    overflow: hidden;
    width: auto;
}

.banner-h .col-md-12 {
    position: relative;
}

.banner-social::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #FFFFFF1A;
    z-index: -1;
    /* filter: blur(90px); */
    border-top: 1px solid #FFFFFF33;
}

.banner-social a {
    display: block;
    font-size: 21.22px;
    color: #fff;
    margin: 0 0 13px;
}

.banner-social a:last-child {
    margin: 0;
}

.banner-social a:hover {
    color: var(--sec-color);
}

/* End Banner-h */

/* Start Booking-h */

.booking-h {
    padding: 140px 0;
}

.booking-h .row {
    margin: 0;
    align-items: center;
    -webkit-align-items: center;
    border: 1px solid #EDEAEA;
    border-radius: 32px;
    overflow: hidden;
    padding: 51px 44px 69px;
}

.text-booking h3 {
    font-family: 'DG-Bold';
    color: var(--main-color);
    margin: 0;
    font-weight: 700;
    margin-bottom: 32px;
    font-size: 48px;
    line-height: 52px;
}

.btn-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.text-booking .btn-flex {
    margin: 40px 0 0;
}

.btn:hover {
    background: var(--sec-color);
    color: #fff;
}

.img-booking {
    height: 414px;
    overflow: hidden;
    border-radius: 24px;
}

.img-booking img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* End Booking-h */

/* Start Game-h */

.game-h {
    padding: 90px 0;
}

.game-h::after {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    background: var(--bg-color);
    z-index: -1;
    width: 784px;
    height: 784px;
    border-radius: 50%;
}

.title {
    margin: 0 0 32px;
}

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

.title h3 {
    font-family: 'DG-Bold';
    font-size: 48px;
    color: var(--main-color);
    line-height: 73px;
    margin: 0;
}

.game-block {
    margin: 15px 0;
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    height: 388px;
}

.link-block {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.game-block .img,
.game-block .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.game-block .img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #000;
    opacity: .5;
    transition: all .5s;
}

.game-block .details {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 3;
    padding: 43px;
    text-align: center;
}

.game-block .details h3 {
    transition: all .5s;
    font-family: 'DG-Bold';
    font-size: 20px;
    color: #fff;
    line-height: 26px;
    margin: 0;
}

.more {
    width: 60px;
    height: 60px;
    display: flex;
    margin: 0 auto;
    align-items: center;
    -webkit-align-items: center;
    background: #fff;
    justify-content: center;
    text-align: center;
    border-radius: 50%;
    font-family: 'DG-Bold';
    font-size: 16px;
    color: var(--main-color);
    line-height: 26px;
}

.game-block .details .more {
    margin-top: 14px;
    margin-bottom: -35%;
    opacity: 0;
}

.game-block:hover .details .more {
    opacity: 1;
    margin-bottom: -30px;
}

.more span {
    transition: all .5s;
    transform: translateX(25px);
    opacity: 0;
}

.game-block:hover .details .more span {
    transform: none;
    opacity: 1;
}

.btn-center {
    margin: 50px 0 0;
    text-align: center;
}

.btn-sec {
    width: 84px;
    display: inline-flex;
    height: 84px;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    color: #fff;
    transition: all .5s;
}

.btn-sec::after {
    content: "";
    position: absolute;
    inset: 0;
    transition: all .5s;
    box-shadow: 0px 12px 12px 0px #37C32629;
    border-radius: 16px;
    background: var(--main-color);
    z-index: -1;
    transform: rotate(45deg);
}

.btn-sec:hover::after {
    transform: none;
    box-shadow: 0px 12px 12px 0px #37C3263D;
    background: var(--sec-color);
}

.btn-sec:hover {
    color: #fff;
}

.game-block:hover .img::after {
    opacity: .70;
}

/* End Game-h */

/* Start Rest-h */

.rest-h {
    padding: 0;
}

.rest-box {
    border: 1px solid #ECECEC;
    box-shadow: 0px 28px 20px 0px #BBBBBB29;
    padding: 40px;
    border-radius: 32px;
    position: relative;
    margin: 0 0 24px;
    /* min-height: 364px; */
}

.rest-box .box-inner {
    position: relative;
    z-index: 1;
}

.rest-box .box-inner p {
    /* max-width: 518px; */
    font-size: 16px;
    font-weight: 300;
    line-height: 32px;
    color: #625F5F;
}

.rest-box::after {
    display: none;
    content: "";
    position: absolute;
    background: url(../images/after-icon.svg);
    width: 29px;
    height: 57.79px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    bottom: 0;
    left: 0;
    margin: 0 16px;
}

.res-block,  .block-samll-h .col-md-12 .res-block {
    position: relative;
    margin: 0;
    height: 312px;
    overflow: hidden;
    border-radius: 32px;
}

.res-block .img,
.res-block .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.res-block:hover{
    height:375px !important;
}

.res-block .img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #000;
    opacity: .5;
    transition: all .5s;
}

.res-block .details {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 20px 16px;
    height: 100%;
}

.res-block .details h3 {
    margin: 0;
    font-family: 'DG-Bold';
    color: #fff;
    width: calc(100% - 74px);
    font-size: 18px;
    line-height: 26px;
    transition: all .4s;
}

.btn-arrow {
    position: relative;
    width: 64px;
    height: 64px;
    line-height: 64px;
    background: #fff;
    border-radius: 50%;
}

.btn-arrow .circel {
    position: absolute;
    inset: 0;
    transition: all .5s;
    /* transform: rotate(-13deg); */
    height: 56px;
    overflow: hidden;
    width: 56px;
    margin: auto;
    line-height: 56px;
}

.btn-arrow i {
    line-height: 64px;
    width: 100%;
    text-align: center;
    font-size: 21.15px;
    color: var(--main-color);
    transition: all .4s;
}

.btn-arrow .circel svg {
    transition: all .5s;
    width: 25%;
    height: 54%;
    position: absolute;
    inset: 0;
    top: 13px;
}

.btn-arrow .circel svg.svg-hover {
    top: 17px;
    opacity: 0;
    width: 68%;
    height: 68%;
}

.res-block:hover .btn-arrow {
    background: var(--main-color);
}

.res-block:hover .btn-arrow i {
    color: #fff;
}

.res-block:hover .btn-arrow .circel svg.svg-hover {
    opacity: 1;
    transform: rotate(-45deg) translateX(7px) translateY(-4px);
}

.btn-arrow:hover .circel svg {
    height: 0;
}

.res-block:hover .btn-arrow .circel svg {
    opacity: 0;
}

.res-block:hover .btn-arrow {
    transform: rotate(45deg);
}

.res-block:hover .img::after {
    opacity: .70;
}

/* End Rest-h */

/* Start Offers-h */

.btn-big .btn {
    width: 100%;
    min-height: 101px;
    font-size: 24px;
    font-weight: 800;
    line-height: 70.75px;
    border-radius: 32px;
}

.bg-h {
    display: flex;
    position: absolute;
    z-index: -1;
    align-items: end;
    -webkit-align-items: end;
    max-width: 116%;
    overflow: hidden;
    direction: rtl;
}

.offers-h {
    padding: 35px 0 100px;
}

.offers-h .title {
    /* max-width: 60%; */
    /* margin-inline-start: auto; */
    margin-bottom: 48px;
}

.offer-block {
    width: 281.93px;
    height: 282.57px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
    /* margin-inline-end: 15px; */
}

.offer-block .img,
.offer-block .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.offers-h .container {
    position: relative;
}

.bg-h .svg-2 {
    /* max-width: calc(116% - 86px); */
    width: 1151px;
}

.bg-h .svg-2 svg {
    width: 100%;
}

.offers-h .row .row .col-md-6:nth-child(1) .offer-block {
    margin-inline-end: 0;
    margin-inline-start: 15px;
}

.offers-h .row .row .col-md-6:nth-child(2) .offer-block {
    margin-inline-end: auto;
    margin-inline-start: -15px;
}

.offers-h .container {
    /* max-width: 1140px; */
}

.btn-more-2 a {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: end;
    margin: 30px 0 0;
    margin-inline-end: -60px;
}

.btn-more-2 a .circel {
    height: 128px;
}

.btn-more-2 a .circel svg {
    height: 100%;
}

.btn-more-2 a span {
    font-family: 'DG-Bold';
    font-size: 24px;
    line-height: 63.9px;
    color: var(--main-color);
    text-decoration: underline;
    margin-inline-end: -70px;
    margin-top: -16px;
}

.offer-block .details {
    position: absolute;
    inset: 0;
}

.offer-block .details .offer-bg {
    position: absolute;
    inset: 0;
    transition: all .5s;
    /* opacity: .2; */
}

.offer-block .details .offer-bg svg {
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all .3s;
}

.offer-block .details .details-inner {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    -webkit-align-items: center;
    text-align: center;
    padding: 43px 14px;
    /* opacity: 0; */
}

.offer-block .details .details-inner .alert-offer {
    position: absolute;
    left: 43px;
    top: 27px;
    width: 60px;
    height: 60px;
    background: var(--more-color);
    border-radius: 50%;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #fff;
    display: none;
    justify-content: center;
    align-items: center;
    -webkit-align-items: center;
    transition: all .4s;
}

.offer-block .details .details-inner h3 {
    font-family: 'DG-Bold';
    font-size: 20px;
    color: #fff;
    line-height: 24px;
    margin: 0 0 7px;
}

.offer-block .details .details-inner .price-h {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    color: #fff;
    opacity: 0;
}

.offer-block .details .details-inner .price-h .old-price {
    text-decoration: line-through;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #D6D0D0;
}

.offer-block .details .details-inner .price-h .new-price {
    font-family: 'DG-Bold';
    font-size: 22px;
    margin: 0 5px;
    line-height: 32px;
}

.offer-block .details .details-inner .more {
    background: var(--main-color);
    color: #fff;
    margin: 34px 0 0;
    margin-bottom: -100px;
    opacity: 0;
    transition: all .5s;
}

.offer-block:hover .details .details-inner .more {
    margin-bottom: -39px;
    opacity: 0;
    /* display: none; */
}

.offer-block:hover .details .details-inner .more span {
    opacity: 1;
    transform: none;
}

.offer-block:hover .details .offer-bg {
    /* transform: rotate(-140.5deg); */
}

/* End Offers-h */

/* Start Gallery-h */

.gallery-h {
    padding: 140px 0;
}


.gallery-top {
    /* display: flex; */
    margin: 0 0 70px;
}

.gallery-top .title {
    /* max-width: calc(100% - 258px); */
}

.gallery-top .title h3 {
    /* font-size: 46.16px; */
    /* line-height: 60.9px; */
    /* overflow-wrap: anywhere; */
}

.gallery-top .logo-sec {
    border: 1px solid #ECECEC;
    width: 100%;
    margin-inline-start: 25px;
    box-shadow: 0px 28px 20px 0px #BBBBBB29;
    border-radius: 32px;
    overflow: hidden;
    max-width: 258px;
    text-align: center;
    height: 197px;
    line-height: 197px;
}

.gallery-top .logo-sec img {
    max-height: 160.67px;
}

.gallery-items-small {
    display: flex;
    flex-wrap: wrap;
    margin-right: -10px;
    margin-left: -10px;
}

.gallery-items-small .item:nth-child(1), .gallery-items-small .item:nth-child(5) {
    width: 21%;
}

.gallery-items-small .item:nth-child(2), .gallery-items-small .item:nth-child(4) {
    width: 28.9%;
}

.gallery-items-small .item {
    padding: 10px;
    width: 25%;
}

.gallery-items-small .item a {
    display: block;
    height: 200px;
    overflow: hidden;
    border-radius: 32px;
    position: relative;
}

.gallery-items-small .item a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-items-big {
    display: flex;
    flex-wrap: wrap;
    margin-right: -10px;
    margin-left: -10px;
}

.gallery-items-big .video-block {
    width: 100%;
    height: 417px;
    position: relative;
    padding: 0 10px;
}

.gallery-items-big .video-block .video-in a {
    mask-image: url(../images/shape.svg);
    /* -webkit-mask-image: url(../images/shape.svg); */
    mask-size: 100% 100%;
    mask-position: center center;
    mask-repeat: no-repeat;
    display: block;
    width: 100%;
    height: 436px;
    margin-top: -19px;
}

.gallery-items-big .video-block .video-in a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.gallery-items-big .video-block .btn-sec {
    position: absolute;
    left: 12px;
    top: 0;
    width: 124px;
    height: 118px;
    border-radius: 32px !important;
    font-size: 20px;
    overflow: hidden;
    display: none;
}

.gallery-items-big .video-block .btn-sec::after {
    transform: none;
}

.gallery-items-big .video-block .btn-sec:hover::after {
    transform: rotate(91deg);
}

.gallery-items-big .video-block  a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 10px;
    width: 66px;
    height: 66px;
    background-image: url(../images/play.png);
    z-index: 3;
    background-repeat: no-repeat;
    border-radius: 50%;
    font-family: 'Font Awesome 6 Pro';
    font-weight: bold;
    color: #fff;
    background-color: rgb(55 195 38 / 70%);
    line-height: 66px;
    text-align: center;
    margin: 15px;
    background-position: center 20px;
    font-size: 28px;
}

.gallery-items-big .item:nth-child(2) {}

.gallery-items-big .item:nth-child(3) a {
    height: 385px;
    margin-top: -155px;
}

.gallery-items-big .item {
    width: 50%;
    padding: 0 10px;
}

.gallery-items-big .item:nth-child(2) a {
    height: 220px;
}

.gallery-items-big .item a {
    border-radius: 32px;
    overflow: hidden;
    display: block;
    width: 100%;
    margin: 10px 0;
    position: relative;
}

.gallery-items-big .item a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* End Gallery-h */

/* Start Contact-h */

.contact-h {
    padding: 140px 0;
}

.contact-h .row {
    margin: 0;
    border: 1px solid #EDEAEA;
    box-shadow: 0px 44px 84px 0px #AEAEAE40;
    border-radius: 24px;
    padding: 43px 35px;
    align-items: end;
    -webkit-align-items: end;
}

.contact-h .form-h {
    max-width: 500px;
}

.contact-h .title {
    margin: 0 0 32px;
}

.contact-h .title h3 {
    font-size: 32px;
    line-height: 40px;
}

.form-h .form-group {
    margin: 0 0 16px;
    position: relative;
}

.form-h .form-group .form-control {
    width: 100%;
    height: 48px;
    border-radius: 8px;
    padding: 0 23px;
    background: #F7F6F9;
    border: 1px transparent solid;
    box-shadow: none;
    text-align: right;
    font-size: 16px;
    font-weight: 300;
    line-height: 26px;
    transition: all .5s;
}

form {
    direction: rtl;
}

.form-h .form-group .form-control:focus {
    background: #fff;
    border-color: var(--main-color);
}

.form-h .form-group .form-control:focus::placeholder {
    opacity: 0;
    transform: translateX(-15px);
}

.form-h .form-group .form-control::placeholder {
    transition: all .5s;
    color: #625F5F;
}

.form-h .form-group textarea.form-control {
    height: 123px;
    padding-top: 11px;
}

button.btn.btn-form {
    width: 100%;
}

.form-h .form-group:last-child {
    margin-bottom: 0;
}

.form-h .form-group button.btn.btn-form {
    margin: 16px 0 0;
    height: 86px;
    border-radius: 32px;
    font-weight: 800;
    font-size: 24px;
    line-height: 86.75px;
    box-shadow: 0px 8px 8px 0px #BBBBBB29;
}

.contact-img {
    height: 432px;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #BAB8C0;
}

.contact-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.contact-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(33, 19, 16, 0.4) 0%, rgba(33, 19, 16, 0.4) 100%);
}

/* End Contact-h */

/* Start Footer */

.footer-top {
    /* background: linear-gradient(to bottom, #fff, var(--bg-color)); */
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    padding: 213px 0 48px;
    position: relative;
}

.logo-f {
    text-align: center;
    margin: -200px 0 78px;
}

.logo-f a {
    display: block;
    align-content: center;
    height: 135px;
}

.logo-f a img {
    max-width: 255px;
    max-height: 100%;
    object-fit: contain;
}

.map-f {
    border: 1px solid #BAB8C0;
    height: 282px;
    border-radius: 24px;
    overflow: hidden;
    max-width: 858px;
}

.foot-col h3 {
    display: none;
}

.foot-col {
    border: 1px solid #ECECEC;
    background: #fff;
    border-radius: 32px;
    overflow: hidden;
    /* max-width: 363px; */
    /* margin-inline-start: 20px; */
    height: 100%;
}

.foot-col .info-items .info-inner {
    padding: 32px 35px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.foot-col .info-inner .item a {
    display: flex;
    font-size: 16px;
    line-height: 20px;
    font-weight: 300;
    /* margin: 0 0 16px; */
    color: var(--dark-color);
}

.foot-col .info-inner .item a .icon {
    color: var(--main-color);
    width: 24px;
    font-size: 18.27px;
}

.foot-col .info-inner .item a .icon i {
    font-weight: bold;
}

.foot-col .info-inner .item a span {
    width: calc(100% - 24px);
    padding-inline-start: 4px;
    /* max-width: 230px; */
}

.foot-col .info-inner .item a span u {
    text-decoration: none;
    direction: ltr;
    display: inline-block;
}

.foot-col .info-items .s-h {
    background: var(--dark-color);
    padding: 24px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    -webkit-align-items: center;
    margin-top: auto;
}

.foot-col .info-items .s-h span {
    color: #FCF8F5;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    margin-inline-end: 6px;
}

.foot-col .info-items .s-h a {
    font-size: 17.81px;
    color: #fff;
    margin: 0 8px;
}

.foot-col .info-items .s-h a:hover {
    color: var(--main-color);
}

.ryad-logo {
    display: inline-block;
    float: left;
}

.footer-bottom .row {
    align-items: center;
    -webkit-align-items: center;
}

.foot-col .info-inner .item:last-child {
    margin: 0;
}

.copy-right p {
    font-size: 16px;
    font-weight: 300;
    line-height: 26px;
    color: var(--dark-color);
    padding: 20px 0;
}

.copy-right p span {
    color: var(--main-color);
}

/* End Footer */

/* Start About-page */

.text-booking h3::before {
    position: relative;
    content: "";
    background: url(../images/after-icon.svg);
    display: table;
    width: 23px;
    height: 44.82px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    margin-bottom: -10px;
    right: -11px;
    display: none;
}

.sticky.header-pages {
    position: relative;
}

.sticky.header-pages .nav-menu {
    margin: 0 10px;
}

.sticky.header-pages .logo {
    width: auto;
}

.breadcrumb-h {
    padding: 102px 0;
}

.breadcrumb-h .overlay-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--dark-color);
    opacity: 0.56;
}

.text-breadcrumb h2 {
    font-family: 'DG-Bold';
    font-size: 32px;
    color: #fff;
    line-height: 24px;
    margin: 0 0 24px;
}

.text-breadcrumb ul {
    display: flex;
    flex-wrap: wrap;
}

.text-breadcrumb ul li {
    padding: 0 18px;
    position: relative;
}

.text-breadcrumb ul li:first-child {
    padding-inline-start: 0;
}

.text-breadcrumb ul li:last-child {
    padding-inline-end: 0;
}

.text-breadcrumb ul li a,
.text-breadcrumb ul li span {
    font-size: 24px;
    color: #fff;
    line-height: 24px;
    text-transform: capitalize;
}

.text-breadcrumb ul li a::after {
    content: "/";
    position: absolute;
    left: -6px;
    top: 3px;
}

.text-breadcrumb ul li:last-child a::after {
    display: none;
}

.text-breadcrumb ul li span {
    opacity: 0.7;
}

.about-page .row {
    box-shadow: none;
    padding: 85px 65px;
    align-items: inherit;
    -webkit-align-items: inherit;
}

.about-page .text-booking h3 {
    margin: 0 0 32px;
}

.about-page .text-booking p {
    color: #625F5F;
    font-size: 18px;
    font-weight: 300;
    line-height: 30px;
    margin: 20px 0;
}

.about-page .img-booking {
    max-width: 574px;
    margin-inline-start: auto;
    border: 1px solid #D1D1D1;
    border-radius: 24px;
    overflow: hidden;
    height: 414px;
}

.about-page .img-booking img {}

.about-page .about-more.row {
    padding: 0;
    border-radius: 0;
    border: none;
    margin: 5px 0 0;
    overflow: visible;
    align-items: inherit;
    -webkit-align-items: inherit;
}

.about-block {
    margin: 20px 0 0px;
    height: calc(100% - 20px);
    border: 1px solid #EDEAEA;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0px 28px 20px 0px #BBBBBB29;
    padding: 35px;
    transition: all .5s;
    background: #fff;
}

.about-block .title-block {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    margin: 0 0 16px;
}

.about-block .title-block .icon {
    width: 32px;
    height: 32px;
    line-height: 32px;
    transition: all .5s;
}

.about-block .title-block h3 {
    width: calc(100% - 32px);
    margin: 0;
    padding-inline-start: 8px;
    font-family: 'DG-Bold';
    font-size: 24px;
    color: var(--dark-color);
    line-height: 34px;
    transition: all .5s;
}

.about-block .content-block p {
    color: #625F5F;
    font-size: 16px;
    font-weight: 300;
    line-height: 30px;
    transition: all .5s;
}

.about-block:hover .title-block h3,
.about-block:hover .content-block p {
    /* color: #fff; */
}

.about-block:hover .title-block .icon {
    /* filter: brightness(0) invert(1); */
}

.about-block:hover {
    background: color-mix(in srgb, var(--sec-color) 12%, transparent);
    border-color: #EDEAEA;
    box-shadow: 0px 28px 20px 0px #BBBBBB29;
}

/* End About-page */

/* Start Games-page */

.body-inner {
    padding: 100px 0;
}

.pagination {
    flex-wrap: wrap;
    display: inline-flex;
    border: 1px solid #EDEDED;
    box-shadow: 0px 24px 24px 0px #87878714;
    overflow: hidden;
    padding: 14px 18px;
    border-radius: 20px;
}

.pagination-pages {
    margin: 57px 0 0;
    text-align: center;
}

.pagination .page-item {
    margin: 0 6.5px;
}

.pagination .page-item .page-link {
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    text-align: left;
    border: none;
    padding: 0;
    background: transparent;
    color: #585757;
    outline: none !important;
    box-shadow: none !important;
}

.pagination .page-item.active .page-link {
    width: 28px;
    height: 28px;
    background: var(--sec-color);
    line-height: 28px;
    text-align: center;
    border-radius: 50%;
    color: #fff !important;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
}

.pagination .page-item .page-link.prev-link,
.pagination .page-item .page-link.next-link {
    width: 30.44px;
    height: 30.44px;
    line-height: 30.44px;
    background: var(--main-color);
    text-align: center;
    border-radius: 50%;
    color: #fff;
    font-size: 12.34px;
}

.pagination .page-item .page-link.prev-link {
    margin-inline-end: 10px;
}

.pagination .page-item .page-link.next-link {
    margin-inline-start: 10px;
}

.pagination .page-item .page-link:hover {
    color: var(--sec-color);
}

/* End Games-page */

/* Start Single-game */

.text-single h3 {
    font-family: 'DG-Bold';
    font-size: 32px;
    line-height: 51.2px;
    margin: 0 0 20px;
    color: var(--dark-color);
}

.text-single p {
    color: #625F5F;
    font-size: 18px;
    font-weight: 300;
    line-height: 30px;
    margin: 20px 0;
}

.text-single ul {
    margin: 32px 0;
}

.text-single ul li {
    color: #625F5F;
    font-size: 18px;
    font-weight: 300;
    line-height: 30px;
    margin: 15px 0;
}

.imgs-single {
    max-width: 622px;
    margin-inline-start: auto;
    position: relative;
}

.imgs-single .slider-single-for .img {
    height: 388px;
    overflow: hidden;
    border-radius: 32px;
}

.imgs-single .slider-single-for .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.imgs-single .slider-single-for {
    margin: 0 0 15px;
}

.imgs-single .slider-single-nav .img {
    height: 120.1px;
    overflow: hidden;
    border-radius: 16px;
    position: relative;
    box-shadow: 0px 18.48px 18.48px 0px #BBBBBB29;
    border: 2px transparent solid;
}

.imgs-single .slider-single-nav .item {
    padding: 0 10px;
}

.imgs-single .slider-single-nav .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.imgs-single .slider-single-for .item {
    padding: 0 10px;
}

.imgs-single .slider-single-nav .img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--dark-color);
    opacity: .4;
    transition: all .5s;
}

.imgs-single .slider-single-nav .item.slick-slide.slick-current.slick-active .img::after {
    opacity: 0;
}

.imgs-single .slider-single-nav .item.slick-slide.slick-current.slick-active .img {
    border-color: var(--main-color);
}

.imgs-single .slider-single-for .slick-arrow {
    width: 40.59px;
    height: 40.59px;
    z-index: 3;
    background: var(--main-color);
    border-radius: 50%;
    opacity: 0.5;
    transition: all .5s;
}

.imgs-single .slider-single-for .slick-arrow::before {
    content: "\f061";
    font-family: 'Font Awesome 6 Pro';
    opacity: 1;
}

.imgs-single .slider-single-for .slick-next::before {
    content: "\f060";
}

.imgs-single .slider-single-for .slick-prev {
    left: auto;
    right: 37px;
}

.imgs-single .slider-single-for .slick-next {
    right: auto;
    left: 37px;
}

.imgs-single .slider-single-for .slick-arrow:hover {
    opacity: 1;
}

/* End Single-game */

/* Start Prices-page */

.prices-page .offer-block {
    margin: 0 auto 37px;
}

.single-title {
    margin: 0 0 26px;
}

.single-title>span {
    color: #FC5757;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.single-title .price-h {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    -webkit-align-items: center;
}

.single-title .price-h .old-price {
    color: #979797;
    font-size: 22px;
    font-weight: 400;
    line-height: 32px;
    text-decoration: line-through;
}

.single-title .price-h .new-price {
    font-family: 'DG-Bold';
    font-size: 32px;
    color: var(--sec-color);
    line-height: 46px;
}

/* End Prices-page */

/* Start Video-page */

.nav.nav-tabs {
    border: none;
    justify-content: center;
    margin: 0 0 33px;
    display: inline-flex;
    border: 1px solid #EDEDED;
    box-shadow: 0px 24px 24px 0px #87878714;
    padding: 12px 16px;
    border-radius: 50px;
}

.videos-page.body-inner {
    text-align: center;
}

.nav.nav-tabs .nav-item .nav-link {
    margin: 0;
    min-width: 139px;
    border-radius: 50px;
    border: none !important;
    min-height: 48px;
    padding: 5px;
    color: var(--dark-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.nav.nav-tabs .nav-item .nav-link.active {
    box-shadow: 0px 24px 24px 0px #87878714;
    background: var(--main-color);
    color: #fff;
}

.tab-inner .gallery-items-small .item:nth-child(1),
.tab-inner .gallery-items-small .item:nth-child(5) {
    width: 25%;
}

.tab-inner .gallery-items-small .item:nth-child(2),
.tab-inner .gallery-items-small .item:nth-child(3),
.tab-inner .gallery-items-small .item:nth-child(4),
.tab-inner .gallery-items-small .item:nth-child(6) {
    width: 37.5%;
}

.tab-inner .gallery-items-big .item {
    width: 100%;
}

.tab-inner .gallery-items-big .item .gallery-block {
    height: 420px;
}

.tab-inner .item a::before,
.tab-inner .item a::after {
    content: "";
    position: absolute;
    inset: 0;
}

.tab-inner .item a::before {
    inset: 0;
    background: var(--dark-color);
    transition: all .5s;
    opacity: 0;
}

.tab-inner .item a:hover::before {
    opacity: 0.6;
}

.tab-inner .item a::after {
    width: 66px;
    height: 66px;
    background: var(--main-color);
    line-height: 66px;
    text-align: center;
    color: #fff;
    margin: auto;
    position: absolute;
    content: "";
    z-index: 2;
    border-radius: 50%;
    font-family: 'Font Awesome 6 Pro';
    font-weight: bold;
    text-shadow: 0px 4px 4px #00000040;
    font-size: 28px;
    transition: all .5s;
    transform: scale(.5);
    opacity: 0;
    background-image: url(../images/play.png);
    z-index: 3;
    background-repeat: no-repeat;
    background-position: center 20px;
}

.tab-inner .item a:hover::after {
    opacity: 1;
    transform: none;
}

.tab-inner.row:nth-child(2) {
    flex-direction: row-reverse;
}

.gallery-block.img-block::after {
    /* font-weight: 200 !important; */
    /* content: "\f31d" !important; */
}

@media (min-width: 576px) {
    .bookingModal .modal-dialog {
        max-width: 643px;
    }
}

.modal-content {
    border-radius: 24px;
}

button.btn-close {
    border: 2px solid #D9D9D9;
    position: absolute;
    left: 0;
    top: 0;
    width: 46px;
    height: 46px;
    line-height: 46px;
    text-align: center;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0px 4px 4px 0px #00000040;
    color: #D9D9D9;
    font-size: 22px;
    margin: -19px;
    opacity: 1;
}

.bookingModal .modal-body {
    padding: 0;
}

.form-h.form-modal {
    padding: 70px 56px;
}

.form-h.form-modal .title {
    margin: 0 0 24px;
}

.form-h.form-modal .title h3 {
    font-size: 32px;
    line-height: 42px;
}

.form-h.form-modal .form-group label {
    position: absolute;
    right: 0;
    bottom: 0;
    top: 0;
    padding: 11px 23px;
    font-size: 16px;
    font-weight: 300;
    line-height: 26px;
    color: var(--dark-color);
}

.form-h.form-modal .form-group .form-control.datepicker {
    padding: 0 114px;
}

.form-h .form-group .icon {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 53px;
    height: 48px;
    line-height: 48px;
    background: var(--sec-color);
    text-align: center;
    border-start-end-radius: 8px;
    border-end-end-radius: 8px;
}


.whatsIcon {
    position: fixed;
    right: 3%;
    bottom: 0;
    margin: 132px 14px;
    z-index: 4;
    height: 58px;
    width: 58px;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 4px 0px #30BF2F4D;
    border-radius: 12px;
    background: linear-gradient(180deg, #61FD7D 0%, #2BB826 100%);
    color: #fff;
    font-size: 23.64px;
    display: none;
}

.whatsIcon i {
    line-height: 58px;
}

header.sticky.active {
    position: fixed;
    box-shadow: 0 0 20px #00000008;
}

.upPage {
    width: 51px;
    position: fixed;
    z-index: 7;
    height: 51px;
    margin: 30px;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    right: 0;
    bottom: -200px;
    border: 1px solid #C3C0C033;
    box-shadow: 0px 7.73px 7.73px 0px #4AED361C;
    background: #FFFFFF;
    color: var(--main-color);
    border-radius: 10px;
    transition: all .5s;
    opacity: 0;
}

.upPage i {
    line-height: 58px;
    font-weight: 500;
    font-size: 22.8px;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
}

.upPage.show {
    bottom: 0;
    opacity: 1;
}

.upPage:hover {
    background: var(--main-color);
    color: #ddd;
}

.text-single {
    max-width: 531px;
}

.text-single .btn {
    width: 100%;
}

.res-h {
    display: none
}

.text-booking {
    /* max-width: 435px; */
    padding-inline-end: 30px;
}

.offer-block:hover .details .details-inner .alert-offer {
    background: rgb(252 87 87 / 50%);
}

.upPage i::before {
}

.upPage:hover i {
    filter: brightness(0) invert(1);
}

.gallery-items-small .item .gallery-block.img-block::after {
    content: "\2b";
    background-image: none;
}

.banner-h .text-banner h2 span {
    color: var(--main-color);
}

.banner-h .text-banner p {
    font-weight: 300;
    color: #fff;
    font-size: 24px;
    line-height: 34px;
    letter-spacing: 0.25px;
}

/* End Video-page */

@media (min-width: 576px) {
.reqModal  .modal-dialog {
    max-width: 459px;
}
}

.reqModal  .modal-content {
    border: 6px solid var(--Color-4, #FFFFFF);
    border-radius: 17.54px;
    background: #FBFCFF;
    box-shadow: 0px 4.39px 39.47px 0px #4F4F4F1F;
    padding: 40px;
}

.reqModal  .modal-body {
    padding: 0;
}

.reqModal  button.btn-close {
    margin: -66px;
    opacity: 1;
    color: var(--main-color);
}

.reqModal-inner h3 {
    color: #0B1510;
    font-family: 'DG-Bold';
    font-weight: 700;
    margin-bottom: 32px;
    font-size: 32px;
    line-height: 38px;
    text-align: center;
}

.reqModal-inner form .form-group {
    margin-bottom: 16px;
}

.reqModal-inner form .form-group:last-child {
    margin: 0;
}

.reqModal-inner form .form-group .form-control {
    background: #F9FFFF;
    border: 1px solid #ECFFF5;
    padding: 8px 16px;
    border-radius: 4px;
    height: 44px;
    width: 100%;
    font-size: 16px;
    color: #2D2B2B;
    text-align: right;
}

.reqModal-inner form .form-group .form-control::placeholder {
    color: #2D2B2B;
}

.reqModal-inner form .form-group .form-control:focus {
    box-shadow: none;
}

.reqModal-inner form .form-group .iti {
    display: block;
}

.reqModal-inner form .form-group .iti .iti__selected-flag {
    background: transparent !important;
    direction: ltr;
    font-family: cursive;
    color: #0C3A3F;
    font-size: 16px;
    line-height: 22px;
}

.reqModal-inner form .form-group .iti .iti__selected-flag .iti__flag.iti__sa {
    display: none;
}

.iti__country-list {
    left: 0;
}

.iti__country {
    direction: ltr;
    text-align: right;
}

.iti__country .iti__flag-box {
    display: none;
}

.reqModal-inner form .form-group .nice-select::after {
    position: relative;
    right: 0;
    top: 0;
    color: var(--main-color);
    font-weight: 300;
}

.reqModal-inner form .form-group .form-control.niceSelect {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: space-between;
}

.reqModal-inner form .form-group .btn {
    width: 100%;
    height: 44px;
    min-height: auto;
}

.banner-h .overlay-img:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(33, 19, 16, 0) 0%, rgba(33, 19, 16, 0.8) 100%);
}

.text-booking p {
    color: #625F5F;
    font-weight: 400;
    margin-bottom: 12px;
    font-size: 18px;
    line-height: 28px;
}

.text-booking p:last-child {
    margin: 0;
}

.about-more.row {
    border: none;
    padding: 0;
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
    align-items: inherit;
    -webkit-align-items: inherit;
    overflow: visible;
}

.rest-box .box-inner .title {
    margin: 0 0 32px;
}

.res-block .details .contentss {
    font-weight: 300;
    font-size: 16px;
    line-height: 26px;
    color: #fff;
    max-height: 0;
    opacity: 0;
    transition: all .5s;
    transform: translate(70px, 70px);
}

.contentss ul{
    margin:15px 0 !important;
}
.contentss li {
    width: 50%;
    display: inline-block;
    font-size: 14px;
    list-style: initial;
    display: list-item;
    padding: 0 7px;
    padding-inline-end: 29px;
}
.res-block:hover .details .contentss {
    max-height: 612px;
    opacity: 1;
    transform: none;
    margin-top: 0;
   
    top: 7px;
    position: relative;
}

.block-samll-h .res-block {
    height: 237px;
    margin: 0;
    margin-bottom: 22px;
}

.row.block-samll-h {
    justify-content: space-between;
}

.btn-big {
    margin-top: 30px;
}

.rest-h .container>.row>.col-md-6:nth-child(2) {
    display: flex;
    flex-direction: column;
}

.gallery-tabs .nav.nav-pills .nav-item .nav-link {
    min-width: 153px;
    text-align: center;
    padding: 13px 15px;
    border-radius: 0;
    color: #A5A5A5;
    font-weight: 300;
    font-size: 20px;
    line-height: 25px;
}

.gallery-tabs .nav.nav-pills {
    border: 1px solid #D7D7D7;
    display: inline-flex;
    border-radius: 5px;
    overflow: hidden;
}

.gallery-tabs .nav.nav-pills .nav-item .nav-link.active {
    color: var(--main-color);
    background: color-mix(in srgb, var(--sec-color) 20%, transparent);
}

.gallery-items-big.mt-mins {
    margin-top: -216px;
}

.offer-block .details .offer-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #000;
    opacity: .5;
    transition: all .4s;
}

.offer-block .details .details-inner p {
    color: #fff;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
}

.offer-block:hover .details .offer-bg svg {
    /* opacity: 1; */
}

.offer-block:hover .details .offer-bg::after {
    opacity: .7;
}

.form-h form .form-group:nth-last-child(2)
{
    margin: 0;
}

.footer-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: -1;
}

.footer-bg svg {
    width: 100%;
    /* height: 100%; */
}

.foot-col .info-inner .item {
    /* margin: 0 0 16px; */
}

.foot-col .info-items {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.res-block .details p::-webkit-scrollbar {
    width: 3px;
}

.res-block .details p::-webkit-scrollbar-thumb {
    background-color: #555; /* Color of the thumb */
    border-radius: 5px;
}

.res-block .details p::-webkit-scrollbar-track {
    background-color: #242323;
}

.mobile-menu .menu-box .navigation li.active a {
    color: var(--main-color);
}

.gallery-items-small .item:nth-child(3) {
    width: calc(100% - 28.9% - 21%);
    margin-top: -217px;
}

.gallery-items-small .item:nth-child(3) a {
    height: 417px;
    position: relative;
    border-radius: 20px;
}

.gallery-items-small .item:nth-child(3) a img {
    mask-image: url(../images/shape.svg);
    /* -webkit-mask-image: url(../images/shape.svg); */
    mask-size: 100% 95%;
    mask-position: center bottom;
    mask-repeat: no-repeat;
    display: block;
    width: 100%;
    height: 100%;
    margin-top: -19px;
}

.gallery-items-small .item:nth-child(6) {
    width: 25%;
    margin-top: -20px;
}

.gallery-items-small .item:nth-child(7) {
    width: calc(100% - 25% - 21% - 28.9%);
}

.gallery-items-small .item:nth-child(7) a {
    height: 399px;
    margin-top: -198px;
}

.gallery-items-small .item:nth-child(6) a {
    height: 220px;
}

.gallery-items-small.video-block-h .item a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 66px;
    height: 66px;
    background-image: url(../images/play.png);
    z-index: 3;
    background-repeat: no-repeat;
    border-radius: 50%;
    font-family: 'Font Awesome 6 Pro';
    font-weight: bold;
    color: #fff;
    background-color: rgb(55 195 38 / 70%);
    line-height: 66px;
    text-align: center;
    margin: 15px;
    background-position: center 20px;
    font-size: 28px;
}

.gallery-items-small .item:nth-child(3) a::after {
    bottom: 20px;
}

/* circular-menu */
#circularMenu {
	position: fixed;
	bottom: 95px;
	right: 30px;
	z-index: 9;
}

.circular-menu .floating-btn {
	display: block;
	width: 51px;
	height: 51px;
	border-radius: 10px;
	background-color: var(--main-color);
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	outline: 0;
	color: #fff !important;
}

/* .circular-menu.active .floating-btn {
    box-shadow: inset 0 0 3px hsla(0, 0%, 0%, 0.3);
  }

  .circular-menu .floating-btn:active {
    box-shadow: 0 4px 8px 0 hsla(0, 0%, 0%, 0.4);
  } */

.circular-menu .floating-btn i {
	font-size: 1.3em;
	transition: transform 0.2s;
}

.circular-menu.active .floating-btn i {
	transform: rotate(-45deg);
}

.circular-menu:after {
	display: block;
	content: " ";
	width: 3.5em;
	height: 3.5em;
	border-radius: 50%;
	position: absolute;
	top: 0;
	right: 0;
	z-index: -2;
	background-color: rgba(27, 133, 190, 0);
	transition: all 0.3s ease;
}

.circular-menu.active:after {
	transform: scale3d(5.5, 5.5, 1);
	transition-timing-function: cubic-bezier(0.68, 1.55, 0.265, 1);
}

.circular-menu .items-wrapper {
	padding: 0;
	margin: 0;
}

.circular-menu .menu-item {
	position: absolute;
	top: 0.2em;
	right: 0.2em;
	z-index: -1;
	display: block;
	text-decoration: none;
	color: rgb(50 74 113);
	font-size: 1em;
	width: 2.5em;
	height: 2.5em;
	border-radius: 10px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--bg-color);
	transition: transform 0.3s ease, background-color 0.2s ease;
	transition-timing-function: ease, ease;
	/* box-shadow: 0 0 22px 5px #f5f9fc6b; */
}

.circular-menu.active .menu-item {
	transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.circular-menu.active .menu-item:nth-child(1) {
	transform: translate3d(-1em, -4.2em, 0);
}

.circular-menu.active .menu-item:nth-child(2) {
	transform: translate3d(-4em, -2em, 0);
}

.circular-menu.active .menu-item:nth-child(3) {
	transform: translate3d(-4em, 1.5em, 0);
}

.circular-menu .menu-item path {
    fill: var(--main-color);
}

.circular-menu .menu-item #envelope path {
    fill: transparent;
    stroke: var(--main-color);
}

.reqModal-inner form .form-group .form-control.niceSelect .current {
    max-width: 90%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.map-new-h {
    padding: 80px 0;
    background: var(--bg-color);
    margin-top: 80px;
}

.map-text p {
    color: #000;
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    margin-bottom: 10px;
}

.map-new-h .row {
    /* align-items: center; */
}


.map-img-wrapper .svg-path.active,
.map-img-wrapper .svg-path:hover {
    fill: var(--main-color);
}

.map-img-wrapper .svg-path {
    transition: all .3s;
    cursor: pointer;
}

.about-block .title-block .icon svg path {
    fill: var(--main-color);
}

.whatsappIcon {
    display: block;
    width: 51px;
    height: 51px;
    border-radius: 10px;
    background-color: #25D366;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    outline: 0;
    color: #fff !important;
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 7;
    margin: 95px 30px;
    color: #fff;
}

.whatsappIcon path {
    fill: #fff;
}

.map-text ul {
    margin-top: 20px;
    padding-inline-start: 20px;
}

.map-text ul li {display: list-item;list-style: initial;color: #000;font-size: 17px;font-weight: 400;line-height: 27px;margin: 5px 0;}

.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow, .bs-tooltip-start .tooltip-arrow {
    right: auto;
    left: 0;
    scale: -1;
    margin-top: 24px;
}

.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before, .bs-tooltip-start .tooltip-arrow::before {
    border-left-color: var(--main-color);
}

.tooltip-inner {
    background: var(--main-color);
}

.home-slider .item {
    position: relative;
}

dov.container.banner-social-h {
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    margin: 0 auto;
}

.banner-h .item {
    min-h: 100vh;
}

.banner-social-h {
    position: absolute;
    left: 8%;
    top: 40%;
}

.home-slider .slick-dots {
    bottom: 55px;
}

.home-slider .slick-dots li.slick-active button {
    opacity: 1;
}

.home-slider .slick-dots li {
    width: auto;
    height: auto;
}

.home-slider .slick-dots li button {
    margin: 0;
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 50px;
    opacity: .5;
}

.home-slider .slick-dots li button::before {
    display: none;
}

.res-block .details .contentss ul {
    display: flex;
    flex-wrap: wrap;
    padding-inline-start: 20px;
}





@media (min-width: 991px){
.foot-col .info-inner .item a:hover {
    color: var(--main-color);
}

.res-block:hover .details h3 {
    opacity: 0;
	display: none;
}

.res-block:hover .details {
    top: 0;
}
}