/* --------------------------- Google Fonts Start --------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
/* ---------------------------- Google Fonts End ---------------------------- */

:root {
    --text: #313033;
    --text-primary-light: #524C4C;
    --text-primary-dark: #4A4B51;
    --text-gray: #524C4C;
    --gray: #F7F1F1;
    --black: #000000;
    --white: #ffffff;
    --primary: #DA6936;
    --primary-dark: #AB533E;
    --primary-gradient: linear-gradient(309.67deg, #AB533E 0%, #DA6936 100%);
    --secondary: #5C1E02;
    --background-dark: #313033;
    --background-light: #FFFCF5;
    --info_color: #007BFF;
    --success_color: #00AC4E;
    --warning_color: #FDB022;
    --danger_color: #F13636;
}


/* -------------------------------------------------------------------------- */
/*                             Custom Fonts Start                             */
/* -------------------------------------------------------------------------- */
/* Gilroy */
@font-face {
    font-family: GTWalsheimPro;
    src: url("../fonts/GTWalsheimPro/GTWalsheimPro-Thin.ttf") format("truetype");
    font-weight: 100;
    font-style: normal;
}


@font-face {
    font-family: GTWalsheimPro;
    src: url("../fonts/GTWalsheimPro/GTWalsheimPro-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: GTWalsheimPro;
    src: url("../fonts/GTWalsheimPro/GTWalsheimPro-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: GTWalsheimPro;
    src: url("../fonts/GTWalsheimPro/GTWalsheimPro-Medium.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: GTWalsheimPro;
    src: url("../fonts/GTWalsheimPro/GTWalsheimPro-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: GTWalsheimPro;
    src: url("../fonts/GTWalsheimPro/GTWalsheimPro-Black.ttf") format("truetype");
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: GTWalsheimPro;
    src: url("../fonts/GTWalsheimPro/GTWalsheimPro-UltraBold.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
}

/* -------------------------------------------------------------------------- */
/*                              Custom Fonts End                              */
/* -------------------------------------------------------------------------- */

/*
  font-family: "Poppins", sans-serif;
  font-family: GTWalsheimPro, sans-serif;
 */


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    font-family: GTWalsheimPro, sans-serif;
}

::-moz-selection {
    color: var(--white);
    background: var(--primary);
}

::selection {
    color: var(--white);
    background: var(--primary);
}

/*  custom-scrollbar */
.custom-scrollbar::-webkit-scrollbar {
    width: 4px;
    height: 4px;
    background: #DEE5EA
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: #DEE5EA
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #131515;
    border-radius: 3px
}

/* -------------------------------------------------------------------------- */
/*                                 Common CSS                                 */
/* -------------------------------------------------------------------------- */
p:nth-last-child(1) {
    margin-bottom: 0 !important;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
}

img {
    max-width: 100%;
}

a,
a:hover,
a:focus {
    text-decoration: none;
}

/* -------------------------------------------------------------------------- */
/*                               Font CSS Start                               */
/* -------------------------------------------------------------------------- */
.font-primary {
    font-family: GTWalsheimPro, sans-serif;
}

.font-secondary {
    font-family: "Poppins", sans-serif;
}

/* -------------------------------------------------------------------------- */
/*                                Font CSS End                                */
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*                               Text CSS Start                               */
/* -------------------------------------------------------------------------- */
.bg-primary {
    color: var(--primary);
}

.text-color {
    color: var(--text);
}

.gray-color {
    color: var(--gray);
}

.text-primary {
    color: var(--primary);
}

.text-primary-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-secondary {
    color: var(--secondary);
}

.text-black {
    color: var(--black);
}

.text-white {
    color: var(--white);
}

.text-success {
    color: var(--success_color);
}

.text-warning {
    color: var(--warning_color);
}

.text-danger {
    color: var(--danger_color);
}

.text-info {
    color: var(--info_color);
}

/* -------------------------------------------------------------------------- */
/*                                Text CSS End                                */
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*                              Button CSS Start                              */
/* -------------------------------------------------------------------------- */
button {
    background: inherit;
    border: 0;
}

.btn {
    outline: 0 !important;
    border-radius: 10px;
    font-weight: 500;
    font-style: normal;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-wrap: nowrap;
    gap: 5px;
}

.btn img {
    transition: all 0.3s;
}

.btn:not(.btn-lg, .btn-md, .btn-sm, .btn-xs) {
    min-width: 160px;
    font-size: 16px;
    line-height: 18px;
    padding: 20px 20px;
}

.btn.btn-lg {
    min-width: 190px;
    font-size: 18px;
    line-height: 20px;
    padding: 18px 25px;
}

.btn.btn-md {
    min-width: 170px;
    font-size: 16px;
    line-height: 18px;
    padding: 20px 22px;
}

.btn.btn-sm {
    font-size: 16px;
    line-height: 18px;
    padding: 12px 17px;
}

.btn.btn-xs {
    font-size: 12px;
    line-height: 16px;
    padding: 8px 12px;
}

.btn:not(.btn-lg, .btn-md, .btn-sm, .btn-xs) img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.btn:not(.btn-lg, .btn-md, .btn-sm, .btn-xs) i {
    font-size: 16px;
}

.btn.btn-lg img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.btn.btn-lg i {
    font-size: 20px;
}

.btn.btn-md img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.btn.btn-md i {
    font-size: 18px;
}

.btn.btn-sm img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.btn.btn-sm i {
    font-size: 14px;
}

.btn.btn-xs img {
    width: 14px;
    height: 14px;
    object-fit: contain;
}

.btn.btn-xs i {
    font-size: 12px;
}

.button-group {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 8px;
}

/* ----------------------------- btn-icon Start ----------------------------- */
.btn-icon {
    background-color: transparent;
    border: 1px solid;
    padding: 0;
    font-size: 16px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-icon:not(.btn-lg, .btn-md, .btn-sm, .btn-xs) {
    width: 24px;
    height: 24px;
    font-size: 14px;
}

.btn-icon i {
    -webkit-text-stroke: 0.5px;
}

.btn-icon.btn-sm {
    width: 36px;
    height: 36px;
    font-size: 18px;
}

.btn-icon.btn-md {
    width: 50px;
    height: 50px;
    font-size: 20px;
}

.btn-icon.btn-lg {
    width: 59px;
    height: 59px;
    font-size: 26px;
}

.btn-icon:not(.btn-lg, .btn-md, .btn-sm, .btn-xs) img {
    width: auto;
    height: 16px;
}

.btn-icon.btn-sm img {
    width: auto;
    height: 22px;
}

.btn-icon.btn-md img {
    width: auto;
    height: 24px;
}

.btn-icon.btn-lg img {
    width: auto;
    height: 30px;
}

/* ----------------------------- btn-icon End ----------------------------- */

/* btn-primary-gradient  */
.btn-primary-gradient {
    background: var(--primary-gradient);
    color: var(--white);
    border-color: transparent;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.btn-primary-gradient img {
    filter: brightness(0) saturate(100%) invert(91%) sepia(99%) saturate(30%) hue-rotate(269deg) brightness(107%) contrast(100%);
}

.btn-primary-gradient:hover,
.btn-primary-gradient:focus,
.btn-primary-gradient:focus-visible {
    background: var(--white);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.14);
    outline: 0;
}

.btn-primary-gradient span {
    background: var(--white);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-primary-gradient:hover span,
.btn-primary-gradient:focus span,
.btn-primary-gradient:focus-visible span {
    background: var(--primary-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-check:checked+.btn-primary-gradient,
.btn-primary-gradient.active,
.btn-primary-gradient.show,
.btn-primary-gradient:first-child:active,
:not(.btn-check)+.btn-primary-gradient:active {
    background: var(--white);
    color: var(--primary);
    border-color: var(--primary);
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.14);
}

.btn-primary-gradient:hover img,
.btn-primary-gradient:focus img,
.btn-primary-gradient:focus-visible img,
.btn-primary-gradient .elementor-button:focus .elementor-button-icon,
.btn-primary-gradient .elementor-button:focus-visible .elementor-button-icon {
    filter: brightness(0) saturate(100%) invert(52%) sepia(50%) saturate(2836%) hue-rotate(342deg) brightness(93%) contrast(82%);
}

/* btn-primary-gradient  */

/* btn-outline-primary-gradient  */
.btn-outline-primary-gradient {
    background: var(--white);
    color: var(--primary);
    border-color: var(--primary);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.btn-outline-primary-gradient img {
    filter: brightness(0) saturate(100%) invert(52%) sepia(50%) saturate(2836%) hue-rotate(342deg) brightness(93%) contrast(82%);
}

.btn-outline-primary-gradient:hover,
.btn-outline-primary-gradient:focus,
.btn-outline-primary-gradient:focus-visible {
    background: var(--primary-gradient);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.14);
    outline: 0;
}


.btn-outline-primary-gradient span {
    background: var(--primary-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-outline-primary-gradient:hover span,
.btn-outline-primary-gradient:focus span,
.btn-outline-primary-gradient:focus-visible span {
    background: var(--white);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-check:checked+.btn-outline-primary-gradient,
.btn-outline-primary-gradient.active,
.btn-outline-primary-gradient.show,
.btn-outline-primary-gradient:first-child:active,
:not(.btn-check)+.btn-outline-primary-gradient:active {
    background: var(--primary-gradient);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.14);
}

.btn-outline-primary-gradient:hover img,
.btn-outline-primary-gradient:focus img,
.btn-outline-primary-gradient:focus-visible img,
.btn-outline-primary-gradient .elementor-button:focus .elementor-button-icon,
.btn-outline-primary-gradient .elementor-button:focus-visible .elementor-button-icon {
    filter: brightness(0) saturate(100%) invert(91%) sepia(99%) saturate(30%) hue-rotate(269deg) brightness(107%) contrast(100%);
}

/* btn-outline-primary-gradient  */

/* btn-primary  */
.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary img {
    filter: brightness(0) saturate(100%) invert(91%) sepia(99%) saturate(30%) hue-rotate(269deg) brightness(107%) contrast(100%);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:focus-visible {
    background-color: var(--white);
    color: var(--primary);
    border-color: var(--primary);
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.14);
    outline: 0;
}

.btn-check:checked+.btn-primary,
.btn-primary.active,
.btn-primary.show,
.btn-primary:first-child:active,
:not(.btn-check)+.btn-primary:active {
    background-color: var(--white);
    color: var(--primary);
    border-color: var(--primary);
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.14);
}

/* elementor  */
.btn-primary:hover img,
.btn-primary:focus img,
.btn-primary:focus-visible img,
.btn-primary .elementor-button:focus .elementor-button-icon,
.btn-primary .elementor-button:focus-visible .elementor-button-icon {
    filter: brightness(0) saturate(100%) invert(52%) sepia(50%) saturate(2836%) hue-rotate(342deg) brightness(93%) contrast(82%);
}

.elementor-button-wrapper .elementor-button-content-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* btn-primary  */

/* btn-primary-dark  */
.btn-primary-dark {
    background-color: var(--primary-dark);
    color: var(--white);
    border-color: var(--primary-dark);
}

.btn-primary-dark img {
    filter: brightness(0) saturate(100%) invert(91%) sepia(99%) saturate(30%) hue-rotate(269deg) brightness(107%) contrast(100%);
}

.btn-primary-dark:hover,
.btn-primary-dark:focus,
.btn-primary-dark:focus-visible {
    background-color: var(--white);
    color: var(--primary-dark);
    border-color: var(--primary-dark);
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.14);
    outline: 0;
}

.btn-check:checked+.btn-primary-dark,
.btn-primary-dark.active,
.btn-primary-dark.show,
.btn-primary-dark:first-child:active,
:not(.btn-check)+.btn-primary-dark:active {
    background-color: var(--white);
    color: var(--primary-dark);
    border-color: var(--primary-dark);
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.14);
}

/* btn-primary-dark  */

/* btn-outline-primary */
.btn-outline-primary {
    background-color: white;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary img {
    filter: brightness(0) saturate(100%) invert(43%) sepia(83%) saturate(3792%) hue-rotate(330deg) brightness(116%) contrast(94%);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:focus-visible {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.14);
    outline: 0;
}

.btn-check:checked+.btn-outline-primary,
.btn-outline-primary.active,
.btn-outline-primary.show,
.btn-outline-primary:first-child:active,
:not(.btn-check)+.btn-outline-primary:active {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.14);
}

.btn-outline-primary:hover img,
.btn-outline-primary:focus img,
.btn-outline-primary:focus-visible img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}

/* btn-outline-primary */

/* btn-white */
.btn-white {
    background-color: var(--white);
    color: var(--text);
    border-color: var(--white);
}

.btn-white:hover,
.btn-white:focus,
.btn-white:focus-visible {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.14);
    outline: 0;
}

.btn-check:checked+.btn-white,
.btn-white.active,
.btn-white.show,
.btn-white:first-child:active,
:not(.btn-check)+.btn-white:active {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.14);
}

.btn-white img {
    filter: brightness(0) saturate(100%) invert(22%) sepia(18%) saturate(1308%) hue-rotate(166deg) brightness(92%) contrast(88%);
}

.btn-white:hover img,
.btn-white:focus img,
.btn-white:focus-visible img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(114deg) brightness(104%) contrast(103%);
}

/* btn-white */

/* btn-outline-white */
.btn-outline-white {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-white:hover,
.btn-outline-white:focus,
.btn-outline-white:focus-visible {
    background-color: var(--white);
    color: var(--primary);
    border-color: var(--primary);
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.14);

}

.btn-check:checked+.btn-outline-white,
.btn-outline-white.active,
.btn-outline-white.show,
.btn-outline-white:first-child:active,
:not(.btn-check)+.btn-outline-white:active {
    background-color: var(--white);
    color: var(--primary);
    border-color: var(--primary);
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.14);
}

.btn-outline-white:hover img,
.btn-outline-white:focus img,
.btn-outline-white:focus-visible img {
    filter: brightness(0) saturate(100%) invert(22%) sepia(18%) saturate(1308%) hue-rotate(166deg) brightness(92%) contrast(88%);
}

/* btn-outline-white */
/* btn-black */
.btn-black {
    background-color: var(--black);
    color: var(--white);
    border-color: var(--white);
}

.btn-black:hover,
.btn-black:focus,
.btn-black:focus-visible {
    background-color: var(--white);
    color: var(--black);
    border-color: var(--black);
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.14);
    outline: 0;
}

.btn-check:checked+.btn-black,
.btn-black.active,
.btn-black.show,
.btn-black:first-child:active,
:not(.btn-check)+.btn-black:active {
    background-color: var(--white);
    color: var(--black);
    border-color: var(--black);
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.14);
}

.btn-black img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(114deg) brightness(104%) contrast(103%);
}

.btn-black:hover img,
.btn-black:focus img,
.btn-black:focus-visible img {
    filter: brightness(0) saturate(100%) invert(0%) sepia(100%) saturate(7500%) hue-rotate(15deg) brightness(114%) contrast(114%);
}

/* btn-black */

/* btn-outline-black */
.btn-outline-black {
    background-color: var(--white);
    color: var(--black);
    border-color: var(--black);
}

.btn-outline-black:hover,
.btn-outline-black:focus,
.btn-outline-black:focus-visible {
    background-color: var(--black);
    color: var(--white);
    border-color: var(--black);
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.14);
    outline: 0;
}

.btn-check:checked+.btn-outline-black,
.btn-outline-black.active,
.btn-outline-black.show,
.btn-outline-black:first-child:active,
:not(.btn-check)+.btn-outline-black:active {
    background-color: var(--black);
    color: var(--white);
    border-color: var(--black);
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.14);
}

.btn-outline-black img {
    filter: brightness(0) saturate(100%) invert(0%) sepia(6%) saturate(3346%) hue-rotate(355deg) brightness(91%) contrast(104%);
}

.btn-outline-black:hover img,
.btn-outline-black:focus img,
.btn-outline-black:focus-visible img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}

/* btn-outline-black */

/* btn-gray */
.btn-gray {
    background-color: var(--gray);
    color: var(--text-gray);
    border-color: var(--gray);
}

.btn-gray:hover,
.btn-gray:focus,
.btn-gray:focus-visible {
    background-color: var(--white);
    color: var(--text-gray);
    border-color: var(--text-gray);
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.14);
    outline: 0;
}

.btn-check:checked+.btn-gray,
.btn-gray.active,
.btn-gray.show,
.btn-gray:first-child:active,
:not(.btn-check)+.btn-gray:active {
    background-color: var(--white);
    color: var(--text-gray);
    border-color: var(--text-gray);
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.14);
}

/* -------------------------------------------------------------------------- */
/*                               Button CSS End                               */
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*                              Custom Tag Start                              */
/* -------------------------------------------------------------------------- */
.tag {
    display: inline-block;
    font-weight: 600;
    border-radius: 50px;
    text-align: center;
    color: var(--white);
    border: 1px solid var(--primary);
    background-color: var(--primary);
    text-transform: capitalize;
    transition: all 0.3s ease;
}

.tag:not(.tag-xs, .tag-sm, .tag-lg) {
    font-size: 18px;
    line-height: 25.2px;
    padding: 8px 20px;
}

.tag.tag-lg {
    font-size: 20px;
    line-height: 26px;
    padding: 10px 22px;
}

.tag.tag-sm {
    font-size: 16px;
    line-height: 22px;
    padding: 8px 18px;
}

.tag.tag-xs {
    font-size: 14px;
    line-height: 19px;
    padding: 8px 15px;
}

/* -------------------------------------------------------------------------- */
/*                               Custom Tag End                               */
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*                             Bottom to Top Start                            */
/* -------------------------------------------------------------------------- */
/*Bottom to Top*/
.bottom-top {
    background: var(--primary-gradient);
    border: 1px solid var(--white);
    width: 40px;
    height: 40px;
    text-align: center;
    display: none;
    position: fixed;
    bottom: 70px;
    left: 30px;
    z-index: 100;
    transition: 0.3s;
    color: var(--white);
    line-height: 38px;
    font-size: 20px;
    /* border-radius: 50%; */
    border: 1px solid transparent;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bottom-top:hover,
.bottom-top:focus-visible,
.bottom-top:focus {
    background: var(--white);
    border: 1px solid var(--primary);
    color: var(--primary);
}

/* -------------------------------------------------------------------------- */
/*                              Bottom to Top End                             */
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*                              whatsapp button Start                             */
/* -------------------------------------------------------------------------- */
.whatsapp {
    width: 37px;
    height: 37px;
    text-align: center;
    line-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 80px;
    right: 30px;
    z-index: 100;
    animation: ripple 1.6s linear infinite;
    border-radius: 50%;
    border: 1px solid transparent;
    background-color: #49c658;
}

.whatsapp img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

@keyframes ripple {
    0% {
        box-shadow: 0 0 0 5px rgba(52, 187, 59, 0.2),
            0 0 0 15px rgba(50, 173, 48, 0.2);
    }

    100% {
        box-shadow: 0 0 0 10px rgba(47, 168, 47, 0.2),
            0 0 0 15px rgba(54, 146, 44, 0.2);
    }
}

/* -------------------------------------------------------------------------- */
/*                              whatsapp button End                             */
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*                              Slick Arrow Start                             */
/* -------------------------------------------------------------------------- */
.slick-arrow {
    padding-bottom: 40px;
}

.slick-arrow .slick-prev,
.slick-arrow .slick-next {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50% !important;
    border: 1px solid #F7F1F1;
    background-color: var(--white) !important;
    box-shadow: -1px 10px 10px 0px #0000001A;
    transition: all 0.3s;
    padding: 2px;
    z-index: 2;
}

.slick-arrow .slick-prev:hover,
.slick-arrow .slick-prev:focus,
.slick-arrow .slick-next:hover,
.slick-arrow .slick-next:focus {
    background-color: var(--primary) !important;
    border-color: var(--white) !important;
}

.slick-prev.slick-disabled::before,
.slick-next.slick-disabled::before {
    opacity: 0.1;
    /* background-color: var(--white); */
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
    opacity: 1;
}

.slick-arrow .slick-prev:not(.slick-arrow-sm, .slick-arrow-md, .slick-arrow-lg),
.slick-arrow .slick-next:not(.slick-arrow-sm, .slick-arrow-md, .slick-arrow-lg) {
    width: 37px;
    height: 37px;
}

.slick-arrow.slick-arrow-sm .slick-prev,
.slick-arrow.slick-arrow-sm .slick-next {
    width: 31px;
    height: 31px;
}

.slick-arrow.slick-arrow-md .slick-prev,
.slick-arrow.slick-arrow-md .slick-next {
    width: 50px;
    height: 50px;
}

.slick-arrow.slick-arrow-lg .slick-prev,
.slick-arrow.slick-arrow-lg .slick-next {
    width: 62px;
    height: 62px;
}

.slick-arrow .slick-prev:before,
.slick-arrow .slick-next:before {
    content: "";
    position: absolute;
    width: 23px;
    height: 16px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;

}

.slick-arrow.slick-arrow-sm .slick-prev::before,
.slick-arrow.slick-arrow-sm .slick-next::before {
    width: 10px;
    height: 20px;
}

.slick-arrow.slick-arrow-md .slick-prev::before,
.slick-arrow.slick-arrow-md .slick-next::before {
    width: 12px;
    height: 22px;
}

.slick-arrow.slick-arrow-lg .slick-prev::before,
.slick-arrow.slick-arrow-lg .slick-next::before {
    width: 15px;
    height: 24px;
}


.slick-arrow .slick-next:before,
.slick-arrow .slick-prev:before {
    background-image: url('../images/icons/slick-right-arrow.svg');
}

.slick-arrow .slick-prev:before {
    transform: translate(-50%, -50%) rotate(180deg);
}

.slick-arrow .slick-prev:hover:before,
.slick-arrow .slick-prev:focus:before,
.slick-arrow .slick-next:hover:before,
.slick-arrow .slick-next:focus:before {
    filter: brightness(0) saturate(100%) invert(100%) sepia(17%) saturate(0%) hue-rotate(55deg) brightness(110%) contrast(100%);
}

.slick-prev {
    left: unset;
    right: calc(50% + 5px);
    top: calc(100% - 22px);
}

.slick-next {
    right: 100px;
    left: calc(50% + 5px);
    top: calc(100% - 22px);
}

/* -------------------------------------------------------------------------- */
/*                               Slick Arrow End                              */
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*                              Slick Dots Start                             */
/* -------------------------------------------------------------------------- */
.slick-dots {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 5px 0;
    list-style-type: none;
}

.slick-dots li {
    width: 10px;
    height: 10px;
    position: relative;
    margin: 0 6px;
}

.slick-dots button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50px;
    width: 10px !important;
    height: 10px !important;
}

.slick-dots li button:before {
    content: '';
    width: 10px;
    height: 10px;
    opacity: .20;
    border-radius: 50px;
    background: var(--primary);
    text-indent: -9999px;
    transition: all 0.3s;
}

.slick-dots li button:hover,
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
    background: var(--primary);
    background-color: var(--primary);
}

.slick-dots li.slick-active {
    width: 37px;
    height: 10px;
}

.slick-dots li.slick-active button,
.slick-dots li.slick-active button::before {
    width: 37px !important;
    max-width: 37px !important;
    height: 10px !important;
    border-radius: 16px;
    opacity: 1;
    background: linear-gradient(350.38deg, #AB533E 66.6%, #DA6936 85.93%);
    box-shadow: 1px 1px 5px 0px #00000013;
}



/* -------------------------------------------------------------------------- */
/*                               Slick Dots End                               */
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*                              Pagination Start                              */
/* -------------------------------------------------------------------------- */
.pagination {
    margin-top: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.pagination p {
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    color: var(--black);
    margin: 0;
}

.pagination ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
}

.pagination ul li {
    margin: 0 4px;
}

.pagination ul li a {
    width: 46px;
    height: 46px;
    font-size: 22px;
    font-weight: 600;
    line-height: 33px;
    text-align: center;
    padding: 12px 15px;
    border-radius: 50%;
    border: 1px solid transparent;
    color: var(--black);
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.pagination ul li a.active,
.pagination ul li a:focus,
.pagination ul li a:hover {
    color: var(--primary);
}

.pagination ul li a.active {
    border-color: var(--primary);
    color: var(--white);
    background-color: var(--primary);
}

.pagination ul li a.next-button img {
    transition: all 0.3s;
    filter: brightness(0) saturate(100%) invert(44%) sepia(73%) saturate(2739%) hue-rotate(324deg) brightness(100%) contrast(95%);
}

.pagination ul li a.next-button:hover img {
    filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(7469%) hue-rotate(217deg) brightness(108%) contrast(108%);
}

/* -------------------------------------------------------------------------- */
/*                               Pagination End                               */
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*                              Breadcrumb Start                              */
/* -------------------------------------------------------------------------- */
.breadcrumb {
    align-items: center;
}

.breadcrumb ul {
    list-style-type: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    overflow-y: auto;
    padding: 0 0 4px 0;
    margin: 0;
}

.breadcrumb ul .breadcrumb-item {
    margin-left: 4px;
    padding-left: 0;
}

.breadcrumb ul .breadcrumb-item a {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--text);
    position: relative;
    padding-left: 18px;
    text-wrap: nowrap;
    display: flex;
    align-items: center;
    transition: all 0.3s;
}

.breadcrumb ul .breadcrumb-item a::after {
    content: "\F285";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text);
}

.breadcrumb ul .breadcrumb-item.active a {
    color: var(--primary);
    cursor: auto;
}

.breadcrumb ul .breadcrumb-item::before {
    content: none;
}

.breadcrumb ul .breadcrumb-item:first-child {
    margin-left: 0;
}

.breadcrumb ul .breadcrumb-item:first-child a {
    padding: 0;
}

.breadcrumb ul .breadcrumb-item:first-child a::after {
    display: none;
}

/* -------------------------------------------------------------------------- */
/*                               Breadcrumb End                               */
/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/*                            Custom Gravity Form Start                        */
/* -------------------------------------------------------------------------- */
.custom-form-control .gfield_label {
    color: #524C4C !important;
    font-size: 14px !important;
    font-style: normal;
    font-weight: 500 !important;
    line-height: normal;
    margin-bottom: 6px !important;
}

.ginput_container_textarea textarea {
    resize: none;
}

.ginput_container_checkbox {
    color: #524c4c;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.ginput_container_checkbox span a {
    color: var(--background);
    text-decoration: underline;
}

.custom-form-control input,
.custom-form-control select,
.custom-form-control textarea {
    color: var(--text) !important;
    font-size: 14px !important;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 10px 14px !important;
    outline: 0;
    box-shadow: none;
    background: var(--white);
    border-radius: 0;
    border: 1px solid #D9D9D9;
    transition: all 0.3s;
    position: relative;
}

/* input ::before icon  */

.custom-form-control .ginput_container {
    position: relative;
}

.first-name input,
.last-name input,
.email-address input,
.phone-number input,
.company-name input {
    padding: 10px 12px 10px 42px !important;
}

.first-name .ginput_container::before,
.last-name .ginput_container::before,
.email-address .ginput_container::before,
.phone-number .ginput_container::before,
.company-name .ginput_container::before {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    left: 14px;
    top: 11px;
    /* transform: translateY(-50%); */
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    z-index: 1;

    filter: brightness(0) saturate(100%) invert(51%) sepia(13%) saturate(424%) hue-rotate(183deg) brightness(94%) contrast(90%);
}

/* .custom-form-control select.gfield_select {
    -webkit-appearance: none;
    color: #464546 !important;
    background-image: linear-gradient(45deg, transparent 50%, #8d8d8d 50%),
        linear-gradient(135deg, #8d8d8d 50%, transparent 50%),
        linear-gradient(to right, #ffffff03, #ffffff00);
    background-position: calc(100% - 20px) calc(1em + 4px),
        calc(100% - 15px) calc(1em + 4px), 100% 0;
    background-size: 5px 5px, 5px 5px, 2.5em 2.5em;
    background-repeat: no-repeat;
} */


/* custom-arrow-down start  */
.custom-form-control .ginput_container_select {
    position: relative;
}

.custom-form-control .ginput_container_select::before {
    content: "";
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 17px;
    height: 17px;
    background-image: url(../images/icons/arrow-down.svg);
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 0;
}

.custom-form-control .ginput_container_select {
    background: var(--white);
}

.custom-form-control .ginput_container_select select {
    background: transparent;
}

.custom-form-control .ginput_container_select select {
    /* for Firefox */
    -moz-appearance: none;
    /* for Chrome */
    -webkit-appearance: none;
}

/* custom-arrow-down end  */



.first-name .ginput_container::before,
.last-name .ginput_container::before {
    background-image: url(../images/icons/user.svg);
}

.email-address .ginput_container::before {
    background-image: url(../images/icons/sms.svg);
}

.phone-number .ginput_container::before {
    background-image: url(../images/icons/call2.svg);
}

/* input ::before icon  */


/* ginput_container_fileupload start*/
.ginput_container_fileupload input::file-selector-button {
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    color: var(--text);
    padding: 4px 5px;
    background-color: #F0EAEA;
    border: 0;
}

.gform_fileupload_rules {
    font-size: 13px !important;
    margin-top: 2px !important;
    color: var(--text);
}

/* ginput_container_fileupload end */


.custom-form-control .gfield_required {
    /* display: none !important; */
}

.custom-form-control input::placeholder,
.custom-form-control textarea::placeholder,
.custom-form-control option,
.custom-form-control select {
    color: #777F90 !important;
}

.ginput_container_date input:focus,
.ginput_container_date input:hover,
.custom-form-control select:focus,
.custom-form-control select:hover,
.custom-form-control textarea:focus,
.custom-form-control textarea:hover,
.custom-form-control input:focus,
.custom-form-control input:hover {
    outline: none;
    box-shadow: unset;
    border: 1px solid var(--primary) !important;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-background-clip: text;
    -webkit-text-fill-color: var(--text);
    /* transition: background-color 5000s ease-in-out 0s; */
    box-shadow: inset 0 0 20px 20px transparent;
}

.gform_footer.top_label {
    position: relative;
    /* width: fit-content; */
    margin: 0 !important;
    padding: 0 !important;
}

.gform_footer.top_label::after {
    content: "";
    position: absolute;
    right: calc(50% - 42px);
    bottom: 0;
    top: 40%;
    transform: translate(60%, 50%);
    width: 20px;
    height: 20px;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(../images/icons/right-arrow-white.svg);
    transition: all 0.3s;
}

.gform_footer.top_label::after {
    filter: brightness(0) saturate(100%) invert(91%) sepia(99%) saturate(30%) hue-rotate(269deg) brightness(107%) contrast(100%);
}

.gform_footer .gform_button {
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    border: 1px solid var(--primary);
    border-radius: 10px;
    color: #fff;
    background-color: var(--primary);
    padding: 12px 17px 12px 17px;
    margin-top: 30px;
    transition: all 0.3s ease;
}

.gform_footer:hover .gform_button,
.gform_footer:focus .gform_button,
.gform_footer:focus-visible .gform_button {
    color: var(--primary);
    border: 1px solid var(--primary);
    background-color: var(--white);
    outline: 0;
}

.gform_footer:hover.top_label::after {
    filter: brightness(0) saturate(100%) invert(68%) sepia(80%) saturate(2882%) hue-rotate(322deg) brightness(79%) contrast(107%);
}



.gform_not_found {
    font-size: 16px !important;
    font-style: normal !important;
    font-weight: 500 !important;
    color: var(--text) !important;
    line-height: normal !important;
    text-transform: capitalize;
    text-align: center;
    border-radius: 0;
    padding: 14px;
    margin: 3px 0;
    background-color: var(--white);
    border: 1px solid var(--primary);
}

.ginput_container .ginput_counter {
    display: none;
}

/* validation_message */
.gform_wrapper .gfield_validation_message,
.gform_wrapper .validation_message {
    padding: 0 !important;
    border: 0 !important;
    background-color: transparent !important;
    font-size: 13px !important;
    margin-top: 2px !important;
}

.gform_heading {
    display: none;
}

.gform_confirmation_message {
    text-align: left !important;
    color: var(--primary);
    font-size: 16px;
    font-weight: 500;
    border: 1px solid var(--primary);
    background-color: var(--background-light);
    padding: 12px;
    border-radius: 10px;
}

.ginput_container .charleft {
    color: #98a2b3 !important;
}


/* contact-form [Gravity Form]   */
.contact-form .gform_wrapper.gravity-theme .gform_fields {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
}

.contact-form .gform_footer.top_label {
    width: 100%;
    justify-content: center;
}

.contact-form .gform_footer.top_label::after {
    content: none;
}

/* brochure-form */
.brochure-form .gform_footer.top_label::after {
    content: none;
}

/* property-enquiry-form [Gravity Form]  */
.property-enquiry-form .gform_wrapper.gravity-theme .gform_fields {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
}

.property-enquiry-form .gform_footer.top_label::after {
    content: none;
}

/* career-form [Gravity Form] */
.career-form .gform_footer.top_label {
    width: fit-content;
}

.career-form .gform_footer.top_label::after {
    right: 25px;
}

.career-form .gform_footer .gform_button {
    border-radius: 0;
    background-color: transparent !important;
    background: var(--primary-gradient);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    padding-right: 45px;
}

.career-form .gform_footer .gform_button:hover,
.career-form .gform_footer .gform_button:focus,
.career-form .gform_footer .gform_button:focus-visible {
    background: var(--white);
    color: var(--primary);
    outline: 0;
}


/* -------------------------------------------------------------------------- */
/*                           Custom Gravity Form End                          */
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*                              Form-group Start                              */
/* -------------------------------------------------------------------------- */
.form-group {
    margin-bottom: 16px;
    position: relative;
}

.form-group .form-label {
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 4px;
    color: var(--text);
}

.form-group.required .form-label::after {
    content: '*';
    color: var(--danger_color);
    margin-left: 3px;
}

.form-group .form-control,
.form-group .form-select,
.form-group .search-field {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    box-shadow: none !important;
    outline: 0 !important;
    background-color: var(--white);
    border-color: #66708538;
    border-radius: 50px;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 17px;
    padding-right: 17px;
    transition: all 0.3s;
}

.form-group .form-control.form-control-lg,
.form-group .form-select.form-select-lg {
    padding-top: 19px;
    padding-bottom: 19px;
    padding-left: 26px;
    padding-right: 26px;
}

.form-group .form-control:hover,
.form-group .form-control:focus,
.form-group .form-control:focus-visible,
.form-group .form-select:focus,
.form-group .form-select:focus-visible,
.form-group .form-select:hover,
.form-group .search-field:hover,
.form-group .search-field:focus,
.form-group .search-field:focus-visible {
    outline: none;
    box-shadow: unset;
    border-color: var(--primary) !important
}

.form-group input::placeholder,
.form-group textarea::placeholder,
.form-group option,
.form-group select {
    color: var(--text);
}

.form-group .form-select {
    padding-right: 26px;
    position: relative;
    background-image: none;
    background-image: url('../images/icons/select-down-arrow.svg');
    background-repeat: no-repeat;
    /*  background-position: 11px 10px; */
    background-size: 11px 11px;

}

.form-group .form-select option {
    color: var(--gray);
}

.form-group .form-select {
    width: 100%;
}

.form-group .form-group-icon-start,
.form-group .form-group-icon-end {
    position: relative;
}

.form-group .form-group-icon-start .control-icon,
.form-group .form-group-icon-end .control-icon {
    font-size: 18px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    bottom: 0;
    display: flex;
    align-items: center;
    z-index: 1;
}

.form-group .form-group-icon-start .control-icon {
    left: 14px;
}

.form-group .form-group-icon-end .control-icon {
    right: 12px;
}

.form-group .form-group-icon-start .form-control,
.form-group .form-group-icon-start .form-select {
    padding-left: 45px;
    overflow: hidden;
}

.form-group .form-group-icon-end .form-control,
.form-group .form-group-icon-end .form-select {
    padding-right: 40px;
}

.form-group .form-group-icon-start .form-control-lg,
.form-group .form-group-icon-start .form-select-lg {
    padding-left: 55px;
    overflow: hidden;
}

.form-group .form-group-icon-end .form-control-lg,
.form-group .form-group-icon-end .form-select-lg {
    padding-right: 50px;
}


/* search-form [wordpress dainamic] */
.form-group .search-form {
    position: relative;
}

.form-group .search-form label,
.form-group .search-form .search-field {
    width: 100%;
}

.form-group .search-form .search-submit {
    position: absolute;
    left: auto;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    padding: 0;
    z-index: 1;
    width: 50px;
    height: 30px;
    background-color: transparent;
    color: transparent;
    border: 0;
}

/* -------------------------------------------------------------------------- */
/*                               Form-group End                               */
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*                             Dropdown Start                           */
/* -------------------------------------------------------------------------- */
.dropdown {
    display: flex;
    align-items: center;
}

.dropdown .dropdown-toggle {
    position: relative;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    display: flex;
    align-items: center;
}

.dropdown .dropdown-toggle::after {
    content: none;
}

.dropdown .dropdown-toggle.toggle-icon {
    padding-right: 30px !important;
}

.dropdown .dropdown-toggle.toggle-icon::after {
    content: "\F5D4";
    font-family: "bootstrap-icons";
    border: 0;
    margin: 0;
    -webkit-text-stroke: .5px;
    right: 8px;
    position: absolute;
    font-size: 12px;
}

.dropdown .dropdown-menu {
    min-width: 250px;
    max-width: 250px;
    max-height: 250px;
    overflow-x: hidden;
    overflow-y: auto;
    box-shadow: 0 5px 10px rgb(30 32 37 / 10%);
    animation-name: DropDownSlide;
    animation-duration: 0.3s;
    animation-fill-mode: both;
    position: absolute;
    z-index: 1000;
    border: 0;
    padding: 8px;
    border-radius: 10px;
}

.dropdown .dropdown-menu li:last-child .dropdown-item {
    margin: 0;
}

.dropdown .dropdown-menu li .dropdown-item {
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    padding: 4px 8px;
    margin-bottom: 7px;
}

.dropdown .dropdown-menu li .dropdown-item:hover {
    background-color: #F9F9F9;
}

.dropdown .dropdown-menu li .dropdown-item i {
    vertical-align: middle;
}

@keyframes DropDownSlide {
    to {
        margin-top: 1px
    }

    0% {
        margin-top: 8px
    }
}

@keyframes DropDownSlideDown {
    to {
        margin-bottom: 0
    }

    0% {
        margin-bottom: 8px
    }
}

/* -------------------------------------------------------------------------- */
/*                              Dropdown End                            */
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*                               Checkbox Start                               */
/* -------------------------------------------------------------------------- */
.checkbox {
    margin: 0;
}

.checkbox [type=checkbox]:checked,
.checkbox [type=checkbox]:not(:checked) {
    left: -9999px;
    opacity: 0;
    position: absolute;
}

.checkbox [type=checkbox]+label {
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    height: 20px;
    line-height: 20px;
    margin: 0;
    padding-left: 28px;
    color: #777F90;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -ms-user-select: none;
}

.checkbox [type=checkbox]+label:before,
.checkbox [type=checkbox]:not(.filled-in)+label:after {
    border: 2px solid #E3E3E3;
    border-radius: 1px;
    content: "";
    height: 18px;
    left: 0;
    margin-top: 1px;
    position: absolute;
    top: 0;
    transition: .2s;
    width: 18px;
    z-index: 0;
}

.checkbox [type=checkbox]:not(.filled-in)+label:after {
    border: 0;
    -webkit-transform: scale(0);
    transform: scale(0)
}

.checkbox [type=checkbox]:not(:checked):disabled+label:before {
    background-color: #00000042;
    border: none;
}

.checkbox [type=checkbox].tabbed:focus+label:after {
    background-color: #0000001a;
    border: 0;
    border-radius: 50%;
    box-shadow: 0 0 0 10px #0000001a;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.checkbox [type=checkbox]:checked+label:before {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-bottom: 2px solid var(--primary);
    border-left: 2px solid transparent;
    border-right: 2px solid var(--primary);
    border-top: 2px solid transparent;
    height: 18px;
    left: 0;
    top: -3px;
    width: 10px;
    -webkit-transform: rotate(40deg);
    transform: rotate(40deg);
    -webkit-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
}

.checkbox [type=checkbox]:checked:disabled+label:before {
    border-bottom: 2px solid rgba(0, 0, 0, .26);
    border-right: 2px solid rgba(0, 0, 0, .26);
}

.checkbox [type=checkbox]:indeterminate+label:before {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border: none;
    border-right: 2px solid var(--primary);
    height: 22px;
    left: -12px;
    top: -11px;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
    width: 10px;
}

.checkbox [type=checkbox]:indeterminate:disabled+label:before {
    background-color: initial;
    border-right: 2px solid rgba(0, 0, 0, .26);
}

.checkbox [type=checkbox].filled-in+label:after {
    border-radius: 2px;
}

.checkbox [type=checkbox].filled-in+label:after,
.checkbox [type=checkbox].filled-in+label:before {
    content: "";
    left: 0;
    position: absolute;
    transition: border .25s, background-color .25s, width .2s .1s, height .2s .1s, top .2s .1s, left .2s .1s;
    z-index: 1;
}

.checkbox [type=checkbox].filled-in:not(:checked)+label:before {
    border: 3px solid transparent;
    height: 0;
    left: 6px;
    top: 10px;
    -webkit-transform: rotate(37deg);
    transform: rotate(37deg);
    -webkit-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
    width: 0;
}

.checkbox [type=checkbox].filled-in:not(:checked)+label:after {
    background-color: initial;
    border: 2px solid #C7C7C7;
    height: 20px;
    top: 1px;
    width: 20px;
    z-index: 0;
}

.checkbox [type=checkbox].filled-in:checked+label:before {
    border-color: transparent #fff #fff transparent;
    border-style: solid;
    border-width: 2px;
    height: 13px;
    left: 1px;
    top: 1px;
    -webkit-transform: rotate(37deg);
    transform: rotate(37deg);
    -webkit-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
    width: 8px;
}

.checkbox [type=checkbox].filled-in:checked+label:after {
    background-color: var(--primary);
    border: 2px solid var(--primary);
    height: 20px;
    width: 20px;
    top: 1px;
    z-index: 0;
}

.checkbox [type=checkbox].filled-in.tabbed:focus+label:after {
    background-color: #0000001a;
    border-color: #5a5a5a;
    border-radius: 2px;
}

.checkbox [type=checkbox].filled-in.tabbed:checked:focus+label:after {
    background-color: var(--primary);
    border-color: var(--primary);
    border-radius: 2px;
}

.checkbox [type=checkbox].filled-in:disabled:not(:checked)+label:before {
    background-color: initial;
    border: 2px solid transparent;
}

.checkbox [type=checkbox].filled-in:disabled:checked+label:before {
    background-color: initial;
}

.checkbox [type=checkbox].filled-in:disabled:checked+label:after {
    background-color: #bdbdbd;
    border-color: #bdbdbd;
}

.checkbox.checkbox-small [type=checkbox]+label {
    height: 17px;
    padding-left: 22px;
}

.checkbox.checkbox-small [type=checkbox].filled-in:checked+label:after,
.checkbox.checkbox-small [type=checkbox].filled-in:not(:checked)+label:after {
    height: 17px;
    width: 17px;
}

.checkbox.checkbox-small [type=checkbox].filled-in:checked+label:before {
    height: 11px;
    width: 6px;
}

.checkbox.checkbox-inline {
    display: inline-block;
    margin-right: 1rem;
}

.checkbox.checkbox-white [type=checkbox].filled-in:not(:checked)+label:after {
    border: 2px solid var(--white);
}

/*  checkbox-sm */
.checkbox-sm [type=checkbox].filled-in:checked+label:before::before {
    height: 11px;
    width: 6px;
}

.checkbox-sm [type=checkbox].filled-in:not(:checked)+label::after {
    height: 16px;
    width: 16px;
}

.checkbox-sm [type=checkbox]+label {

    font-size: 14px;
    height: 16px;
    padding-left: 22px;

}

.checkbox-sm [type=checkbox].filled-in:checked+label:before {
    height: 11px;
    width: 6px;
}

.checkbox-sm [type=checkbox].filled-in:checked+label:after {
    height: 16px;
    width: 16px;
}

/* -------------------------------------------------------------------------- */
/*                                Checkbox End                                */
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*                                 Radio Start                                */
/* -------------------------------------------------------------------------- */
.radio {
    padding-left: 0;
    margin: 3px 0
}

.radio [type=radio]:checked,
.radio [type=radio]:not(:checked) {
    position: absolute;
    left: -9999px;
    opacity: 0
}

.radio label {
    display: inline-block;
    position: relative;
    padding-left: 5px
}

.radio [type=radio]+label {
    position: relative;
    padding-left: 20px;
    cursor: pointer;
    display: inline-block;
    height: 21px;
    line-height: 20px;
    font-size: 14px;
    margin: 0;
    font-weight: 500;
    -webkit-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -ms-user-select: none
}

.radio label::before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 16px;
    height: 16px;
    left: 0;
    top: 2px;
    border: 1px solid #a0a7b5;
    border-radius: 50%;
    background-color: #fff;
    margin: 0;
    -webkit-transition: border .15s ease-in-out;
    -o-transition: border .15s ease-in-out;
    transition: border .15s ease-in-out;
}

.radio label::after {
    display: inline-block;
    position: absolute;
    content: " ";
    width: 10px;
    height: 10px;
    left: 3px;
    top: 5px;
    border-radius: 50%;
    background-color: #555;
    margin: 0;
    -webkit-transform: scale(0, 0);
    -ms-transform: scale(0, 0);
    -o-transform: scale(0, 0);
    transform: scale(0, 0);
    -webkit-transition: -webkit-transform .1s cubic-bezier(.8, -.33, .2, 1.33);
    -moz-transition: -moz-transform .1s cubic-bezier(.8, -.33, .2, 1.33);
    -o-transition: -o-transform .1s cubic-bezier(.8, -.33, .2, 1.33);
    transition: transform .1s cubic-bezier(.8, -.33, .2, 1.33);
}

.radio input[type=radio] {
    opacity: 0;
}

.radio input[type=radio]:focus+label::before {
    outline: thin dotted;
    outline: 0;
    outline-offset: -2px;
}

.radio input[type=radio]:checked+label::after {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
}

.radio input[type=radio]:disabled+label {
    opacity: .65;
}

.radio input[type=radio]:disabled+label::before {
    cursor: not-allowed;
}

.radio.radio-inline {
    margin-top: 0;
}

.radio-primary input[type=radio]+label::after {
    background-color: var(--primary);
}

.radio-primary input[type=radio]:checked+label::before {
    border-color: var(--primary);
}

.radio-primary input[type=radio]:checked+label::after {
    background-color: var(--primary);
}

.radio.form-check-inline {
    display: inline-block;
    margin-right: 1rem;
}

.radio.form-check-flex {
    display: inline-flex;
}

.radio.radio-small [type=radio]+label {
    height: 17px;
}

/* -------------------------------------------------------------------------- */
/*                                  Radio End                                 */
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*                            Newsletter Form Start                           */
/* -------------------------------------------------------------------------- */
.newsletter-form {
    position: relative;
}

.newsletters-subscribe-form {
    position: relative;
}

.newsletters-subscribe-form .form-group {
    margin: 0;
}

.newsletters-subscribe-form .form-group .form-control {
    padding: 12px 125px 12px 12px;
    border-radius: 6px !important;
    background-color: var(--background-light) !important;
}

.newsletters-subscribe-form .newsletters_submit {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 100%;
}

.newsletter-form .newsletters_submit .btn {
    height: 100%;
    border-radius: 0 !important;
    border-start-end-radius: 5px !important;
    border-bottom-right-radius: 5px !important;
    border: 0 !important;
    background-color: var(--primary) !important;
    transition: all 0.3s;
    border: 1px solid transparent !important;
}

.newsletter-form .newsletters_submit .btn:hover {
    color: var(--primary) !important;
    background-color: var(--white) !important;
    border-color: var(--primary) !important;
}

.newsletters-subscribe-form .newsletters-field-error {
    text-align: left !important;
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    position: absolute;
    left: 0;
    border: 0;
    margin: 0 !important;
}

/* -------------------------------------------------------------------------- */
/*                             Newsletter Form End                            */
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*                        Custom Newsletter Form Start                        */
/* -------------------------------------------------------------------------- */
.custom-newsletter .newsletters-subscribe-form .form-group .form-control {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    box-shadow: none !important;
    outline: 0 !important;
    background-color: var(--white) !important;
    border-color: #66708538 !important;
    border-radius: 50px !important;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 17px;
    padding-right: 17px;
    transition: all 0.3s;
}

.custom-newsletter.custom-newsletter-lg .newsletters-subscribe-form .form-group .form-control {
    padding-top: 19px;
    padding-bottom: 19px;
    padding-left: 26px;
    padding-right: 50px;
}

.custom-newsletter .newsletters_submit {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 !important;
}

.custom-newsletter .newsletters_submit .btn {
    position: relative;
    width: 36px;
    height: 36px;
    min-width: auto;
    padding: 0;
}

.custom-newsletter .newsletters_submit .btn-primary {
    border: 1px solid var(--primary) !important;
    background-color: var(--primary) !important;
    color: var(--white) !important;
}

.custom-newsletter .newsletters_submit .btn-primary:hover,
.custom-newsletter .newsletters_submit .btn-primary:focus {
    background-color: var(--white) !important;
    color: var(--primary) !important;
}

.custom-newsletter .newsletters_submit .btn .newsletters-button-label {
    display: none;
}

.custom-newsletter .newsletters_submit .btn::after {
    content: '\F138';
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);

}

.custom-newsletter .newsletters-subscribe-form .newsletters_submit {
    height: auto;
}

/* -------------------------------------------------------------------------- */
/*                        Custom Newsletter Form End                        */
/* -------------------------------------------------------------------------- */


/* -------------------------------------------------------------------------- */
/*                              Main Title Start                              */
/* -------------------------------------------------------------------------- */

.main-title {
    position: relative;
    z-index: 1;
}

.main-title h2 {
    position: relative;
    z-index: 1;
    font-size: 43px;
    font-weight: 600;
    line-height: 64.5px;
    margin-bottom: 0;
    color: var(--text);
}

.main-title span {
    font-family: "Poppins", sans-serif;
    display: inline-block;
    font-size: 115px;
    font-weight: 700;
    line-height: 180px;
    opacity: 0.1;
    margin-bottom: 0;
    color: var(--text);
}

.main-title .main-title-wrapper {
    position: relative;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.main-title .main-title-wrapper span {
    position: absolute;
    left: 0;
    bottom: -20px;
    left: 0;
}

.main-title h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 32.64px;
    margin-bottom: 0;
    color: var(--text);
}

.main-title h2+p {
    margin-top: 20px;
}

.main-title p {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: var(--text);
}

/* -------------------------------------------------------------------------- */
/*                               Main Title End                               */
/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/*                               content-inner Start                               */
/* -------------------------------------------------------------------------- */
.content-inner h2 span {
    display: inline-block;
    font-weight: 400;
}

/* -------------------------------------------------------------------------- */
/*                               content-inner End                               */
/* -------------------------------------------------------------------------- */


/*----------------------------------------- Footer ----------------------------------------- */
.footer .footer-logo {
    position: relative;
}

.footer .footer-logo::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 1px;
    background-color: #FFFFFF66;
    z-index: 0;
}

.footer .footer-link .elementor-widget-container ul,
.bottom-footer .footer-link .elementor-widget-container ul {
    gap: 18px 8px;
}

.footer .footer-link .elementor-widget-container ul li {
    word-break: break-word;
}

/*----------------------------------------- Footer ----------------------------------------- */


/* -------------------------------------------------------------------------- */
/*                               Home Page Start                              */
/* -------------------------------------------------------------------------- */

/* home-page-banner */
.home-page-banner {
    height: calc(100vh - 130px);
    padding: 50px 0;
    background-color: var(--secondary);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home-page-banner .slick-slider .slick-track,
.home-page-banner .slick-slider .slick-list {
    height: calc(100vh - 130px);
}


.home-page-banner .slick-slider {
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 0;
    top: 0;
    bottom: 0;
    right: 0;
    margin-bottom: 40px;
}

.home-page-banner .slick-dots li button:before,
.home-page-banner .slick-dots li.slick-active button,
.home-page-banner .slick-dots li.slick-active button::before {
    background: var(--white);
    background-color: var(--white);
}

.home-page-banner .banner-details-row {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 44;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 100px;
}


.home-page-banner .banner-details-row .banner-details-col.banner-details {
    flex: 0 0 42%;
    max-width: 42%;
}

.home-page-banner .banner-details-row .banner-details h1 {
    font-size: 67px;
    font-weight: 700;
    line-height: 85px;
    color: var(--white);
    margin-bottom: 20px;
}

.home-page-banner .banner-details-row .banner-details h1 span {
    display: inline-block;
    font-weight: 500;
}

.home-page-banner .banner-details-row .banner-details p {
    font-size: 21px;
    font-weight: 400;
    line-height: 35.7px;
    color: var(--white);
    margin: 0;
}

.home-page-banner .banner-details-row .banner-details .banner-button {
    margin-top: 50px;
}


.home-page-banner .banner-image {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.home-page-banner .banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.home-page-banner .banner-image::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(261deg, rgba(0, 0, 0, 0) 0%, rgb(0 0 0 / 76%) 100%);
    z-index: 1;
}

.home-page-banner .banner-scaner {
    max-width: 335px;
    position: absolute;
    right: 100px;
    bottom: 50px;
    padding: 14px;
    border-radius: 15px;
    border: 1px solid #FFFFFF4D;
    overflow: hidden;
    background-color: #ffffff3b;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    z-index: 5;
}

.home-page-banner .banner-scaner .image {
    padding: 3px;
    flex: 0 0 104px;
    width: 104px;
    height: 104px;
    background-color: var(--white);
    margin-right: 15px;
}

.home-page-banner .banner-scaner .image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.home-page-banner .banner-scaner .details {
    padding: 8px 24px 8px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home-page-banner .banner-scaner .details p {
    font-size: 21px;
    font-weight: 500;
    line-height: 28px;
    color: var(--white);
}

.home-page-banner .banner-scaner.mobile-banner-scaner {
    display: none;
}

.home-page-banner .banner-scaner.mobile-banner-scaner p {
    font-size: 21px;
    font-weight: 500;
    line-height: 28px;
    color: var(--white);
}

/* ----------------------------- counter-section ---------------------------- */
.counter-section {
    background-color: var(--background-dark);
}

.counter-section .counter-col {
    border-left: 1px solid #FFFFFF26;
    border-right: 1px solid #FFFFFF26;
}

.counter-section .counter-details {
    padding: 57px 35px;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.counter-section .counter-details .counter-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 21px;
}

.counter-section .counter-details .counter-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.counter-section .counter-details .counter-title {
    font-size: 28px;
    font-weight: 600;
    line-height: 42px;
    color: var(--white);
    margin-bottom: 11px;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    white-space: normal;
    overflow: hidden;
}

.counter-section .counter-details p {
    font-size: 14px;
    font-weight: 400;
    line-height: 16.03px;
    color: var(--white);
    margin-bottom: 0;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    white-space: normal;
    overflow: hidden;
}

/* ------------------------------ projects-card start ----------------------------- */
.projects-card-row {
    margin-left: -25px;
    margin-right: -25px;
    z-index: 1;
}

.projects-card-row .projects-card-col {
    padding-left: 25px;
    padding-right: 25px;
}

.projects-card {
    border-radius: 0;
    background-color: var(--white);
    border: 0;
    box-shadow: none;
    margin: 25px 0;
}

.projects-card .card-image {
    width: 100%;
    height: 432px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(133deg, #ffffff 0%, #ffb18f 100%);
}

.projects-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    opacity: 1;
    transition: all .9s;
}

.projects-card:hover img {
    transform: scale(1.05);
    opacity: 0.8;
}

.projects-card .card-image span {
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
    color: var(--white);
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    right: auto;
    padding: 6px 23px 6px 16px;
    background: var(--primary-gradient);
    border-top-right-radius: 76px;
    z-index: 1;
}

.projects-card .card-body {
    padding: 25px 0 0 0;
}

.projects-card .card-body .card-details .card-title {
    font-size: 26px;
    font-weight: 600;
    line-height: 39px;
    color: var(--text);
    margin-bottom: 11px;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    white-space: normal;
    overflow: hidden;
}

.projects-card .card-body .card-details .icon {
    flex: 0 0 17px;
    width: 17px;
    height: 17px;
}

.projects-card .card-body .card-details .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.projects-card .card-body .card-details ul li,
.projects-card .card-body .card-details p {
    position: relative;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: var(--text-primary-dark);
    margin: 0;
}

.projects-card .card-body .card-details ul {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    margin: 0;
    padding: 0;
    gap: 2px 8px;
}

.projects-card .card-body .card-details p+p,
.projects-card .card-body .card-details p+ul,
.projects-card .card-body .card-details ul+ul,
.projects-card .card-body .card-details ul+p {
    margin-top: 11px;
}

.projects-card .card-body .card-details ul .list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 2px 0;
}

.projects-card .card-body .card-details ul li {
    padding-right: 9px;
    margin: 0 9px 0 0;
}

.projects-card .card-body .card-details ul li::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: calc(100% - 10px);
    background-color: #CEC8C8;
}

.projects-card .card-body .card-details ul li:last-child {
    margin-left: 0;
    padding-left: 0;
}

.projects-card .card-body .card-details ul li:last-child::after {
    content: none;
}


/* ------------------------------ projects-card end ----------------------------- */

/* ---------------------------- upcoming-projects --------------------------- */
.upcoming-projects {
    padding: 100px 0;
}

.upcoming-projects.home-upcoming-projects {
    padding: 100px 0 70px 0;
}

.upcoming-projects.scratch-image.scratch-image-top-right::after {
    right: -15%;
    top: -10%;
}

.upcoming-projects .main-title {
    margin-bottom: 46px;
}

/* ---------------------------- ongoing-projects --------------------------- */
.ongoing-projects {
    padding: 100px 0;
}

.ongoing-projects.home-ongoing-projects {
    padding: 100px 0 150px 0;
}

.ongoing-projects.scratch-image.scratch-image-bottom-left::after {
    left: -15%;
    bottom: -10%;
}

.ongoing-projects .main-title {
    margin-bottom: 50px;
}

/* ---------------------------- completed-projects --------------------------- */

.completed-projects {
    padding: 100px 0;
}

.completed-projects.home-completed-projects,
.completed-projects.project-completed-projects {
    padding: 100px 0 20px 0;
}

.completed-projects .main-title {
    margin-bottom: 50px;
}



/* --------------------------- luxuries-lifestyle --------------------------- */

.luxuries-lifestyle {
    padding: 100px 0;
    background-color: #232323;
}

.luxuries-lifestyle .main-title {
    margin-bottom: -50px;
    z-index: 1;
}

.luxuries-lifestyle .luxuries-lifestyle-row {
    margin-left: -43px;
    margin-right: -43px;
    align-items: center;
}

.luxuries-lifestyle .luxuries-lifestyle-row .luxuries-lifestyle-col {
    padding-left: 43px;
    padding-right: 43px;
}

.luxuries-lifestyle .luxuries-lifestyle-details {
    padding-left: 32px;
}

.luxuries-lifestyle .luxuries-lifestyle-details h2 {
    font-size: 43px;
    font-weight: 600;
    line-height: 64.5px;
    color: var(--white);
    margin-bottom: 18px;
}

.luxuries-lifestyle .luxuries-lifestyle-details h2 span {
    font-weight: 400;
}

.luxuries-lifestyle .luxuries-lifestyle-details p {
    font-size: 18px;
    font-weight: 400;
    line-height: 30.6px;
    color: var(--white);
    margin-bottom: 0;
    -webkit-line-clamp: 10;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    white-space: normal;
    overflow: hidden;
}


.luxuries-lifestyle .luxuries-lifestyle-details p+p,
.luxuries-lifestyle .luxuries-lifestyle-details p+h2 {
    margin-top: 18px;
}

.luxuries-lifestyle .luxuries-lifestyle-details .button-group {
    margin-top: 50px;
    gap: 18px;
}

.luxuries-lifestyle .luxuries-lifestyle-image {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 32px;
}

.luxuries-lifestyle .luxuries-lifestyle-image .image-1,
.luxuries-lifestyle .luxuries-lifestyle-image .image-2 {
    height: 549px;
}

.luxuries-lifestyle .luxuries-lifestyle-image .image-1 img,
.luxuries-lifestyle .luxuries-lifestyle-image .image-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --------------------------- section-full-image --------------------------- */
.section-full-image {
    height: 435px;
    overflow: hidden;
}

.section-full-image .image-wrapper {
    position: relative;
    height: 100%;
    width: 100%;
}

.section-full-image .image-wrapper::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #0000004D;
    z-index: 1;
}

.section-full-image .image-wrapper img {
    position: relative;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --------------------------- section-full-video --------------------------- */
.section-full-video {
    width: 100%;
    height: 660px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.section-full-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-wrapper {
    position: relative;
    display: inline-block;
}

.video-icon-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    padding: 10px;
    border-radius: 150px;
    border: 1px solid var(--white);
    background-color: var(--background-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    pointer-events: none;
    animation: opacity 3s infinite;
}

.video-icon-overlay P {
    font-size: 16px;
    font-weight: 400;
    line-height: 30.6px;
    color: var(--white);
    margin: 0;
}

@keyframes opacity {
    0% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.5;
    }
}

/* -------------------------------------------------------------------------- */
/*                               Home Page End                              */
/* -------------------------------------------------------------------------- */



/* -------------------------------------------------------------------------- */
/*                            single projects page start                            */
/* -------------------------------------------------------------------------- */
/* single-page-banner start */
.single-page-banner {
    height: calc(100vh - 130px);
    padding: 26px 0 0 0;
    background-color: var(--secondary);
    position: relative;
    overflow: hidden;
}

.single-page-banner .banner-image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.single-page-banner .banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-page-banner .banner-image::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.70) 100%);
    z-index: 1;
}

.single-page-banner .category {
    display: inline-block;
    font-size: 23px;
    font-weight: 500;
    line-height: 34.5px;
    color: var(--white);
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    right: auto;
    padding: 16px 43px 16px 16px;
    background: var(--primary-gradient);
    border-top-right-radius: 76px;
    z-index: 3;
}

.single-page-banner .page-banner-container {
    padding: 0 100px;
    height: 100%;
}

.single-page-banner .page-banner-row {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    height: 100%;
}

.single-page-banner .banner-scaner {
    max-width: 335px;
    padding: 14px;
    border-radius: 15px;
    border: 1px solid #FFFFFF4D;
    overflow: hidden;
    background-color: #ffffff1a;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    z-index: 5;
}

.single-page-banner .banner-scaner .image {
    flex: 0 0 104px;
    width: 104px;
    height: 104px;
    background-color: var(--white);
    margin-right: 15px;
}

.single-page-banner .banner-scaner .image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.single-page-banner .banner-scaner .details {
    padding: 8px 24px 8px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.single-page-banner .banner-scaner .details p {
    font-size: 21px;
    font-weight: 500;
    line-height: 28px;
    color: var(--white);
}

.single-page-banner .banner-scaner.mobile-banner-scaner {
    display: none;
}

.single-page-banner .banner-scaner.mobile-banner-scaner p {
    font-size: 21px;
    font-weight: 500;
    line-height: 28px;
    color: var(--white);
}

.single-page-banner .banner-content {
    max-width: 92%;
}

.single-page-banner .banner-content h1 {
    font-size: 116px;
    font-weight: 700;
    line-height: 175px;
    opacity: 0.5;
    color: var(--white);
    text-align: end;
    margin: 0;
}

/* single-page-banner end */

/* single-page-banner-details */
.single-page-banner-details {
    padding: 50px 0 20px 0;
}

/* .single-page-banner-details .slick-arrow {
    padding-bottom: 70px;
} */

.single-page-banner-details .banner-details-left .banner-details-group {
    border-bottom: 1px solid #E6EAEE;
    padding-bottom: 34px;
    margin-bottom: 34px;
}

.single-page-banner-details .banner-details-left .banner-details-group:last-child {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}

.single-page-banner-details .banner-details-left .banner-details-group h4 {
    font-size: 28px;
    font-weight: 600;
    line-height: 36.4px;
    color: var(--text);
    margin-bottom: 34px;
}

.single-page-banner-details .banner-details-left .banner-details-group p {
    font-size: 16px;
    font-weight: 400;
    line-height: 27.2px;
    color: #4A4B51;
    margin: 0;
}

.single-page-banner-details .banner-details-left .banner-details-group p+p {
    margin-top: 18px;
}

/* amenities */
.single-page-banner-details .amenities .amenities-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 27px;

}

.single-page-banner-details .amenities .amenities-row .amenities-col {
    padding: 21px;
    background-color: #F5F5F5;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

.single-page-banner-details .amenities .amenities-row .amenities-col:hover {
    background-color: var(--primary);
}

.single-page-banner-details .amenities .amenities-row .amenities-col:hover p {
    color: var(--white);
}

.single-page-banner-details .amenities .amenities-row .amenities-col:hover .icon img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(185deg) brightness(104%) contrast(100%);
}

.single-page-banner-details .amenities .amenities-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.single-page-banner-details .amenities .amenities-card .icon {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    margin-bottom: 10px;
}

.single-page-banner-details .amenities .amenities-card .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s;
}

.single-page-banner-details .amenities .amenities-card p {
    font-size: 18px;
    font-weight: 700;
    line-height: 23.4px;
    color: #292D32;
    margin: 0;
    text-align: center;
    text-transform: uppercase;
    transition: all 0.3s;
}

/* layout-plan */
.single-page-banner-details .layout-plan .layout-plan-wrapper {
    /* max-width: 70%;
    margin: 0 auto; */
}

.single-page-banner-details .layout-plan-slider.slick-slider {
    margin: 0 -20px;
}

.single-page-banner-details .layout-plan-slider .slick-slide {
    margin-right: 20px;
    margin-left: 20px;
}

.single-page-banner-details .layout-plan .layout-plan-wrapper .layout-plan-item {
    margin-bottom: 15px;
}

.single-page-banner-details .layout-plan .layout-plan-item .layout-plan-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 27.48px;
    text-align: center;
    color: #4A4B51;
    margin: 0 0 24px 0;
}

.single-page-banner-details .layout-plan .layout-plan-item .layout-plan-image {
    width: 100%;
    height: 460px;
}

.single-page-banner-details .layout-plan .layout-plan-item .layout-plan-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* specifications */
.single-page-banner-details .specifications .specifications-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 27px;
}

.single-page-banner-details .specifications .specifications-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

.single-page-banner-details .specifications .specifications-item .icon {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    margin-right: 14px;
}

.single-page-banner-details .specifications .specifications-item .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.single-page-banner-details .specifications .specifications-item .details h6 {
    font-size: 24px;
    font-weight: 400;
    line-height: 24px;
    color: var(--text);
    margin-bottom: 9px;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    white-space: normal;
    overflow: hidden
}

.single-page-banner-details .specifications .specifications-item .details p {
    font-size: 18px;
    font-weight: 300;
    line-height: 24px;
    color: var(--text);
    margin-bottom: 0;
}

/* project-gallery */
.project-gallery {}


.single-page-banner-details .project-gallery .project-gallery-item {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
}


.single-page-banner-details .project-gallery .project-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-page-banner-details .project-gallery .project-gallery-item .view-more {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    bottom: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    background: #00000080;
}

.single-page-banner-details .project-gallery .project-gallery-item .view-more .view-more-btn {
    width: 104px;
    height: 104px;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    color: var(--white);
    line-height: 22px;
    padding: 8px;
    background: #313033B2;
    border: 1px solid var(--white);
    border-radius: 50%;
}

.single-page-banner-details .project-gallery .project-gallery-row {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 20px;
    grid-template-rows: 350px 350px;
}

.single-page-banner-details .project-gallery .project-gallery-item:nth-child(1n+1) {
    grid-column: span 4 / span 4;
}

.single-page-banner-details .project-gallery .project-gallery-item:nth-child(1n+2) {
    grid-column: span 3 / span 3;
    grid-column-start: 5;
}

.single-page-banner-details .project-gallery .project-gallery-item:nth-child(1n+3) {
    grid-column: span 3 / span 3;
    grid-column-start: 8;
}

.single-page-banner-details .project-gallery .project-gallery-item:nth-child(1n+4) {
    grid-column: span 3 / span 3;
    grid-row-start: 2;
}

.single-page-banner-details .project-gallery .project-gallery-item:nth-child(1n+5) {
    grid-column: span 4 / span 4;
    grid-column-start: 4;
    grid-row-start: 2;
}

.single-page-banner-details .project-gallery .project-gallery-item:nth-child(1n+6) {
    grid-column: span 3 / span 3;
    grid-column-start: 8;
    grid-row-start: 2;
}


/* project-image */
.single-page-banner-details .project-images-wrapper .project-image {
    width: 100%;
    height: 436px;
}

.single-page-banner-details .project-images-wrapper .project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-page-banner-details .project-image-slider .slick-prev {
    right: calc(100% - 20px);
    left: auto;
    top: 50%;
}

.single-page-banner-details .project-image-slider .slick-next {
    left: calc(100% - 20px);
    right: auto;
    top: 50%;
}

/* location */
.single-page-banner-details .location .location-wrapper {
    width: 100%;
    height: 435px;
    border-radius: 14px;
    overflow: hidden;
}

.single-page-banner-details .location .location-wrapper iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* contact-details */
.single-page-banner-details .contact-details .contact-details-row {
    background-color: #FFFBF9;
    align-items: center;
}

.single-page-banner-details .contact-details .contact-details-inner {
    position: relative;
    overflow: hidden;
    height: 647px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 80px;
}

.single-page-banner-details .contact-details .details {
    position: relative;
    z-index: 2;
}

.single-page-banner-details .contact-details .details h3 {
    font-size: 38px;
    font-weight: 600;
    line-height: 49px;
    color: #090914;
    margin-bottom: 12px;
}

.single-page-banner-details .contact-details .details p {
    font-size: 16px;
    font-weight: 400;
    line-height: 27px;
    color: var(--text);
    margin-bottom: 12px;
}


.single-page-banner-details .contact-details-inner::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: #000000CC;
    z-index: 1;
}

.single-page-banner-details .contact-details-inner ul {
    margin: 0;
    margin-top: 32px;
}

.single-page-banner-details .contact-details-inner ul li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: nowrap;
    margin-bottom: 24px;
}

.single-page-banner-details .contact-details-inner ul li:last-child {
    margin-bottom: 0;
}

.single-page-banner-details .contact-details-inner ul li .icon {
    flex: 0 0 28px;
    max-width: 28px;
    height: 28px;
    border-radius: 50px;
    margin-right: 11px;
    background-color: #FCF6F5;
    border: 1px solid #F0EAEA;
    display: flex;
    align-items: center;
    justify-content: center;
}

.single-page-banner-details .contact-details-inner ul li .icon img {
    width: 15px;
    height: 15px;
    object-fit: contain;
}

.single-page-banner-details .contact-details-inner ul li .content-details h6 {
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    color: var(--white);
    margin-bottom: 6px;
}

.single-page-banner-details .contact-details-inner ul li .content-details a {
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #FFFAFA;
    margin-bottom: 0;
    transition: all 0.3s;
}

.single-page-banner-details .contact-details-inner ul li .content-details a:hover {
    color: var(--primary);
}

.single-page-banner-details .contact-details-inner .button-group {
    margin-top: 45px;
}

.single-page-banner-details .contact-details-inner .background-image {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.single-page-banner-details .contact-details-inner .background-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-page-banner-details .contact-details .contact-details-form {
    padding: 20px 70px;
}

.single-page-banner-details .contact-details .property-enquiry-form {
    margin-top: 30px;
}


/* -------------------------------------------------------------------------- */
/*                            single projects page end                            */
/* -------------------------------------------------------------------------- */


/* -------------------------------------------------------------------------- */
/*                                 Awards Page Start                            */
/* -------------------------------------------------------------------------- */

/* awards-card start*/
.awards-card-row {
    margin-left: -21px;
    margin-right: -21px;
}

.awards-card-row .awards-card-col {
    padding-left: 21px;
    padding-right: 21px;
}

.awards-card {
    overflow: hidden;
    background-color: var(--white);
    box-shadow: none;
    border: 0;
    border-radius: 0;
    margin: 31px 0;
}

.awards-card .card-image {
    width: 100%;
    height: 385px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(133deg, #ffffff 0%, #ffb18f 100%);
}

.awards-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    opacity: 1;
    transition: all .9s;
}

.awards-card:hover img {
    transform: scale(1.04);
    opacity: 0.8;
}


.awards-card .card-image .date {
    position: absolute;
    bottom: 0;
    top: auto;
    left: 0;
    right: auto;
    font-size: 12px;
    font-weight: 500;
    line-height: 13.74px;
    padding: 9px 12px;
    margin: 0;
    color: var(--white);
    background-color: var(--background-dark);
}

.awards-card .card-body {
    padding: 14px 0 0 0;
}

.awards-card .card-body .card-details .category {
    font-size: 18px;
    font-weight: 400;
    line-height: 20.61px;
    color: var(--black);
    margin: 0 0 14px 0;
}

.awards-card .card-body .card-details .card-title {
    font-size: 21px;
    font-weight: 500;
    line-height: 27.3px;
    color: var(--black);
    margin: 0 0 14px 0;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    white-space: normal;
    overflow: hidden;
}

.awards-card .card-body .card-details a {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    line-height: 18.32px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    color: var(--text);
    margin: 0;
    transition: all 0.3s;
}

.awards-card:hover .card-body .card-details a {
    color: var(--primary);
}

/* awards-card end */

/* ----------------------------- awards-section ----------------------------- */
.awards-section {
    padding: 50px 0;
}

/* -------------------------------------------------------------------------- */
/*                                 Awards Page End                              */
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*                                 updates Page Start                            */
/* -------------------------------------------------------------------------- */

/* updates-card start*/
.updates-card-row {
    margin-left: -25px;
    margin-right: -25px;
}

.updates-card-row .updates-card-col {
    padding-left: 25px;
    padding-right: 25px;
}

.updates-card {
    overflow: hidden;
    background-color: var(--white);
    box-shadow: none;
    border: 0;
    border-radius: 0;
    margin: 25px 0;
    position: relative;
}

.updates-card .card-image {
    width: 100%;
    height: 385px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(133deg, #ffffff 0%, #ffb18f 100%);
    z-index: 0;
}

.updates-card .card-image::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(309.67deg, #d6663667 0%, #ffffff75 100%);
    /* background-color: rgb(206 116 79 / 30%); */
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    transition: all 0.5s ease;
}

.updates-card:hover .card-image::before {
    opacity: 1;
}

.updates-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    opacity: 1;
    transition: all .9s;
}

.updates-card:hover img {
    transform: scale(1.04);
    opacity: 0.8;
}


.updates-card .card-image .date {
    position: absolute;
    bottom: auto;
    top: 0;
    left: auto;
    right: 0;
    font-size: 13px;
    font-weight: 500;
    line-height: 13.74px;
    padding: 9px 12px;
    margin: 0;
    color: var(--white);
    background-color: var(--background-dark);
    z-index: 2;
}

.updates-card .card-body {
    padding: 20px 14px;
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    right: 0;
    z-index: 2;
    opacity: 0;
    transform: translateY(100%);
    transition: transform 0.3s, all 0.5s ease;
}

.updates-card:hover .card-body {
    opacity: 1;
    transform: translateY(0);
}

.updates-card .card-body .card-details .category {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    color: var(--black);
    margin: 0 0 14px 0;
    background-color: var(--white);
    display: inline-block;
    padding: 6px 8px;
}

.updates-card .card-body .card-details .card-title {
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    color: var(--white);
    margin: 0;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    white-space: normal;
    overflow: hidden;
    padding: 10px;
    background: var(--primary-gradient);
}


/* updates-card end */

/* ----------------------------- updates-section ---------------------------- */
.updates-section {
    padding: 50px 0;
}

/* -------------------------------------------------------------------------- */
/*                                 Awards Page End                              */
/* -------------------------------------------------------------------------- */



/* -------------------------------------------------------------------------- */
/*                           Single Awards Page Start                              */
/* -------------------------------------------------------------------------- */
/* single-awards-details Start*/
.single-awards {
    padding: 50px 0;
}

.single-awards-details .awards-info {
    margin-bottom: 40px;
}

.single-awards-details .awards-info .awards-date {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    text-align: left;
    color: #4A4B51;
    margin-bottom: 8px;
}

.single-awards-details .awards-info .awards-date span {
    font-weight: 600;
    color: var(--primary);
    display: inline-block;
}

.single-awards-details .awards-info h2 {
    font-size: 43px;
    font-weight: 700;
    line-height: 64.5px;
    text-align: left;
    color: var(--text);
    margin-bottom: 0;
}

.single-awards-details .awards-image {
    margin-bottom: 75px;
    border-radius: 24px;
    overflow: hidden;
    width: 100%;
    height: 600px;
}


.single-awards-details .awards-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-awards-details .awards-content {
    max-width: 80%;
    margin: 0 auto;
    margin-top: 30px;
}

.single-awards-details .awards-content p {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    color: #4A4B51;
}


.single-awards-details .awards-content p+p {
    margin-top: 27px;
}

.single-awards-details .awards-content p+h1,
.single-awards-details .awards-content p+h2,
.single-awards-details .awards-content p+h3,
.single-awards-details .awards-content p+h4,
.single-awards-details .awards-content p+h5,
.single-awards-details .awards-content p+h6 {
    margin-top: 27px;
}

.single-awards-details .awards-content h1,
.single-awards-details .awards-content h2,
.single-awards-details .awards-content h3,
.single-awards-details .awards-content h4,
.single-awards-details .awards-content h5,
.single-awards-details .awards-content h6 {
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    color: var(--text);
    text-transform: capitalize;
    margin-bottom: 22px;
}

.single-awards-details .awards-content h1 {
    font-size: 40px;
}

.single-awards-details .awards-content h2 {
    font-size: 36px;
}

.single-awards-details .awards-content h3 {
    font-size: 30px;
}

.single-awards-details .awards-content h4 {
    font-size: 21px;
}

.single-awards-details .awards-content h5 {
    font-size: 18px;
}

.single-awards-details .awards-content h6 {
    font-size: 16px;
}


.single-awards-details .awards-content a {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    color: var(--primary);
    margin-bottom: 5px;
    display: inline-block;
    transition: all 0.3s;
}

.single-awards-details .awards-content a:hover {
    color: var(--secondary);
}

.single-awards-details .awards-content .image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 30px;
    margin-bottom: 20px;
}

.single-awards-details .awards-content .image-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    overflow: hidden;
    border-radius: 14px;
}

.single-awards-details .awards-content .image-grid p {
    font-size: 14px;
    font-weight: 400;
    line-height: 23.8px;
    margin: 8px 0 0 0;
    color: #4A4B51;
}

/* single-awards-details End */

/* -------------------------------------------------------------------------- */
/*                           Single Awards Page End                              */
/* -------------------------------------------------------------------------- */


/* -------------------------------------------------------------------------- */
/*                          Careers Page Start                              */
/* -------------------------------------------------------------------------- */
/* careers-list */
.careers-list {
    padding: 80px 0 20px 0;
}


.careers-list .careers-list-wrapper .careers-list-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    border-bottom: 1px solid #B1AAAA;
    gap: 12px;
    cursor: pointer;
}

.careers-list .careers-list-wrapper .careers-list-item:hover .title h3 {
    color: var(--primary);
}

.careers-list .careers-list-wrapper .careers-list-item .title {
    flex: 0 0 80%;
    max-width: 80%;
}

.careers-list .careers-list-wrapper .careers-list-item .title h3 {
    font-size: 32px;
    font-weight: 500;
    line-height: 40px;
    color: #2F2A2A;
    margin: 0;
    transition: all 0.3s;
}

/* -------------------------------------------------------------------------- */
/*                          Careers Page End                              */
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*                         Single Careers Page Start                              */
/* -------------------------------------------------------------------------- */
.single-careers {
    padding: 70px 0 20px 0;
}

.single-career-row {
    margin-left: -25px;
    margin-right: -25px;
}

.single-career-row .single-career-col {
    padding-left: 25px;
    padding-right: 25px;
}

.single-careers .apply-card,
.single-careers .single-career-card {
    border-bottom: 3px solid #E2C58B;
    background: var(--white);
    padding: 27px;
}

.single-careers .back-button,
.single-career-modal-wrapper .back-button {
    display: flex;
    align-items: center;
    color: var(--text);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
    margin-bottom: 14px;
    transition: all 0.3s;
}

.single-careers .back-button:hover,
.single-career-modal-wrapper .back-button:hover {
    color: var(--primary);
}

.single-careers .back-button img,
.single-career-modal-wrapper .back-button img {
    width: 17px;
    height: 17px;
    object-fit: contain;
    object-position: center center;
    margin-right: 9px;
}


.single-careers .single-career-title,
.single-career-modal-wrapper .single-career-title {
    color: var(--primary);
    font-size: 26px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
    margin-bottom: 4px;
}

.single-careers .single-career-description,
.single-career-modal-wrapper .single-career-description {
    color: var(--text);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 15px;
}

.single-careers .time-site-wrapper,
.single-careers .time-site,
.single-career-modal-wrapper .time-site-wrapper,
.single-career-modal-wrapper .time-site {
    display: flex;
    align-items: center;
}

.single-career-modal-wrapper .time-site-wrapper p,
.single-careers .time-site-wrapper p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 0px;
    color: #4A4B51;
}

.single-career-modal-wrapper .time-site-wrapper,
.single-careers .time-site-wrapper {
    margin-right: 20px;
}

.single-career-modal-wrapper .time-site-wrapper img,
.single-careers .time-site-wrapper img {
    width: 20px;
    height: 20px;
    margin-right: 7px;
}

.single-careers .single-career-card-wrapper {
    padding-bottom: 32px;
    border-bottom: 1px solid #EAECF0;
    margin-bottom: 27px;
}

.single-careers .quick-summary h2 {
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    color: var(--text);
    margin-bottom: 11px;
}

.single-careers .quick-summary h3,
.single-careers .quick-summary h4,
.single-careers .quick-summary h5 {
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    color: var(--text);
    margin-bottom: 11px;
}

.single-careers .quick-summary p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 27.2px;
    color: #4A4B51;
    margin-bottom: 10px;
}

.single-careers .quick-summary ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 10px;
    margin-left: 0;
}

.single-careers .quick-summary ul li {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 27.2px;
    color: #4A4B51;
    margin-bottom: 0px;
}

.single-careers .apply-card {
    border-bottom: 0px;
    margin-bottom: 24px;
    background-color: #FFF7E1;
}

.single-careers .apply-card button {
    margin-bottom: 28px;
    width: 100%;
    max-width: 100%;
}

.single-careers .share p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #2F2A2A;
    margin-bottom: 10px;
}

.single-careers .share .share-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

.single-careers .share .share-link a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 37px;
    height: 37px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid var(--primary);
    transition: all 0.3s;
}

.single-careers .share .share-link a img {
    width: 15px;
    height: 15px;
    object-fit: contain;
    transition: all 0.3s;
    filter: brightness(0) saturate(100%) invert(56%) sepia(12%) saturate(2887%) hue-rotate(332deg) brightness(88%) contrast(94%);
}

.single-careers .share .share-link a:hover {
    background-color: var(--primary);
}

.single-careers .share .share-link a:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(6%) saturate(1240%) hue-rotate(265deg) brightness(116%) contrast(100%);
}


.single-careers .job-details .job-details-wrapper p {
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    color: #4A4B51;
    margin-bottom: 7px;
}

.single-careers .job-details .job-details-wrapper h6 {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: var(--primary);
    margin-bottom: 0px;
}

.single-careers .job-details .job-details-wrapper {
    padding: 17px 0;
    border-bottom: 1px solid #F7F1F1;

}


/* -------------------------------------------------------------------------- */
/*                         Single Careers Page End                              */
/* -------------------------------------------------------------------------- */












































.no-records-found p {
    font-size: 18px !important;
    font-style: normal !important;
    font-weight: 500 !important;
    color: #4A4B51 !important;
    line-height: normal !important;
    text-transform: capitalize;
    text-align: center;
    border-radius: 0;
    padding: 18px;
    margin: 3px 0;
    background-color: var(--white);
    border: 1px solid var(--primary);
}

/* a::before */
.awards-card .card-body .card-details a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

/* ---------------------------- elementor Section --------------------------- */

/* About us page  */
.why-seven9-section.scratch-image.scratch-image-top-left::after {
    left: -10%;
}

/* --------------------------- awards-section-card start [About Us Page]-------------------------- */
.awards-section-wrapper {}

.awards-section-card-row {
    margin-left: -12px;
    margin-right: -12px;
}

.awards-section-card-row .awards-section-card-col {
    padding-left: 12px;
    padding-right: 12px;
}

.awards-section-card {
    border: 0;
    box-shadow: none;
    background-color: #FFFFFF75;
    overflow: hidden;
    border-radius: 0;
    margin: 10px 0;
}

.awards-section-card .card-body {
    padding: 20px 28px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.awards-section-card .card-image {
    width: auto;
    height: 180px;
    margin-bottom: 28px;
}

.awards-section-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.awards-section-card .card-details .card-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
    text-align: center;
    color: var(--text);
    margin-bottom: 8px;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    white-space: normal;
    overflow: hidden;
}

.awards-section-card .card-details .card-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 27.2px;
    text-align: center;
    color: #4A4B51;
    margin-bottom: 8px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    white-space: normal;
    overflow: hidden;
}



.awards-section-card-slider .slick-prev {
    right: calc(100% - 30px);
    left: auto;
    top: 50%;
}

.awards-section-card-slider .slick-next {
    left: calc(100% - 30px);
    right: auto;
    top: 50%;
}

/* --------------------------- awards-section-card end[About Us Page]-------------------------- */

/* contact-page  */
.contact-us-section.scratch-image {
    overflow: visible;
}

.contact-us-section.scratch-image.scratch-image-bottom-left::after {
    left: -10%;
    bottom: -12%;
}

.icon-box .elementor-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FCF6F5;
    border-radius: 50%;
    border: 1px solid #F0EAEA;
}

.icon-box a {
    color: inherit;
    transition: all 0.3s;
}

.icon-box a:hover {
    color: var(--primary);
}

.location-section a {
    word-break: break-word;
}

/* ---------------------------- elementor Section --------------------------- */


/* slick-prev / slick-next   */
.luxuries-lifestyle-slider .slick-prev {
    right: calc(100% - 18px);
    left: auto;
    top: 50%;
}

.luxuries-lifestyle-slider .slick-next {
    right: auto;
    left: calc(100% - 18px);
    top: 50%;
}


.upcoming-projects-slider .slick-prev,
.ongoing-projects-slider .slick-prev,
.completed-projects-slider .slick-prev {
    right: calc(100% - 45px);
    left: auto;
    top: 50%;
}

.upcoming-projects-slider .slick-next,
.ongoing-projects-slider .slick-next,
.completed-projects-slider .slick-next {
    right: auto;
    left: calc(100% - 45px);
    top: 50%;
}

/* slick-prev / slick-next   */

/* ------------------------------ scratch-image ----------------------------- */
.scratch-image {
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.scratch-image::after {
    content: '';
    position: absolute;
    width: 658px;
    height: 345px;
    background-image: url('../images/scratch.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.2;
    z-index: 0;
}

/* scratch-image-top-right */
.scratch-image.scratch-image-top-right::after {
    right: 0;
    left: auto;
    top: 0;
    bottom: auto;
}

/* scratch-image-top-left */
.scratch-image.scratch-image-top-left::after {
    right: auto;
    left: 0;
    top: 0;
    bottom: auto;
}

/* scratch-image-bottom-left */
.scratch-image.scratch-image-bottom-left::after {
    right: auto;
    left: 0;
    top: auto;
    bottom: 0;
}

/* scratch-image-bottom-right */
.scratch-image.scratch-image-bottom-right::after {
    right: 0;
    left: auto;
    top: auto;
    bottom: 0;
}


/* --------------------------------- modal Start --------------------------------- */
.modal-theme .modal-dialog {
    overflow: hidden;
}

.modal-theme .modal-dialog form {
    width: 100%;
    height: 100%;
}

.modal-theme .modal-content {
    border: 0;
    border-radius: 12px;
}

.modal-theme .modal-content .modal-header {
    z-index: 2;
}

.modal-theme .modal-footer {
    padding: 20px 24px;
    margin: 0px;
    border-top: 1px solid #E6EAEE;
    gap: 0 10px;
}

.modal-theme .modal-footer .button-group {
    margin: 0px;
}

.modal-theme .modal-footer button {
    margin: 0px;
}

.modal-theme .btn-close {
    background: 0;
    font-size: 17px;
    color: var(--text);
    opacity: 1;
    box-shadow: none;
    border: 0;
    transition: all 0.3s;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-theme .btn-close i {
    -webkit-text-stroke: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.modal-theme .btn-close:hover {
    color: var(--primary);
}

.modal-theme .btn-close:hover i {
    transform: rotate(90deg);
    color: var(--primary);
}

.modal-theme .modal-header {
    padding: 20px 24px 0px 24px;
    border-bottom: 0px solid #E6EAEE;
}

.modal-theme .modal-header .modal-title {
    font-size: 18px;
    text-transform: capitalize;
    color: var(--black-color);
    font-weight: 600;
}

.modal-theme .modal-body {
    overflow-y: hidden;
    padding: 20px 24px;
}

.modal-theme .modal-body h2,
.modal-theme .modal-body h3,
.modal-theme .modal-body h4,
.modal-theme .modal-body h5 {
    font-weight: 600;
    color: #2F2A2A;
    margin-bottom: 20px;
}

.modal-theme .modal-body h2 {
    font-size: 22px;
    line-height: 34px;
}

.modal-theme .modal-body h3 {
    font-size: 18px;
    line-height: 30px;
}

.modal-theme .modal-body h4 {
    font-size: 16px;
    line-height: 26px;
}

.modal-theme .modal-body h5 {
    font-size: 14px;
    line-height: 24px;
}

.modal-theme .modal-footer {
    border-top: 0;
}


/* modal-apply-job */
.modal-theme.modal-apply-job .modal-dialog {
    max-width: 650px;
}

.modal-theme.modal-apply-job .modal-header {
    padding: 27px;
    padding-bottom: 0px;
    border: 0px;
}

.modal-theme.modal-apply-job .modal-body {
    padding: 27px;
}


.modal-theme.modal-apply-job .modal-header .single-career-modal-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0;
    gap: 12px;
}

.modal-theme.modal-apply-job .modal-header .single-career-modal-wrapper .time-site {
    flex: 0 0 40%;
    max-width: 40%;
    justify-content: flex-end;
}

.modal-theme.modal-apply-job .modal-header .single-career-modal-wrapper {
    padding-bottom: 32px;
    border-bottom: 1px solid #EAECF0;
}

.modal-theme.modal-apply-job .modal-header .single-career-modal-wrapper .single-career-title {
    font-size: 21px;
    margin: 0;
}


.modal-theme.modal-apply-job .modal-dialog .modal-content {
    border-radius: 0px;
}

.modal-theme.modal-apply-job .modal-header .single-career-description {
    margin-bottom: 0px;
    margin-top: 4px;
}


/* --------------------------------- modal End --------------------------------- */



/* -------------------------------------------------------------------------- */
/*                              Plyr Video Start                              */
/* -------------------------------------------------------------------------- */

.plyr {
    width: 100%;
    height: 100%;
}

.plyr .plyr__control--overlaid {
    background: var(--primary);
    color: var(--white);
}

.plyr .plyr__control--overlaid:hover {
    color: var(--primary);
    background: var(--white);
}

.plyr button {
    background: transparent;
    color: var(--white);
}

.plyr--video .plyr__control:focus-visible,
.plyr--video .plyr__control:hover,
.plyr--video .plyr__control[aria-expanded=true] {
    color: var(--white);
    background: var(--primary);
}

.plyr.plyr--full-ui input[type=range] {
    color: var(--primary);
}

/* -------------------------------------------------------------------------- */
/*                               Plyr Video End                               */
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*                                Loader Start                                */
/* -------------------------------------------------------------------------- */
.elementor-editor-active .loader-wrapper {
    display: none !important;
}

.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    /* background: linear-gradient(180deg, #fdfbf7 0%, #ffffff 100%); */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader-wrapper .loader-inner {
    /* position: relative; */
    display: flex;
    align-items: center;
    justify-content: center;
}



.loader-wrapper .loader-background {
    position: absolute;
    z-index: -1;
    opacity: 0.05;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: auto;
}

.loader-wrapper .loader-background img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.loader-wrapper .loader-image {
    position: absolute;
    left: 50%;
    top: 46%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 40px;
    height: 40px;
}

.loader-wrapper .loader-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.loader-12-wrapper {
    position: relative;
}

.loader-12 {
    width: 85px;
    height: 85px;
    border: 3px dotted var(--primary);
    border-style: solid solid dotted dotted;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    background-color: var(--white);
    -webkit-animation: rotation 1.5s linear infinite;
    animation: rotation 1.5 linear infinite;
}

.loader-12:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border: 3px dotted var(--secondary);
    border-style: solid solid dotted;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    -webkit-animation: rotationBack 0.6s linear infinite;
    animation: rotationBack 0.6s linear infinite;
    transform-origin: center center;
}


/* keyFrames */
@-webkit-keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


@-webkit-keyframes rotationBack {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}





.page-loaded {
    overflow: hidden !important;
}

/* Style for the main content (hidden while loading) */
.content {
    display: none;
}

.overflow-hidden-mobile {
    overflow-x: hidden !important;
}

/* -------------------------------------------------------------------------- */
/*                                 Loader End                                 */
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*                   search-page / category-page start                             */
/* -------------------------------------------------------------------------- */
.search-page,
.category-page {
    padding: 80px 0;
}

.search-page,
.category-page {
    width: 100%;
    height: 100%;
    background-color: var(--white);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.search-page a,
.category-page a {
    color: var(--primary);
}

.search-page .no-results,
.category-page .no-results {
    text-align: center;
}

.search-page .page-header .page-title,
.category-page .page-header .page-title {
    color: var(--primary);
    font-size: 42px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 28px;
}

.search-page .page-header .page-title span,
.category-page .page-header .page-title span {
    color: var(--text);
    text-transform: capitalize;
}

.search-page article,
.search-page .no-results {
    padding: 30px;
    background-color: var(--white);
    border: 1px solid var(--primary);
    margin-bottom: 30px;
    border-radius: 0;
}

.search-page .hentry .entry-title {
    margin-bottom: 15px;
}

.search-page.site-main .hentry .entry-title a {
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    color: var(--primary);
    line-height: normal;
}

.search-page .hentry .entry-summary p,
.search-page p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    color: var(--text);
    line-height: 24px;
}

.search-page p {
    margin-bottom: 20px;
}

.search-page .hentry .entry-summary p+p,
.search-page p+p {
    margin-top: 18px;
}

.search-page .post-thumbnail {
    max-width: 250px;
    height: auto;
    display: block;
    overflow: hidden;
}

.search-page.site-main .entry-header {
    position: inherit;
    padding-left: 0;
    width: 100%;
}

.search-page .entry-footer {
    color: var(--background-light);
    font-size: 16px;
    margin-top: 5px;
}

.search-page .hentry .entry-footer a {
    display: block;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
    color: var(--primary);
    display: flex;
    align-items: center;
}

.search-page .entry-header .entry-meta {
    margin-bottom: 5px;
}

.search-page .entry-header .posted-on,
.search-page .entry-header .author {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: var(--black);
}

.search-page .entry-header .posted-on a,
.search-page .entry-header .author a {
    font-weight: 600;
    color: var(--text);
}

.search-page .post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-page .search-form .search-field {
    font-size: 16px;
    font-weight: 400;
    padding: 10px 14px;
    outline: 0;
    box-shadow: none;
    border-radius: 0;
    border: 1px solid #e6e6ec;
}

.search-page .search-form .search-submit {
    min-width: 120px;
    min-height: 40px;
    font-size: 16px !important;
    font-weight: 500;
    line-height: 24px;
    border: 1px solid var(--primary);
    border-radius: 0;
    color: var(--white);
    background-color: var(--primary);
    padding: 10px 16px !important;
    margin: 10px 0 0 0;
    transition: all 0.3s;
}

.search-page .search-form .search-submit:hover,
.search-page .search-form .search-submit:focus {
    color: var(--primary);
    background-color: var(--white);
}

.search-page .hentry {
    position: relative;
    box-shadow: 0 5px 12px 0 #8b8b8b21;
}

/* -------------------------------------------------------------------------- */
/*                          search-page / category-page end                               */
/* -------------------------------------------------------------------------- */


/* -------------------------------------------------------------------------- */
/*                              Error Page Start                              */
/* -------------------------------------------------------------------------- */
.error-page {
    height: calc(100vh);
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-image {
    margin-bottom: 50px;
}

.error-image img {
    width: 500px;
    height: auto;
    margin: 0 auto;
}

.error-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.error-text {
    text-align: center;
}

.error-text .btn {
    margin: 0 auto;
}

.error-text h2 {
    font-size: 46px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    color: var(--text);
    margin-bottom: 30px;
}

.error-text p {
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    color: var(--text);
    margin-bottom: 34px;
}

.error-text .btn.btn-primary {
    min-width: 230px;
    min-height: 52px;
    padding: 17px 21px;
    line-height: 18px;
    justify-content: center;
}

.error404 .apply-for .error404 .contact-us {
    display: none;
}

/* -------------------------------------------------------------------------- */
/*                               Error Page End                               */
/* -------------------------------------------------------------------------- */


/* -------------------------------------------------------------------------- */
/*                       Responsive CSS Start [Container]                     */
/* -------------------------------------------------------------------------- */

@media screen and (min-width: 1400px) {
    .container {
        max-width: 1240px;
    }

    .elementor-section.elementor-section-boxed>.elementor-container {
        max-width: 1240px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media screen and (max-width: 1366px) {
    .container {
        max-width: 1220px;
    }

    .e-con-boxed .e-con-inner,
    .elementor-section.elementor-section-boxed>.elementor-container {
        max-width: 1220px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media screen and (max-width: 1200px) {
    .container {
        max-width: 950px !important;
    }

    .e-con-boxed .e-con-inner,
    .elementor-section.elementor-section-boxed>.elementor-container {
        max-width: 950px !important;
        margin-left: auto;
        margin-right: auto;
    }
}

@media screen and (max-width: 992px) {
    .container {
        max-width: 792px !important;
    }

    .e-con-boxed .e-con-inner,
    .elementor-section.elementor-section-boxed>.elementor-container {
        max-width: 792px !important;
        margin-left: auto;
        margin-right: auto;
    }
}

@media screen and (max-width: 768px) {
    .container {
        max-width: 670px !important;
    }

    .e-con-boxed .e-con-inner,
    .elementor-section.elementor-section-boxed>.elementor-container {
        max-width: 670px !important;
        margin-left: auto;
        margin-right: auto;
    }


    html {
        overflow-x: hidden !important;
    }
}

@media screen and (max-width: 600px) {
    .container {
        max-width: 100% !important;
    }

    .e-con-boxed .e-con-inner,
    .elementor-section.elementor-section-boxed>.elementor-container {
        max-width: 100% !important;
        margin-left: auto;
        margin-right: auto;
    }
}

/* -------------------------------------------------------------------------- */
/*                       Responsive CSS End [Container]                       */
/* -------------------------------------------------------------------------- */