/* 
File Name: CSS 
Author: Hertzsoft Technologies Private Limited
*/
@import 'theme.min.css';

@font-face {
    font-family: 'Gibson Regular';
    font-style: normal;
    font-weight: normal;
    src: local('Gibson Regular'), url('../fonts/gibson/GibsonRegular.woff') format('woff');
}

@font-face {
    font-family: 'Gibson SemiBold';
    font-style: normal;
    font-weight: normal;
    src: local('Gibson SemiBold'), url('../fonts/gibson/GibsonSemiBd.woff') format('woff');
}

@font-face {
    font-family: 'Gibson Bold';
    font-style: normal;
    font-weight: normal;
    src: local('Gibson Bold'), url('../fonts/gibson/GibsonBold.woff') format('woff');
}

@font-face {
    font-family: 'Gibson Light';
    font-style: normal;
    font-weight: normal;
    src: local('Gibson Light'), url('../fonts/gibson/GibsonLight.woff') format('woff');
}

:root {
    --color-primary: #f4bc41;
    --color-primary-dark: #e0a825;
    --color-primary-light: #f8d47a;

    --color-secondary: #ff6900;
    --color-secondary-dark: #e05a00;
    --color-secondary-light: #ff8c33;

    --color-black: #000000;
    --color-white: #ffffff;
    --color-off-white: #f9f9f9;

    --color-text-base: #212529;
    --color-text-muted: #777777;
    --color-text-light: #cccccc;

    --color-bg-default: var(--color-off-white);
    --color-bg-dark: #333333;
    --color-bg-darker: #222222;
    --color-bg-soft: #fafdff;
    --color-bg-cream: #F4EBDC;
    --color-bg-gray: #D7D3D2;
    --color-bg-light-gray: #eeeeee;
    --color-bg-silver: #d7d7d7;
    --color-bg-pale-gray: #ede9e9;

    --font-gibson-regular: 'Gibson Regular', sans-serif;
    --font-gibson-semibold: 'Gibson SemiBold', sans-serif;
    --font-gibson-bold: 'Gibson Bold', sans-serif;
    --font-gibson-light: 'Gibson Light', sans-serif;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background: var(--color-white);
    font-family: var(--font-gibson-regular);

    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;

    /* transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: transform; */
}

.all-center {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Text Color Utility Classes */
.text-primary {
    color: var(--color-primary) !important;
}

.text-primary-dark {
    color: var(--color-primary-dark) !important;
}

.text-primary-light {
    color: var(--color-primary-light) !important;
}

.text-primary {
    color: var(--color-primary) !important;
}

.text-secondary {
    color: var(--color-secondary) !important;
}

.text-secondary-dark {
    color: var(--color-secondary-dark) !important;
}

.text-secondary-light {
    color: var(--color-secondary-light) !important;
}

.text-black {
    color: var(--color-black) !important;
}

.text-white {
    color: var(--color-white) !important;
}

.text-base {
    color: var(--color-text-base) !important;
}

.text-muted {
    color: var(--color-text-muted) !important;
}

.text-light {
    color: var(--color-text-light) !important;
}

/* Background Color Utility Classes */
.bg-primary {
    background: var(--color-primary) !important;
}

.bg-primary-dark {
    background: var(--color-primary-dark) !important;
}

.bg-primary-light {
    background: var(--color-primary-light) !important;
}

.bg-primary {
    background: var(--color-primary) !important;
}

.bg-secondary {
    background: var(--color-secondary) !important;
}

.bg-secondary-dark {
    background: var(--color-secondary-dark) !important;
}

.bg-secondary-light {
    background: var(--color-secondary-light) !important;
}

.bg-black {
    background: var(--color-black) !important;
}

.bg-white {
    background: var(--color-white) !important;
}

.bg-default {
    background: var(--color-bg-default) !important;
}

.bg-dark {
    background: var(--color-bg-dark) !important;
}

.bg-darker {
    background: var(--color-bg-darker) !important;
}

.bg-soft {
    background: var(--color-bg-soft) !important;
}

.bg-cream {
    background: var(--color-bg-cream) !important;
}

.bg-gray {
    background: var(--color-bg-gray) !important;
}

.bg-light-gray {
    background: var(--color-bg-light-gray) !important;
}

.bg-silver {
    background: var(--color-bg-silver) !important;
}

.bg-pale-gray {
    background: var(--color-bg-pale-gray) !important;
}

/* Border Color Classes */
.border-primary {
    border-color: var(--color-primary) !important;
}

.border-secondary {
    border-color: var(--color-secondary) !important;
}

/* Font Family Classes */
.font-gibson-regular {
    font-family: var(--font-gibson-regular);
}

.font-gibson-semibold {
    font-family: var(--font-gibson-semibold);
}

.font-gibson-bold {
    font-family: var(--font-gibson-bold);
}

.font-gibson-light {
    font-family: var(--font-gibson-light);
}

/* Custom */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    appearance: textfield;
    -moz-appearance: textfield;
}

.fa-phone-volume {
    transform: rotate(320deg);
}

.form-select,
.form-control {
    border-color: var(--color-text-2);
    border-radius: 0;
    min-height: 50px;
}

.form-select:focus,
.form-control:focus {
    border-color: var(--color-medium-brown);
    outline: 0;
    box-shadow: inherit;
}

a {
    text-decoration: none;
    cursor: none;
    color: inherit;
    /* color: var(--color-black); */
}

a:hover,
a:focus {
    text-decoration: none !important;
    outline: none;
    /* color: var(--color-primary) !important; */
}

ul,
li {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.text-justify {
    text-align: justify !important;
}

/* Scrollbar Start */
::-webkit-scrollbar {
    width: 5px;
    height: 1px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--color-primary);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-secondary);
}

::selection {
    color: var(--color-white);
    background: var(--color-primary);
}

::-webkit-input-placeholder {
    color: inherit;
}

::-moz-input-placeholder {
    color: inherit;
}

::-ms-input-placeholder {
    color: inherit;
}

/* Text Truncate */
.text-truncate {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-clamp: 1;
    -webkit-line-clamp: 1;
}

.truncate-text::after {
    content: "...";
    display: inline-block;
}

.text-truncate-2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-clamp: 2;
    -webkit-line-clamp: 2;
}

.truncate-text-2::after {
    content: "...";
    display: inline-block;
}

.text-truncate-3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-clamp: 3;
    -webkit-line-clamp: 3;
}

.truncate-text-3::after {
    content: "...";
    display: inline-block;
}

.text-truncate-4 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-clamp: 4;
    -webkit-line-clamp: 4;
}

.truncate-text-4::after {
    content: "...";
    display: inline-block;
}

/* Preloader */
/* #preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#preloader .loader {
    width: 60px;
    height: 60px;
    border: 6px solid var(--color-primary);
    border-top: 6px solid var(--color-secondary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
} */

/* Back to top */
#back-to-top {
    display: inline-block;
    background: var(--color-primary);
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 4px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    transition: background .3s,
        opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
}

#back-to-top::after {
    content: "\f077";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 16px;
    color: var(--color-white);
}

#back-to-top:hover {
    cursor: pointer;
    background: var(--color-primary-dark);
}

#back-to-top:active {
    background: var(--color-primary-light);
}

#back-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* Cursor */

/* Custom */
.center-dot {
    display: inline-block;
    vertical-align: middle;
    font-size: 25px;
    line-height: 1;
    transform: translateY(2px);
}

.small-center-dot {
    display: inline-block;
    vertical-align: middle;
    font-size: 12px;
    line-height: 1;
    transform: translateY(0px);
}

/* Navbar */
nav.navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    color: var(--color-black);
    font-weight: 500;
}

nav.navbar .navbar-collapse.collapse.show .navbar-nav .nav-item .nav-link {
    color: var(--color-black) !important;
}

nav.navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    font-size: 16px;
    line-height: 16px;
    text-transform: lowercase;
    /* tfosztreh */
    /* padding-right: 50px; */
    transition: 0.2s all ease;
}

nav.navbar .navbar-collapse .navbar-nav .nav-item:hover .nav-link {
    /* color: var(--color-secondary); */
    font-style: italic;
}

nav.navbar .navbar-brand {
    padding-left: 70px;
    cursor: none;
}

/* nav.navbar .navbar-brand img {
    border-left: 1px solid rgba(145, 145, 145, 0.1);
} */

/* Home Swiper */
.home-swiper .swiper-slide {
    position: relative;
}

.home-swiper .home-swiper-1-content {
    position: absolute;
    top: 50%;
    left: 84px;
    transform: translateY(-50%);
}

.home-swiper .home-swiper-1-content ul li {
    color: var(--color-black);
    font-family: "Gibson Regular", sans-serif;
    font-size: 42px;
    font-style: normal;
    font-variant: normal;
    font-weight: 500;
    letter-spacing: normal;
    line-height: 52px;
    text-indent: 0px;
    text-transform: none;
    /* tfosztreh */
    vertical-align: baseline;
    white-space: normal;
    word-spacing: 0px;
    transition: background 0.2s ease;
}

.home-swiper .home-swiper-1-copyright-content {
    position: absolute;
    bottom: 10px;
    left: 86px;
    z-index: 100;
}

.home-swiper .home-swiper-1-copyright-content p {
    font-size: 10px;
    text-transform: lowercase;
}

.home-swiper .home-swiper-1-copyright-content p .center-dot {
    display: inline-block;
    vertical-align: middle;
    font-size: 12px;
    line-height: 1;
    transform: translateY(0px);
}

.home-swiper .swiper-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-swiper .home-swiper-button-prev {
    left: 2em;
}

.home-swiper .home-swiper-button-prev,
.home-swiper .home-swiper-button-next {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
    position: fixed;
    z-index: 9999999999;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
    border: 1px solid #000;
    cursor: pointer;
    visibility: visible !important;
    pointer-events: auto !important;
}

.home-swiper .swiper-button-next::after,
.home-swiper .swiper-button-prev::after {
    display: none;
}

.home-swiper .swiper-button-prev i,
.home-swiper .swiper-button-next i {
    font-size: 20px;
    color: var(--color-black);
}

.home-swiper .image-animation-div {
    height: 50%;
    width: 50%;
    position: absolute;
    top: 50%;
    left: 60%;
    transform: translate(-50%, -50%);
}

.home-swiper .trail-image {
    position: absolute;
    width: 100px;
    height: auto;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.8);
    will-change: transform, opacity;
    z-index: 10;
}

/* Hover Zones */
.home-swiper .left-hover-zone,
.home-swiper .right-hover-zone {
    position: fixed;
    top: 0;
    height: 100vh;
    height: 100dvh;
    width: 15%;
    z-index: 999;
    pointer-events: auto;
}

.home-swiper .left-hover-zone {
    left: 0;
}

.home-swiper .right-hover-zone {
    right: 0;
}

.home-swiper-pagination {
    display: flex;
    position: absolute !important;
    left: 82px !important;
    bottom: 60px !important;
    transform: none !important;
    z-index: 10;
}

.home-swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    border: 1px solid var(--color-black);
    background: transparent;
    opacity: 1;
    margin: 0 8px;
    border-radius: 50%;
    transition: opacity 0.3s;
    /* tfosztreh */
    margin-right: 6px !important;
}

.home-swiper-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--color-black);
}

.video-toggle-icon {
    width: 60px;
    height: 60px;
    pointer-events: none;
    user-select: none;
}

.delice-supermarket-section .custom-bottom-padding img {
    width: 98.6%;
}

/* Home Swiper Slide 2 */
.home-swiper .home-swiper-2-content {
    position: absolute;
    top: 240px;
    right: 5%;
    transform: none;
}

.home-swiper .home-swiper-2-content p {
    color: var(--color-black);
    font-size: 42px;
    font-weight: 500;
    line-height: 52px;
}

/* Home Swiper Slide 3 */
.home-swiper .home-swiper-3-content {
    bottom: 0px;
    z-index: 10;
    cursor: pointer;
    position: fixed;
    z-index: 9999;
    pointer-events: auto;
    display: none;
    transition: top 0.05s ease, left 0.05s ease;
}

.home-swiper .home-swiper-3-content span {
    color: var(--color-primary);
}

.home-swiper .home-swiper-3-content span i {
    font-size: 50px;
    transition: transform 0.3s ease;
}

.home-swiper .home-swiper-3-content span:hover i {
    transform: scale(1.1);
}

body.hide-cursor .cursor {
    display: none !important;
}






.video-thumbnail-container {
    position: relative;
    display: inline-block;
    height: 100%;
    width: 100%;
}

.video-thumbnail-container img.video-thumbnail {
    height: 100%;
    width: 100%;
    display: block;
}

.video-thumbnail-container .video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    cursor: pointer;
}

.video-thumbnail-container .mobile-hidden-video {
    display: none;
    width: 100%;
}

/* Home Swiper Slide 4 */
.home-swiper .home-swiper-4-content {
    position: absolute;
    top: 50%;
    left: 84px;
    transform: translateY(-50%);
}

.home-swiper .home-swiper-4-content .no-div li {
    color: var(--color-black);
    font-size: 24px;
    line-height: 30px;
}

.home-swiper .home-swiper-4-content .goal-div {
    margin-top: 25px !important;
}

.home-swiper .home-swiper-4-content .goal-div li {
    color: var(--color-black);
    font-size: 24px;
    line-height: 30px;
    font-weight: 500;
    font-family: var(--font-gibson-regular);
}

.home-swiper .home-swiper-4-content .goal-div li span.center-dot {
    display: inline-block;
    vertical-align: middle;
    font-size: 15px;
    line-height: 1;
    transform: translateY(1px);
}

/* About Page */
.about-swiper .swiper-slide {
    position: relative;
}

.about-swiper .swiper-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-swiper .about-swiper-1-content {
    position: absolute;
    top: 50%;
    left: 84px;
    transform: translateY(-50%);
}

.about-swiper .about-swiper-1-content .content-div {
    margin-bottom: 25px;
}

.about-swiper .about-swiper-1-content .content-div ul li {
    color: var(--color-black);
    font-size: 24px;
    line-height: 30px;
    /* line-height: 32px; */
    /* font-size: 35px;
    line-height: 40px; */
    font-weight: 500;
}

/* Hover Zones */
.about-swiper .about-left-hover-zone,
.about-swiper .about-right-hover-zone {
    position: fixed;
    top: 0;
    height: 100vh;
    height: 100dvh;
    width: 15%;
    z-index: 999;
    pointer-events: auto;
}

.about-swiper .about-left-hover-zone {
    left: 0;
}

.about-swiper .about-right-hover-zone {
    right: 0;
}

.about-swiper .about-swiper-button-prev {
    left: 2em;
}

.about-swiper .about-swiper-button-prev,
.about-swiper .about-swiper-button-next {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
    position: fixed;
    z-index: 9999999999;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
    border: 1px solid #000;
    cursor: pointer;
    visibility: visible !important;
    pointer-events: auto !important;
}

.about-swiper .swiper-button-next::after,
.about-swiper .swiper-button-prev::after {
    display: none;
}

.about-swiper .swiper-button-prev i,
.about-swiper .swiper-button-next i {
    font-size: 20px;
    color: var(--color-black);
}

/* .about-swiper-button-prev,
.about-swiper-button-next {
    color: var(--color-black);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.about-swiper-button-prev:hover,
.about-swiper-button-next:hover {
    color: rgba(0, 0, 0, 0.6);
    tfosztreh
}

.about-swiper-button-prev::after,
.about-swiper-button-next::after {
    font-size: 60px;
} */

.about-swiper-pagination {
    position: absolute;
    bottom: 60px !important;
    left: 50% !important;
    transform: translateX(-50%);
    z-index: 10;
}

.about-swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    border: 1px solid var(--color-black);
    background: transparent;
    opacity: 1;
    margin: 0 8px;
    border-radius: 50%;
    transition: opacity 0.3s;
    margin-right: 6px !important;
}

.about-swiper-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--color-black);
}

/* About Swiper 2 Slide */
.about-swiper .about-swiper-2-content {
    position: absolute;
    top: 50%;
    left: 84px;
    transform: translateY(-50%);
}

/* .about-swiper .about-swiper-2-content .content-div {
    margin-bottom: 20px;
} */

.about-swiper .about-swiper-2-content .content-div ul.heading li {
    color: var(--color-black);
    font-size: 24px;
    line-height: 30px;
    /* font-size: 32px;
    line-height: 38px; */
    /* font-size: 35px;
    line-height: 40px; */
    font-weight: 500;
}

.about-swiper .about-swiper-2-content .content-div-2 {
    margin-top: 20px !important;
}

/* .about-swiper .about-swiper-2-content .content-div ul.list {
    margin-top: 20px !important;
} */

.about-swiper .about-swiper-2-content .content-div ul.list li {
    color: var(--color-black);
    font-size: 24px;
    line-height: 30px;
    /* font-size: 32px;
    line-height: 38px; */
}

/* About Swiper 3 Slide */
.about-swiper .swiper-slide:nth-child(3) {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--color-black);
}

.about-swiper .about-swiper-3-content .image-container {
    margin-top: 16px;
}

.about-swiper .about-swiper-3-content .image-container .about-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.about-swiper .about-swiper-3-content ul.heading li {
    color: var(--color-white);
    font-size: 35px;
    font-weight: 500;
    line-height: 43px;
}

.about-swiper .about-swiper-3-content ul.details li {
    color: var(--color-white);
    font-size: 20px;
    font-weight: 500;
    margin: 10px 0 40px 0;
}

.about-swiper .about-swiper-3-content ul.social-media {
    display: flex;
    gap: 15px;
    /* tfosztreh */
    /* margin-top: 14px !important; */
    color: var(--color-white);
}

/* About Swiper 4 Slide */
.about-swiper .swiper-slide:nth-child(4) {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--color-black);
}

.about-swiper .about-swiper-4-content .image-container {
    margin-top: 16px;
}

.about-swiper .about-swiper-4-content ul.heading li {
    color: var(--color-white);
    font-size: 35px;
    font-weight: 500;
    line-height: 43px;
}

.about-swiper .about-swiper-4-content ul.details li {
    color: var(--color-white);
    font-size: 20px;
    font-weight: 500;
    margin: 10px 0 40px 0;
}

.about-swiper .about-swiper-4-content ul.social-media {
    display: flex;
    gap: 15px;
    margin-top: 14px !important;
}

.nav-yellow .navbar-collapse .navbar-nav .nav-item .nav-link {
    color: var(--color-white) !important;
}

.nav-yellow .navbar-brand img {
    filter: brightness(0) invert(1);
}

/* Smooth transitions for color changes */
.navbar-nav .nav-link,
.toggle-icon,
.navbar-brand img {
    transition: color 0.3s ease, filter 0.3s ease;
}

/* When navbar is expanded */
.show-bg .navbar-nav .nav-link,
.show-bg .toggle-icon,
.show-bg .navbar-brand img {
    color: black !important;
    /* filter: brightness(0) !important; */
}

/* Contact Section */
.contact-section {
    background: var(--color-black);
}

.contact-section .main-contact-container {
    margin-left: 60px;
}

.contact-section .contact-video-container video {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.contact-section .contact-form-container {
    display: flex;
    justify-content: start;
    align-items: center;
    /* padding: 0 20px 40px 0px; */
    /* tfosztreh */
    /* margin-left: 35px; */
    margin-top: 50px;
}

.contact-section .contact-form-container .contact-form {
    width: 100%;
    /* min-width: 300px;
    max-width: 650px; */
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 30px;
    margin-right: 20px;
}

.contact-section .contact-form-container .contact-form .form-group {
    margin: 10px 0 10px 0;
}

.contact-section .contact-form-container .contact-form .form-title {
    color: var(--color-white);
    font-size: 32px;
    margin-bottom: 20px;
}

.contact-section .contact-form-container .contact-form label {
    color: var(--color-white);
    font-size: 14px;
}

.contact-section .contact-form-container .contact-form input {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--color-white);
    /* padding: 10px 14px; */
    color: var(--color-white);
    font-size: 14px;
    border-radius: 0;
    width: 100%;
}

.contact-section .contact-form-container .contact-form input::placeholder {
    color: var(--color-text-light);
}

.contact-section .contact-form-container .contact-form button {
    background: transparent;
    border: 1px solid var(--color-white);
    color: var(--color-white);
    border-radius: 25px;
    padding: 12px 30px;
    cursor: pointer;
    transition: 0.3s ease;
    font-size: 14px;
}

.contact-section .contact-form-container .contact-form button:hover {
    background: var(--color-white);
    color: var(--color-black);
}

.contact-section .footer-content {
    margin-top: 16px;
}

.contact-section .footer-content p {
    color: var(--color-white);
}

.contact-section .footer-content ul.social-media li a i {
    color: var(--color-white);
    font-size: 14px;
}

.contact-section .contact-details ul li a {
    color: #6a6b70;
    /* color: #525359; */
    font-size: 14px;
}

.contact-section .contact-details ul li a:hover {
    color: #ffffff;
}

.contact-section .copyright {
    margin-top: 25px;
}

.contact-section .copyright p {
    color: #6a6b70;
    /* color: #525359; */
    font-size: 10px;
}

/* Works Section */
.works-section {
    padding-left: 70px;

    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.works-section .work-category-1 ul li {
    color: var(--color-black);
    font-size: 18px;
    line-height: 20px;
    font-weight: 500;
    margin: 6px 0 6px 0;
    transition: all 0.5s ease-in-out;
}

.works-section .work-category-1 ul li:hover {
    font-size: 18px;
}

.works-section .work-category-2 ul li {
    color: var(--color-black);
    font-size: 30px;
    line-height: 36px;
    margin: 6px 0 6px 0;
}

.works-section .work-category-3 ul li {
    color: var(--color-black);
    font-size: 30px;
    line-height: 36px;
    margin: 6px 0 6px 0;
}

.works-section .work-category li.inactive {
    pointer-events: none;
    opacity: 0.4;
    cursor: not-allowed;
}

.works-section .work-category-2 li.active,
.works-section .work-category-3 li.active {
    font-weight: bold;
    color: #000;
}

.works-section .work-category-1 ul li.active {
    font-size: 18px;
    transition: all 0.5s ease-in-out;
}

.works-section .work-category-1 ul li.active a::after {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url('../images/works/others/right-arrow.png');
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 10px;
    vertical-align: middle;
}

/* .works-section .work-category-2 li[data-category="creative-archive"],
.works-section .work-category-3 li[data-category="creative-archive"] {
    display: none;
} */

.works-section .archive-section-disclaimer p {
    font-size: 12px;
    line-height: 16px;
    font-weight: light;
    color: #8c8c81;
}

.mobile-archive-work {
    display: none;
}

.show-archive .mobile-regular-work {
    display: none;
}

.show-archive .mobile-archive-work {
    display: block;
}

.back-to-works {
    /*display: block;*/
    /*text-align: center;*/
    /*padding: 15px;*/
    /*margin: 20px 0 0 0;*/
    /*background: #f0f0f0;*/
    /*border-radius: 4px;*/
    /*font-weight: bold;*/
    /*cursor: pointer;*/
        /* display: block;
    text-align: center;
    padding: 15px;
    margin: 20px 0 0 0;
    background: #f0f0f0;
    border-radius: 4px;
    font-weight: bold; */
        cursor: pointer;
    text-align: center;
    border-top: 1px solid #000000;
    border-bottom: 1px solid #000000;
    padding: 5px 0 5px 0;
    font-size: 18px;
}

.archive-header {
    text-align: center;
    padding: 20px 0;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.mobile-disclaimer p {
    font-size: 12px;
    line-height: 16px;
    font-weight: light;
    color: #8c8c81;
    padding-left: 15px;
}

/* Works Details */
.work-section__parallax {
    height: 100vh;
    height: 100dvh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
}

.work-section__intro {
    padding: 68px;
}

.work-section__description {
    color: var(--color-black);
    font-size: 35px;
    line-height: 1.3;
    font-weight: 500;
    margin: 0;
}

.work-section__tags {
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    color: var(--color-text-muted);
    margin: 25px 0 5px 0;
}

.work-section__client {
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    color: var(--color-text-muted);
    margin: 0px;
}

/* .work-section__image-block {
    padding: 80px 68px;
} */

.work-section__image {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Connaught One Swiper */
.connaught-one-swiper-container {
    padding: 80px 68px;
}

.connaught-one-swiper .swiper-slide {
    width: 100%;
    height: auto;
}

.connaught-one-swiper .swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}


/* .connaught-one-swiper .swiper-slide {
    position: relative;
} */

/* .connaught-one-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
} */

/* .connaught-one-swiper {
    background: red;
} */

.connaught-one-swiper-pagination {
    position: absolute;
    bottom: 60px !important;
    left: 50% !important;
    transform: translateX(-50%);
    z-index: 10;
}

.connaught-one-swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    border: 1px solid var(--color-black);
    background: transparent;
    opacity: 1;
    /* tfosztreh */
    margin: 0 8px;
    border-radius: 50%;
    transition: opacity 0.3s;
    margin-right: 6px !important;
}

.connaught-one-swiper-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--color-black);
}

/* Work Video Play Pause */
.work-video-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 100vh;
    height: 100dvh;
}

.work-video__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    /* right: 1px; */
    top: 0px;
}

.work-video__control-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    color: var(--color-primary);
    cursor: pointer;
    z-index: 2;
    padding: 20px;
    /* tfosztreh */
    border-radius: 50%;
    transition: opacity 0.3s ease;
}

.work-video__control-btn i {
    font-size: 42px;
}

/* MBR Video */
.mbr-video5-container .work-video-wrapper {
    padding: 150px;
    height: inherit;
}

.mbr-video5-container .work-video-wrapper .work-video__video {
    border: 15px solid var(--color-white);
}

/* Rabbit Video */
.rabbit-video3-container .work-video-wrapper {
    height: inherit;
}

/* Contact Form Mailer */
.form-submit-container .form-spinner-wrapper {
    display: none;
    width: 40px;
    height: 40px;
    margin: 10px auto;
}

.form-submit-container .form-spinner-wrapper .form-spinner {
    width: 100%;
    height: 100%;
    border: 4px solid #ffffff;
    border-top: 4px solid #f4bc41;
    border-radius: 50%;
    animation: form-spin 1s linear infinite;
    box-sizing: border-box;
}

.form-submit-container .form-response-message {
    display: none;
    padding: 10px;
    margin: 10px 0;
    border-radius: 4px;
    text-align: center;
    font-weight: bold;
}

.form-submit-container .form-response-message.success {
    color: #28a745;
    background: #e6ffed;
}

.form-submit-container .form-response-message.error {
    color: #dc3545;
    background: #ffebee;
}

@keyframes form-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Mobile Works */
.mobile-works-cards-section {
    padding: 30px 0;
    display: none;
}

@media (max-width: 991px) {
    .works-section {
        display: none;
    }

    .mobile-works-cards-section {
        display: block;
    }
}

.mobile-work-card {
    margin-bottom: 30px;
    position: relative;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    padding: 15px;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.mobile-work-card-img {
    width: 80%;
    height: 100%;
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 0px;
}

.mobile-work-card-img img {
    /* height: 100%;
    width: 100%;
    object-fit: contain; */
    transition: transform 0.3s ease;

    height: 250px;
    width: -webkit-fill-available;
    object-fit: cover;
    border-radius: 0px;
}

.mobile-work-card:hover .mobile-work-card-img img {
    transform: scale(1.05);
}

.mobile-work-card-left {
    align-items: flex-start;
    text-align: left;
}

.mobile-work-card-right {
    align-items: flex-end;
    text-align: right;
}

.mobile-work-card-content {
    width: 100%;
}

.mobile-work-card h3 {
    font-size: 18px;
    margin: 0 0 5px 0;
    font-weight: 600;
    color: #333;
}

.mobile-work-card p {
    font-size: 14px;
    font-style: italic;
    opacity: 0.8;
    text-decoration: underline;
    color: #666;
    margin: 0;
}

.mobile-work-card a {
    text-decoration: none;
    color: inherit;
}

.mobile-work-card a:hover h3 {
    text-decoration: underline;
}


/* Work Circle */
.circle1-col .work-section__image-block .work-section__image {
    padding: 150px 62px 150px 62px;
}

.circle3-col .work-section__image-block .work-section__image {
    padding: 150px 62px 150px 62px;
}

.circle4-col .work-section__image-block .work-section__image {
    padding: 150px 62px 150px 62px;
}

.circle5-col .work-section__image-block .work-section__image {
    padding: 150px 62px 150px 62px;
}

.circle6-col .work-section__image-block .work-section__image {
    padding: 150px 62px 150px 62px;
}

/* Work Connaught One */
.connaught-one1-col .work-section__image-block .work-section__image {
    padding: 150px 62px 150px 0px;
}

.connaught-one2-col .work-section__image-block .work-section__image {
    padding: 150px 60px 150px 0px;
}

.connaught-one-swiper-container {
    padding: 160px 50px 190px 50px;
}

.connaught-one10-col .work-section__image-block .work-section__image {
    margin: 0 0 25px 0;
}

.connaught-one11-col .work-section__image-block .work-section__image {
    margin: 0 0 25px 0;
}

.connaught-one12-col .work-section__image-block .work-section__image {
    margin: 25px 0 0 0;
}

.connaught-one13-col .work-section__image-block .work-section__image {
    margin: 25px 0 0 0;
}

/* Rabbit */
.rabbit2-section {
    margin: 80px 0 80px 0;
}

.rabbit-video3-section {
    padding: 100px 0 100px 0 !important;
}

/* Rasasi */
.rasasi1-section {
    margin: 80px 0 80px 0;
}

.rasasi3-section {
    margin: 80px 0 80px 0;
}

.rasasi5-section {
    margin: 80px 0 80px 0;
}

.rasasi6-section {
    margin: 80px 0 0 0;
}

.rasasi7-col {
    margin: 0 0 80px 0;
}

/* Hide mobile images on desktop */
.work-section__image[src*="Mobile"] {
    display: none;
}

@media (max-width: 768px) {
    .work-section__image[src*="Mobile"] {
        display: block;
    }

    .work-section__image[src*="Desk"] {
        display: none;
    }
}