/*-----------------------------------------------------------------------------------

    Template Name: Budgeto - Business Consulting HTML Template
    Author: Theme_Pure
    Support: https://help.themepure.net/support/
    Description: Template
    Version: 1.0.1

-----------------------------------------------------------------------------------

/************ TABLE OF CONTENTS ***************

	-----------------
    01. THEME CSS
	-----------------
		1.1 Common Classes
		1.2 init style

	-----------------
    02. COMPONENTS css
	-----------------
		2.1 Animations
		2.2 Back to top
		2.3 Breadcrumb
		2.4 Buttons
		2.5 instagram
		2.6 Nice Select
		2.7 offcanvas
		2.8 Pagination
		2.9 Preloader
		2.10 Search css start
		2.11 Section Title
		2.12 spacing

	-----------------
    03. HEADER CSS
	-----------------
		3.1 Header Style 1


    ---------------------------------
	04. MENU CSS
	---------------------------------
		4.1 Main menu css
		4.2 Mobilemenu css

	---------------------------------
	05. BLOG CSS
	---------------------------------
		5.1 blog start
		5.2 Postbox css
		5.3 Sidebar css

	---------------------------------
	06. FOOTER CSS
	---------------------------------
		6.1 Footer Style 1

	---------------------------------
	07. PAGES CSS
	---------------------------------
		7.1 about start
		7.2 banner start
		7.3 benifits start
		7.4 brand start
		7.5 pricing start
		7.6 contact start
		7.7 counter start
		7.8 cta start
		7.9 error start
		7.10 faq start
		7.11 feature start
		7.12 Hero css start
		7.13 industry start
		7.14 join start
		7.15 policy start
		7.16 pricing start
		7.17 progress start
		7.18 progress start
		7.19 project start
		7.20 service start
		7.21 success start
		7.22 team start
		7.23 industry start
		7.24 video start



**********************************************/
/*----------------------------------------*/
/*  Theme Default
/*----------------------------------------*/
.back-to-top-wrapper,
a,
button,
p,
input,
select,
textarea,
li,
.transition-3 {
    -webkit-transition: all 0.3s 0s ease-out;
    -moz-transition: all 0.3s 0s ease-out;
    -ms-transition: all 0.3s 0s ease-out;
    -o-transition: all 0.3s 0s ease-out;
    transition: all 0.3s 0s ease-out;
}

/* transform */
:root {
    /**
  @font family declaration
  */
    --primary-font: "Cormorant", serif;
    --secondary-font: "Jost", sans-serif;
    /**
  @color declaration
  */
    --tp-common-white: #fff;
    --tp-common-black: #000;
    --tp-common-white-2: #f6f6f6;
    --tp-common-yellow: #fdc93a;
    --tp-grey-1: #52595a;
    --tp-grey-2: #354c4c;
    --divider-color: rgba(232, 206, 145, 0.6);
    --tp-theme-primary: #d6b469;
    --tp-theme-secondary: #dad6c2;
    --tp-theme-tertiary: #f6f1e8;
    /* --tp-theme-tertiary: #f2f1eb; */
    --tp-theme-quaternary: #121d23;
    --tp-border-1: rgba(31, 49, 48, 0.1);
    --tp-border-2: rgba(31, 49, 48, 0.12);
    --tp-border-3: rgba(255, 255, 255, 0.55);
    --tp-border-4: rgba(255, 255, 255, 0.6);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*---------------------------------
	typography css start
---------------------------------*/
body {
    font-family: var(--secondary-font);
    font-size: 16px;
    font-weight: normal;
    line-height: 26px;
}

a {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--primary-font);
    margin-top: 0px;
    font-weight: 400;
    line-height: 1.2em;
    -webkit-transition: color 0.3s 0s ease-out;
    -moz-transition: color 0.3s 0s ease-out;
    -ms-transition: color 0.3s 0s ease-out;
    -o-transition: color 0.3s 0s ease-out;
    transition: color 0.3s 0s ease-out;
}

h1 {
    font-size: 70px;
}

h2 {
    font-size: 50px;
}

h3 {
    font-size: 36px;
}

h4 {
    font-size: 26px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 16px;
}

ul {
    margin: 0px;
    padding: 0px;
}

p {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6em;
    margin-bottom: 1.4em;
}

img {
    max-width: 100%;
    /* border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px; */
}

figure {
    margin: 0;
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
    color: inherit;
    text-decoration: none;
}

a:focus,
.button:focus {
    text-decoration: none;
    outline: none;
}

a:focus,
a:hover {
    text-decoration: none;
}

a,
button {
    color: inherit;
    outline: none;
    border: none;
    background: transparent;
}

button:hover {
    cursor: pointer;
}

button:focus {
    outline: 0;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
input[type="url"],
textarea {
    outline: none;
    background-color: #fff;
    height: 52px;
    width: 100%;
    line-height: 52px;
    font-size: 16px;
    color: var(--tp-theme-primary);
    padding-left: 25px;
    padding-right: 25px;
    border-radius: 4px;
    border: 1px solid var(--tp-common-white);
}

input[type="text"]::-webkit-input-placeholder,
input[type="email"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder,
input[type="url"]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: var(--tp-grey-2);
}

input[type="text"]::-moz-placeholder,
input[type="email"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="password"]::-moz-placeholder,
input[type="url"]::-moz-placeholder,
textarea::-moz-placeholder {
    /* Firefox 19+ */
    color: var(--tp-grey-2);
}

input[type="text"]:-moz-placeholder,
input[type="email"]:-moz-placeholder,
input[type="tel"]:-moz-placeholder,
input[type="number"]:-moz-placeholder,
input[type="password"]:-moz-placeholder,
input[type="url"]:-moz-placeholder,
textarea:-moz-placeholder {
    /* Firefox 4-18 */
    color: var(--tp-grey-2);
}

input[type="text"]:-ms-input-placeholder,
input[type="email"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder,
input[type="url"]:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    /* IE 10+  Edge*/
    color: var(--tp-grey-2);
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="tel"]::placeholder,
input[type="number"]::placeholder,
input[type="password"]::placeholder,
input[type="url"]::placeholder,
textarea::placeholder {
    /* MODERN BROWSER */
    color: var(--tp-grey-2);
}

[dir="rtl"] input[type="text"],
[dir="rtl"] input[type="email"],
[dir="rtl"] input[type="tel"],
[dir="rtl"] input[type="number"],
[dir="rtl"] input[type="password"],
[dir="rtl"] input[type="url"],
[dir="rtl"] textarea {
    text-align: right;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="url"]:focus,
textarea:focus {
    border-color: var(--tp-theme-primary);
}

input[type="text"]:focus::placeholder,
input[type="email"]:focus::placeholder,
input[type="tel"]:focus::placeholder,
input[type="number"]:focus::placeholder,
input[type="password"]:focus::placeholder,
input[type="url"]:focus::placeholder,
textarea:focus::placeholder {
    opacity: 0;
}

textarea {
    line-height: 1.4;
    padding-top: 17px;
    padding-bottom: 17px;
}

input[type="color"] {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: none;
    border: 0;
    cursor: pointer;
    height: 100%;
    width: 100%;
    padding: 0;
    border-radius: 50%;
}

/* *::-moz-selection {
  background: var(--tp-theme-primary);
  color: var(--tp-common-white);
  text-shadow: none;
}

::-moz-selection {
  background: var(--tp-theme-primary);
  color: var(--tp-common-white);
  text-shadow: none;
}

::selection {
  background: var(--tp-theme-primary);
  color: var(--tp-common-white);
  text-shadow: none;
} */

*::-moz-placeholder {
    color: var(--tp-theme-primary);
    font-size: 14px;
    opacity: 1;
}

*::placeholder {
    color: var(--tp-theme-primary);
    font-size: 14px;
    opacity: 1;
}

/*---------------------------------
    Common Classes
---------------------------------*/
section {
    padding: 60px 0;
}

@media only screen and (max-width: 991px) {
    section {
        padding: 30px 0;
    }
}

.w-img img {
    width: 100%;
}

.m-img img {
    max-width: 100%;
}

.image-anime {
    position: relative;
    overflow: hidden;
}

.image-anime:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.reveal {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}

.reveal img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

.fix {
    overflow: hidden;
}

.clear {
    clear: both;
}

.overflow-y-visible {
    overflow-x: hidden;
    overflow-y: visible;
}

.p-relative {
    position: relative;
}

.p-absolute {
    position: absolute;
}

.p-inherit {
    position: inherit !important;
}

.bg-position {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.underline-black {
    background-image:
        linear-gradient(#1f3130, #1f3130), linear-gradient(#1f3130, #1f3130);
    background-size:
        0 1px,
        0 1px;
    background-position:
        100% 100%,
        0 100%;
    background-repeat: no-repeat;
    transition: background-size 0.3s linear;
    -webkit-transition: all 0.4s ease 0.3s 0s ease-out;
    -moz-transition: all 0.4s ease 0.3s 0s ease-out;
    -ms-transition: all 0.4s ease 0.3s 0s ease-out;
    -o-transition: all 0.4s ease 0.3s 0s ease-out;
    transition: all 0.4s ease 0.3s 0s ease-out;
}

.underline-black:hover {
    background-image:
        linear-gradient(#1f3130, #1f3130), linear-gradient(#1f3130, #1f3130);
    background-size:
        0 1px,
        100% 1px;
    background-position:
        100% 100%,
        0 100%;
    background-repeat: no-repeat;
    transition: background-size 0.3s linear;
    -webkit-transition: all 0.4s ease 0.3s 0s ease-out;
    -moz-transition: all 0.4s ease 0.3s 0s ease-out;
    -ms-transition: all 0.4s ease 0.3s 0s ease-out;
    -o-transition: all 0.4s ease 0.3s 0s ease-out;
    transition: all 0.4s ease 0.3s 0s ease-out;
}

.underline-white {
    background-image: linear-gradient(#fff, #fff), linear-gradient(#fff, #fff);
    background-size:
        0 1px,
        0 1px;
    background-position:
        100% 100%,
        0 100%;
    background-repeat: no-repeat;
    transition: background-size 0.3s linear;
    -webkit-transition: all 0.4s ease 0.3s 0s ease-out;
    -moz-transition: all 0.4s ease 0.3s 0s ease-out;
    -ms-transition: all 0.4s ease 0.3s 0s ease-out;
    -o-transition: all 0.4s ease 0.3s 0s ease-out;
    transition: all 0.4s ease 0.3s 0s ease-out;
}

.underline-white:hover {
    background-image: linear-gradient(#fff, #fff), linear-gradient(#fff, #fff);
    background-size:
        0 1px,
        100% 1px;
    background-position:
        100% 100%,
        0 100%;
    background-repeat: no-repeat;
    transition: background-size 0.3s linear;
    -webkit-transition: all 0.4s ease 0.3s 0s ease-out;
    -moz-transition: all 0.4s ease 0.3s 0s ease-out;
    -ms-transition: all 0.4s ease 0.3s 0s ease-out;
    -o-transition: all 0.4s ease 0.3s 0s ease-out;
    transition: all 0.4s ease 0.3s 0s ease-out;
}

.hover-text-secondary:hover {
    color: var(--tp-theme-quaternary);
}

.hover-text-primary:hover {
    color: var(--tp-theme-primary);
}

.hover-bg-primary:hover {
    background: var(--tp-theme-primary);
}

.hover-bg-secondary:hover {
    background: var(--tp-theme-quaternary);
}

.hover-bg-white:hover {
    background: var(--tp-common-white-2);
}

.tp-transparent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 3;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
    only screen and (min-width: 992px) and (max-width: 1199px),
    only screen and (min-width: 768px) and (max-width: 991px),
    only screen and (min-width: 576px) and (max-width: 767px),
    (max-width: 574.98px) {
    .br br {
        display: none;
    }
}

.slide-transtion {
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
}

/*---------------------------------
  init style
---------------------------------*/
.container {
    max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    padding-right: 15px;
    padding-left: 15px;
}

.row {
    margin-right: -15px;
    margin-left: -15px;
}

.row > * {
    padding-right: 15px;
    padding-left: 15px;
}

.row.no-gutters {
    margin-right: 0px;
    margin-left: 0px;
}

.row.no-gutters > * {
    padding-right: 0px;
    padding-left: 0px;
}

.tp-text-common-white {
    color: var(--tp-common-white);
}

.tp-bg-common-white {
    background-color: var(--tp-common-white);
}

.tp-text-common-black {
    color: var(--tp-common-black);
}

.tp-bg-common-black {
    background-color: var(--tp-common-black);
}

.tp-text-common-white-2 {
    color: var(--tp-common-white-2);
}

.tp-bg-common-white-2 {
    background-color: var(--tp-common-white-2);
}

.tp-text-common-yellow {
    color: var(--tp-common-yellow);
}

.tp-bg-common-yellow {
    background-color: var(--tp-common-yellow);
}

.tp-text-grey-1 {
    color: var(--tp-grey-1);
}

.tp-bg-grey-1 {
    background-color: var(--tp-grey-1);
}

.tp-text-grey-2 {
    color: var(--tp-grey-2);
}

.tp-bg-grey-2 {
    background-color: var(--tp-grey-2);
}

.tp-text-theme-primary {
    color: var(--tp-theme-primary);
}

.tp-bg-theme-primary {
    background-color: var(--tp-theme-primary);
}

.tp-text-theme-secondary {
    color: var(--tp-theme-secondary);
}

.tp-bg-theme-secondary {
    background-color: var(--tp-theme-secondary);
}

.tp-text-theme-tertiary {
    color: var(--tp-theme-tertiary);
}

.tp-bg-theme-tertiary {
    background-color: var(--tp-theme-tertiary);
}

.tp-text-theme-quaternary {
    color: var(--tp-theme-quaternary);
}

.tp-bg-theme-quaternary {
    background-color: var(--tp-theme-quaternary);
}

/*----------------------------------------*/
/*  Back to top
/*----------------------------------------*/
.back-to-top-wrapper {
    position: fixed;
    right: 50px;
    bottom: 0;
    height: 44px;
    width: 44px;
    cursor: pointer;
    display: block;
    border-radius: 50%;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
}

@media (max-width: 574.98px) {
    .back-to-top-wrapper {
        right: 20px;
        bottom: 20px;
    }
}

.back-to-top-wrapper.back-to-top-btn-show {
    visibility: visible;
    opacity: 1;
    bottom: 50px;
}

.back-to-top-btn {
    display: inline-block;
    width: 44px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    background: var(--tp-theme-quaternary);
    box-shadow: 0px 8px 16px rgba(3, 4, 28, 0.3);
    color: var(--tp-theme-primary);
    border-radius: 50%;
    -webkit-transition: all 0.3s 0s ease-out;
    -moz-transition: all 0.3s 0s ease-out;
    -ms-transition: all 0.3s 0s ease-out;
    -o-transition: all 0.3s 0s ease-out;
    transition: all 0.3s 0s ease-out;
}

.back-to-top-btn svg {
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
    transform: translateY(-2px);
}

.back-to-top-btn:hover {
    -webkit-transform: translateY(-4px);
    -moz-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    -o-transform: translateY(-4px);
    transform: translateY(-4px);
}

/*----------------------------------------*/
/*  Buttons
/*----------------------------------------*/
.btn-default {
    position: relative;
    display: inline-block;
    font-size: 20px;
    font-weight: 400;
    line-height: 1em;
    text-transform: capitalize;
    background: linear-gradient(
        90deg,
        var(--tp-theme-primary) 0%,
        var(--tp-theme-primary) 50%,
        var(--tp-theme-primary) 100%
    );
    background-size: 200% auto;
    color: var(--tp-common-white);
    border: none;
    border-radius: 100px;
    padding: 15px 25px;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    z-index: 1;
    /* font-family: var(--primary-font); */
}

.btn-default:hover {
    background-position: right center;
}

.btn-default.btn-highlighted {
    background: transparent;
    border: 1px solid var(--tp-theme-primary);
    color: var(--tp-theme-primary);
    padding: 16px 30px;
}

.btn-default.btn-highlighted:hover {
    color: var(--tp-common-white);
}

.btn-default.btn-highlighted:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    right: 50%;
    opacity: 0;
    background: linear-gradient(
        90deg,
        var(--tp-theme-primary) 0%,
        var(--tp-theme-primary) 100%
    );
    border-radius: 100px;
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.btn-default.btn-highlighted:hover:before {
    left: -5px;
    right: -5px;
    opacity: 1;
}

/*----------------------------------------*/
/*  Animations
/*----------------------------------------*/
/* zoom effect animation */
@keyframes zoom {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

/* animate-pulse */
@keyframes animate-pulse {
    0% {
        box-shadow:
            0 0 0 0 rgba(255, 255, 255, 0.8),
            0 0 0 0 rgba(255, 255, 255, 0.8);
    }

    40% {
        box-shadow:
            0 0 0 50px rgba(255, 109, 74, 0),
            0 0 0 0 rgba(255, 255, 255, 0.8);
    }

    80% {
        box-shadow:
            0 0 0 50px rgba(255, 109, 74, 0),
            0 0 0 30px rgba(255, 109, 74, 0);
    }

    100% {
        box-shadow:
            0 0 0 0 rgba(255, 109, 74, 0),
            0 0 0 30px rgba(255, 109, 74, 0);
    }
}

@keyframes slide-progress {
    0% {
        transform: translateX(-100%);
        width: 0;
    }

    100% {
        transform: translateX(0);
        width: 100%;
    }
}

@-webkit-keyframes tpshake {
    10% {
        transform: translateY(-10px);
    }

    50% {
        transform: skew(15deg);
    }

    80% {
        transform: rotate(10deg);
    }

    100% {
        transform: translate(0);
    }
}

@-moz-keyframes tpshake {
    10% {
        transform: translateY(-10px);
    }

    50% {
        transform: skew(15deg);
    }

    80% {
        transform: rotate(10deg);
    }

    100% {
        transform: translate(0);
    }
}

@-ms-keyframes tpshake {
    10% {
        transform: translateY(-10px);
    }

    50% {
        transform: skew(15deg);
    }

    80% {
        transform: rotate(10deg);
    }

    100% {
        transform: translate(0);
    }
}

@keyframes tpshake {
    10% {
        transform: translateY(-10px);
    }

    50% {
        transform: skew(15deg);
    }

    80% {
        transform: rotate(10deg);
    }

    100% {
        transform: translate(0);
    }
}

.tpshake {
    transition: all 0.4s ease;
}

.tpshake-wrap:hover .tpshake {
    animation-name: tpshake;
    animation-timing-function: ease-in-out;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
}

@keyframes wobble_vertical {
    16.65% {
        transform: translateY(8px);
    }

    33.3% {
        transform: translateY(-6px);
    }

    49.95% {
        transform: translateY(4px);
    }

    66.6% {
        transform: translateY(-2px);
    }

    83.25% {
        transform: translateY(1px);
    }

    100% {
        transform: translateY(0);
    }
}

.tpshake-wrap-2:hover .tpshake-2 {
    animation-name: wobble_vertical;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1;
}

@-webkit-keyframes rotate-infinite {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@-moz-keyframes rotate-infinite {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@-ms-keyframes rotate-infinite {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotate-infinite {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.rotate-infinite {
    -webkit-animation: rotate-infinite 15s linear infinite;
    animation: rotate-infinite 15s linear infinite;
}

/*img-animation**********************/
.img-custom-anim-right {
    animation: img-anim-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1)
        0.4s;
    opacity: 0;
}

@keyframes img-anim-right {
    0% {
        transform: translateX(5%);
        clip-path: inset(0 0 0 100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

.img-custom-anim-left {
    animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1)
        0.4s;
    opacity: 0;
}

@keyframes img-anim-left {
    0% {
        transform: translateX(-5%);
        clip-path: inset(0 100% 0 0);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

.img-custom-anim-top {
    animation: img-anim-top 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
    opacity: 0;
}

@keyframes img-anim-top {
    0% {
        transform: translateY(-5%);
        clip-path: inset(0 0 100% 0);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

@-webkit-keyframes tpSwing {
    0% {
        -webkit-transform: rotate(6deg);
        -moz-transform: rotate(6deg);
        -ms-transform: rotate(6deg);
        -o-transform: rotate(6deg);
        transform: rotate(6deg);
    }

    100% {
        -webkit-transform: rotate(-6deg);
        -moz-transform: rotate(-6deg);
        -ms-transform: rotate(-6deg);
        -o-transform: rotate(-6deg);
        transform: rotate(-6deg);
    }
}

@-moz-keyframes tpSwing {
    0% {
        -webkit-transform: rotate(6deg);
        -moz-transform: rotate(6deg);
        -ms-transform: rotate(6deg);
        -o-transform: rotate(6deg);
        transform: rotate(6deg);
    }

    100% {
        -webkit-transform: rotate(-6deg);
        -moz-transform: rotate(-6deg);
        -ms-transform: rotate(-6deg);
        -o-transform: rotate(-6deg);
        transform: rotate(-6deg);
    }
}

@-ms-keyframes tpSwing {
    0% {
        -webkit-transform: rotate(6deg);
        -moz-transform: rotate(6deg);
        -ms-transform: rotate(6deg);
        -o-transform: rotate(6deg);
        transform: rotate(6deg);
    }

    100% {
        -webkit-transform: rotate(-6deg);
        -moz-transform: rotate(-6deg);
        -ms-transform: rotate(-6deg);
        -o-transform: rotate(-6deg);
        transform: rotate(-6deg);
    }
}

@keyframes tpSwing {
    0% {
        -webkit-transform: rotate(6deg);
        -moz-transform: rotate(6deg);
        -ms-transform: rotate(6deg);
        -o-transform: rotate(6deg);
        transform: rotate(6deg);
    }

    100% {
        -webkit-transform: rotate(-6deg);
        -moz-transform: rotate(-6deg);
        -ms-transform: rotate(-6deg);
        -o-transform: rotate(-6deg);
        transform: rotate(-6deg);
    }
}

.tpswing {
    animation: tpSwing 2s linear infinite alternate;
}

@keyframes tptranslateX2 {
    0% {
        transform: translateX(-30px);
    }

    to {
        transform: translateX(20px);
    }
}

.tptranslateX2 {
    animation: tptranslateX2 4s infinite alternate;
}

@keyframes tptranslateY2 {
    0% {
        transform: translateY(-30px);
    }

    to {
        transform: translateY(20px);
    }
}

.tptranslateY2 {
    animation: tptranslateY2 4s infinite alternate forwards;
}

@keyframes headerSlideDown {
    0% {
        margin-top: -150px;
    }

    100% {
        margin-top: 0;
    }
}

/*----------------------------------------*/
/*  Preloader
/*----------------------------------------*/
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--tp-theme-primary);
}

.loading {
    width: 60px;
    aspect-ratio: 2;
    --_g: no-repeat radial-gradient(circle closest-side, #f8d0b3 90%, #0000);
    background:
        var(--_g) 0% 50%,
        var(--_g) 50% 50%,
        var(--_g) 100% 50%;
    background-size: 33.3333333333% 50%;
    animation: l3 1s infinite linear;
}

@keyframes l3 {
    20% {
        background-position:
            0% 0%,
            50% 50%,
            100% 50%;
    }

    40% {
        background-position:
            0% 100%,
            50% 0%,
            100% 50%;
    }

    60% {
        background-position:
            0% 50%,
            50% 100%,
            100% 0%;
    }

    80% {
        background-position:
            0% 50%,
            50% 50%,
            100% 100%;
    }
}

/*----------------------------------------*/
/*  offcanvas
/*----------------------------------------*/
.body-overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 995;
    width: 100%;
    height: 100%;
    background-color: rgba(31, 49, 48, 0.8);
    visibility: hidden;
    opacity: 0;
    transition: 0.45s ease-in-out;
}

.body-overlay.apply {
    opacity: 1;
    visibility: visible;
}

.body-overlay:hover {
    cursor: url(../img/cross-icon/cross-out.png), pointer;
}

.tpoffcanvas {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: fixed;
    top: 0;
    right: -100%;
    width: 480px;
    bottom: 0;
    box-shadow: 0 16px -32px 0 rgba(0, 0, 0, 0.8);
    background-color: var(--tp-theme-tertiary);
    z-index: 997;
    padding: 26px;
    scrollbar-width: none;
    opacity: 0;
    visibility: hidden;
    transition: 0.45s ease-in-out;
    overflow-y: scroll;
}

.tpoffcanvas .homemenu {
    margin-bottom: 30px;
}

.tpoffcanvas .homemenu-title {
    color: var(--tp-common-white);
}

.tpoffcanvas .tp-main-menu-mobile {
    margin-bottom: 30px;
}

.tpoffcanvas.opened {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 574.98px) {
    .tpoffcanvas {
        width: 100%;
        padding: 15px 15px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tpoffcanvas {
        width: 400px;
        padding: 40px;
    }
}

.tpoffcanvas.opened {
    right: 0;
    -webkit-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -moz-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition-duration: 0.6s;
}

.tpoffcanvas-btn {
    padding: 18px 40px;
    background: var(--tp-theme-primary);
    display: inline-block;
    font-size: 16px;
    letter-spacing: 0px;
    line-height: 20px;
    color: var(--tp-common-white);
    font-weight: 500;
    position: relative;
    transition: all 0.3s linear;
    overflow: hidden;
    z-index: 1;
    line-height: 1;
    width: 100%;
    text-align: center;
    border-radius: 50px;
}

.tpoffcanvas-btn:hover {
    background: var(--tp-theme-quaternary);
    color: var(--tp-theme-primary);
}

.tpoffcanvas__contact-title h5 {
    font-size: 18px;
    color: var(--tp-common-black);
    font-weight: 500;
    margin-bottom: 30px;
    display: inline-block;
}

.tpoffcanvas__contact-info {
    margin-bottom: 30px;
}

.tpoffcanvas__contact-info ul li {
    font-size: 16px;
    color: var(--tp-common-black);
    margin-bottom: 15px;
    list-style-type: none;
}

.tpoffcanvas__contact-info ul li i {
    width: 16px;
    transform: translateY(5px);
    line-height: 1;
}

@media (max-width: 574.98px) {
    .tpoffcanvas__contact-info ul li {
        font-size: 14px;
    }
}

.tpoffcanvas__contact-info ul li:last-child {
    margin-bottom: 0;
}

.tpoffcanvas__contact-info ul li a {
    margin-left: 10px;
    transition: 0.3s;
}

.tpoffcanvas__contact-info ul li a:hover {
    color: var(--tp-theme-quaternary);
}

.tpoffcanvas__logo {
    margin-bottom: 50px;
}

.tpoffcanvas__logo a img {
    border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    -ms-border-radius: 0 !important;
    -o-border-radius: 0 !important;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tpoffcanvas__logo {
        padding-top: 0;
    }
}

@media (max-width: 574.98px) {
    .tpoffcanvas__logo {
        padding-top: 0;
    }
}

@media (max-width: 574.98px) {
    .tpoffcanvas__logo img {
        width: 150px;
    }
}

.tpoffcanvas__close-btn button {
    position: absolute;
    right: 15px;
    top: 25px;
    transition: 0.4s;
    -webkit-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -moz-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition-duration: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 48px;
    width: 48px;
    border: 1px solid var(--tp-theme-primary);
    color: var(--tp-theme-primary);
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.tpoffcanvas__close-btn button:hover {
    background-color: var(--tp-theme-primary);
    color: var(--tp-common-white);
    border-color: var(--tp-theme-primary);
}

.tpoffcanvas__close-btn button i {
    font-weight: 300;
    font-size: 20px;
    transition: 0.4s;
}

.tpoffcanvas__social {
    margin-top: 30px;
}

.tpoffcanvas__social .social-icon {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tpoffcanvas__social .social-icon a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 48px;
    width: 48px;
    text-align: center;
    font-size: 16px;
    border: 1px solid var(--tp-theme-primary);
    color: var(--tp-theme-primary);
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

@media (max-width: 574.98px) {
    .tpoffcanvas__social .social-icon a {
        margin-right: 3px;
        height: 50px;
        width: 50px;
        line-height: 53px;
        font-size: 15px;
    }
}

.tpoffcanvas__social .social-icon a:hover {
    background-color: var(--tp-theme-primary);
    color: var(--tp-common-white);
    border-color: var(--tp-theme-primary);
}

.tp-offcanvas-menu ul li .tp-submenu .homemenu {
    position: relative;
}

.tp-offcanvas-menu ul li .tp-submenu .homemenu.comeing-soon .homemenu-thumb {
    position: relative;
}

.tp-offcanvas-menu
    ul
    li
    .tp-submenu
    .homemenu.comeing-soon
    .homemenu-thumb::before {
    position: absolute;
    z-index: 22;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    backdrop-filter: blur(6px);
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
}

.tp-offcanvas-menu ul li .tp-submenu .homemenu:hover .homemenu-btn {
    opacity: 1;
    visibility: visible;
    top: 50%;
}

.tp-offcanvas-menu ul li .tp-submenu .homemenu-btn {
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
    (max-width: 574.98px) {
    .tp-offcanvas-menu ul li .tp-submenu .homemenu-btn .tp-btn-lg {
        padding: 12px 17px;
        font-size: 14px;
    }
}

/*----------------------------------------*/
/*  Section Title
/*----------------------------------------*/
.section-row {
    margin-bottom: 80px;
}

.section-row .tp-section-title {
    margin-bottom: 0;
}

.section-row .tp-section-title {
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
}

.section-btn {
    text-align: end;
}

.tp-section-title-content p {
    margin: 0;
}

.tp-section-title {
    margin-bottom: 30px;
}

.tp-section-title h3 {
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6em;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--tp-theme-primary);
    font-family: var(--secondary-font);
    margin-bottom: 10px;
}

.tp-section-title h3 svg {
    height: 1em;
}

.tp-section-title h1 {
    font-family: var(--primary-font);
    font-size: 55px;
    text-transform: uppercase;
    font-weight: 800;
    line-height: 1.1em;
    margin-bottom: 0;
    text-align: center;
}

.tp-section-title h1 span {
    color: var(--tp-theme-primary);
}

.tp-section-title h2 {
    font-family: var(--primary-font);
    font-size: 44px;
    letter-spacing: -2px;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 0;
}

.tp-section-title h2 span {
    color: var(--tp-theme-primary);
}

.tp-section-title p {
    margin-top: 20px;
    margin-bottom: 0;
}

@media only screen and (max-width: 991px) {
    .section-row {
        margin-bottom: 40px;
    }

    .section-row .tp-section-title {
        max-width: 100%;
    }

    .tp-section-title h1 {
        font-size: 50px;
    }

    .tp-section-title h2 {
        font-size: 34px;
    }

    .tp-section-title p {
        margin-top: 15px;
    }

    .tp-section-title-content {
        margin-left: 0;
        margin-top: 15px;
    }
}

@media only screen and (max-width: 767px) {
    .tp-section-title h1 {
        font-size: 30px;
    }

    .tp-section-title h2 {
        font-size: 26px;
    }
}

/*----------------------------------------*/
/*  Magic Cursor css start
/*----------------------------------------*/
body.tp-magic-cursor #magic-cursor {
    display: block;
}

#magic-cursor {
    position: absolute;
    display: none;
    width: 10px;
    height: 10px;
    pointer-events: none;
    z-index: 99999;
    opacity: 0;
    top: 0;
    left: 0;
}

#ball {
    position: fixed;
    display: flex;
    align-items: center;
    pointer-events: none;
    border-radius: 50%;
    color: transparent;
    justify-content: center;
    mix-blend-mode: difference;
    background-color: var(--tp-common-black);
}

.cursor-white-bg #ball .ball-view {
    color: var(--tp-common-black);
}

/* Ball view
============= */
#ball .ball-view {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    padding: 0 5px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.1;
    text-align: center;
    transform: scale(0);
    font-family: var(--tp-ff-heading);
    color: var(--tp-common-black);
}

/* Ball drag
============= */
#ball .ball-drag {
    position: absolute;
    display: block;
    width: 100%;
    padding: 0 5px;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    transition: all 0.3s;
    color: var(--tp-common-black);
}

#ball .ball-drag::before,
#ball .ball-drag::after {
    position: absolute;
    top: 50%;
    margin-top: -5px;
    font-size: 19px;
    font-weight: 600;
    height: 10px;
    line-height: 10px;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    color: var(--tp-common-white);
    font-family: "Font Awesome 6 Pro";
    -webkit-font-smoothing: antialiased;
}

#ball .ball-drag::before {
    content: "\f104";
    left: 0;
    transform: translate3d(-30px, 0, 0);
    transition: all 0.25s;
}

#ball .ball-drag::after {
    content: "\f105";
    right: 0;
    transform: translate3d(30px, 0, 0);
    transition: all 0.25s;
}

#ball.with-blur {
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

/* Ball close
============== */
#ball.ball-close-enabled {
    opacity: 1 !important;
}

#ball .ball-close {
    position: absolute;
    padding: 0 5px;
    font-size: 19px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    color: var(--tp-common-black);
}

.tp-magnetic-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

/*----------------------------------------*/
/*  Header Style 1
/*----------------------------------------*/
.tp-header-top-info ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

.tp-header-top-info ul li {
    font-weight: 400;
    font-size: 16px;
    color: var(--tp-common-white);
    list-style: none;
    display: flex;
    align-items: center;
}

.tp-header-top-info ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tp-header-top-info ul li a:hover {
    color: var(--tp-theme-quaternary);
}

.tp-header-top-info ul li a svg {
    color: var(--tp-theme-quaternary);
}

.tp-header-top-info ul li .tp-border {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.4);
}

.tp-header-top-selected-lang::after {
    position: absolute;
    transition: all 0.3s ease;
    content: "\f107";
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    color: var(--tp-common-white);
    font-size: 14px;
    font-family: var(--tp-ff-fontawesome);
}

.tp-header-top-lang-list {
    position: absolute;
    top: 120%;
    right: 0;
    background-color: var(--tp-common-white);
    z-index: 11;
    padding: 15px 15px;
    min-width: 100px;
    visibility: hidden;
    opacity: 0;
    box-shadow: 0px 20px 30px rgba(3, 4, 28, 0.1);
    transition: all 0.2s ease-out 0s;
}

.tp-header-top-lang-list li {
    list-style: none;
    color: var(--tp-theme-primary);
    text-align: left;
    font-size: 16px;
    cursor: pointer;
    -webkit-transition: all 0.3s 0s ease-out;
    -moz-transition: all 0.3s 0s ease-out;
    -ms-transition: all 0.3s 0s ease-out;
    -o-transition: all 0.3s 0s ease-out;
    transition: all 0.3s 0s ease-out;
}

.tp-header-top-lang-list li:hover {
    color: var(--tp-theme-primary);
}

.tp-header-top-lang:hover .tp-header-top-lang-list {
    visibility: visible;
    opacity: 1;
    top: 100%;
}

.tp-header-top-right {
    gap: 30px;
}

.tp-header-top-right-border {
    height: 20px;
    width: 1px;
    background: rgba(255, 255, 255, 0.4);
}

.tp-header-top-spacing {
    padding: 12px 0px;
}

.tp-header-left {
    gap: 96px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
    only screen and (min-width: 992px) and (max-width: 1199px),
    only screen and (min-width: 768px) and (max-width: 991px),
    (max-width: 574.98px) {
    .tp-header-left {
        gap: 40px;
    }
}

.tp-header-sidebar-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    color: var(--tp-theme-primary);
    border: 1px solid var(--tp-theme-primary);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.tp-header-sidebar-btn:hover {
    background: var(--tp-theme-primary);
    color: var(--tp-common-white);
    border-color: var(--tp-theme-primary);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-header-btn {
        margin-left: 10px;
    }
}

.tp-header-lg-space {
    padding: 10px 0px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
    only screen and (min-width: 768px) and (max-width: 991px),
    only screen and (min-width: 576px) and (max-width: 767px),
    (max-width: 574.98px) {
    .tp-header-lg-space {
        padding: 10px 0px;
    }
}

@media (max-width: 574.98px) {
    .tp-header-lg-space {
        padding: 10px 0;
    }
}

.tp-header-cpr-border {
    border-bottom: 1px solid rgba(31, 49, 48, 0.1);
}

.header-sticky {
    position: fixed;
    left: 0;
    margin: auto;
    top: 0;
    width: 100%;
    box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.07);
    z-index: 991;
    animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
    -webkit-box-shadow: 0px 4px 10px rgba(3, 4, 28, 0.1);
    box-shadow: 0px 4px 10px rgba(3, 4, 28, 0.1);
    border-radius: 0;
    background: var(--tp-common-white);
}

.header-sticky .tp-main-menu > nav > ul > li {
    padding: 11px 0px;
}

.header-sticky .tp-main-menu > nav > ul > li > a {
    padding: 22px 0px;
}

/* .header-sticky .tp-header-2-right .tp-main-menu>nav>ul>li>a {
  padding: 9px 20px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 574.98px) {
  .header-sticky .tp-header-2-right .tp-main-menu>nav>ul>li>a {
    padding: 9px 17px;
  }
} */

.header-transparent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9;
    width: 100%;
}

.tp-header-logo a img {
    border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    -ms-border-radius: 0 !important;
    -o-border-radius: 0 !important;
}

/* HEADER CSS */
/*----------------------------------------*/
/*  Main menu css
/*----------------------------------------*/
.tp-main-menu > nav > ul > li {
    list-style: none;
    display: inline-block;
    position: relative;
}

.tp-main-menu > nav > ul > li:not(:last-child) {
    margin-right: 40px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
    only screen and (min-width: 992px) and (max-width: 1199px),
    only screen and (min-width: 768px) and (max-width: 991px),
    (max-width: 574.98px) {
    .tp-main-menu > nav > ul > li:not(:last-child) {
        margin-right: 18px;
    }
}

.tp-main-menu > nav > ul > li > a {
    font-weight: 500;
    font-size: 18px;
    color: var(--tp-theme-primary);
    position: relative;
    padding: 32px 0px;
    display: inline-block;
}

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

.tp-main-menu > nav > ul > li > a:hover::after {
    color: var(--tp-grey-1);
    transform: rotate(180deg);
}

.tp-main-menu > nav > ul > li:hover > .submenu {
    visibility: visible;
    opacity: 1;
    top: 100%;
}

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

.tp-main-menu > nav > ul > li:hover > a::after {
    color: var(--tp-grey-1);
    transform: rotate(180deg);
}

.tp-main-menu > nav > ul > li.has-dropdown > a {
    position: relative;
}

.tp-main-menu > nav > ul > li.has-dropdown > a::after {
    content: "\f107";
    font-size: 16px;
    color: var(--tp-theme-primary);
    font-family: var(--tp-ff-fontawesome);
    font-weight: 400;
    margin-left: 3px;
    display: inline-block;
    -webkit-transition: all 0.3s 0s ease-out;
    -moz-transition: all 0.3s 0s ease-out;
    -ms-transition: all 0.3s 0s ease-out;
    -o-transition: all 0.3s 0s ease-out;
    transition: all 0.3s 0s ease-out;
}

.tp-main-menu > nav > ul > li.has-dropdown > a.tp-static {
    position: static;
}

.tp-main-menu > nav > ul > li > .submenu {
    position: absolute;
    top: 115%;
    left: 0;
    min-width: 230px;
    padding: 22px 0 12px;
    background: var(--tp-common-white);
    transition: all 0.3s linear;
    display: block;
    z-index: 9999;
    border-radius: 0px 0px 4px 4px;
    transform-origin: top center;
    box-shadow: 0px 10px 30px 0px rgba(25, 25, 26, 0.1);
    visibility: hidden;
    opacity: 0;
}

.tp-main-menu > nav > ul > li > .submenu li {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    transform: translateY(-10px);
}

.tp-main-menu > nav > ul > li > .submenu li .submenu {
    right: -100%;
    left: auto;
    top: 0;
}

.tp-main-menu > nav > ul > li > .submenu li a {
    position: relative;
    z-index: 11;
    color: var(--tp-theme-primary);
    font-weight: 500;
    font-size: 16px;
    padding: 5px 28px;
    padding-bottom: 1px;
    width: 100%;
    text-transform: capitalize;
    display: block;
}

.tp-main-menu > nav > ul > li > .submenu li a:hover {
    color: var(--tp-grey-1);
}

.tp-main-menu > nav > ul > li > .submenu li a::before {
    position: absolute;
    content: "";
    left: 25px;
    top: 63%;
    transition: all 0.4s ease;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background-color: var(--tp-theme-primary);
}

.tp-main-menu > nav > ul > li > .submenu li:hover > a {
    color: var(--tp-grey-1);
    padding-left: 43px;
}

.tp-main-menu > nav > ul > li > .submenu li:hover > a::before {
    width: 12px;
}

.tp-main-menu > nav > ul > li > .submenu li:hover > .submenu {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
}

.tp-main-menu > nav > ul > li .tp-main-mega-menu {
    position: absolute;
    top: 115%;
    left: 0;
    right: 0;
    padding: 0;
    width: 100%;
    z-index: 999;
    background: var(--tp-common-white);
    box-shadow: 0px 10px 30px 0px rgba(25, 25, 26, 0.1);
    overflow: hidden;
    margin: auto;
}

.tp-main-menu > nav > ul > li .tp-main-mega-menu .tp-homemenu-wrapper {
    padding: 30px 30px 0px 30px;
}

.tp-main-menu
    > nav
    > ul
    > li
    .tp-main-mega-menu
    .tp-homemenu-wrapper
    .homemenu {
    margin-bottom: 25px;
}

.tp-main-menu
    > nav
    > ul
    > li
    .tp-main-mega-menu
    .tp-homemenu-wrapper
    .homemenu:hover
    .homemenu-btn {
    opacity: 1;
    visibility: visible;
    top: 50%;
}

.tp-main-menu
    > nav
    > ul
    > li
    .tp-main-mega-menu
    .tp-homemenu-wrapper
    .homemenu-thumb {
    height: 250px;
    border-radius: 4px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
    only screen and (min-width: 992px) and (max-width: 1199px),
    only screen and (min-width: 768px) and (max-width: 991px),
    (max-width: 574.98px) {
    .tp-main-menu
        > nav
        > ul
        > li
        .tp-main-mega-menu
        .tp-homemenu-wrapper
        .homemenu-thumb {
        height: auto;
    }
}

.tp-main-menu
    > nav
    > ul
    > li
    .tp-main-mega-menu
    .tp-homemenu-wrapper
    .homemenu-thumb
    a {
    padding: 0;
}

.tp-main-menu
    > nav
    > ul
    > li
    .tp-main-mega-menu
    .tp-homemenu-wrapper
    .homemenu-thumb
    img {
    transition: all 0.4s ease;
    object-fit: cover;
}

.tp-main-menu
    > nav
    > ul
    > li
    .tp-main-mega-menu
    .tp-homemenu-wrapper
    .homemenu-thumb:hover
    img {
    transform: scale(1.06);
}

.tp-main-menu
    > nav
    > ul
    > li
    .tp-main-mega-menu
    .tp-homemenu-wrapper
    .homemenu-btn {
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.tp-main-menu
    > nav
    > ul
    > li
    .tp-main-mega-menu
    .tp-homemenu-wrapper
    .homemenu-thumb-wrap {
    padding: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
}

.tp-main-menu
    > nav
    > ul
    > li
    .tp-main-mega-menu
    .tp-homemenu-wrapper
    .homemenu-title {
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    color: var(--tp-theme-primary);
}

.tp-main-menu
    > nav
    > ul
    > li
    .tp-main-mega-menu
    .tp-homemenu-wrapper
    .homemenu-title
    a {
    padding: 0;
    color: var(--tp-theme-primary);
}

.tp-main-menu
    > nav
    > ul
    > li
    .tp-main-mega-menu
    .tp-homemenu-wrapper
    .homemenu-title
    a:hover {
    color: var(--tp-grey-1);
}

.tp-main-menu
    > nav
    > ul
    > li
    .tp-main-mega-menu
    .tp-homemenu-wrapper
    .comeing-soon
    .homemenu-thumb {
    position: relative;
}

.tp-main-menu
    > nav
    > ul
    > li
    .tp-main-mega-menu
    .tp-homemenu-wrapper
    .comeing-soon
    .homemenu-thumb::before {
    position: absolute;
    z-index: 22;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    backdrop-filter: blur(6px);
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
}

.tp-main-menu-5 > nav > ul > li.has-dropdown > a::after {
    display: none;
}

.tp-main-menu-8 > nav > ul {
    margin-left: 82px;
    margin-right: 50px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
    only screen and (min-width: 992px) and (max-width: 1199px),
    only screen and (min-width: 768px) and (max-width: 991px),
    only screen and (min-width: 576px) and (max-width: 767px),
    (max-width: 574.98px) {
    .tp-main-menu-8 > nav > ul {
        margin-left: 0;
    }
}

.tp-main-menu-8 > nav > ul > li:not(:last-child) {
    margin-right: 61px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
    only screen and (min-width: 992px) and (max-width: 1199px),
    only screen and (min-width: 768px) and (max-width: 991px),
    only screen and (min-width: 576px) and (max-width: 767px),
    (max-width: 574.98px) {
    .tp-main-menu-8 > nav > ul > li:not(:last-child) {
        margin-right: 30px;
    }
}

.tp-main-menu-8 > nav > ul > li > a {
    color: var(--tp-common-white);
}

.tp-main-menu-8 > nav > ul > li > a:hover {
    color: #f6f6f6a8;
}

.tp-main-menu-8 > nav > ul > li > a::after {
    display: none !important;
}

.tp-onepage-menu li a.active {
    color: var(--tp-grey-1);
}

/*----------------------------------------*/
/*  Mobilemenu css
/*----------------------------------------*/
.tp-offcanvas-menu {
    margin-bottom: 40px;
}

.tp-offcanvas-menu ul {
    list-style: none;
}

.tp-offcanvas-menu ul li {
    position: relative !important;
}

.tp-offcanvas-menu ul li > a {
    padding: 10px 0;
    display: block;
    font-size: 20px;
    font-weight: 400;
    color: var(--tp-theme-primary);
}

.tp-offcanvas-menu ul li:not(:last-child) > a {
    /* border-bottom: 1px solid rgba(1, 15, 28, 0.1); */
}

.tp-offcanvas-menu ul li.active > a {
    color: var(--tp-theme-primary);
}

.tp-offcanvas-menu ul li.active > .tp-menu-close {
    color: var(--tp-common-white);
    background: var(--tp-theme-primary);
    border-color: var(--tp-theme-primary);
}

.tp-offcanvas-menu ul li.active > .tp-menu-close i {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

.tp-offcanvas-menu ul li .tp-submenu {
    display: none;
}

.tp-offcanvas-menu ul li .tp-submenu.submenu {
    padding-left: 20px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
    only screen and (min-width: 768px) and (max-width: 991px),
    only screen and (min-width: 576px) and (max-width: 767px),
    (max-width: 574.98px) {
    .tp-offcanvas-menu .tp-main-mega-menu {
        padding-left: 0 !important;
    }
}

.tp-offcanvas-menu .tp-main-mega-menu .homemenu-title {
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    color: var(--tp-theme-primary);
}

.tp-offcanvas-menu .tp-main-mega-menu .homemenu-title a {
    padding: 0;
    color: var(--tp-theme-primary);
}

.tp-offcanvas-menu .tp-main-mega-menu .homemenu {
    margin-bottom: 30px;
}

.tp-menu-close {
    position: absolute;
    right: 0;
    top: 6px;
    height: 30px;
    width: 30px;
    font-size: 12px;
    line-height: 29px;
    text-align: center;
    border: 1px solid rgba(1, 15, 28, 0.12);
}

.tp-menu-close i {
    transition: all 0.3s;
}

/*----------------------------------------*/
/*  Sidebar css
/*----------------------------------------*/
.tp-sidebar-author {
    box-shadow: 0 1px 3px 0 rgba(3, 4, 28, 0.1);
    border-radius: 4px;
}

.tp-sidebar-author-main {
    border-radius: 4px 4px 10px 10px;
    padding: 40px 40px 30px 40px;
}

.tp-sidebar-author-active {
    width: 18px;
    height: 18px;
    display: inline-block;
    border-radius: 30px;
    background: #42ce0f;
    position: absolute;
    top: 0;
    right: 3px;
    border: 3px solid var(--tp-common-white);
}

.tp-sidebar-social ul {
    display: flex;
    justify-content: center;
}

.tp-sidebar-social ul li {
    list-style: none;
    margin: 0 15px;
}

.tp-sidebar-social ul li a {
    color: #506767;
    transition: all 0.4s ease;
}

.tp-sidebar-social ul li a:hover {
    color: #1f3130;
}

.tp-sidebar-call {
    padding: 32px 40px 32px 40px;
}

.tp-sidebar-call a {
    font-weight: 500;
    font-size: 16px;
    letter-spacing: -0.02em;
    color: var(--tp-grey-1);
    display: block;
    margin-bottom: 3px;
}

.tp-sidebar-call a.links {
    text-decoration: underline;
}

.tp-sidebar-call a:hover {
    color: var(--tp-theme-primary);
}

.tp-sidebar-call a span {
    margin-right: 10px;
}

.tp-sidebar-border {
    border: 1px solid rgba(31, 49, 48, 0.1);
    border-radius: 4px;
}

.tp-sidebar-widget-content {
    padding: 35px 40px 30px 40px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
    (max-width: 574.98px) {
    .tp-sidebar-widget-content {
        padding: 25px 15px 20px 15px;
    }
}

.tp-sidebar-widget-content ul li {
    list-style: none;
    margin-bottom: 10px;
}

.tp-sidebar-widget-content ul li a {
    font-weight: 500;
    font-size: 16px;
    letter-spacing: -0.02em;
    color: var(--tp-grey-1);
    padding: 19px 20px;
    display: inline-block;
    box-shadow: 0 1px 3px 0 rgba(32, 33, 36, 0.08);
    background: var(--tp-common-white);
    border-radius: 2px;
}

.tp-sidebar-widget-content ul li a:hover {
    color: var(--tp-theme-primary);
}

.tp-sidebar-widget-content ul li a svg {
    margin-right: 8px;
}

.tp-sidebar-widget .tagcloud a {
    font-weight: 400;
    font-size: 16px;
    letter-spacing: -0.02em;
    color: var(--tp-theme-primary);
    border: 1px solid rgba(31, 49, 48, 0.1);
    border-radius: 4px;
    padding: 2px 16px;
    display: inline-block;
    margin-bottom: 8px;
    margin-right: 4px;
}

.tp-sidebar-widget .tagcloud a:hover {
    background: var(--tp-theme-primary);
    border-color: var(--tp-theme-primary);
    color: var(--tp-common-white);
}

.tp-sidebar-rc-post {
    box-shadow: 0 1px 3px 0 rgba(3, 4, 28, 0.1);
    background: var(--tp-common-white);
    padding: 12px 70px 12px 12px;
    border-radius: 4px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
    only screen and (min-width: 992px) and (max-width: 1199px),
    only screen and (min-width: 768px) and (max-width: 991px),
    only screen and (min-width: 576px) and (max-width: 767px),
    (max-width: 574.98px) {
    .tp-sidebar-rc-post {
        padding: 12px 20px 12px 12px;
    }
}

.tp-sidebar-rc-post-thumb img {
    border-radius: 2px;
}

.tp-sidebar-rc-meta span {
    font-weight: 400;
    font-size: 14px;
    color: var(--tp-grey-1);
}

.tp-sidebar-rc-meta span svg {
    margin-right: 4px;
}

/************************************/
/***        Hero css	      ***/
/************************************/

.hero {
    position: relative;
    background: url("../images/intro-video-bg.webp") no-repeat;
    background-position: center center;
    padding: 280px 0 180px 0;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--tp-theme-quaternary);
    opacity: 80%;
    z-index: 1;
}

.hero.hero-video {
    padding: 0;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero.hero-video::before {
    display: none;
}

.hero.hero-video .hero-bg-video {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero.hero-video .hero-bg-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero.hero-video .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero.hero-slider-layout {
    background: none;
    padding: 0;
}

.hero.hero-slider-layout .hero-slide {
    position: relative;
    background: url("../images/hero-bg.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 210px 0;
}

.hero.hero-slider-layout .hero-slide.slide-2 {
    background: url("../images/hero-bg-2.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.hero.hero-slider-layout .hero-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--tp-theme-quaternary);
    opacity: 80%;
    z-index: 1;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero.hero-slider-layout .hero-pagination {
    position: absolute;
    bottom: 50px;
    padding-left: calc(((100vw - 1300px) / 2) + 15px);
    z-index: 2;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--divider-color);
    opacity: 1;
    transition: all 0.3s ease-in-out;
    margin: 0 5px;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet-active {
    background: var(--tp-theme-primary);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content .tp-section-title h1 {
    color: var(--tp-common-white);
}

.hero-content .tp-section-title p {
    color: var(--tp-common-white);
    text-align: center;
}

.hero-btn {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

@media (max-width: 991px) {
    .hero {
        padding: 210px 0 130px 0;
    }

    .hero.hero-video {
        height: 100vh;
        min-height: 500px;
    }

    .hero.hero-slider-layout .hero-slide {
        padding: 100px 0;
    }

    .hero.hero-slider-layout .hero-pagination {
        bottom: 30px;
        padding-left: 15px;
    }
}

@media (max-width: 767px) {
    .hero.hero-video {
        height: 60vh;
        min-height: 350px;
        max-height: 500px;
    }

    .hero.hero-video .hero-bg-video video {
        object-fit: cover;
        object-position: center center;
    }
}

@media (max-width: 576px) {
    .hero.hero-video {
        height: 50vh;
        min-height: 300px;
        max-height: 400px;
    }

    .hero.hero-video .hero-bg-video video {
        object-fit: cover;
        object-position: center center;
    }
}

/************************************/
/***        about us css	      ***/
/************************************/
.tp-about-area {
    padding-block: clamp(70px, calc(52.5px + 4.16667cqw), 120px);
}

.tp-about-thumb img {
    width: 100%;
}

.tp-about-content {
    /* margin-left: 50px; */
}

.tp-about-content .tp-section-title h2 {
    font-size: 66px;
    font-weight: 400;
    text-transform: uppercase;
}

@media (max-width: 992px) {
    .tp-about-content .tp-section-title h2 {
        font-size: 56px;
    }
}
@media (max-width: 767px) {
    .tp-about-content .tp-section-title h2 {
        font-size: 46px;
    }
}
@media (max-width: 576px) {
    .tp-about-content .tp-section-title h2 {
        font-size: 36px;
    }
}

.tp-about-content-body p {
    width: 500px;
    margin: 0 auto;
    margin-bottom: 40px;
}

@media (max-width: 767px) {
    .tp-about-content-body p {
        width: 100%;
    }
}

.tp-about-content-line {
    --line-color: var(--tp-theme-primary);
    display: block;
    position: relative;
    width: 5px;
    height: 120px;
    margin-inline: auto;
}

/* vertical line */
.tp-about-content-line::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background-color: var(--tp-theme-primary);
}

/* dot */
.tp-about-content-line::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--tp-theme-primary);
}

.tp-about-detail-box {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid var(--tp-theme-primary);
}

.tp-about-detail-item {
    width: calc(33.33% - 20px);
    display: flex;
    align-items: center;
}

.tp-about-detail-item .tp-icon-box {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--tp-theme-primary);
    border-radius: 50%;
    margin-right: 30px;
    transition: all 0.3s ease-in-out;
    color: var(--tp-theme-primary);
    font-size: 40px;
    font-weight: 800;
}

.tp-about-detail-content {
    width: calc(100% - 110px);
}

.tp-about-detail-content h3 {
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.tp-about-detail-content p {
    margin: 0;
}

@media only screen and (max-width: 991px) {
    /* .tp-about-content {
    margin-left: 0;
  } */

    .tp-about-detail-box {
        margin-top: 30px;
        padding-top: 30px;
    }

    .tp-about-detail-item {
        width: calc(50% - 15px);
    }

    .tp-about-detail-item .tp-icon-box {
        margin-right: 20px;
    }

    .tp-about-detail-item .tp-icon-box {
        width: 70px;
        height: 70px;
    }

    .tp-about-detail-item .tp-icon-box img {
        max-width: 35px;
    }

    .tp-about-detail-content {
        width: calc(100% - 90px);
    }

    .tp-about-detail-content h3 {
        font-size: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .tp-about-detail-item {
        width: 100%;
    }

    .tp-about-detail-item .tp-icon-box {
        width: 65px;
        height: 65px;
        margin-right: 10px;
    }

    .tp-about-detail-content {
        width: calc(100% - 75px);
    }

    .tp-about-detail-content h3 {
        font-size: 18px;
    }
}

/************************************/
/***  restaurants & banquet css  ***/
/************************************/
.tp-restaurants-banquet-images figure img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.tp-restaurant-timing-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--divider-color);
}

.tp-restaurant-timing-item:last-child {
  border-bottom: none;
}

.tp-restaurant-timing-item-content p {
    margin: 0;
}

.tp-restaurants-banquet-2-area .container .row .col-lg-4 {
    padding: 0;
}

.tp-restaurants-banquet-2 {
    border: 1px solid var(--tp-theme-primary);
    padding: 20px;
    height: 100%;
}

.tp-restaurants-banquet-2-center {
    border-left: 0;
    border-right: 0;
}

.tp-restaurants-banquet-2-image figure img {
    width: 100%;
    aspect-ratio: 1/1.2;
    object-fit: cover;
}

.tp-restaurants-banquet-2-content h3 {
    font-size: 25px;
    padding: 10px 0;
    text-align: center;
    color: var(--tp-theme-primary);
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .tp-restaurants-banquet-2-center {
        border: 1px solid var(--tp-theme-primary);
    }

    .tp-restaurants-banquet-2-area .container .row .col-lg-4 {
        padding-right: 15px;
        padding-left: 15px;
    }
}

.tp-restaurants-banquet-3-area .container .row .col-lg-6 {
    padding: 0;
}

.tp-restaurants-banquet-3-img {
    height: 100%;
    min-height: 500px;
    position: relative;
}

.tp-restaurants-banquet-3-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.tp-restaurants-banquet-3-content {
    background-color: var(--tp-theme-tertiary);
    padding: 80px 80px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* .tp-restaurants-banquet-3-subtitle {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--tp-theme-primary);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}

.tp-restaurants-banquet-3-subtitle svg {
  width: 30px;
  height: auto;
  fill: var(--tp-theme-primary);
}

.tp-restaurants-banquet-3-title {
  margin-bottom: 30px;
} */

.tp-restaurants-banquet-3-divider {
    width: 100%;
    height: 1px;
    background-color: var(--divider-color);
    margin-bottom: 35px;
}

.tp-restaurants-banquet-3-text {
    max-width: 450px;
    margin-bottom: 45px;
}

@media (max-width: 991px) {
    .tp-restaurants-banquet-3-area .container .row .col-lg-6 {
        padding-left: 15px;
        padding-right: 15px;
    }

    .tp-restaurants-banquet-3-content {
        padding: 60px 25px;
    }

    .tp-restaurants-banquet-3-img {
        min-height: 350px;
        position: relative;
        /* Reset for stacking */
    }

    .tp-restaurants-banquet-3-img img {
        position: relative;
        aspect-ratio: 1;
    }

    .tp-restaurants-banquet-3-title {
        font-size: 40px;
    }
}

/************************************/
/***   Restaurant Types Start  ***/
/************************************/
/* Make column relative */
.tp-restaurant-types .row > div.col-lg-3 {
  position: relative;
}

/* Use inset shadow instead of border */
.tp-restaurant-types .row > div.col-lg-3:nth-of-type(-n + 2) {
  box-shadow: inset -1px 0 0 rgba(214, 180, 105, 0.45);
}

/* Adjust vertical height illusion */
.tp-restaurant-types .row > div.col-lg-3:nth-of-type(-n + 2)::after {
  content: "";
  position: absolute;
  top: 5%;
  right: 0;
  height: 80%;
  width: 2px;
  background: transparent;
}

/* Mobile & tablet: add margin-top to 2nd and last item */
.tp-restaurant-types .row > div.col-lg-3:nth-child(1),
.tp-restaurant-types .row > div.col-lg-3:nth-child(3) {
  padding-top: 40px; /* thodu gap */
}

.tp-restaurant-item p {
    color: var(--tp-theme-primary);
    text-align: center;
    margin: 10px 0 0 0;
}

/* Responsive */
@media (max-width: 991px) {
  .tp-restaurant-types .row > div.col-lg-3 {
    box-shadow: none;
  }
  .tp-restaurant-types .row > div.col-lg-3:nth-child(2),
  .tp-restaurant-types .row > div.col-lg-3:nth-child(4) {
    padding-top: 0;
  }
}


/************************************/
/*** Banquets and Restaurents css ***/
/************************************/
.tp-banquets-restaurents-slider-item img {
  object-fit: cover;
  aspect-ratio: 1/.7;
}

/************************************/
/***      Home Food css     ***/
/************************************/
.tp-home-food-images img {
    width: 100%;
    aspect-ratio: 1/1.3;
}

/************************************/
/***    Emenities css   ***/
/************************************/
.tp-amenities-area {
    text-align: center;
}

/* .tp-amenities-area .tp-section-title h3 {
  color: var(--tp-common-white);
}

.tp-amenities-area .tp-section-title h2 {
  color: var(--tp-common-white);
} */

.tp-amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.tp-amenity-item {
    padding: 30px 15px;
    border-bottom: 2px solid var(--divider-color);
    border-right: 2px solid var(--divider-color);
}

.tp-amenity-item:nth-child(4n) {
    border-right: none;
}

.tp-amenity-item:nth-last-child(-n + 4) {
    border-bottom: none;
}

.tp-icon-circle {
    width: 80px;
    height: 80px;
    background-color: var(--tp-theme-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
    transition: transform 0.35s ease-in-out;
    -webkit-transition: transform 0.35s ease-in-out;
    -moz-transition: transform 0.35s ease-in-out;
    -ms-transition: transform 0.35s ease-in-out;
    -o-transition: transform 0.35s ease-in-out;
}

.tp-icon-circle svg {
    width: 40px;
    height: 40px;
    fill: white;
}

.tp-icon-circle:hover {
    transform: scale(1.2);
}

.tp-icon-circle img {
    width: 40px;
    height: 40px;
    border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    -ms-border-radius: 0 !important;
    -o-border-radius: 0 !important;
}

.tp-amenity-item p {
    color: var(--tp-theme-primary);
    font-size: 16px;
    margin: 0;
}

@media (max-width: 991px) {
    .tp-amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tp-amenity-item:nth-last-child(-n + 4) {
        border-bottom: 2px solid var(--divider-color);
    }

    .tp-amenity-item:nth-last-child(-n + 2) {
        border-bottom: 2px solid var(--divider-color);
    }

    .tp-amenity-item:nth-child(2n) {
        border-right: none;
    }

    .tp-amenity-item:nth-last-child(-n + 2) {
        border-bottom: none;
    }
}

/* Responsive: Mobile */
@media (max-width: 575px) {
    .tp-amenities-grid {
        /* grid-template-columns: 1fr; */
        grid-template-columns: repeat(2, 1fr);
    }

    .tp-amenity-item {
        /* border-right: none; */
    }

    .tp-amenity-item:last-child {
        border-bottom: none;
    }
    .tp-amenity-item:nth-last-child(-n + 2) {
        border-bottom: none;
    }
}

/*----------------------------------------*/
/*  banner css start
/*----------------------------------------*/
.tp-banner-thumb {
    position: relative;
    overflow: hidden;
    height: 100vh;
}

.tp-banner-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    /* GPU safety */
    transform: translateZ(0);
    will-change: transform;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
    only screen and (min-width: 768px) and (max-width: 991px),
    only screen and (min-width: 576px) and (max-width: 767px),
    (max-width: 574.98px) {
    .tp-banner-thumb {
        height: 450px;
    }
}

/*----------------------------------------*/
/*  testimonial start
/*----------------------------------------*/
/* .tp-testimonial-area .tp-section-title h3 {
  color: var(--tp-common-white);
}

.tp-testimonial-area .tp-section-title h2 {
  color: var(--tp-common-white);
} */

.tp-testimonial-items {
    padding: 20px;
    background-color: var(--tp-theme-tertiary);
    text-align: center;
    /* border-radius: 20px; */
}

.tp-testimonial-rating {
    margin-bottom: 20px;
}

.tp-testimonial-rating span i {
    color: var(--tp-common-yellow);
}

.tp-testimonial-auther h6 {
    color: var(--tp-theme-primary);
    text-transform: capitalize;
    margin-bottom: 0px;
}

.tp-testimonial-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tp-testimonial-pagination .swiper-pagination-bullet {
    width: 15px;
    height: 4px;
    border-radius: 2px;
    background: var(--tp-theme-primary);
    margin: 0 4px !important;
    opacity: 1;
}

.tp-testimonial-pagination .swiper-pagination-bullet-active {
    width: 30px;
}

/************************************/
/***      Page Gallery css	      ***/
/************************************/
.page-gallery-box .photo-gallery {
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.page-gallery-box .photo-gallery img {
    width: 100%;
    aspect-ratio: 1 / 0.829;
    object-fit: cover;
}
/************************************/
/***      Footer css	      ***/
/************************************/

.main-footer {
    /* position: relative; */
    /* background: url(../img/banner-thumb/intro-video-bg.webp) no-repeat; */
    /* background-position: center center; */
    /* background-size: cover; */
    background-color: var(--tp-theme-tertiary);
    padding: 100px 0 0;
}

/* .main-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--tp-theme-quaternary);
  opacity: 85%;
  z-index: 0;
} */

.main-footer .container {
    position: relative;
    z-index: 1;
}

.footer-contact-list {
    display: flex;
    gap: 30px 15px;
    flex-wrap: wrap;
}

.footer-contact-item {
    width: calc(33.33% - 10px);
    border-right: 2px solid var(--divider-color);
    text-align: center;
    padding-right: 15px;
}

.footer-contact-item:last-child,
.footer-contact-item:nth-child(3n + 3) {
    border-right: none;
    /* padding: 0; */
}

.footer-contact-item .footer-contact-detail {
    margin-top: 30px;
    margin-bottom: 50px;
}

.footer-contact-detail h3 {
    font-size: 24px;
    font-weight: 400;
    color: var(--tp-theme-primary);
    font-family: var(--secondary-font);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.footer-contact-detail p {
    font-size: 20px;
    line-height: 1.4em;
    color: var(--tp-common-black);
    margin-bottom: 2px;
}

.footer-contact-detail p:last-child {
    margin-bottom: 0;
}

.footer-contact-detail p a {
    color: inherit;
    transition: all 0.4s ease-in-out;
}

.footer-contact-detail p a:hover {
    color: var(--tp-theme-primary);
}

.footer-copyright {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    align-items: center;
    border-top: 2px solid var(--divider-color);
    padding: 40px 0 40px 0;
    /* margin-top: 80px; */
}

.footer-copyright-text p {
    text-align: center;
    color: var(--tp-common-black);
    margin-bottom: 0;
}

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

.footer-social-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-social-links ul li {
    display: inline-block;
    margin-right: 15px;
    transition: all 0.3s ease-in-out;
}

.footer-social-links ul li:last-child {
    margin-right: 0;
}

.footer-social-links ul li a {
    color: var(--tp-theme-primary);
    border: 1px solid var(--tp-theme-primary);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
}

.footer-social-links ul li a:hover {
    background-color: var(--tp-theme-primary);
    color: var(--tp-common-white);
}

.footer-social-links ul li a i {
    font-size: 24px;
    color: inherit;
}

@media only screen and (max-width: 991px) {
    .main-footer {
        padding: 50px 0 0;
    }

    .footer-contact-list {
        gap: 15px 10px;
    }

    .footer-contact-item {
        width: calc(33.33% - 6.67px);
        padding-right: 10px;
    }

    .footer-contact-item .footer-contact-detail {
        margin-top: 15px;
        margin-bottom: 30px;
    }

    .footer-contact-detail h3 {
        font-size: 24px;
    }

    .footer-contact-detail p {
        font-size: 18px;
    }

    .footer-copyright {
        padding: 40px 0 50px;
        /* margin-top: 40px; */
    }

    .footer-logo img {
        max-width: 120px;
    }

    .footer-social-links ul li {
        margin-right: 10px;
    }

    .footer-social-links ul li a {
        width: 40px;
        height: 40px;
    }

    .footer-social-links ul li a i {
        font-size: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .footer-contact-list {
        gap: 15px 10px;
    }

    .footer-contact-item {
        width: 100%;
        border-bottom: 2px solid var(--divider-color);
        padding: 0 0 15px 0;
        border-right: none;
    }

    .footer-contact-item:last-child {
        border-bottom: none;
    }

    .footer-contact-item .icon-box,
    .footer-contact-detail {
        margin-bottom: 15px;
    }

    .footer-contact-item .icon-box img {
        max-width: 40px;
    }

    .footer-contact-detail h3 {
        font-size: 18px;
    }

    .footer-copyright {
        gap: 20px;
        flex-direction: column;
        padding: 30px 0 15px;
        /* margin-top: 30px; */
    }
}

/************************************/
/***     Pihu reveal css    ***/
/************************************/
/* Montage Reveal Styles */
.c-montage-reveal {
    /* overflow: visible; */
    overflow: hidden;
    position: relative;
    /* height: 400vh; */
}

/* .block_canvas {
  display: flex;
  top: 0;
  right: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  overflow: hidden;
} */

.block_canvas {
    position: relative; /* 🔥 absolute → relative */
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.canvas_center {
    align-items: center;
    background-color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: auto;
    max-height: 70%;
    max-width: 100%;
    min-width: 100%;
    overflow: hidden;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.center_content {
    align-items: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    position: relative;
    row-gap: 0;
    text-align: center;
    transform: scale(1.2);
    z-index: 1;
    padding: 0 15px;
}

.content_label {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6em;
    letter-spacing: 1px;
    margin-bottom: 50px;
}

.content_heading {
    font-family: var(--primary-font);
    line-height: 0.8em;
    font-size: max(
        2.625rem,
        min(
            calc(2.625rem + (120 - 42) * ((100vw - 26.25rem) / (1620 - 420))),
            7rem
        )
    );
    font-weight: 300;
    letter-spacing: 0.01em;
    max-width: 600px;
    text-transform: uppercase;
    text-wrap: balance;
}

.content_text {
    /* line-height: 1.2em; */
    /* font-size: max(
    0.9375rem,
    min(calc(0.9375rem + (16 - 15) * ((100vw - 26.25rem) / (1620 - 420))), 1rem)
  ); */
    margin-top: 40px;
    max-width: 510px;
    /* text-transform: uppercase; */
    /* text-wrap: balance; */
}

.content_text p:not(:last-child) {
    margin-bottom: 1em;
}

.center_image {
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.center_image img,
.center_image picture {
    opacity: 0.8;
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.canvas_side {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(2, 1fr);
    margin-top: auto;
    margin-bottom: auto;
    overflow: hidden;
    top: 0;
    bottom: 0;
    position: absolute;
    width: calc(50% - 270px);
    height: 70%;
    z-index: 1;
}

.canvas_side[data-ref="left-side"] {
    grid-template-rows: 1fr 2fr;
    left: 0;
}

.canvas_side[data-ref="left-side"] .side_element:nth-child(1) {
    grid-area: 1 / 1 / 3 / 2;
}

.canvas_side[data-ref="left-side"] .side_element:nth-child(2) {
    grid-area: 1 / 2;
}

.canvas_side[data-ref="left-side"] .side_element:nth-child(3) {
    grid-area: 2 / 2;
}

.canvas_side[data-ref="right-side"] {
    grid-template-rows: 2fr 1fr;
    right: 0;
}

.canvas_side[data-ref="right-side"] .side_element:nth-child(1) {
    grid-area: 1 / 2 / 3 / 3;
}

.canvas_side[data-ref="right-side"] .side_element:nth-child(2) {
    grid-area: 1 / 1;
}

.canvas_side[data-ref="right-side"] .side_element:nth-child(3) {
    grid-area: 2 / 1;
}

.side_element {
    background-color: #fff;
    clip-path: inset(0%);
    overflow: hidden;
    position: relative;
    width: 100%;
}

.side_element img,
.side_element picture {
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Responsive styles */
@media (min-width: 1025px) {
    .block_canvas .canvas_center {
        max-width: 500px;
        min-width: 500px;
        padding-left: 0;
        padding-right: 0;
    }
}

/************************************/
/***     page header css    ***/
/************************************/

.page-header {
    position: relative;
    background: url("../images/page-header-bg.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 240px 0 140px;
}

.page-header::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    /* background: ; */
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-header-box {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-header-box h1 {
    display: inline-block;
    color: var(--tp-common-white);
    font-size: 60px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.page-header-box ol {
    margin: 0;
    padding: 0;
    justify-content: center;
}

.page-header-box ol li.breadcrumb-item {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
    text-transform: capitalize;
    color: var(--tp-common-white);
}

.page-header-box ol li.breadcrumb-item a {
    color: inherit;
}

.page-header-box ol li.breadcrumb-item.active {
    color: var(--tp-common-white);
}

.page-header-box ol .breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    color: var(--tp-common-white);
}

@media only screen and (max-width: 991px) {
    .page-header {
        padding: 180px 0 80px 0;
    }

    .page-header-box h1 {
        font-size: 45px;
        margin-bottom: 5px;
    }
}

@media only screen and (max-width: 767px) {
    .page-header-box h1 {
        font-size: 30px;
    }

    .page-header-box ol li.breadcrumb-item {
        font-size: 14px;
    }
}
/*----------------------------------------*/
/*  contact start
/*----------------------------------------*/
.contact-us-content {
    margin-right: 20px;
}

.contact-info-item {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--tp-theme-secondary);
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.contact-info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-info-item .icon-box {
    position: relative;
    background-color: var(--tp-theme-primary);
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    overflow: hidden;
    z-index: 1;
    /* border-radius: 50%; */
}

.contact-info-item .icon-box::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    border-radius: 50%;
    background-color: var(--primary-color);
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    height: 100%;
    height: 100%;
}

.contact-info-item:hover .icon-box::before {
    transform: scale(1);
}

.contact-info-item .icon-box svg {
    position: relative;
    max-width: 24px;
    fill: var(--tp-theme-tertiary);
    transition: all 0.4s ease-in-out;
    z-index: 1;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.contact-item-content {
    position: relative;
    width: calc(100% - 70px);
    z-index: 1;
}

.contact-item-content h3 {
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.contact-item-content p {
    margin: 0;
}

.contact-item-content p a {
    color: inherit;
    transition: all 0.3s ease-in-out;
}

.contact-item-content p a:hover {
    color: var(--primary-color);
}

.contact-social-links {
    display: flex;
    align-items: center;
    gap: 20px;
    border-top: 1px solid var(--tp-theme-secondary);
    margin-top: 30px;
    padding-top: 30px;
}

.contact-social-links h3 {
    font-size: 20px;
}

.contact-social-links ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-social-links ul li {
    display: inline-block;
    border-radius: 50%;
    /* margin-right: 10px; */
}

.contact-social-links ul li:last-child {
    margin-right: 0;
}

.contact-social-links ul li a {
    background: var(--tp-theme-primary);
    /* border-radius: 50%; */
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
}

.contact-social-links ul li a svg {
    color: var(--tp-theme-tertiary);
    font-size: 18px;
    transition: all 0.3s ease-in-out;
}

.contact-social-links ul li:hover a {
    background-color: var(--tp-theme-primary);
}

.contact-us-form {
    /* position: relative; */
    padding: 40px;
    background-color: var(--tp-theme-tertiary);
}

.contact-form .form-control {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.445em;
    color: var(--tp-common-black);
    background-color: var(--tp-common-white);
    border-radius: 0;
    border: none;
    padding: 17px 20px;
    box-shadow: none;
    outline: none;
}

.contact-form textarea {
    height: 164px;
}

.contact-form .form-control::placeholder {
    color: var(--tp-theme-quaternary);
}

.contact-form .btn-default {
    width: 100%;
    padding: 17px;
}

.contact-form .btn-default::before {
    display: none;
}

.google-map .container-fluid {
    padding: 0;
}

.google-map-iframe iframe {
    width: 100%;
    height: 400px;
}

@media only screen and (max-width: 991px) {
    .contact-info-item {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .contact-social-links {
        margin-top: 20px;
        padding-top: 20px;
    }

    .contact-us-form {
        padding: 30px;
    }

    .contact-form .form-control {
        padding: 13px 15px;
    }

    .contact-form .btn-default {
        padding: 14px;
    }

    .google-map-iframe,
    .google-map-iframe iframe {
        height: 450px;
    }
}

@media only screen and (max-width: 767px) {
    .contact-info-item .icon-box {
        margin-right: 10px;
    }

    .contact-item-content {
        width: calc(100% - 60px);
    }

    .contact-social-links {
        /* flex-direction: column; */
    }

    .contact-item-content h3,
    .contact-social-links h3 {
        font-size: 18px;
    }

    .contact-social-links {
        gap: 10px;
    }

    .contact-social-links ul li {
        margin-right: 5px;
    }

    /* .contact-social-links ul li a{
		width: 36px;
		height: 36px;
	} */

    .contact-us-form {
        padding: 20px;
    }

    .google-map-iframe,
    .google-map-iframe iframe {
        height: 350px;
    }
}
