::selection {
    background-color: var(--gold);
    color: var(--blueDark);
}

/**========================================================================
 *                                 ROOTS
 *========================================================================**/

:root {
    --blueDark: #001221;
    --gold: #bf9b30;
}

/**========================================================================
 *                                 GENERAL
 *========================================================================**/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", sans-serif;
    font-size: 16px !important;
    background-size: contain;
    scroll-behavior: smooth;
    background-color: var(--blueDark);
}

body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: var(--blueDark);
}

body::-webkit-scrollbar {
    width: 10px;
    background-color: var(--blueDark);
}

body::-webkit-scrollbar-thumb {
    border-radius: 1px;
    background-color: var(--gold);
    background-image: -webkit-linear-gradient(45deg,
            rgba(255, 255, 255, 0.2) 25%,
            transparent 25%,
            transparent 50%,
            rgba(255, 255, 255, 0.2) 50%,
            rgba(255, 255, 255, 0.2) 75%,
            transparent 75%,
            transparent);
}

.full-body {
    overflow-x: hidden !important;
    background-size: 139px;
}

/**============================================
 *               MIX
 *=============================================**/

.behind {
    position: relative;
    z-index: 0;
}

.animation-delay-150 {
    animation-delay: 150ms;
}

.animation-delay-200 {
    animation-delay: 200ms;
}

.animation-delay-300 {
    animation-delay: 300ms;
}

[data-fancybox]:hover {
    cursor: zoom-in;
}

/**============================================
*               Buttons
*=============================================**/

.btn.btn-base {
    background-color: var(--gold);
    padding: 8px 28px;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--gold);
    transition: all 0.3s ease;
}

.btn.btn-base:hover {
    background-color: white;
    color: var(--gold);
}

/*=======  BUTTONS STYLE   =======*/

.btn.btn-style {
    cursor: pointer;
    transition: color 0.5s linear;
    position: relative;

    position: relative;
    overflow: hidden;
    display: block;
}

.btn.btn-style::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
    transition: all 0.5s ease;
    width: 100%;
    height: 0;
    transform: translate(-50%, -50%) rotate(45deg);
}

.btn.btn-style:hover::before {
    height: 380%;
}

.btn.btn-style.btn-base {
    background: none;
    border: 2px solid var(--gold);
    color: var(--gold);
}

.btn.btn-style.btn-base:hover {
    color: rgb(255, 255, 255);
}

.btn.btn-style.btn-base::before {
    background: var(--gold);
}

/*=======  Colors  =======*/

.bg-blueDark {
    background-color: var(--blueDark) !important;
}

.bg-gold {
    background-color: var(--gold) !important;
}

.text-blueDark {
    color: var(--blueDark) !important;
}

.text-gold {
    color: var(--gold) !important;
}

/*=======  SECTIONS PADDING & MARGINS  =======*/

.section-my {
    margin-bottom: 80px !important;
    margin-top: 80px !important;
}

.section-mb {
    margin-bottom: 80px !important;
}

.section-mt {
    margin-top: 80px !important;
}

.section-py {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
}

.section-pb {
    padding-bottom: 80px !important;
}

.section-pt {
    padding-top: 80px !important;
}

.section-padding {
    padding: 60px;
}

.section-dark {
    background-color: #05141b;
}

.section-light {
    background-color: #e6e9eb;
}

.section-gold-light {
    background-color: #e5d7ac;
}

/**========================================================================
 *                           PRELOADER
 *========================================================================**/

.preloader {
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999999;
    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease;
}

.preloader img {
    width: 300px;
}

#preloader.preloader.hide {
    visibility: hidden;
    opacity: 0;
}

/**========================================================================
 *                                 HEADER
 *========================================================================**/

header .navbar {
    background-color: transparent;
    padding: 12px 50px;
    position: fixed;
    width: 100%;
    transition: all 0.3s ease;
    z-index: 9999;

    display: flex;
    justify-content: space-between;
}

header .navbar .nav-logo {
    width: 90px;
    transition: all 0.3s ease;
}

header .navbar .navbar-nav {
    display: flex;
    align-items: center;
}

header .navbar .navbar-nav .nav-item .nav-link {
    font-size: 16px;
    color: white;
    padding: 0.5rem 15px !important;
    transition: all 0.3s ease;
    position: relative;
}

header .navbar .navbar-nav .nav-item.active .nav-link::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    background-image: url(../img/logo/smoke-mark.png);
    width: 33px;
    height: 42px;
    background-size: cover;
    z-index: -1;
}

/**============================================
 *               STICKY NAVIGATION
 *=============================================**/

.nav-gap {
    @apply w-full;
    height: 136.93px;
}

.navbar.sticky-nav {
    background-color: var(--blueDark) !important;
    box-shadow: 0px 4px 8px rgb(0 0 0 / 20%);
}

.navbar.sticky-nav .nav-logo {
    width: 65px;
}

/**========================================================================
 *                     MOBILE NAVIGATION / MOB NAVBAR
 *========================================================================**/

.mob-navbar {
    background-color: var(--blueDark);
}

.mob-navbar .nav-menu-btn {
    border-bottom: 2px solid #929292;
}

.mob-navbar .navbar-toggler {
    color: #fff;
    background-color: var(--blueDark);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #bdbdbd;
}

.mob-logo {
    width: 100px;
}

.navbar-toggler {
    background-image: url(../img/icons/menu_toggler.png);
    background-position: center;
    background-size: cover;
    padding: 16px;
}

.mob-navbar .navbar-nav {
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin: 0px 0 0;
    background-color: var(--blueDark);
    gap: 0 !important;
}

.mob-navbar .mob-nav-link {
    font-size: 14px;
    letter-spacing: 1px;
    color: #ffffff;
    padding: 0 20px;
    display: block;
    font-weight: 500;
}

.mob-navbar .mob-nav-item {
    padding: 14px 0;
    border-bottom: 1px solid #ccc;
}

.mob-navbar .mob-nav-item.active {
    background-color: var(--gold);
    color: var(--blueDark);
}

/**========================================================================
 *                             ABOUT US PAGE
 *========================================================================**/

/*================== ABOUT US SLIDER =================*/

.about-us-slider {
    position: relative;
    margin-bottom: 65px;
}

.about-us-slider .swiper-button-next:after,
.about-us-slider .swiper-button-prev:after {
    font-size: 28px;
    font-weight: 600;
    color: #e6e6e6;
    transition: all 0.3s ease;
}

.about-us-slider .swiper-button-next:hover:after,
.about-us-slider .swiper-button-prev:hover:after {
    color: var(--gold);
}

.about-us-slider .swiper-button-prev {
    left: -65px;
}

.about-us-slider .swiper-button-next {
    right: -65px;
}

.about-us-slider .swiper-pagination {
    bottom: -65px !important;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
}

.swiper-pagination-bullet-active {
    background-color: var(--gold);
}

/*================== ABOUT US GALLERY =================*/

.about-gallery-grid {
    height: 650px;
    gap: 32px;
}

.about-gallery-grid .about-gallery-item {
    border: 5px solid var(--gold);
}

.about-gallery-grid .about-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-us-page .section-tesimonial {
    background: url(../img/home/about-us/about-us-bg.webp);
    background-size: cover;
    height: 100vh;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/**========================================================================
 *                              FRANCHISE PAGE
 *========================================================================**/

/*================== FRANCHISE BREACRUMB =================*/

.franchise-page .breadcrumb {
    background: linear-gradient(rgb(0, 29, 54, 0.7), rgb(0, 29, 54, 0.7)),
        url(../img/breadcrumb/franchise.webp);
    background-position: left 800px;
    height: 440px;
    padding: 100px 0;
}

.franchise-page .breadcrumb .breadcrumb-heading {
    font-size: 36px;
    color: var(--gold);
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
    margin-bottom: 28px;
    letter-spacing: 1px;
}

.franchise-page .breadcrumb .newsletter-text {
    font-size: 16px;
    letter-spacing: 1px;
    color: white;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 52px;
}

.franchise-page .breadcrumb .form-control {
    width: 100%;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.franchise-page .breadcrumb .form-control .form-input {
    border: 1px solid white;
    background-color: transparent;
    padding: 10px 16px;
    width: 380px;
}

.franchise-page .breadcrumb .form-control .form-input::placeholder {
    color: #a6a8ab;
}

.submit-btn {
    background-color: var(--gold);
    text-transform: uppercase;
    font-weight: 600;
    padding: 10px 24px;
}

/**========================================================================
 *                              CATERING PAGE
 *========================================================================**/

/*================== CATERING BREACRUMB =================*/

.catering-page .breadcrumb {
    background: linear-gradient(rgb(0, 29, 54, 0.7), rgb(0, 29, 54, 0.7)),
        url(../img/breadcrumb/catering.webp);
    background-position: top;
    background-size: cover;
    height: 600px;
    padding: 100px 0;
    position: relative;
}

.catering-page .breadcrumb .breadcrumb-text {
    color: var(--gold);
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
    right: 280px;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
}

/*================== CATERING SHISHA MODELS =================*/

/* 
.section-shisha-models .model_shisha_cont {
    display: flex;
    justify-content: center;
}

.section-shisha-models .model_shisha_cont .model_shisha_item {
    height: 130px;
    width: 80px;
}

.section-shisha-models .model_shisha_cont img {
    object-fit: contain;
    width: 100%;
    height: 100%;
} */

.section-shisha-models .model_shisha_cont {
    display: flex;
    justify-content: center;
}

.section-shisha-models .model_shisha_cont .model_shisha_item {
    height: 220px;
    width: 180px;
}

.section-shisha-models .model_shisha_cont img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

/*================== CATERING PAGE FORM =================*/

.catering-page-form .catering-form-input {
    width: 100%;
    color: #a6a8ab;
    background: transparent;
    border: 1px solid rgb(88, 88, 88);
    padding: 12px 20px;
}

.catering-page-form .spinNumber input {
    font-size: 16px;
}

.catering-page-form .spinNumber input:focus {
    border: none;
    box-shadow: none;
}

.catering-page-form .spinNumber {
    display: flex;
    height: 42px;
    padding: 0 5px;
}

.catering-page-form .spinNumber input,
.catering-page-form .spinNumber input:focus-visible {
    color: #7e8083;
    font-weight: 400;
    width: 52px;
    height: 100%;
    background: transparent;
    outline: none;
    text-align: center;
    border: none;
    border: 1px solid #231f20;
}

.catering-page-form .spinNumber .incrimentButton,
.catering-page-form .spinNumber .decrimentButton {
    width: 50px;
    font-size: 14px;
    font-weight: 600;
    background: transparent;
    color: #231f20;

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

    transition: 0.3s all ease;
    cursor: pointer;
}

.iti.iti--allow-dropdown.iti--separate-dial-code {
    width: 100%;
}

input#radioDefault01,
input#radioDefault02 {
    height: 18px;
    width: 18px;
}

.catering-page-form .submit-btn {
    color: white;
    background-color: var(--gold);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 16px 24px;
    margin: 0 auto;
}

/**========================================================================
 *                             OUTSOURCING PAGE
 *========================================================================**/

.outsourcing-page .breadcrumb {
    background: url(../img/breadcrumb/outsourcing.webp);
    background-position: center -70px;
    background-size: cover;
    height: 600px;
    padding: 100px 0;
    position: relative;
}

.outsourcing-page .breadcrumb .breadcrumb-text {
    color: var(--gold);
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
    bottom: 48px;
    right: 50%;
    transform: translateX(50%);
    position: absolute;
}

.why-partner-img {
    background-position: center;
    background-size: cover;
}

.why-partner-img.increase {
    width: 136px;
    height: 45px;
}

.why-partner-img.ambiance {
    width: 162px;
    height: 40px;
}

.why-partner-img.solution {
    width: 160px;
    height: 76px;
}

.why-partner-img.marketing {
    width: 156px;
    height: 47px;
}

.packages-item {
    background-color: #efe6cc;
    padding: 30px 60px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.packages-item img {
    margin: 0 auto 20px;
    height: 90px;
}

/**============================================
*               Our Clients Slider
*=============================================**/

/* OUR CLIENTS SLIDER */

[class*="clients-slider"] .slick-slide .inner {
    height: 125px;
    width: 220px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: rgb(0 0 0 / 15%) 0px 3px 16px;
    background-color: #fff;
    padding: 12px 10px;
}

[class*="clients-slider"] .slick-slide {
    text-align: center;
    margin: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

[class*="clients-slider"] img {
    max-width: 200px;
    object-fit: contain;
    width: 100%;
    height: 100%;
}

/**========================================================================
 *                                HOME PAGE
 *========================================================================**/

/*================== HOME PAGE HERO SECTION =================*/

.home-page .hero-section {
    height: 100vh;
    position: relative;
}

.home-page .hero-section {
    height: 100vh;
    position: relative;
}

.home-page .hero-section video.hero-section-video {
    object-fit: cover;
    width: 100%;
    height: 100%;
    min-height: 450px;
}

.home-page .hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 18, 33, 0.534);
}

.home-page .hero-section .content {
    position: absolute;
    top: 50%;
    transform: translateY(calc(-50% + 50px));
    width: 100%;
    z-index: 2;
}

.home-page .hero-section .content .heading {
    max-width: 500px;
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    text-shadow: 0 1.5px 4px rgba(0, 0, 0, 0.5);
}

.home-page .hero-section .content .text {
    color: white;
    max-width: 500px;
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.5);
}

.home-page .hero-section .content p.counter {
    text-shadow: 0 1.5px 4px rgba(0, 0, 0, 0.5);
}

/*================== HOME PAGE ABOUT SECTION =================*/

.home-page .about-us-section {
    background: url(../img/home/about-us/about-us-bg.webp);
    background-size: cover;
    height: 100vh;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-us-shisha-img {
    transition: all 0.3s ease;
}

.about-us-shisha-img:hover {
    transform: translateY(-10px);
}

/*================== HOME PAGE SERVICES SECTION =================*/

.home-page .services-section {
    background: url(../img/home/services/services-bg.webp);
    background-size: cover;
    height: 100vh;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-page .services-section .home-services-item {
    width: 410px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.home-page .services-section .home-services-item::after {
    content: "";
    position: absolute;
    background-image: url(../img/home/services/services_smoke.png);
    background-size: contain;
    background-repeat: no-repeat;
    height: 120px;
    width: 120px;
    top: 0;
    right: 40%;
    transform: translateX(50%);
    opacity: 0;
    transition: all 0.4s ease;
    top: -54px;
    right: 38%;
}

.home-page .services-section .home-services-item.second::after {
    top: 25px;
}

.home-page .services-section .home-services-item:hover::after {
    opacity: 1;
}

.home-page .services-section .home-services-item img {
    height: 160px;
    z-index: 999;
}

/*================== HOME PAGE WHY CHOOSE SECTION =================*/

.home-page .why-choose-us-section {
    background-image: url(../img/home/why-choose-us/section-bg.webp);
    background-size: cover;
    background-position: bottom;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-page .why-choose-us-section::after {
    content: url(../img/home/why-choose-us/rotating-text.png);
    position: absolute;
    top: 50%;
    right: 50%;
    margin-top: 70px;
    animation: rotating-text 9s infinite linear;
}

@keyframes rotating-text {
    from {
        transform: scale(0.8) translate(50%, -50%) rotate(360deg);
    }

    to {
        transform: scale(0.8) translate(50%, -50%) rotate(0);
    }
}

.home-page .why-choose-us-section .home-why-us-item {
    width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.home-page .why-choose-us-section .col-span-1:nth-child(1) .home-why-us-item:hover,
.home-page .why-choose-us-section .col-span-1:nth-child(3) .home-why-us-item:hover {
    transform: translateX(-10px);
}

.home-page .why-choose-us-section .col-span-1:nth-child(2) .home-why-us-item:hover,
.home-page .why-choose-us-section .col-span-1:nth-child(4) .home-why-us-item:hover {
    transform: translateX(10px);
}

.home-page .why-choose-us-section .home-why-us-item:hover img {
    filter: grayscale(1) brightness(2);
}

.home-page .why-choose-us-section .home-why-us-item img {
    height: 70px;
    transition: filter 0.3s ease;
}

/*================== HOME PAGE OUR PHILOSOPHY SECTION =================*/

.home-page .section-our-philosophy {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 440px 0;
}

.home-page .section-our-philosophy .our-philosophy-cont {
    display: flex;
    justify-content: center;
    gap: 90px;
}

.home-page .section-our-philosophy .our-philosophy-img {
    background-size: cover;
    width: 100%;
    height: 220px;
    z-index: 9;
    position: relative;
}

.home-page .section-our-philosophy .our-philosophy-cont .our-philosophy-item {
    display: flex;
    gap: 60px;
    width: 270px;
    flex-direction: column;
    transition: all 0.3s ease;
}

.home-page .section-our-philosophy .our-philosophy-cont .our-philosophy-item:hover {
    gap: 32px;
}

.home-page .section-our-philosophy .our-philosophy-cont .our-philosophy-item:hover .our-philosophy-img::before {
    z-index: 1;
    width: 100%;
    height: 100%;
}

.home-page .section-our-philosophy .our-philosophy-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.home-page .section-our-philosophy .our-philosophy-cont .our-philosophy-item .our-philosophy-img::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    border: 5px solid var(--gold);
    width: 80%;
    height: 125%;
    z-index: -1;
    transition: all 0.3s ease;
}

.home-page .section-our-philosophy .our-philosophy-cont .our-philosophy-item .our-philosophy-content {
    width: 100%;
    text-align: center;
}

.home-page .section-our-philosophy .our-philosophy-cont .our-philosophy-item .our-philosophy-content.floating {
    position: absolute;
    bottom: 0;
    transform: translateY(125%);
}

.home-page .section-our-philosophy.with-bg {
    background-image: url(../img/home/our-philosophy/next-section-bg.webp);
    background-size: cover;
    background-position: bottom;
    height: 100vh;
}

/*================== HOME PAGE GALLERY =================*/

.section-our-gallery .home-gallery-slider {
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-our-gallery .home-gallery-slider .slick-arrow {
    color: var(--gold);
    font-size: 70px;
}

.section-our-gallery .home-gallery-slider .slick-arrow.prevArrow {
    right: 50px;
    position: relative;
}

.section-our-gallery .home-gallery-slider .slick-arrow.nextArrow {
    left: 50px;
    position: relative;
}

.section-our-gallery .home-gallery-slider .home-gallery-slider-item {
    padding: 10px 14px;
    height: 300px;
}

.section-our-gallery .home-gallery-slider .home-gallery-slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border: 5px solid var(--gold);
}

.home-page .section-our-gallery {
    background-image: url(../img/home/our-gallery/section-bg.webp);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 
.home-gallery-grid {
    height: 650px;
    gap: 32px;
}

.home-gallery-grid .home-gallery-item {
    border: 5px solid var(--gold);
}

.home-gallery-grid .home-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
} */

/*================== HOME PAGE LAST PAGE =================*/

.home-page .last-section {
    background-image: url(../img/home/last-section/section-bg.webp);
    background-size: cover;
    background-position: bottom;
    height: 100vh;
    padding: 120px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*================== HOME PAGE CLIENTS =================*/

.clients-section .clients-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 74px;
    flex-wrap: wrap;
    margin-bottom: 74px;
}

.clients-section .clients-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 74px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.clients-section .clients-row:last-child {
    margin-bottom: 0 !important;
}


.clients-section .clients-row:nth-child(odd) {
    margin-left: 75px;
}

.clients-section .clients-row:nth-child(even) {
    margin-right: 75px;
}

.clients-section .clients-row .clients-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.clients-section .clients-row .clients-item img {
    max-height: 100px;
    max-width: 100px;
    filter: grayscale(0);
    transition: all 0.3s ease;
}

.clients-section .clients-row .clients-item:hover img {
    filter: grayscale(.3);
    transform: translateY(-6px);
}

/**========================================================================
*                             OUTLETS PAGE
*========================================================================**/

.outlets-page .breadcrumb {
    background: linear-gradient(rgb(0, 29, 54, 0.7), rgb(0, 29, 54, 0.7)),
        url(../img/breadcrumb/outlets.webp);
    background-position: center;
    background-size: cover;
    height: 600px;
    padding: 100px 0;
    position: relative;
}

.outlets-page .breadcrumb .breadcrumb-text {
    color: var(--gold);
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
    bottom: 48px;
    right: 50%;
    transform: translateX(50%);
    position: absolute;
}

.outlets-img-hover .images-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(5, 200px);
    gap: 24px;

    /* display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0 4px; */
}

.outlets-img-hover .images-row .images-col {
    -ms-flex: 25%;
    /* IE 10 */
    flex: 25%;
    padding: 0 8px;
}

.outlets-img-hover .img-item {
    position: relative;
    transition: all 0.4s ease-in-out;
    cursor: pointer;
    overflow: hidden;

    height: 100%;

    /* margin-top: 16px;
    vertical-align: middle; */
}

.outlets-img-hover .outlets-img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    /* width: 100%; */
    transition: all 0.5s ease;
}

.outlets-img-hover .img-item:hover .outlets-img {
    transform: scale(1.08) translateX(-8px);
}

.outlets-img-hover .overlay-one {
    position: absolute;
    top: 50%;
    left: 0;
    opacity: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 18, 33, 0.5);
    transition: all 0.4s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.outlets-img-hover .img-item:hover .overlay-one {
    opacity: 1;
    top: 0;
}

.outlets-img-hover .overlay-one h1 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    line-height: 1.4;
    padding: 0 26px;
}

/**========================================================================
*                             CONTACT US PAGE
*========================================================================**/

.contact-us-page .contact-img-cont {
    position: relative;
}

.contact-us-page .contact-img-cont .contact-img {
    background-image: linear-gradient(to right,
            rgb(0, 29, 54, 0.7),
            rgb(0, 29, 54, 0.7)),
        url(../img/contact-us/1.jpg);
    background-position: top;
    background-size: cover;
    height: 870px;
    padding: 160px;
}

.contact-us-page .contact-img-cont .contact-img .contact-us-heading {
    color: var(--gold);
    text-transform: uppercase;
    font-weight: bold;
    line-height: 1.3;
    letter-spacing: 2px;
    margin-bottom: 100px;
}

/*================== CONTACT FORM =================*/

.contact-form {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    gap: 36px;
}

.contact-form .user-box {
    position: relative;
    width: 100%;
}

.contact-form .user-box input {
    width: 100%;
    padding: 10px 0;
    color: #000;
    border: none;
    border-bottom: 1px solid #000;
    outline: none;
    background: transparent;
}

.contact-form .user-box label {
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px 0;
    color: #000;
    pointer-events: none;
    transition: 0.5s;
}

.contact-form .user-box input:focus~label,
.contact-form .user-box input:valid~label {
    top: -20px;
    left: 0;
    color: #444;
    font-size: 12px;
}

.contact-social .contact-icons {
    color: var(--gold);
}

.contact-year {
    color: #000;
    font-weight: 400;
    margin-right: 8px;
}

/**========================================================================
*                           FOOTER
*========================================================================**/

.footer .f-left-side .f-logo {
    height: 120px;
    margin-bottom: 24px;
}

.footer .f-left-side .f-logo {
    height: 120px;
    margin-bottom: 32px;
}

.footer .f-left-side .f-contact-info,
.contact-us-info {
    color: white;
    margin-bottom: 64px;
}

.footer .f-left-side .f-contact-info h5.f-contact-h,
.contact-us-info .contact-us-h {
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 5px;
}

.footer .f-left-side .f-contact-info .f-number,
.contact-us-info .contact-us-number {
    color: var(--gold);
    display: flex;
    gap: 16px;
    align-items: flex-end;
    margin-bottom: 32px;
}

.footer .f-left-side .f-contact-info .f-number p,
.contact-us-info .contact-us-number p {
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: -8px;
}

.footer .f-left-side .f-contact-info .f-number i,
.contact-us-info .contact-us-number i {
    font-size: 34px;
}

.footer .f-left-side .f-contact-info h4.f-email,
.contact-us-info h4.contact-us-email {
    font-weight: 700;
}

.footer .f-right-side {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.footer .f-right-side .f-social,
.contact-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.footer .f-right-side .f-social .f-follow,
.contact-social .contact-follow {
    color: var(--gold);
    font-weight: 400;
}

.footer .f-right-side .f-social .f-icons,
.contact-social .contact-icons {
    display: flex;
    gap: 14px;
}

.footer .f-right-side .f-social .f-icons {
    color: white;
}

.footer .f-right-side .f-social .f-icons i,
.contact-social .contact-icons i {
    font-size: 32px;
}

.footer .copyright {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer .copyright p,
.contact-us-page p.contact-us-address {
    color: white;
    font-weight: 400;
    margin-right: 8px;
}