/* Variables */
:root {
    --color-primary: #1D1D1B;
    --color-secondary: #FE0000;
    --color-light: #fffefa;
    --font-english: 'Poppins';
    --font-arabic: 'GE SS Two';
    --transition: all 0.5s ease-in-out;
    --scrollProgress: 0;
}

html {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    min-height: 100%;
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-light);
    color: var(--color-primary);
    font-family: 'Poppins', 'Beyond Infinity - Demo', 'iCiel Gotham', 'GE SS Two', Arial, sans-serif;
    position: relative;
    width: 100%;
    padding-top: 80px;
}

.container-fluid {
    padding-left: 125px;
    padding-right: 125px;
}

/*Font css*/
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Thin.ttf');
    font-weight: 100
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-ExtraLight.ttf');
    font-weight: 200
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Light.ttf');
    font-weight: 300
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.ttf');
    font-weight: 400;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Medium.ttf');
    font-weight: 500;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-SemiBold.ttf');
    font-weight: 600;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Bold.ttf');
    font-weight: 700
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-ExtraBold.ttf');
    font-weight: 800
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Black.ttf');
    font-weight: 900;
}

@font-face {
    font-family: 'Beyond Infinity - Demo';
    src: url('../fonts/Beyond Infinity - Demo.ttf');
    font-weight: normal;
}

@font-face {
    font-family: 'iCiel Gotham';
    src: url('../fonts/iCielGothamMedium.otf');
    font-weight: 500;
}

@font-face {
    font-family: 'iCiel Gotham';
    src: url('../fonts/iCielGothamBold.ttf');
    font-weight: 700;
}

@font-face {
    font-family: 'iCiel Gotham';
    src: url('../fonts/iCielGothamUltra.otf');
    font-weight: 900;
}

@font-face {
    font-family: 'GE SS Two';
    src: url('../fonts/GE_SS_Two_Light.otf');
    font-weight: 300
}

@font-face {
    font-family: 'GE SS Two';
    src: url('../fonts/GE_SS_Two_Medium.otf');
    font-weight: 500;
}

@font-face {
    font-family: 'GE SS Two';
    src: url('../fonts/GE_SS_Two_Bold.otf');
    font-weight: 700
}

.font-english {
    font-family: var(--font-english);
}

.font-arabic {
    font-family: var(--font-arabic);
}

* {
    box-sizing: border-box;
    outline: none !important;
}

/* width */
::-webkit-scrollbar {
    /*width: 6px;*/
}

/* Track */
::-webkit-scrollbar-track {
    /*background: #ccc;*/
}

/* Handle */
::-webkit-scrollbar-thumb {
    /*background: var(--color-primary);*/
}

::-moz-selection {
    background: var(--color-primary);
    color: #fff
}

::selection {
    background: var(--color-primary);
    color: #fff
}

ul {
    list-style: none;
    margin: 0;
    padding: 0
}

textarea {
    resize: none !important;
}

.dropdown-item a {
    color: #132944;
}

.dropdown-toggle::after {
    content: "";
    color: transparent;
    background-color: transparent;
}

a,
a:hover {
    /*color: #132944;*/
}

/* Scroll Indicator */
.scrollIndicator {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 40px;
    z-index: 9999;
}

.scrollIndicator:before,
.scrollIndicator:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    height: 100%;
}

.scrollIndicator:before {
    height: 100%;
    background: var(--color-light);
    z-index: -2;
}

.scrollIndicator:after {
    height: calc(var(--scrollProgress) * 100vh);
    background-color: var(--color-primary);
    z-index: -1;
}

.scrollIndicator ul {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    padding: 3vh 0;
    z-index: 9999;
}

.scrollIndicator ul li {
    display: block;
    margin: 1.2vh 0;
}

.scrollIndicator ul li a {
    display: block;
    font-weight: normal;
    font-size: 2.9vh;
    color: var(--white);
    writing-mode: vertical-lr;
    mix-blend-mode: exclusion;
}

/* Header */
header {
    position: relative;
    display: block;
    z-index: 1030;
}

.navbar {
    background: var(--color-primary);
    border: none;
    width: 100%;
    padding: 20px 0;
    margin: 0;
    transition: var(--transition);
}

.scrolled .navbar {
    padding: 12px 0;
}

.navbar .navbar-brand img {
    transition: var(--transition);
    height: 60px;
}

.scrolled .navbar .navbar-brand img {
    height: 46px;
}

.navbar .toggle-menu {
    position: relative;
    display: inline-block;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0;
    width: 26px;
    height: 18px;
    margin-left: 5px;
}

.navbar .toggle-menu span {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 3px;
    border-radius: 2px;
    background: #fff;
    transition: var(--transition);
}

.navbar .toggle-menu span:first-of-type {
    top: 0;
}

.navbar .toggle-menu.active span:first-of-type {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.navbar .toggle-menu span:nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
}

.navbar .toggle-menu.active span:nth-of-type(2) {
    opacity: 0;
}

.navbar .toggle-menu span:last-of-type {
    bottom: 0;
}

.navbar .toggle-menu.active span:last-of-type {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

.search-group {
    direction: rtl;
}

.search-group input[type=text] {
    direction: ltr;
    width: 30px;
    height: 34px;
    border: none;
    border-radius: 17px;
    font-size: 16px;
    background-color: transparent;
    background-image: url('../images/search-white.svg');
    background-position: calc(100% - 12px) 8px;
    background-size: 18px 18px;
    background-repeat: no-repeat;
    padding: 6px 12px;
    color: transparent;
    cursor: pointer;
    transition: var(--transition);
}

.search-group input[type=text]:focus {
    width: 100%;
    background-color: #fff;
    background-image: url('../images/search-black.svg');
    color: var(--color-primary);
    cursor: auto;
}

.search-group input[type=text]::placeholder {
    color: transparent;
}

.search-group input[type=text]:focus::placeholder {
    color: #aaa;
}

/* Side menu*/
.side-wrapper {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100vw;
    height: 0;
    background: var(--color-primary);
    padding-bottom: 40px;
    visibility: hidden;
    opacity: 0;
    z-index: -1;
    overflow: hidden;
    transition: var(--transition);
}

.side-wrapper.active {
    height: calc(100vh - 80px);
    opacity: 1;
    visibility: visible;
    z-index: 1000;
}

.side-wrapper .custom-height {
    height: 97% !important;
}

.side-wrapper ul.side-menu {
    position: relative;
    display: block;
    width: 100%;
    transition: var(--transition);
    margin-bottom: 4vw;
}

.side-wrapper ul.side-menu li {
    display: block;
}

.side-wrapper ul.side-menu li a {
    display: block;
    font-weight: normal;
    font-size: 2.304vw
        /* 50/19.2 */
    ;
    letter-spacing: -0.03em;
    line-height: 1.2;
    color: #fff;
    text-decoration: none !important;
    transition: var(--transition);
}

.side-wrapper ul.side-menu li a:hover {
    opacity: 0.5;
}

.side-wrapper .switch-language {
    position: absolute;
    bottom: 0;
    left: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 106px;
    height: 34px;
    border-radius: 17px;
    background: #fff;
}

.side-wrapper .switch-language a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 45px;
    height: 100%;
    font-weight: normal;
    font-size: 12px;
    letter-spacing: -0.02em;
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition);
}

.side-wrapper .switch-language a.active {
    background: var(--color-primary);
    border-radius: 30px;
    width: 61px;
    color: #fff;
    margin-left: -2px;
    margin-right: -2px;
}

.btn-book-header {
    display: flex !important;
    width: max-content;
    height: 65px;
    border-radius: 35px;
    background: var(--color-secondary);
    border: 1px solid var(--color-secondary);
    font-weight: normal;
    font-size: 1.8vw !important;
    letter-spacing: -0.04em;
    text-align: center;
    color: var(--color-light);
    margin-top: 15px;
    padding: 25px !important;
    align-items: center;
}

.side-wrapper .way-letters {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
}

.side-wrapper .way-letters img {
    position: absolute;
    display: block;
    height: 32vh;
    opacity: 0.2;
    transition: var(--transition);
}

.side-wrapper .way-letters img:nth-of-type(1) {
    top: 0;
    right: 9vw;
    transform: rotate(4deg);
}

.side-wrapper .way-letters img:nth-of-type(2) {
    top: 35vh;
    right: 17vw;
    transform: rotate(-1deg);
}

.side-wrapper .way-letters img:nth-of-type(3) {
    top: 68vh;
    right: 20vw;
    transform: rotate(12deg);
}

.side-wrapper.active .way-letters img:nth-of-type(1) {
    animation: W-animation 1s forwards alternate linear;
}

.side-wrapper.active .way-letters img:nth-of-type(2) {
    animation: A-animation 1.1s forwards alternate linear;
}

.side-wrapper.active .way-letters img:nth-of-type(3) {
    animation: Y-animation 1s forwards alternate linear;
}

@keyframes W-animation {
    0% {
        transform: rotate(4deg) translateX(100px);
    }

    100% {
        transform: rotate(4deg) translateX(0);
    }
}

@keyframes A-animation {
    0% {
        transform: rotate(-1deg) translateX(-200px);
    }

    100% {
        transform: rotate(-1deg) translateX(0);
    }
}

@keyframes Y-animation {
    0% {
        transform: rotate(12deg) translateX(100px);
    }

    100% {
        transform: rotate(12deg) translateX(0);
    }
}

/* Book Now */
.booking-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: left;
}

.book-now-wrapper {
    position: fixed;
    bottom: 30px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 78px;
    background: var(--color-secondary);
    border-radius: 0 39px 39px 0;
    padding-left: 40px;
    padding-right: 30px;
    z-index: 999;
    transition: var(--transition);
    box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}

.book-now-wrapper .toggle-book,
.book-now-wrapper .toggle-book-static {
    border: none;
    font-weight: 500;
    font-size: 21px;
    letter-spacing: -0.04em;
    color: #fff;
    text-decoration: none !important;
    transition: var(--transition);
}

.toggle-book-static span {
    margin-left: 5px;
}

.book-now-wrapper:hover .toggle-book img,
.book-now-wrapper:hover .toggle-book-static img {
    animation: arrow 1s forwards infinite alternate ease-in-out;
}

.book-now-wrapper:hover .toggle-book.active img {
    animation: arrow2 1s forwards infinite alternate ease-in-out;
}

@keyframes arrow {
    0% {
        transform: translateX(5px);
    }

    100% {
        transform: translateX(-5px);
    }
}

@keyframes arrow2 {
    0% {
        transform: rotate(180deg) translateX(5px);
    }

    100% {
        transform: rotate(180deg) translateX(-5px);
    }
}

.book-now-wrapper .toggle-book img,
.book-now-wrapper .toggle-book span {
    display: inline-block;
    transition: var(--transition);
}

.book-now-wrapper .toggle-book.active img {
    transform: rotate(180deg);
}

.book-now-wrapper .toggle-book.active span {
    display: none;
    transition: var(--transition);
}

.book-now-wrapper .toggle-book img {
    width: 42px;
    margin-right: 30px;
}

.book-now-wrapper .book-btns {
    position: absolute;
    opacity: 0;
    z-index: -1;
    transform: translateX(-60px);
    visibility: hidden;
    white-space: nowrap;
    transition: var(--transition);
}

.book-now-wrapper .book-btns.active {
    position: relative;
    opacity: 1;
    z-index: 1;
    transform: translateX(0);
    visibility: visible;
}

.book-now-wrapper .book-btns .btn-book {
    width: 158px;
    height: 49px;
    border-radius: 10px;
    background: var(--color-light);
    border: 1px solid var(--color-primary);
    font-weight: normal;
    font-size: 18px;
    letter-spacing: -0.04em;
    text-align: center;
    color: var(--color-primary);
    margin: 5px;
}

.btn-my-bookings {
    width: 158px;
    height: 50px;
    border-radius: 12px;
    background: var(--color-secondary);
    font-weight: normal;
    font-size: 20px;
    letter-spacing: -0.04em;
    text-align: center;
    color: var(--color-light);
    margin: 5px;
}

/* Read More */
section .read-more {
    display: block;
    font-weight: normal;
    font-size: 1.146vw
        /* 22/19.2 */
    ;
    letter-spacing: -0.03em;
    color: #fff !important;
    text-decoration: none !important;
    transition: var(--transition);
    text-shadow: 3px 4px 7px rgba(53, 16, 16, 0.8);
}

section .read-more.dark {
    color: var(--color-primary) !important;
}

section .read-more:hover {
    opacity: 0.7;
}

section .read-more span {
    font-weight: bold;
    font-size: 1.40625vw
        /* 27/19.2 */
    ;
    text-transform: uppercase;
}

section .read-more img {
    width: 1.25vw
        /* 24/19.2 */
    ;
    margin-left: 0.5vw;
    transition: var(--transition);
}

section .read-more:hover img {
    transform: translateX(5px);
}

section .read-more.dark img {
    filter: brightness(1) invert(1);
}

/* Section title*/
.section-title-block {
    position: relative;
    display: inline-block;
}

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

.section-title-block .section-title {
    position: relative;
    display: inline-block;
    font-weight: 600;
    font-size: 5.417vw
        /* 104/19.2 */
    ;
    letter-spacing: -0.1em;
    color: #fff;
    padding-bottom: 1.5625vw
        /* 30/19.2 */
    ;
}

.about-block .section-title-block .section-title,
.service-block .section-title-block .section-title {
    font-size: 5.833vw
        /* 112/19.2 */
    ;
    line-height: 5.99vw
        /* 115/19.2 */
    ;
}

.form-wrapper .section-title-block .section-title {
    font-size: 5.833vw
        /* 112/19.2 */
    ;
    line-height: 5.3125vw
        /* 102/19.2 */
    ;
    padding-bottom: 2.604vw
        /* 50/19.2 */
    ;
    letter-spacing: -0.05em;
}

.section-title-block.dark .section-title {
    color: var(--color-primary);
}

.section-title-block.center .section-title {
    margin: 0 auto;
}

.section-title-block .section-title .underline-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    white-space: nowrap;
}

.section-title-block .section-title .underline-title span {
    display: inline-block;
    height: 3px;
}

.section-title-block .section-title .underline-title span:nth-of-type(1) {
    background: var(--color-secondary);
    width: 54%;
}

.section-title-block .section-title .underline-title span:nth-of-type(2) {
    background: var(--color-secondary);
    width: 24%;
    margin: 0 2%;
}

.section-title-block .section-title .underline-title span:nth-of-type(3) {
    background: var(--color-light);
    width: 12%;
}

.section-title-block.dark .section-title .underline-title span:nth-of-type(3) {
    background: var(--color-primary);
}

.section-text {
    display: block;
    font-weight: 300;
    font-size: 1.146vw
        /* 22/19.2 */
    ;
    line-height: 1.5625vw
        /* 30/19.2 */
    ;
    letter-spacing: -0.03em;
}

.section-text-2 {
    display: block;
    font-weight: normal;
    font-size: 1.71875vw
        /* 33/19.2 */
    ;
    line-height: 2.34375vw
        /* 45/19.2 */
    ;
    letter-spacing: -0.02em;
}

.section-text-2 span {
    color: #8E8E8D;
}

.section-subtitle {
    display: block;
    font-weight: bold;
    font-size: 1.71875vw
        /* 33/19.2 */
    ;
    letter-spacing: -0.02em;
    margin-bottom: 0;
}

/* Hero wrapper */
.hero-wrapper {
    position: relative;
    display: block;
    background: var(--color-primary);
    color: #fff;
    width: 100%;
    padding-top: 5.635vw
        /* 185/19.2 */
    ;
    z-index: 2;
}

.hero-wrapper .hero-content {
    position: relative;
    display: block;
    width: 100%;
}

.hero-wrapper h1 {
    display: block;
    font-weight: 500;
    font-size: 3.59375vw
        /* 69/19.2 */
    ;
}

.hero-wrapper h2 {
    display: block;
    font-weight: normal;
    font-size: 1.771vw
        /* 34/19.2 */
    ;
    letter-spacing: -0.02em;
    line-height: 2.448vw
        /* 47/19.2 */
    ;
    margin: 2.083vw
        /* 40/19.2 */
        0;
}

.hero-wrapper h4 {
    display: block;
    font-weight: bold;
    font-size: 1.25vw
        /* 24/19.2 */
    ;
    letter-spacing: -0.03em;
    line-height: 1.3;
    margin-bottom: 0;
}

.hero-wrapper p {
    display: block;
    font-weight: 300;
    font-size: 1.146vw
        /* 22/19.2 */
    ;
    letter-spacing: -0.03em;
    line-height: 1.5625vw
        /* 30/19.2 */
    ;
    margin-bottom: 1.5625vw
        /* 30/19.2 */
    ;
}

.hero-wrapper .hero-img-1,
.hero-wrapper .hero-img-2 {
    display: block;
    width: 100%;
    margin-bottom: 20px;
    overflow: hidden;
}

.hero-wrapper .hero-img-1 {
    /* filter: grayscale(1); */
    margin-bottom: -77px;
}

.hero-wrapper .hero-img-1 img,
.hero-wrapper .hero-img-2 img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.hero-wrapper .read-more {
    position: absolute;
    bottom: -4.0625vw
        /* 78/19.2 */
    ;
    right: 0;
}

/* Marketing */
.marketing-block {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    padding: 10.417vw
        /* 200/19.2 */
        0 6.51vw
        /* 125/19.2 */
    ;
    margin-top: 0;
    z-index: 1;
}

.marketing-block .marketing-title {
    display: inline-block;
    min-width: 40vw;
    font-weight: 600;
    font-size: 3.646vw
        /* 70/19.2 */
    ;
    line-height: 4.271vw
        /* 82/19.2 */
    ;
    letter-spacing: -0.02em;
    color: #111;
}

.marketing-block .marketing-features {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.marketing-block .marketing-features ul.marketing-list {
    display: inline-flex;
    align-items: center;
    justify-content: start;
    width: 100%;
    animation: move 5s forwards infinite linear
}

/* Create the animation */
@keyframes move {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.marketing-block .marketing-features ul.marketing-list li {
    position: relative;
    display: inline-block;
    font-weight: 500;
    font-size: 30px;
    line-height: 1;
    letter-spacing: 0.01em;
    white-space: nowrap;
    color: #000;
    padding-left: 20px;
    margin: 0 10px;
    z-index: 1;
}

.marketing-block .marketing-features ul.marketing-list li:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-secondary);
    z-index: -1;
}

/* Services */
.services-wrapper {
    position: relative;
    display: block;
    background: var(--color-primary);
    color: #fff;
    padding-top: 140px;
    min-height: 100vh;
}

.services-wrapper .read-more {
    margin-top: 35px;
}

/* Services */
.service-block {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /*width: 100%;*/
    min-height: 100vh;
    z-index: 1;
}

.service-block .bg-img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    background: #272626;
    z-index: -1;

}

.service-block .bg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    mix-blend-mode: luminosity;
}

.service-description {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    background: var(--color-primary);
    color: #fff;
    padding: 13.542vw
        /* 260/19.2 */
        0;
    z-index: 1;
}

.service-description.light {
    background: var(--color-light);
    color: var(--color-primary);
}

.service-description .service-icon {
    display: block;
    width: 100%;
    max-width: 80%;
    margin: 20px auto;
}

.service-description .service-icon img {
    width: auto;
    max-width: 100%;
}

.service-description ul.list-items {
    position: relative;
    display: block;
    list-style: square;
}

.service-description ul.list-items li {
    position: relative;
    font-weight: normal;
    font-size: 1.71875vw
        /* 33/19.2 */
    ;
    line-height: 2.292vw
        /* 44/19.2 */
    ;
    letter-spacing: -0.02em;
}

/* Scroll Magic */
#pinContainer {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    -webkit-perspective: 1000px;
    perspective: 1000px;
}

#slideContainer {
    width: 400%;
    /* to contain 4 panels, each with 100% of window width */
    height: 100%;
}

.panel {
    height: 100%;
    /* relative to parent -> 25% of 400% = 100% of window width */
    float: left;
    /*transition: var(--transition);*/
}

.swiper-slide {
    width: 100%;
    /* Set slide width to full screen */
    transition: var(--transition);
    float: none;
    /* Remove float */
    display: flex;
    /* Use flex to align slide content */
    justify-content: center;
    /* Center content horizontally */
    align-items: center;
    /* Center content vertically */
}

/* Additional Swiper styles */
.swiper-container {
    width: 100%;
    height: 100vh;
    /* Set container height to full screen */
}

.swiper-button-next {
    right: 50px !important;
}


.swiper-pagination-bullet {
    background-color: var(--color-secondary) !important;
}

.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: #fff;
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 15px rgba(75, 75, 75, 0.4);
    top: calc(50% - 25px);
    cursor: pointer;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    transform: rotate(-45deg);
    top: 20px;
    left: 20px;
    box-sizing: border-box;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
    opacity: 0.6;
    box-shadow: none;
    cursor: not-allowed;
}

.swiper-button-prev {
    left: 25px;
}

.swiper-button-prev::after {
    border-top: 3px solid #333;
    border-left: 3px solid #333;
}

.swiper-button-next {
    right: -25px;
}

.swiper-button-next::after {
    border-bottom: 3px solid #333;
    border-right: 3px solid #333;
}

/* Ceo */
.ceo-wrapper {
    position: relative;
    display: block;
    background: var(--color-primary);
    color: #fff;
    padding-bottom: 5vw;
}

.ceo-name {
    position: relative;
    display: inline-block;
    font-family: "Beyond Infinity - Demo", serif;
    font-size: 8.385vw
        /* 161/19.2 */
    ;
    letter-spacing: -0.04em;
    text-align: center;
    margin: 4vw auto;
    z-index: 1;
}

.ceo-name .effect {
    margin-left: -20px;
    animation: animateText 2s steps(50);
    white-space: nowrap;
    overflow: hidden;
}

@keyframes animateText {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

.ceo-wrapper .ceo-name .ceo-title {
    position: absolute;
    bottom: 2vw;
    right: 1vw;
    font-family: 'Poppins', serif;
    font-weight: 500;
    font-size: 1.25vw
        /* 24/19.2 */
    ;
    letter-spacing: -0.04em;
}

.ceo-wrapper p {
    display: block;
    font-weight: 300;
    font-size: 1.354vw
        /* 26/19.2 */
    ;
    letter-spacing: -0.03em;
}

.ceo-wrapper p span {
    color: var(--color-secondary);
}

.ceo-wrapper .ceo-img {
    display: block;
    width: 100%;
    margin-top: -16vw;
}

.ceo-wrapper .ceo-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: grayscale(1);
    transition: var(--transition);
}

.ceo-wrapper .ceo-img:hover img {
    filter: grayscale(0);
}

.book-wrapper {
    position: relative;
    background: var(--color-light);
    padding: 5.208vw
        /* 100/19.2 */
        0
        /* 235/19.2 */
        6vw;
    position: relative;
    display: block;
    background: var(--color-primary);
}

.book-wrapper .section-title-block .section-title {
    margin: 0;
}

.book-wrapper .section-title-block .section-title .underline-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    white-space: nowrap;
}

.book-wrapper .section-title-block .section-title .underline-title span:nth-of-type(1) {
    background: var(--color-secondary);
    width: 54%;
}

.book-wrapper .section-title-block .section-title .underline-title span:nth-of-type(2) {
    background: var(--color-secondary);
    width: 24%;
    margin: 0 2%;
}

.book-wrapper .section-title-block .section-title .underline-title span:nth-of-type(3) {
    background: var(--color-light);
    width: 12%;
}

.section-title-block.dark .section-title .underline-title span:nth-of-type(3) {
    background: var(--color-primary);
}

#book-container {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    padding: 2vw 0;
}

.btn-book,
.btn-proceed {
    width: 158px;
    height: 49px;
    border-radius: 15px;
    background: var(--color-secondary);
    border: 1px solid var(--color-secondary);
    font-weight: normal;
    font-size: 21px;
    letter-spacing: -0.04em;
    text-align: center;
    color: var(--color-light);
    margin: 5px;
}

.btn-book:hover,
.btn-proceed:hover {
    color: var(--color-light);
    font-size: 22px;
    box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}

.book-wrapper .section-title {
    margin: 2vw 0;
    font-size: 3.441vw
        /* 112/19.2 */
    ;
    line-height: 5.3125vw
        /* 102/19.2 */
    ;
    letter-spacing: -0.05em;
}

.media-wrapper {
    position: relative;
    background: var(--color-light);
    padding: 5.208vw
        /* 100/19.2 */
        0 12.24vw
        /* 235/19.2 */
    ;
}

.media-wrapper .section-text {
    font-weight: normal;
}

.media-wrapper ul.media-images {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 1.823vw
        /* 35/19.2 */
    ;
}

.media-wrapper ul.media-images li {
    display: inline-block;
    width: 15.625vw
        /* 300/19.2 */
    ;
    height: 25.052vw
        /* 481/19.2 */
    ;
    margin: 0 auto;
    overflow: hidden;
}

.media-wrapper ul.media-images li:nth-of-type(1),
.media-wrapper ul.media-images li:nth-of-type(5) {
    margin-top: -4.167vw
        /* 80/19.2 */
    ;
}

.media-wrapper ul.media-images li:nth-of-type(3) {
    margin-top: 8.333vw
        /* 160/19.2 */
    ;
}

.media-wrapper ul.media-images li:nth-of-type(8) {
    margin-top: 30px;
}

.media-wrapper ul.media-images li:nth-of-type(7),
.media-wrapper ul.media-images li:nth-of-type(9) {
    margin-top: -6.25vw
        /* -120/19.2 */
    ;
}

.media-wrapper ul.media-images li:nth-of-type(6),
.media-wrapper ul.media-images li:nth-of-type(10) {
    margin-top: -10.417vw
        /* -200/19.2 */
    ;
}

.media-wrapper ul.media-images li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    transition: var(--transition);
}

.media-wrapper ul.media-images li img:hover {
    filter: grayscale(0);
    transform: scale(1.1);
}

/* News */
.news-wrapper {
    position: relative;
    display: block;
    background: var(--color-primary);
    color: #fff;
    padding: 5.208vw
        /* 100/19.2 */
        0;
}

.news-wrapper .news-slider-wrapper {
    position: relative;
    display: block;
    width: 53.646vw
        /* 1030/19.2 */
    ;
    min-height: 38.021vw
        /* 730/19.2 */
    ;
    margin: 2.5vw auto;
}

.news-wrapper .news-slider-wrapper>img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    filter: grayscale(1);
}

.news-wrapper .news-slider .news-img {
    display: inline-block;
    margin-top: 14vw;
    margin-left: 0.5vw;
    width: 27.543vw
        /* 528.82/19.2 */
    ;
    height: 18.543vw
        /* 528.82/19.2 */
    ;
}

.news-wrapper .news-slider .news-img img {
    width: 100%;
    /* filter: grayscale(1); */
    transition: var(--transition);
    max-width: 22vw
        /* 528.82/19.2 */
    ;
    max-height: 18vw
        /* 528.82/19.2 */
    ;
    margin-left: 4vw;
    margin-top: 2vw;
    -ms-transform: rotate(-1.25deg);
    /* IE 9 */
    transform: rotate(-1.25deg);
    object-fit: contain;
}

.news-wrapper .news-slider .news-img:hover img {
    filter: none;
}

.news-wrapper .news-slider .news-info {
    position: absolute;
    top: 5vw;
    right: 5vw;
    display: inline-block;
    width: 18.593vw
        /* 356.98/19.2 */
    ;
    transform: rotate(-2deg);
}

.news-wrapper .news-slider .news-info .news-date {
    display: block;
    font-weight: 500;
    font-size: 0.625vw
        /* 12/19.2 */
    ;
    letter-spacing: -0.04em;
    color: #111;
    text-align: end;
}

.news-wrapper .news-slider .news-info .news-date img {
    display: inline-block;
    width: 0.677vw
        /* 13/19.2 */
    ;
    margin-right: 4px;
}

.news-wrapper .news-slider .news-info .news-title {
    display: block;
    font-weight: bold;
    font-size: 1.667vw
        /* 32/19.2 */
    ;
    letter-spacing: -0.04em;
    color: var(--color-primary);
    margin: 0.78125vw
        /* 15/19.2 */
        auto;
}

.news-wrapper .news-slider .news-info .news-text {
    display: block;
    font-weight: normal;
    font-size: 0.833vw
        /* 16/19.2 */
    ;
    letter-spacing: -0.04em;
    color: var(--color-primary);
    overflow: hidden;

}

.news-wrapper .news-slider .news-info .news-by {
    display: block;
    font-weight: 500;
    font-size: 0.677vw
        /* 13/19.2 */
    ;
    letter-spacing: -0.04em;
    color: #111;
    margin-top: 0.521vw
        /* 10/19.2 */
    ;
}

.news-wrapper .news-slider .news-info .news-by img {
    display: inline-block;
    width: 0.9375vw
        /* 18/19.2 */
    ;
    margin-right: 4px;
}

/* Clients */
.clients-wrapper {
    position: relative;
    display: block;
    background: var(--color-light);
    padding: 4.167vw
        /* 80/19.2 */
        0 7.292vw
        /* 140/19.2 */
    ;
}

.clients-wrapper .client-item {
    position: relative;
    display: block;
    background: var(--color-primary);
    font-family: 'iCiel Gotham', serif;
    color: #fff;
    padding: 5.521vw
        /* 106/19.2 */
        10.833vw
        /* 208/19.2 */
    ;
    margin: 7.292vw
        /* 140/19.2 */
        auto;
    border: 1px solid white;
}

.clients-wrapper .client-item.light {
    background: #F5F5F5;
    color: var(--color-primary);
}

.clients-wrapper .client-item:after {
    content: ',,';
    position: absolute;
    bottom: -3vw;
    left: 1.875vw
        /* 36/19.2 */
    ;
    font-weight: 500;
    font-size: 19.271vw
        /* 370/19.2 */
    ;
    line-height: 1;
    color: var(--color-secondary);
    transform: rotateY(180deg);
    opacity: 0.6;
}

.clients-wrapper .client-item.light:after {
    left: auto;
    right: 1.875vw
        /* 36/19.2 */
    ;
    transform: none;
}

.clients-wrapper .client-item .client-title {
    position: absolute;
    top: 1.5625vw
        /* 30/19.2 */
    ;
    right: 4.167vw
        /* 80/19.2 */
    ;
    font-weight: bold;
    font-size: 1.042vw
        /* 20/19.2 */
    ;
    text-align: end;
    color: var(--color-secondary);
}

.clients-wrapper .client-item.light .client-title {
    right: auto;
    left: 4.167vw
        /* 80/19.2 */
    ;
    text-align: start;
}

.clients-wrapper .client-item .client-title div {
    color: #fff;
}

.clients-wrapper .client-item.light .client-title div {
    color: var(--color-primary);
}

.clients-wrapper .client-item .client-title:before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -1.146vw
        /* -22/19.2 */
    ;
    width: 0.3125vw
        /* 6/19.2 */
    ;
    height: 3.4375vw
        /* 66/19.2 */
    ;
    background: #fff;
}

.clients-wrapper .client-item.light .client-title:before {
    right: auto;
    left: -1.146vw
        /* -22/19.2 */
    ;
    background: var(--color-secondary);
}

.clients-wrapper .client-item .client-text {
    display: block;
    font-weight: 500;
    font-size: 1.042vw
        /* 20/19.2 */
    ;
    margin-top: 1vw;
    text-align: center;
}

/* Owl */
.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-light);
    background: none !important;
    font-size: 3vw;
}

.owl-carousel .owl-nav button.owl-next {
    right: -5vw;
}

.owl-carousel .owl-nav button.owl-prev {
    left: -5vw;
}

.owl-carousel .owl-nav button:hover {
    color: var(--color-secondary) !important;
}

.owl-theme .owl-dots .owl-dot span {
    width: 0.677vw
        /* 13/19.2 */
    ;
    height: 0.677vw
        /* 13/19.2 */
    ;
    background: #111;
    border-radius: 0;
}

.owl-theme .owl-dots .owl-dot.active span {
    width: 3.802vw
        /* 73/19.2 */
    ;
    background: var(--color-secondary);
}

.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--color-secondary);
}

.contact-text {
    display: block;
    font-weight: normal;
    font-size: 23px;
    letter-spacing: -0.02em;
    line-height: 16px;
}

/* Footer */
footer {
    position: relative;
    background: var(--color-primary);
    color: #fff;
    padding-top: 100px;
    z-index: 1000;
}

footer .footer-logo {
    display: block;
    width: 100%;
    margin-bottom: 5px;
}

.footer-logo img {
    width: auto;
    max-width: 100%;
}

footer .footer-text {
    display: block;
    font-weight: 300;
    font-size: 16px;
    line-height: 20px;
}

footer .footer-phone {
    display: block;
    font-weight: bold;
    font-size: 28px;
    text-decoration: none !important;
    color: #f4f4f4;
    margin: 35px 0 15px;
}

footer .footer-phone span {
    color: var(--color-secondary);
}

footer .ceo-consultant {
    display: block;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: -0.03em;
    line-height: 25px;
}

footer .ceo-consultant a {
    display: block;
    font-weight: 300;
    letter-spacing: 0;
    color: #fff;
}

footer .row .col-lg-4:nth-of-type(2) {
    border-left: 2px solid #707070;
    border-right: 2px solid #707070;
    text-align: center;
}

footer ul.contact-menu {
    position: relative;
    display: inline-block;
    margin: 0 auto;
    text-align: initial;
}

footer ul.contact-menu li {
    position: relative;
    display: flex;
    align-items: center;
    margin: 25px auto;
    padding-left: 35px;
}

footer ul.contact-menu li .contact-icon {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

footer ul.contact-menu li .contact-icon img {}

footer ul.contact-menu li .contact-info {
    display: inline-block;
}

footer ul.contact-menu li .contact-info .contact-title {
    display: block;
    font-weight: bold;
    font-size: 29px;
    letter-spacing: -0.02em;
    line-height: 29px;
    margin-bottom: 15px;
}

footer ul.contact-menu li .contact-info .contact-text {
    display: block;
    font-weight: normal;
    font-size: 14px;
    letter-spacing: -0.02em;
    line-height: 16px;
}

footer .contact-us-title {
    display: block;
    font-weight: bold;
    font-size: 29px;
    letter-spacing: -0.02em;
    line-height: 16px;
    text-align: center;
    margin: 33px auto 20px;
}

footer .contact-us-text {
    display: block;
    font-weight: normal;
    font-size: 15px;
    letter-spacing: -0.02em;
    line-height: 25px;
    text-align: center;
}

footer .contact-us-text a {
    display: block;
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 25px;
    color: #fff;
}

/* Socials*/
.socials {
    display: block;
    margin: 20px auto;
    text-align: center;
}

.socials a {
    text-decoration: none !important;
    vertical-align: middle;
}

.socials span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #fff;
    color: var(--color-primary);
    font-size: 16px;
    margin: 0 4px;
    text-align: center;
    transition: all 0.3s ease-in-out;
}

.socials span:hover {
    color: #fff !important;
}

.socials .fa-facebook:hover {
    background: #4267B2;
}

.socials .fa-instagram:hover {
    background: #d6249f;
}

.socials .fa-twitter:hover {
    background: #55acee;
}

.socials .fa-linkedin:hover {
    background: #0077b5;
}

.socials .fa-youtube-play:hover {
    background: #f00;
}

.socials .fa-snapchat:hover {
    background: #000;
}

footer .copyrights {
    display: block;
    padding: 15px 0;
    margin-top: 100px;
    text-align: center;
}

footer .copyrights a {
    color: #fff !important;
}

footer .copyrights i {
    color: #ee674d;
}

/* Page header */
.page-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--color-primary);
    width: 100%;
    height: 15.833vw
        /* 304/19.2 */
    ;
    z-index: 1;
}

.page-header.contact-header {
    height: 20.3125vw
        /* 390/19.2 */
    ;
}

.page-header .page-title {
    display: block;
    font-weight: bold;
    font-size: 4.896vw
        /* 94/19.2 */
    ;
    letter-spacing: -0.05em;
    color: #fffefa;
}

.page-header>img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
}

/* About */
.about-block {
    position: relative;
    display: block;
    background: var(--color-light);
    padding: 8.75vw
        /* 168/19.2 */
        0;
}

.about-block.dark {
    background: var(--color-primary);
    color: #fff;
}

.about-block .flex-lg-row-reverse .section-title {
    text-align: end;
}

/* Media */
.media-title-block {
    position: relative;
    display: block;
    margin-top: 4.6875vw
        /* 90/19.2 */
    ;
}

.media-title-block>div {
    position: relative;
    display: inline-block;
    padding-top: 1.25vw
        /* 24/19.2 */
    ;
}

.media-title-block .media-subtitle {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 100%;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: -0.05em;
    color: var(--color-secondary);
    text-align: end;
}

.media-title-block .media-subtitle span {
    display: inline-block;
    background: #fff;
    padding-left: 0.625vw
        /* 12/19.2 */
    ;
    z-index: 1;
}

.media-title-block .media-subtitle:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 0.15625vw
        /* 3/19.2 */
    ;
    background: var(--color-secondary);
    z-index: -1;
}

.media-title-block .media-title {
    position: relative;
    display: block;
    font-weight: 600;
    font-size: 2.292vw
        /* 44/19.2 */
    ;
    letter-spacing: -0.05em;
    color: var(--color-primary);
}

.media-tabs .nav-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: none;
    margin: 3.125vw
        /* 60/19.2 */
        auto;
}

.media-tabs .nav-tabs .divider {
    padding: 0 1.5625vw
        /* 30/19.2 */
    ;
}

.media-tabs .nav-tabs .nav-link {
    position: relative;
    font-weight: 500;
    font-size: 1.302vw
        /* 25/19.2 */
    ;
    letter-spacing: -0.05em;
    background: none !important;
    border: none !important;
    color: var(--color-primary) !important;
    padding: 0.5vw 0;
}

.media-tabs .nav-tabs .nav-link:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0.104vw
        /* 2/19.2 */
    ;
    background: var(--color-secondary);
    transition: var(--transition);
}

.media-tabs .nav-tabs .nav-item.show .nav-link:before,
.media-tabs .nav-tabs .nav-link.active:before,
.media-tabs .nav-tabs .nav-link:hover:before {
    width: 100%;
}

.gallery-wrapper {
    position: relative;
    display: flex;
    flex-flow: wrap;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 3.125vw
        /* 60/19.2 */
    ;
}

.gallery-wrapper .gallery-col {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

.gallery-wrapper .gallery-col-1 {
    width: 25%;
}

.gallery-wrapper .gallery-col-2 {
    width: 50%;
}

.gallery-wrapper .gallery-col-3 {
    width: 100%;
}

.gallery-wrapper .gallery-item {
    position: relative;
    display: inline-block;
    width: calc(100% - 1.042vw
            /* 20/19.2 */
        );
    height: 18.073vw
        /* 347/19.2 */
    ;
    margin: 0.521vw
        /* 10/19.2 */
        auto;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-wrapper .gallery-item.height-2 {
    height: 37.1875vw
        /* 714/19.2 */
    ;
}

.gallery-wrapper .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(1);
    transition: var(--transition);
}

.gallery-wrapper .gallery-item:hover img {
    filter: none;
}

.gallery-wrapper .gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(1);
    transition: var(--transition);
}

.gallery-wrapper .gallery-item:hover video {
    filter: none;
}

.gallery-wrapper .gallery-item .album-info {
    position: absolute;
    top: 1.25vw
        /* 24/19.2 */
    ;
    left: 0;
    background: var(--color-primary);
    color: #fff;
    padding: 0.521vw
        /* 10/19.2 */
        1.5625vw
        /* 30/19.2 */
    ;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: var(--transition);
    z-index: 1;
}

.gallery-wrapper .gallery-item:hover .album-info {
    color: var(--color-primary);
}

.gallery-wrapper .gallery-item .album-info:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #fff;
    transition: var(--transition);
    z-index: -2;
}

.gallery-wrapper .gallery-item:hover .album-info:before {
    width: 100%;
}

.gallery-wrapper .gallery-item .album-info .album-photos {
    display: block;
    font-size: 0.9375vw
        /* 18/19.2 */
    ;
}

.gallery-wrapper .gallery-item .album-info .album-title {
    display: block;
    font-size: 1.354vw
        /* 26/19.2 */
    ;
    text-transform: uppercase;
}

.gallery-wrapper .gallery-item .video-info {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 3.333vw
        /* 64/19.2 */
    ;
    background: rgba(255, 255, 255, 0.87);
    font-weight: 500;
    font-size: 1.146vw
        /* 22/19.2 */
    ;
    color: #111;
    z-index: 1;
}

/*My Bookings**/
.booking-tabs .nav-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: none;
    margin: 3.125vw
        /* 60/19.2 */
        auto;
}

.booking-tabs .nav-tabs .divider {
    padding: 0 1.5625vw
        /* 30/19.2 */
    ;
}

.booking-tabs .nav-tabs .nav-link {
    position: relative;
    font-weight: 500;
    font-size: 1.302vw
        /* 25/19.2 */
    ;
    letter-spacing: -0.05em;
    background: none !important;
    border: none !important;
    color: var(--color-primary) !important;
    padding: 0.5vw 0;
}

.booking-tabs .nav-tabs .nav-link:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0.104vw
        /* 2/19.2 */
    ;
    background: var(--color-secondary);
    transition: var(--transition);
}

.booking-tabs .nav-tabs .nav-item.show .nav-link:before,
.booking-tabs .nav-tabs .nav-link.active:before,
.booking-tabs .nav-tabs .nav-link:hover:before {
    width: 100%;
}

.booking-details {
    display: flex;
    flex-direction: row;
    gap: 1vw;
    justify-content: right;
}

.booking-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 150px;
    max-width: 85%;
    height: 50px;
    border-radius: 16px;
    background: #fe0000;
    border: none !important;
    box-shadow: none !important;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: -0.05em;
    color: #fff;
}

/* Table Headers */
.booking-tabs .table thead th {
    font-weight: bold;
    font-size: 1.302vw;
    /* 25/19.2 */
    letter-spacing: -0.05em;
    color: black;
    background-color: white;
    border: none;
}

/* News */
.news-side-wrapper {
    position: relative;
    display: block;
    width: 350px;
    max-width: 100%;
    margin: 0 auto;

}

.news-side-wrapper .news-side-block {
    position: relative;
    display: block;
    width: 100%;
    background: #f4f4f4;
    margin-bottom: 80px;
}

.news-side-wrapper .news-side-title {
    display: block;
    font-weight: 600;
    font-size: 20px;
    letter-spacing: -0.03em;
    line-height: 55px;
    color: var(--color-primary);
    margin-bottom: 30px;
}

.news-side-wrapper .instagram-block .news-side-title {
    font-weight: 600;
}

.news-side-wrapper .news-side-block {
    position: relative;
    display: block;
    width: 100%;
    background: #f4f4f4;
    padding: 40px 30px;
    margin: 16px auto 60px;
}

/* News Categories */
.news-side-wrapper .news-side-block ul.news-categories {
    display: block;
    width: 100%;
}

.news-side-wrapper .news-side-block ul.news-categories li {
    display: block;
    margin: 6px auto;
}

.news-side-wrapper .news-side-block ul.news-categories li a {
    display: block;
    font-weight: normal;
    font-size: 14px;
    letter-spacing: -0.03em;
    line-height: 30px;
    text-transform: capitalize;
    text-decoration: none;
    color: #8e8e8d;
    border-bottom: 1px solid #E2E2E2;
    transition: var(--transition);
}

.news-side-wrapper .news-side-block ul.news-categories li a:hover {
    color: var(--color-primary);
    border-bottom: 1px solid var(--color-primary);
}

/* News Top Posts */
.news-side-wrapper .news-side-block ul.top-posts {
    display: block;
    width: 100%;
}

.news-side-wrapper .news-side-block ul.top-posts li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.news-side-wrapper .news-side-block ul.top-posts li .post-number {
    display: inline-block;
    font-weight: 500;
    font-size: 24px;
    color: var(--color-primary);
    margin-right: 20px;
}

.news-side-wrapper .news-side-block ul.top-posts li a {
    display: inline-block;
    font-weight: normal;
    font-size: 14px;
    letter-spacing: -0.03em;
    line-height: 20px;
    color: #111;
}

.news-side-wrapper .instagram-block {
    display: block;
    margin-bottom: 80px;
}

.news-side-wrapper .instagram-block .instagram-photos {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
}

.news-side-wrapper .instagram-block .instagram-photos a {
    display: inline-block;
    width: calc((100%/ 3) - 6px);
    max-width: 114px;
    height: 114px;
    margin: 3px;
}

.news-side-wrapper .instagram-block .instagram-photos a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Search Posts */
.news-search {
    display: block;
    text-align: end;
    margin-bottom: 22px;
}

.news-search .form-control {
    width: 350px;
    height: 53px;
    max-width: 100%;
    background: #fffefa url("../images/Way-SearchBar-Icon.svg") calc(100% - 20px) center / 20px 20px no-repeat;
    border: 1px solid #e2e2e2;
    border-radius: 0;
    font-weight: 300;
    font-size: 14px;
    letter-spacing: -0.03em;
    color: #8e8e8d;
    padding-left: 15px;
    padding-right: 45px;
    margin-left: auto;
}

.news-search .form-control::placeholder {
    font-weight: normal;
    opacity: 0.7;
}

.news-search .form-control:focus {
    border-color: rgba(29, 29, 27, 0.25);
    box-shadow: 0 1px 3px 0.2rem rgba(29, 29, 27, 0.25);
}

/* Posts */
.post-item {
    display: block;
    width: 396px;
    max-width: 100%;
    background: #fffefa;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    padding: 22px 15px;
    margin: 0 auto 32px;
}

.post-item .post-img {
    display: block;
    width: 100%;
    height: 372px;
    margin-bottom: 7px;
    overflow: hidden;
}

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

.post-item .post-author {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.post-item .post-author .author-img {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.post-item .post-author .author-name {
    display: inline-block;
    font-weight: 300;
    font-size: 10px;
    letter-spacing: -0.04em;
    color: var(--color-primary);
    margin: 0 3px;
}

.post-item .post-date {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    font-weight: 300;
    font-size: 10px;
    letter-spacing: -0.04em;
    color: var(--color-primary);
}

.post-item .post-date img {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin: 0 3px;
}

.post-item .post-title {
    display: block;
    width: 100%;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: -0.1em;
    color: #111;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    margin: 23px 0 7px;
}

.post-item .post-text {
    display: block;
    width: 100%;
    font-weight: 300;
    font-size: 12px;
    color: #111;
    line-height: 16px;
    height: calc(4 * 16px);
    overflow: hidden;
    margin-bottom: 28px;
}

.post-item a.read-more {
    display: block;
    font-weight: 300;
    font-size: 12px;
    letter-spacing: -0.03em;
    color: var(--color-primary);
    text-align: end;
    text-decoration: none !important;
    transition: var(--transition);
}

.post-item a.read-more:hover {
    opacity: 0.7;
}

.post-item a.read-more img {
    display: inline-block;
    width: 18px;
    margin-left: 6px;
}

/* Article */
.article-wrapper {
    position: relative;
    display: block;
    margin: 16px auto;
}

.article-wrapper .article-img {
    display: block;
    width: 100%;
    margin-bottom: 10px;
}

.article-wrapper .article-img img {
    width: auto;
    max-width: 100%;
}

.article-wrapper .post-author {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    margin-right: 35px;
}

.article-wrapper .post-author .author-img {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.article-wrapper .post-author .author-name {
    display: inline-block;
    font-weight: 300;
    font-size: 10px;
    letter-spacing: -0.04em;
    color: var(--color-primary);
    margin: 0 3px;
}

.article-wrapper .post-date {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    font-weight: 300;
    font-size: 10px;
    letter-spacing: -0.04em;
    color: var(--color-primary);
}

.article-wrapper .post-date img {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin: 0 3px;
}

.article-wrapper .article-title {
    display: block;
    font-weight: 600;
    font-size: 32px;
    letter-spacing: -0.04em;
    color: #111;
    margin: 20px 0 40px;
}

.article-wrapper p {
    display: block;
    font-weight: normal;
    font-size: 1.25vw
        /* 24/19.2 */
    ;
    letter-spacing: -0.02em;
    line-height: 1.5625vw
        /* 30/19.2 */
    ;
    color: var(--color-primary);
    margin-bottom: 1.5625vw
        /* 30/19.2 */
    ;
}

.other-posts {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.other-posts {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    font-weight: normal;
    font-size: 14px;
    letter-spacing: -0.05em;
    color: #111;
    margin: 20px auto;
}

.other-posts img {
    display: block;
    width: 38px;
    height: 38px;
    margin-bottom: 5px;
}

.other-posts .prev-post {
    display: flex;
    flex-flow: column;
    align-items: end;
    margin: 10px;
}

.other-posts .next-post {
    display: flex;
    flex-flow: column;
    align-items: start;
    margin: 10px;
}

/* Related Articles */
.related-articles-wrapper {
    display: flex;
    align-items: center;
    justify-content: end;
    margin: 100px auto;
}

.related-articles-wrapper .related-articles-title {
    display: inline-block;
    font-weight: 600;
    font-size: 1.823vw
        /* 35/19.2 */
    ;
    letter-spacing: -0.04em;
    color: var(--color-primary);
}

.related-articles-wrapper .related-articles {
    display: inline-flex;
    align-items: center;
    justify-content: end;
}

.related-articles-wrapper .related-articles .related-article {
    display: inline-block;
    width: 11.667vw
        /* 224/19.2 */
    ;
    height: 10.833vw
        /* 208/19.2 */
    ;
    background: #fffefa;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    padding: 0.78125vw
        /* 15/19.2 */
        0.521vw
        /* 10/19.2 */
        1.5625vw
        /* 30/19.2 */
    ;
    margin-left: 25px;
}

.related-articles-wrapper .related-articles .related-article:first-of-type {
    margin-left: 40px;
}

.related-articles-wrapper .related-articles .related-article img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Pagination */
.pagination {
    margin: 50px auto;
}

.pagination .page-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin: 5px;
    line-height: 1;
    background-color: var(--color-primary);
    border: 1px solid var(--color-primary);
    border-radius: 0 !important;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

.pagination .page-item.active .page-link {
    background-color: #fff;
    border-color: var(--color-primary);
    color: var(--color-primary);
}

/* Contact  */
.contact-wrapper {
    position: relative;
    display: block;
    width: 100%;
    background: var(--color-primary);
    color: #fff;
    padding-bottom: 200px;
}

.contact-wrapper .contact-item {
    position: relative;
    display: block;
    width: 368px;
    max-width: 100%;
    height: 296px;
    border-radius: 50px;
    background: #fff;
    color: var(--color-primary);
    margin: 80px auto 20px;
    text-align: center;
    transition: var(--transition);
}

.contact-wrapper .contact-item .contact-icon {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 30px;
    display: flex;
    align-items: end;
    justify-content: center;
    text-align: center;
    width: 120px;
    height: 120px;
    background: #fff;
    border-radius: 50%;
    transition: var(--transition);
    z-index: 1;
}

.contact-wrapper .contact-item:hover .contact-icon {
    top: -60px;
}

.contact-wrapper .contact-item .contact-icon:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 50px;
    height: 4px;
    background: var(--color-primary);
    transition: var(--transition);
}

.contact-wrapper .contact-item:hover .contact-icon:after {
    bottom: 90px;
}

.contact-wrapper .contact-item .contact-icon img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.contact-wrapper .contact-item .contact-title {
    position: absolute;
    top: 170px;
    left: 0;
    right: 0;
    margin: 0 auto;
    font-weight: normal;
    font-size: 41px;
    letter-spacing: -0.05em;
    text-align: center;
    text-transform: capitalize;
    transition: var(--transition);
    z-index: 1;
}

.contact-wrapper .contact-item:hover .contact-title {
    top: 0;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
}

.contact-wrapper .contact-item .contact-info {
    position: absolute;
    top: 50%;
    transform: translateY(50%);
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.contact-wrapper .contact-item:hover .contact-info {
    transform: translateY(-35%);
    opacity: 1;
    visibility: visible;
}

.contact-wrapper .contact-item .contact-link {
    display: block;
    font-weight: 500;
    font-size: 20px;
    letter-spacing: -0.05em;
    text-align: center;
    text-decoration: none !important;
    color: var(--color-primary) !important;
}

.contact-wrapper .contact-item .contact-link.mail-link {
    font-family: 'iCiel Gotham', serif;
    font-size: 14px;
    color: var(--color-secondary) !important;
    margin: 10px 0 20px;
}

.contact-wrapper .contact-item .mail-title {
    display: block;
    font-family: 'iCiel Gotham', serif;
    font-weight: 900;
    font-size: 18px;
    letter-spacing: -0.04em;
    color: #111;
}

#map {
    width: 100%;
    height: 472px;
}

.ui-datepicker-inline {
    margin: 0 !important;
}

/* Form */
.form-wrapper {
    position: relative;
    display: block;
    width: 100%;
    background: var(--color-primary);
    color: #fff;
    padding: 5.979vw
        /* 230/19.2 */
        0;
}

.form-wrapper.booking-page {
    background: #fff;
    color: var(--color-primary);
}

.form-wrapper.login-page {
    padding-top: 5.99vw
        /* 115/19.2 */
    ;
}

.form-wrapper .form-title {
    display: block;
    font-weight: 500;
    font-size: 1.875vw
        /* 36/19.2 */
    ;
    margin-bottom: 10px;
}

.form-wrapper.login-page .form-title {
    font-size: 2.083vw
        /* 40/19.2 */
    ;
    letter-spacing: -0.04em;
}

.form-wrapper.booking-page .form-title {
    font-size: 2.448vw
        /* 47/19.2 */
    ;
    font-weight: 600;
    letter-spacing: -0.03em;
    margin-bottom: 5.208vw
        /* 100/19.2 */
    ;
}

.form-wrapper .form-text {
    display: block;
    font-weight: 300;
    font-size: 1.198vw
        /* 23/19.2 */
    ;
    margin-bottom: 2.604vw
        /* 50/19.2 */
    ;
}

.form-wrapper .form-group>label {
    display: block;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: -0.03em;
}

.form-wrapper.booking-page .form-group>label {
    display: flex;
    align-items: flex-end;
    line-height: 20px;
    min-height: 40px;
}

.form-wrapper .form-control {
    min-height: 53px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #e2e2e2;
    font-weight: normal;
    font-size: 1.042vw
        /* 20/19.2 */
    ;
    padding: 12px 24px;
    color: #111;
}

.form-group {
    position: relative;
}

i#togglePassword,
i#toggleConfirmPassword {
    position: absolute;
    right: 15px;
    top: 60%;
    color: #8e8e8d;
    cursor: pointer;
}

.form-wrapper .form-control::placeholder {
    opacity: 0.5;
}

.form-wrapper.booking-page .form-control,
.form-wrapper.booking-page .form-control::placeholder {
    color: #8e8e8d;
    opacity: 1;
}

.form-wrapper .form-control:focus {
    border-color: rgba(254, 0, 0, 0.50);
    box-shadow: 0 0 0 0.2rem rgba(254, 0, 0, 0.25);
}

.form-wrapper.booking-page .form-control:focus {
    border-color: rgba(0, 0, 0, 0.50);
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.25);
}

.form-wrapper input:checked~.custom-control-label::before {
    border-color: #fff;
    background-color: #fff;
}

.form-wrapper .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    height: 50px;
    border-radius: 15px;
    background: #fff;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: -0.05em;
    text-align: center;
    color: var(--color-primary);
}

.form-wrapper.booking-page .btn {
    color: #fff;
    background: var(--color-secondary);
    display: none;
}

.form-wrapper .forget-password {
    color: var(--color-secondary);
}

.form-wrapper .custom-checkbox .custom-control-label::before {
    border-radius: 0;
}

.form-wrapper .custom-checkbox .custom-control-input:checked~.custom-control-label::after {
    filter: brightness(0) invert(0);
}

.feedback {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 9999;
}

.login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
}

.upload-btn-wrapper {
    position: relative;
    overflow: hidden;
    display: inline-block;
    cursor: pointer;
}

.upload-btn-wrapper input[type=file] {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}

.btn.login {
    min-width: 250px;
    height: 60px;
    padding: 10px;
    border-radius: 18px;
    font-size: 23px;
    font-weight: 500;
    background-color: var(--color-secondary);
    color: var(--color-light);
    vertical-align: baseline;
}

.btn.upload {
    min-width: 150px;
    height: 40px;
    border-radius: 18px;
    font-size: 15px;
}

.btn.meet {
    min-width: 120px;
    height: 40px;
    border-radius: 18px;
    font-size: 15px;
    background-color: #272626;
    color: floralwhite;
}

.btn.reschedule {
    min-width: 120px;
    height: 40px;
    border-radius: 18px;
    font-size: 15px;
    background-color: #94D936;
    color: floralwhite;
}

.rating-box {
    padding: 25px 50px;
    background-color: #f1f1f1;
    border-radius: 25px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.rating-box h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
}

.rating-box .stars {
    display: flex;
    align-items: center;
    gap: 25px;
}

.stars i {
    font-size: 35px;
    color: #b5b8b1;
    transition: all 0.2s;
    cursor: pointer;
}

.stars i:hover {
    color: #0077b5;
}

.stars i.active {
    color: #ffb851;
    transform: scale(1.2);
}

/*Profile dropdown*/
.user-profile-dropdown .dropdown-menu {
    right: 0;
    left: auto;
}

/* DatePicker */
#datepicker {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.ui-datepicker {
    background: #F2F2F2;
    border: none;
    border-radius: 15px;
    padding: 0;
    margin: 0 auto 10px;
    font-size: 20px;
}

.ui-widget-header {
    border: none;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    background: var(--color-secondary);
    color: #fff;
}

.ui-datepicker th {
    background: #EBEBEB;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
    border: none;
    background: #F2F2F2;
    text-align: center;
    margin: 2px 0;
}

html .ui-button.ui-state-disabled {
    color: #8E8E8D;
}

html .ui-button.ui-state-default:hover {
    color: var(--color-secondary);
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
    color: var(--color-secondary);
    font-weight: bold;
}

.ui-state-active,
.ui-widget-content .ui-state-active {
    border-radius: 10px;
    background: var(--color-secondary);
    color: #fff;
    font-weight: bold;
}

.ui-datepicker table,
.ui-widget-content {
    border: none
}

.ui-widget-header .ui-icon {
    background-image: url(images/ui-icons_ffffff_256x240.png);
}

.select-date-time {
    display: block;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: -0.05em;
    text-align: center;
    color: #111;
    margin: 18px auto;
}

.select-duration {
    font-weight: 500;
    font-size: 18px;
    letter-spacing: -0.03em;
}

.time-duration {
    display: flex;
    align-items: center;
    justify-content: left;
    line-height: 20px;
    min-height: 40px;
    gap: 15px;
    padding-left: 0;
}

.time-duration input[type='radio'] {
    accent-color: var(--color-secondary)
}

.time-duration label {
    margin-right: 10px;
}

ul.time-slots {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: left;
    text-align: center;
    margin-bottom: 40px;
    gap: 15px;
}

ul.time-slots li {
    display: inline-block;
    margin: 6px;
}

ul.time-slots li button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 130px;
    height: 40px;
    background: var(--color-light);
    border: 1px solid #afaeae;
    border-radius: 5px;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: -0.05em;
    color: #111;
}

ul.time-slots li button.active {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    color: #fff;
}

ul.time-slots li button.disabled {
    opacity: 0.4;
}

/*Payment Modal*/
.modal-content {
    background-color: transparent;
    border: none;
}

#proceedModal .modal-header {
    color: var(--color-light);
    background-color: var(--color-primary);
    line-height: 2;
    margin-bottom: 0.5vw;
    padding: 1vw 1vw;
    border-radius: 10px;
    border: var(--color-primary);
    justify-content: center !important;
}

#proceedModal .modal-title {
    font-size: 2vw;
}

#proceedModal .modal-body {
    border-radius: 10px;
    padding: 1.5vw 2.5vw;
    color: var(--color-primary);
    background-color: var(--color-light);
}

#proceedModal .modal-body .close {
    color: var(--color-primary);
    font-size: 2vw;
    text-align: right;
}

#proceedModal .modal-body h5 {
    font-size: 1.35vw;
    font-weight: 500;
}

#proceedModal .modal-body p {
    font-size: 1vw;
}

.discount {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
}

.discount .code {
    min-height: 43px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #e2e2e2;
    font-weight: normal;
    font-size: 1.042vw
        /* 20/19.2 */
    ;
    padding: 0 12px;
    margin-right: 5px;
    color: #8E8E8D;
}

.payment-details {
    margin: 1vw 0;
}

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

.payment-details .details p {
    margin: 0;
}

.payment-details .details:last-child p {
    font-weight: 600;
    margin-top: 15px;
}

.btn-apply {
    height: 43px;
    border-radius: 10px;
    background: var(--color-secondary);
    border: 1px solid var(--color-secondary);
    font-weight: normal;
    font-size: 1.042vw
        /* 20/19.2 */
    ;
    letter-spacing: -0.04em;
    text-align: center;
    color: var(--color-light);
    text-transform: uppercase;
}

.btn-proceed {
    width: 100% !important;
    min-height: 4vw !important;
    font-weight: 500;
    font-size: 1.75vw;
}

.btn-proceed:hover {
    font-size: 1.8vw;
    box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}

/* Payment */
.payment-wrapper {
    position: relative;
    display: block;
    width: 100%;
    padding-top: 115px;
    z-index: 1;
}

.payment-wrapper:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    height: 480px;
    background: var(--color-primary);
    z-index: -1;
}

.payment-wrapper .payment-container {
    display: block;
    width: 100%;
    border-radius: 40px;
    background: var(--color-light);
    box-shadow: -4px 5px 6px rgba(0, 0, 0, 0.15);
    padding: 4.167vw
        /* 80/19.2 */
    ;
}

.payment-wrapper .payment-container .info-block,
.payment-wrapper .payment-container .invoice-block,
.payment-wrapper .payment-container .payment-block {
    display: inline-block;
    width: 100%;
    background: #fffefa;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
    margin: 0 auto 10px;
}

.payment-wrapper .info-block {
    max-width: 469px;
    padding: 4.167vw
        /* 80/19.2 */
        2.083vw
        /* 40/19.2 */
    ;
}

.payment-wrapper .info-block .logo-slogan {
    display: block;
    width: 200px;
    max-width: 100%;
    margin: 0 auto 40px;
}

.payment-wrapper .info-block .logo-slogan img {
    width: auto;
    max-width: 100%;
}

.payment-wrapper .info-block ul.info-list {
    display: block;
    width: 100%;
    margin: 40px auto;
}

.payment-wrapper .info-block ul.info-list li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 15px;
}

.payment-wrapper .info-block ul.info-list li .info-icon {
    display: inline-block;
    min-width: 16px;
    width: 16px;
    margin-right: 10px;
}

.payment-wrapper .info-block ul.info-list li .info-icon img {
    width: 100%;
    object-fit: contain;
}

.payment-wrapper .info-block ul.info-list li .info-title {
    display: block;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: -0.05em;
    color: var(--color-primary);
    margin: 1px 0;
}

.payment-wrapper .info-block ul.info-list li .info-text {
    display: block;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: -0.05em;
    color: var(--color-primary);
    opacity: 0.5;
    margin: 1px 0;
}

.payment-wrapper .invoice-block .invoice-amount-text {
    display: block;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: -0.05em;
    text-align: center;
    color: var(--color-primary);
    opacity: 0.7;
    margin-top: 30px;
}

.payment-wrapper .invoice-block .invoice-amount-price {
    display: block;
    font-weight: 500;
    font-size: 37px;
    letter-spacing: -0.05em;
    text-align: center;
    color: var(--color-primary);
}

.payment-wrapper .invoice-block .invoice-expire {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    background: var(--color-primary);
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: -0.05em;
    margin-top: 15px;
}

.payment-wrapper .payment-block {
    padding: 40px;
}

.payment-wrapper .payment-block .payment-title {
    position: relative;
    text-align: center;
    margin: 18px auto;
    z-index: 1;
}

.payment-wrapper .payment-block .payment-title:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    height: 1px;
    background: rgba(17, 17, 17, 0.2);
    z-index: -1;
}

.payment-wrapper .payment-block .payment-title span {
    display: inline-block;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    background: var(--color-light);
    color: rgba(29, 29, 27, 0.2);
    padding: 0 25px;
}

.select-payment .custom-control {
    padding: 0 !important;
    margin-bottom: 7px;
}

.select-payment .custom-control:last-of-type {
    margin-bottom: 0;
}

.select-payment .custom-control label {
    display: flex;
    align-items: center;
    width: 100%;
    height: 53px;
    border-radius: 10px;
    background: #fffefa;
    border: 1px solid #e2e2e2;
    box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.07);
    padding: 0 50px 0 20px;
}

.select-payment .custom-control-label::before,
.select-payment .custom-control-label::after {
    top: 50%;
    transform: translateY(-50%);
    left: auto;
    right: 20px;
}

.select-payment .custom-control-input:checked~.custom-control-label::before {
    border-color: var(--color-secondary);
    background-color: var(--color-secondary);
}

.select-payment .custom-control-label .payment-img {
    width: 50px;
    height: 24px;
    margin-right: 15px;
}

.select-payment .custom-control-label .payment-img img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
}

.payment-block .card-details {
    display: block;
    width: 100%;
    border-radius: 10px;
    background: #fffefa;
    border: 1px solid #e2e2e2;
}

.payment-block .card-details .form-group {
    position: relative;
    margin-bottom: 0;
    border-bottom: 1px solid #e2e2e2;
}

.payment-block .card-details .form-group:last-of-type {
    border-bottom: none;
}

.payment-block .card-details .form-group img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 60px;
    height: 24px;
}

.payment-block .card-details .form-group .row .col-md-6:first-of-type {
    border-right: 1px solid #E2E2E2;
}

.payment-block .card-details .form-group .form-control {
    background: none;
    border: none;
    box-shadow: none;
    padding: 15px 25px;
    font-weight: 500;
    font-size: 14px;
    color: var(--color-primary);
    opacity: 0.4;
}

.payment-block .card-details .form-group .input-group .form-control {
    min-width: auto;
    width: 75px;
    max-width: 75px;
}

.payment-block .btn-payment {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 53px;
    border-radius: 10px;
    background: var(--color-primary);
    box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.07);
    font-weight: 500;
    font-size: 22px;
    letter-spacing: -0.02em;
    text-align: center;
    color: #fff;
    margin: 18px auto;
}

.payment-block .package-details-block {
    display: block;
    width: 100%;
}

.payment-block .package-details-block>div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 36px;
    background: var(--color-light);
    border: 1px solid #e2e2e2;
    color: #1d1d1b;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: -0.02em;
    padding: 0 25px;
}

.payment-block .package-details-block>div:first-of-type {
    background: #F5F5F5;
}

.payment-block .package-details-block>div:nth-of-type(2) {
    color: var(--color-primary);
    opacity: 0.4;
}

.my-fatoorah {
    display: block;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: -0.02em;
    color: #111;
    text-align: center;
    margin: 38px auto;
}

.my-fatoorah img {
    display: block;
    text-align: center;
    margin: 0 auto 18px;
}

/* Packages */
.packages-wrapper {
    position: relative;
    display: block;
    background: var(--color-primary);
    color: #fff;
    padding-top: 60px;
}

.packages-wrapper .packages-title {
    display: block;
    font-weight: bold;
    font-size: 94px;
    letter-spacing: -0.05em;
    text-align: center;
    color: #fff;
    margin: 60px auto;
}

.packages-wrapper ul.packages-list {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.packages-wrapper ul.packages-list li.package-item {
    display: inline-block;
    width: 315px;
    max-width: calc(25% - 24px);
    border-radius: 41px;
    background: linear-gradient(to top, #080807 0%, #2b2b26 100%);
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.12);
    padding: 32px 15px;
    margin: 20px;
}

.packages-wrapper ul.packages-list li.package-item:nth-of-type(odd) {
    background: #fff;
    color: var(--color-primary);
}

.packages-wrapper ul.packages-list li.package-item .package-title {
    display: block;
    font-weight: bold;
    font-size: 36px;
    line-height: 40px;
    letter-spacing: -0.02em;
    text-align: center;
    margin-bottom: 45px;
}

.packages-wrapper ul.packages-list li.package-item .package-subtitle {
    display: block;
    font-weight: normal;
    font-size: 15px;
    letter-spacing: -0.05em;
    text-align: center;
}

.packages-wrapper ul.packages-list li.package-item ul.package-features {
    display: block;
    margin: 35px auto;
    list-style: square;
    text-align: center;
}

.packages-wrapper ul.packages-list li.package-item ul.package-features li {
    font-weight: normal;
    font-size: 16px;
    letter-spacing: -0.05em;
    max-width: 150px;
    text-align: initial;
    margin: 0 auto 8px;
}

.packages-wrapper ul.packages-list li.package-item hr {
    border-color: rgba(255, 255, 255, 0.5);
}

.packages-wrapper ul.packages-list li.package-item:nth-of-type(odd) hr {
    border-color: rgba(0, 0, 0, 0.5);
}

.packages-wrapper ul.packages-list li.package-item .package-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    font-weight: bold;
    font-size: 40px;
    letter-spacing: -0.02em;
    margin: 35px auto;
}

.packages-wrapper ul.packages-list li.package-item .package-price sup {
    font-weight: 500;
    font-size: 12px;
    top: 1vw;
    padding: 0 0.3vw;
}

.packages-wrapper ul.packages-list li.package-item .btn-package {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 186px;
    max-width: 85%;
    height: 60px;
    border-radius: 20px;
    background: #fe0000;
    border: none !important;
    box-shadow: none !important;
    font-weight: 500;
    font-size: 22px;
    letter-spacing: -0.05em;
    color: #fff;
    margin: 0 auto;
}

ul.packages-description {
    display: inline-block;
    width: 100%;
    list-style: square;
    margin: 100px auto;
}

ul.packages-description li {
    font-weight: normal;
    font-size: 24px;
    letter-spacing: -0.02em;
    line-height: 30px;
    color: #fff;
    margin-bottom: 20px;
}

/* Confirmation */
.appointment-confirmation {
    position: relative;
    display: block;
    width: 100%;
    background: var(--color-primary);
    color: #fff;
    padding: 18.229vw
        /* 350/19.2 */
        0;
}

.appointment-confirmation {
    position: relative;
    display: block;
    width: 100%;
    background: var(--color-primary);
    color: #fff;
    padding: 10vw 0;
    text-align: center;
}

.appointment-confirmation .thank-you {
    position: relative;
    display: block;
    font-weight: 500;
    font-size: 97px;
    letter-spacing: -0.03em;
    line-height: 112px;
    text-align: center;
    color: #fff;
    padding-bottom: 14px;
}

.appointment-confirmation .thank-you span {
    position: relative;
    display: inline-block;
}

.appointment-confirmation .thank-you span:before,
.appointment-confirmation .thank-you span:after {
    content: '';
    position: absolute;
    bottom: 0;
    height: 12px;
    background: #e60019;
}

.appointment-confirmation .thank-you span:before {
    left: 10%;
    width: 45%;
}

.appointment-confirmation .thank-you span:after {
    right: 0;
    width: 35%;
}

.appointment-confirmation p {
    display: block;
    font-weight: 300;
    font-size: 31px;
    letter-spacing: -0.03em;
    line-height: 36px;
    margin: 10px 0 50px;
}

.appointment-confirmation h3 {
    display: block;
    font-weight: normal;
    font-size: 40px;
    letter-spacing: -0.03em;
    line-height: 46px;
    margin: 0;
}

.content-table {
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 0.9em;
    border-radius: 5px 5px 0 0;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.content-table thead tr {
    background-color: #FE0000;
    color: #ffffff;
    text-align: left;
    font-weight: bold;
}

.content-table th,
.content-table td {
    padding: 12px 15px;
}

.content-table tbody tr {
    border-bottom: 1px solid #dddddd;
}

.content-table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}

.content-table tbody tr:last-of-type {
    border-bottom: 2px solid #FE0000;
}

.content-table tbody tr.active-row {
    font-weight: bold;
    color: #FE0000;
}


/* Responsive*/
@media screen and (min-width: 1200px) {

    .container-fluid,
    .navbar .container-fluid {
        padding-left: 7.292vw
            /* 140/19.2 */
        ;
        padding-right: 7.292vw
            /* 140/19.2 */
        ;
    }
}

@media screen and (max-width: 1199px) {

    .container-fluid,
    .navbar .container-fluid {
        padding-left: 5vw;
        padding-right: 5vw;
    }

    .news-side-wrapper .instagram-block .instagram-photos a {
        width: calc((100%/ 2) - 6px);
    }

    .packages-wrapper ul.packages-list {
        flex-wrap: wrap;
        justify-content: center;
    }

    .packages-wrapper ul.packages-list li.package-item {
        max-width: calc(50% - 24px);
    }
}

@media screen and (max-width: 991px) {

    #book-container {
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        padding: 30px 0;
        text-align: left;
    }

    .book-wrapper .section-title {
        line-height: 10vw !important;
    }

    .book-wrapper .booking-wrapper {
        margin-top: 20px !important;
    }

    .service-description .service-icon {
        width: 50%;
    }

    .appointment-confirmation .thank-you {
        font-size: 50px;
        line-height: 60px;
        padding-bottom: 14px;
    }

    .container-fluid,
    .navbar .container-fluid {
        padding-left: 30px;
        padding-right: 30px;
    }

    .section-title-block {
        margin-bottom: 25px;
    }

    .form-wrapper .form-control {
        font-size: 16px;
    }

    .ceo-wrapper .ceo-img {
        max-width: 500px;
        margin: 0 auto 25px;
    }

    .scrollIndicator {
        display: none;
    }

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

    .form-wrapper .form-group>label {
        text-align: initial;
    }

    .payment-wrapper .info-block {
        max-width: 100%;
        padding: 40px;
    }

    .payment-wrapper .payment-block {
        padding: 40px 20px;
    }

    .select-payment .custom-control label {
        height: 53px;
        padding: 0 40px 0 20px;
        font-size: 12px;
    }

    .select-payment .custom-control-label .payment-img {
        width: 36px;
        height: 16px;
    }

    .payment-block .card-details .form-group img {
        right: 15px;
        height: 16px;
    }

    .payment-block .card-details .form-group .input-group .form-control {
        min-width: auto;
        width: auto;
        max-width: 46%;
    }

    .payment-block .card-details .form-group .row .col-md-6:first-of-type {
        border-right: none !important;
        border-left: none !important;
    }

    .payment-block .card-details .form-group .row .col-md-6:last-of-type .form-control {
        border-top: 1px solid #E2E2E2;
    }

    .payment-block .package-details-block>div {
        font-size: 12px;
        padding: 8px 15px;
        height: auto;
    }

    .contact-text {
        font-size: 16px;
    }

    footer {
        text-align: center;
    }

    footer ul.contact-menu {
        margin: 30px auto 10px;
    }

    footer .row .col-lg-4:nth-of-type(2) {
        border-left: none;
        border-right: none;
        text-align: center;
    }

    footer .copyrights {
        margin-top: 0;
    }

    .hero-wrapper h1 {
        font-size: 40px;
    }

    .hero-wrapper h2 {
        font-size: 24px;
        line-height: 30px;
        margin: 40px 0;
    }

    .hero-wrapper h4 {
        font-size: 20px;
    }

    .hero-wrapper p {
        font-size: 16px;
        line-height: 20px;
        margin-bottom: 15px;
    }

    section .read-more {
        font-size: 16px;
    }

    section .read-more span {
        font-size: 18px;
    }

    section .read-more img {
        width: 16px;
        margin-left: 10px;
    }

    .hero-wrapper .read-more {
        bottom: -35px;
    }

    .marketing-block {
        display: block;
        padding: 100px 0 75px;
        overflow: hidden;
    }

    .marketing-block .marketing-title {
        display: block;
        min-width: 100%;
        font-size: 30px;
        line-height: 36px;
        text-align: center;
        margin-bottom: 30px;
    }

    .section-title-block .section-title {
        font-size: 40px;
        padding-bottom: 15px;
    }

    .section-text {
        font-size: 16px;
        line-height: 20px;
    }

    .ceo-wrapper {
        padding-bottom: 30px;
    }

    .ceo-wrapper .ceo-name {
        font-size: 56px;
        margin: 20px auto;
    }

    .ceo-wrapper .ceo-name .ceo-title {
        bottom: 5px;
        font-size: 12px;
    }

    .ceo-wrapper p {
        font-size: 16px;
    }

    .owl-carousel .owl-nav button.owl-next,
    .owl-carousel .owl-nav button.owl-prev {
        font-size: 24px;
    }

    .clients-wrapper .client-item {
        padding: 50px;
        margin: 60px auto;
    }

    .clients-wrapper .client-item .client-title {
        top: 10px;
        font-size: 12px;
        right: 30px;
    }

    .clients-wrapper .client-item.light .client-title {
        right: auto;
        left: 30px;
    }

    .clients-wrapper .client-item .client-title:before {
        width: 2px;
        height: 30px;
        right: -10px;
    }

    .clients-wrapper .client-item.light .client-title:before {
        right: auto;
        left: -10px;
    }

    .clients-wrapper .client-item .client-text {
        font-weight: normal;
        font-size: 12px;
        margin-top: 20px;
    }

    .clients-wrapper .client-item:after {
        font-size: 100px;
    }

    .owl-theme .owl-dots .owl-dot span {
        width: 8px;
        height: 8px;
    }

    .owl-theme .owl-dots .owl-dot.active span {
        width: 30px;
    }

    .page-header {
        height: 120px;
    }

    .page-header .page-title {
        font-size: 40px;
    }

    .about-block .section-title-block .section-title,
    .service-block .section-title-block .section-title {
        font-size: 48px;
        line-height: 46px;
    }

    .section-subtitle {
        font-size: 18px;
    }

    .section-text-2 {
        font-size: 16px;
        line-height: 20px;
    }

    .side-wrapper ul.side-menu li a {
        font-size: 23px;
        margin: 5px;
        position: relative;
        z-index: 9999;
    }

    .side-wrapper {
        top: 70px;
    }

    .side-wrapper.active {
        height: calc(100vh - 70px);
    }

    #userProfileDropdown {
        padding: 3px;
        margin-right: -5px;
    }

    .btn.upload {
        font-size: 12px;
    }

    .time-duration {
        flex-direction: column;
        align-items: flex-start;
        justify-content: left;
    }

    #booking-widget {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }

    #proceedModal .modal-header {
        line-height: 2;
        margin-bottom: 1.5vw;
        padding: 4vw 4vw;
        border-radius: 15px;
    }

    #proceedModal .modal-title {
        font-size: 5vw;
    }

    #proceedModal .modal-body {
        border-radius: 15px;
        padding: 4.5vw 4vw;
    }

    #proceedModal .modal-body .close {
        font-size: 5.5vw;
    }

    #proceedModal .modal-body h5 {
        font-size: 4.5vw;
    }

    #proceedModal .modal-body p {
        font-size: 4vw;
    }

    .btn-apply,
    .btn-proceed {
        font-size: 4.5vw;
        margin: 0;
    }

    .discount .code {
        min-height: 43px;
        border-radius: 12px;
        font-size: 4.5vw
            /* 20/19.2 */
        ;
        padding: 0 12px;
        margin-right: 10px;
    }

    .form-wrapper.booking-page .form-title {
        font-size: 24px;
        font-weight: 600;
        letter-spacing: -0.03em;
        margin-bottom: 15px;
    }

    .upload-btn-wrapper {
        display: block;
        margin-left: auto;
        margin-right: auto;
        max-width: 186px;
    }

    .page-header.contact-header {
        height: 160px;
    }

    .contact-wrapper .contact-item {
        height: auto;
        padding-bottom: 30px;
    }

    .contact-wrapper .contact-item .contact-icon {
        top: -60px;
    }

    .contact-wrapper .contact-item .contact-icon:after {
        bottom: 90px;
    }

    .contact-wrapper .contact-item .contact-title {
        position: relative;
        top: 0;
        opacity: 1;
        visibility: visible;
        display: inline-block;
        margin-top: 70px;
        margin-bottom: 20px;
        z-index: 1;
    }

    .contact-wrapper .contact-item .contact-info {
        position: relative;
        top: 0;
        transform: none;
        opacity: 1;
        visibility: visible;
    }

    #map {
        height: 300px;
    }

    .form-wrapper .section-title-block .section-title {
        font-size: 44px;
        line-height: 48px;
        padding-bottom: 20px;
    }

    .form-wrapper .form-title,
    .form-wrapper.login-page .form-title {
        font-size: 30px;
    }

    .form-wrapper .form-text {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .media-title-block {
        margin-top: 30px;
    }

    .media-title-block>div {
        padding-top: 15px;
    }

    .media-title-block .media-title {
        font-size: 24px;
    }

    .media-tabs .nav-tabs {
        margin: 25px auto;
    }

    .media-tabs .nav-tabs .nav-link {
        font-size: 18px;
        padding: 6px 0;
    }

    .gallery-wrapper .gallery-item {
        width: calc(100% - 10px);
        height: 160px;
        margin: 5px auto;
    }

    .gallery-wrapper .gallery-item.height-2 {
        height: 330px;
    }

    .gallery-wrapper .gallery-col-1 {
        width: 50%;
    }

    .gallery-wrapper .gallery-col-2 {
        width: 100%;
    }

    .gallery-wrapper .gallery-col-3 .gallery-col-2 {
        width: 50%;
    }

    .gallery-wrapper .gallery-item .album-info {
        padding: 5px 15px;
    }

    .gallery-wrapper .gallery-item .album-info .album-photos {
        font-size: 10px;
    }

    .gallery-wrapper .gallery-item .album-info .album-title {
        font-size: 14px;
    }

    .news-side-wrapper .instagram-block .instagram-photos a {
        width: calc((100%/ 3) - 6px);
        max-width: 100px;
        height: 100px;
    }

    .article-wrapper p {
        font-size: 16px;
        line-height: 20px;
        margin-bottom: 15px;
    }

    .related-articles-wrapper {
        flex-flow: column;
        margin: 50px auto;
    }

    .related-articles-wrapper .related-articles-title {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .related-articles-wrapper .related-articles {
        width: 100%;
        justify-content: center;
    }

    .related-articles-wrapper .related-articles .related-article {
        display: inline-block;
        width: 112px;
        max-width: calc((100%/3) - 10px);
        height: 104px;
        padding: 8px 5px 15px;
        margin-left: 10px !important;
    }

    .packages-wrapper .packages-title {
        font-size: 46px;
        margin: 30px auto;
    }

    .packages-wrapper ul.packages-list li.package-item {
        max-width: 100%;
        margin: 20px auto;
    }

    .packages-wrapper ul.packages-list li.package-item .package-title {
        font-size: 30px;
        line-height: 36px;
        margin-bottom: 30px;
    }

    .packages-wrapper ul.packages-list li.package-item .package-subtitle {
        font-size: 14px;
    }

    .packages-wrapper ul.packages-list li.package-item ul.package-features {
        margin: 25px auto;
    }

    .packages-wrapper ul.packages-list li.package-item ul.package-features li {
        font-size: 14px;
        max-width: 140px;
        margin: 0 auto 6px;
    }

    .packages-wrapper ul.packages-list li.package-item .package-price {
        font-size: 36px;
        margin: 30px auto 15px;
    }

    ul.packages-description li {
        font-size: 16px;
        line-height: 20px;
        margin-bottom: 15px;
    }

    .book-now-wrapper {
        bottom: 20px;
        height: 60px;
        padding-left: 25px;
        padding-right: 20px;
    }

    .book-now-wrapper .toggle-book {
        font-size: 16px;
    }

    .book-now-wrapper .toggle-book img {
        width: 30px;
        margin-right: 15px;
    }

    .book-now-wrapper .book-btns .btn-book {
        width: auto;
        height: 40px;
        font-size: 14px;
    }

    .payment-wrapper .payment-container {
        padding: 40px 20px;
    }

    .service-description ul.list-items li {
        font-size: 16px;
        line-height: 20px;
    }

    .gallery-wrapper .gallery-item .video-info {
        height: 32px;
        font-size: 13px;
    }
}

#home-hero {
    display: block;
}

@media screen and (max-width: 767px) {
    #home-hero {
        display: none;
    }

    .swiper-slide {
        width: 100%;
        /* Set slide width to full screen */
        transition: var(--transition);
        float: none;
        /* Remove float */
        display: flex;
        /* Use flex to align slide content */
        justify-content: center;
        /* Center content horizontally */
        align-items: center;
        /* Center content vertically */
    }

    .swiper-wrapper .container-fluid {
        padding: 0px 60px;
    }

    /* Additional Swiper styles */
    .swiper-container {
        width: 100%;
        height: 100vh;
        /* Set container height to full screen */
    }

    .swiper-button-next {
        right: 15px !important;
        top: calc(50% + 25px);
    }

    .swiper-button-prev {
        left: 15px !important;
        top: calc(50% + 25px);
    }

    .swiper-button-prev,
    .swiper-button-next {
        position: absolute;
        width: 40px;
        height: 40px;
        background-color: #fff;
        border-radius: 50%;
        z-index: 2;
        box-shadow: 0 0 15px rgba(75, 75, 75, 0.4);
        top: calc(50% - 25px);
        cursor: pointer;
    }

    .swiper-button-prev::after,
    .swiper-button-next::after {
        content: '';
        position: absolute;
        width: 10px;
        height: 10px;
        transform: rotate(-45deg);
        top: 15px;
        left: 15.5px;
        box-sizing: border-box;
    }

    .btn-book-header {
        display: flex !important;
        width: max-content;
        height: 35px;
        border-radius: 35px;
        background: var(--color-secondary);
        border: 1px solid var(--color-secondary);
        font-weight: normal;
        font-size: 20px !important;
        letter-spacing: -0.04em;
        text-align: center;
        color: var(--color-light);
        margin-top: 15px;
        padding: 15px !important;
        align-items: center;
    }

    .side-menu li {
        margin-bottom: 10px;
    }

    .select-date-time {
        text-align: center !important;
    }

    .booking-wrapper {
        justify-content: center;
    }

    ul.time-slots {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        text-align: center;
        margin-bottom: 40px;
        gap: 15px;
    }

    ul.time-slots li {
        display: inline-block;
        margin: 6px;
    }

    ul.time-slots li button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 130px;
        height: 40px;
        background: var(--color-light);
        border: 1px solid #afaeae;
        border-radius: 5px;
        font-weight: 500;
        font-size: 13px;
        letter-spacing: -0.05em;
        color: #111;
    }

    .navbar .search-group {
        display: none;
    }

    .navbar .navbar-brand img {
        transition: var(--transition);
        height: 50px;
    }

    .scrolled .navbar .navbar-brand img {
        height: 36px;
    }

    .media-wrapper ul.media-images {
        margin-top: 30px;
    }

    .media-wrapper ul.media-images li {
        width: calc((100% / 3) - 10px);
        height: 200px;
        margin-top: 10px !important;
    }

    .media-wrapper ul.media-images li:nth-of-type(3n+1),
    .media-wrapper ul.media-images li:nth-of-type(3n+3) {
        margin-top: -10px !important;
    }

    .media-wrapper ul.media-images li:last-of-type {
        margin-top: 10px !important;
    }

    .news-wrapper .news-slider-wrapper {
        width: 300px;
        max-width: 100%;
        min-height: 200px;
        margin: 30px auto;
    }

    .news-wrapper .news-slider .news-img {
        margin-top: 106px;
        margin-left: 12px;
        width: 140px;
        height: 150px;
    }

    .news-wrapper .news-slider .news-info {
        top: 10px;
        right: 30px;
        width: 106px;
    }

    .news-wrapper .news-slider .news-info .news-date {
        font-size: 10px;
    }

    .news-wrapper .news-slider .news-info .news-date {
        font-size: 10px;
    }

    .news-wrapper .news-slider .news-info .news-text {
        font-size: 5px;
        height: 25vw;
        overflow: hidden;
    }

    .news-wrapper .news-slider .news-info .news-by {
        font-size: 5px;
        margin-top: 5px;
    }

    .news-wrapper .news-slider .news-info .news-by img {
        width: 8px;
    }
}

@media screen and (max-width: 575px) {}