/*
Theme Name: Intent Glamping Child
Template: intent-glamping
Version: 0.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: intent-glamping-child

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

@import url('https://fonts.googleapis.com/css2?family=Kaisei+Decol:wght@400;500;700&display=swap');

/* 
font-family: "Kaisei Decol", serif;
*/

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden !important;
    scroll-padding: 7rem;
}

*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

::-moz-selection {
    background-color: #007d9d;
    color: #fff;
    text-shadow: none;
}

::selection {
    background-color: #000;
    color: #fff;
    text-shadow: none;
}

:root {
    --black: #000;
    --text-black: #303030;
    --white: #ffff;
    --gray: #454444;
    --olive-green: #044328;
    --kaisei: "Kaisei Decol", serif;
    --default-trans: all 0.3s ease-in-out;
}

body {
    margin: 0 !important;
    padding: 0 !important;
    padding-right: 0 !important;
    font-size: 16px !important;
    outline: none;
    overflow-x: hidden !important;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    scroll-behavior: smooth;
    color: var(--gray) !important;
    font-family: var(--kaisei) !important;
    position: relative;
}

.container {
    margin: 0 auto !important;
    padding: 0 15px !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
ul,
li,
figure {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--kaisei) !important;
    color: var(--text-black) !important;
    font-weight: 500 !important;
}

b {
    font-weight: 700 !important;
}

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

img {
    margin: 0;
    padding: 0;
    border: none;
    max-width: 100%;
    height: auto !important;
    display: block;
}

a,
button,
input {
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

a {
    text-decoration: none;
}

.bg_cover {
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

/* DEFAULT CSS SETTING END */

/* SLICK SLIDER CSS START */

.slick-slider {
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
}

.slick-track:before,
.slick-track:after {
    display: table;

    content: '';
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

/* SLICK SLIDER CSS END */

#preloader {
    background: #ffffff;
    position: fixed;
    z-index: 9999;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.loader_area {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

section {
    padding: 130px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* HEADER START */
header {
    position: relative;
    z-index: 999;
    left: 0;
    top: 0;
    background: #FAF6E7;
    width: 100%;
    transition: var(--default-trans);
}

header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 100%;
    transition: all 0.3s ease-in-out;
    animation: smoothScroll 1s forwards;
}

@keyframes smoothScroll {
    0% {
        transform: translateY(-40px);
    }

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

.header_wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 65px;
    padding: 10px 0;
    transition: var(--default-trans);
}
.header_wrapper .logo a img{
    min-width: 75px;
}
.nav_btn a {
    display: inline-block;
    text-align: center;
    padding: 13px 30px;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    text-align: center;
    text-transform: capitalize;
    color: var(--white);
    background: var(--olive-green);
    border-radius: 6px;
    border: 1px solid transparent;
}

.nav_btn a:hover {
    border: 1px solid var(--olive-green);
    color: var(--olive-green);
    background: #FAF6E7;
}

.nav-mail {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
}

.nav_and_mail {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav_and_mail .nav_sec {
    margin: 0;
    padding: 0;
}

.nav_and_mail .nav_sec ul {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-top: 0px;
    gap: 55px;
}

.nav-mail i {
    font-size: 30px;
    font-weight: 400 !important;
    display: inline-block;
    color: var(--white);
}

.nav-mail span,
.nav-mail b,
.nav-mail a {
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    text-transform: capitalize;
    display: block;
    color: var(--white);
}

.nav-mail b {
    font-size: 16px;
}

.nav-mail a {
    transition: var(--default-trans);
    margin-top: 15px;
}

.nav-mail a:hover {
    color: var(--olive-green);
}

.nav_and_mail .nav_sec ul li {
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    padding: 0px;
    position: relative;
}

.nav_and_mail .nav_sec ul li a {
    display: block;
    position: relative;
    color: var(--text-black);
    z-index: 99;
    text-align: left;
    transition: var(--default-trans);
    vertical-align: middle;
    text-transform: capitalize;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
}

.nav_and_mail .nav_sec ul li.active>a,
.nav_and_mail .nav_sec ul li a:hover {
    color: var(--olive-green);
}

.nav_and_mail .nav_sec ul li.active>a:before,
.nav_and_mail .nav_sec ul li.current-menu-item>a:before {
    transition: all 0.3s ease-in-out;
    opacity: 1;
}

.nav_and_mail .nav_sec ul li:hover>a::before,
.nav_and_mail .nav_sec ul li.active>a::before,
.nav_and_mail .nav_sec ul li.current-menu-item>a {
    transition: all 0.3s ease-in-out;
    opacity: 1;
}

.nav_and_mail .nav_sec ul li.cmn-btn {
    display: none !important;
}

.nav_and_mail .nav_sec ul li ul {
    position: absolute;
    left: 0px;
    width: 210px;
    background-color: #313131;
    background-color: white;
    box-shadow: 0 .25rem 2.5rem rgba(26, 26, 37, .15);
    border: none;
    display: block;
    visibility: hidden;
    opacity: 0;
    top: 180%;
    transition: 0.3s;
    pointer-events: none;
    z-index: 111;
    border-radius: 7px;
    overflow: hidden;
    padding: .625rem;
}

.nav_and_mail .nav_sec ul li:hover ul {
    display: block;
    top: 100%;
    visibility: visible;
    opacity: 1;
    pointer-events: all;
}

.nav_and_mail .nav_sec ul li ul li {
    width: 100%;
    margin: 0;
    padding: 0;
}

.nav_and_mail .nav_sec ul li ul li+li {
    border-top: 1px solid var(--olive-green);
}

.nav_and_mail .nav_sec ul li ul li a {
    margin: 0;
    padding: 7px 10px;
    display: block;
    font-size: 16px;
    font-weight: 400;
    border-radius: 0px;
    color: var(--black);
}

.nav_and_mail .nav_sec ul li ul li a:hover {
    color: var(--white) !important;
    background: var(--olive-green) !important;
}

.nav_and_mail .nav_sec ul li ul li a:hover::before {
    opacity: 1;
    background-position: left;
    background-size: contain;
    bottom: -5px;
}

.nav_and_mail .nav_sec ul li ul li.active>a {
    color: var(--olive-green);
}

span.toggle-menu {
    display: none;
}

.nav_and_mail .nav_sec ul li .arw-nav {
    width: 15px;
    height: 8px;
    position: relative;
    right: 0;
    top: 0;
    transform: translate(0, 0);
    z-index: 999;
    cursor: pointer;
    background: url(images/arw-dekstop.png) no-repeat center;
    background-size: contain;
    display: block;
}

.nav_and_mail .nav_sec ul li a:has(.arw-nav) {
    display: inline-flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

/* HEADER END */


/* banner start  */
.banner_bx {
    position: relative;
    padding: 255px 0 215px;
    overflow: hidden;
}

.banner_bx::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(360deg, rgba(8, 10, 9, 0.41) 0.87%, rgba(102, 102, 102, 0) 49.94%);
    background-position: bottom;
}

.banner_text {
    position: relative;
    z-index: 1;
}

.banner_text h3 {
    font-weight: 400 !important;
    font-size: 32px;
    line-height: 125%;
    color: var(--black) !important;
    margin-bottom: 25px;
}
.qna .banner_text h3{
    color: #303030 !important;
}
.qna p{
    font-size: 16px;
}
.banner_title_sec {
    position: relative;
    background: #14191099;
    padding: 30px;
    padding-left: 0;
    max-width: 740px;
    margin-bottom: 40px;
    border-right: 1px solid #758865;
    border-top: 1px solid #758865;
}

.banner_title_sec::after {
    position: absolute;
    left: -100%;
    top: -1px;
    width: 100%;
    height: 100.5%;
    content: "";
    background: #14191099;
    z-index: -1;
    border-top: 1px solid #758865;
}

.banner_text h1 {
    font-size: 48px;
    line-height: 125%;
    margin-bottom: 7px;
    color: var(--white) !important;
}

.banner_text h2 {
    font-weight: 400 !important;
    font-size: 32px;
    line-height: 125%;
    margin-bottom: 30px;
    color: var(--white) !important;
}

.banner_text p {
    font-weight: 500;
    line-height: 140%;
    margin-bottom: 0px;
    color: var(--white);
    font-size: 16px;
}

.banner_btn_holder {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 7px;
}

.banner_btn_holder a {
    font-weight: 700;
    font-size: 18px;
    line-height: 100%;
    display: inline-block;
    text-align: center;
    color: var(--white);
    border: 1px solid transparent;
    border-radius: 6px;
    background: #C2B280;
    padding: 14px 40px;
}

.banner_btn_holder a:last-child {
    background: #BDA65E;
}

.banner_btn_holder a:hover {
    color: var(--olive-green);
    background: var(--olive-green);
    border: 1px solid #BDA65E;
    color: var(--white);
}

/* banner end  */


/* about_sec start  */
.abt_img {
    position: relative;
    margin: 0 55px;
    margin-left: 85px;
    text-align: center;
    z-index: 3 !important;
}

.abt_img img {
    position: relative;
    width: 100%;
}

.abt_img::after {
    position: absolute;
    left: -150%;
    top: 50%;
    transform: translateY(-50%);
    width: 700px;
    height: 355px;
    background: url(images/bg-img.webp) no-repeat;
    background-size: cover;
    content: "";
}
.home .abt_img::after {
    z-index: -1;
}
.cmn_title h5 {
    font-size: 24px;
    line-height: 125%;
    margin-bottom: 25px;
}

.cmn_title h2 {
    font-size: 48px;
    text-transform: capitalize;
    line-height: 125%;
    margin-bottom: 25px;
    position: relative;
}

.cmn_title h2 em {
    display: inline-block;
    font-style: normal;
    position: relative;
    z-index: 1;
}

.cmn_title h2 em::after {
    position: absolute;
    left: 50%;
    top: -487px;
    width: 0.5px;
    height: 500px;
    background: #D5D5D5;
    transform: translateX(-50%);
    content: "";
}
.home .about_sec .cmn_title h2 em::after{
    height: 450px;
}

.cmn_title p {
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 10px;
}
.cmn_title p a{
    font-weight: 500;
    font-size: 20px;
    line-height: 169%;
    color: var(--olive-green);
    display: inline-block;
    transition: var(--default-trans);
}
.cmn_title p a:hover{
    color: var(--black);
}
.cmn_title h6{
    font-weight: 400 !important;
    font-size: 20px;
    line-height: 125%;
    color: var(--gray) !important;
}
.abt_text .cmn_title h5 {
    margin-bottom: 5px;
    padding-left: 120px;
}

/* about_sec end  */


/* offer_sec start  */
.offer_sec {
    position: relative;
    padding-bottom: 0;
}

.offer_sec .cmn_title h2 em::after {
    left: 0%;
    transform: translateX(-0%);
}

.offer_sec .cmn_title h2 {
    margin-bottom: -10px;
    background: transparent;
}

.offer_sec .cmn_title h2 em {
    background: url(images/bg-img.webp) no-repeat;
}

.offer_bx {
    height: 100%;
    border-right: 1px solid #D5D5D5;
}

.offer_bx h3 {
    padding: 70px 0 80px;
    margin: 0;
    font-size: 24px;
    line-height: 125%;
    text-transform: capitalize;
}

.offr_img a,
.pckg_img a,.pckg_img img ,.offr_img img{
    display: block;
    overflow: hidden;
}
.pckg_img,.offr_img{
    overflow: hidden;
    margin-bottom: 25px;
}
.offr_img a img,
.pckg_img a img,.pckg_img img ,.offr_img img{
    transition: var(--default-trans);
    width: 100%;
    transform: scale(1);
}

.offr_img a:hover img,
.pckg_img a:hover img,.pckg_img img:hover ,.offr_img img:hover{
    transform: scale(1.05);
}

.offer_details {
    padding: 30px;
    background: var(--white);
    margin-bottom: 130px;
    min-height: 260px;
    display: flex;
    justify-content: space-between;
    gap: 55px;
    flex-direction: column;
}

.offer_details>* {
    width: 100%;
}

.offer_details p {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0%;
    text-transform: capitalize;
    color: var(--gray);
    margin-bottom: 0;
}

.offer_btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.offer_btn a {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-transform: capitalize;
    color: var(--olive-green);
    display: inline-block;
    transition: var(--default-trans);
}

.offer_btn a svg {
    transform: translateX(0);
    transition: var(--default-trans);
}

.offer_btn a:hover {
    color: var(--gray);
    letter-spacing: 0.5px;
}

.offer_btn a:hover svg {
    transform: translateX(7px);
}

.offer_row {
    border-top: 1px solid #D5D5D5;
    position: relative;
}

/* offer_sec end  */

.inquire_form span.question-text:has(.req) {
    display: inline-flex;
    align-items: flex-start;
    justify-content: flex-start;
    max-width: 290px;
}
.wpcf7-form-control-wrap {
    width: 100%;
}
/* work_sec start  */

.work_sec .cmn_title {
    padding-bottom: 60px;
}
/* animation start  */

.work_animation_sec {
    display: grid;
    grid-template-columns: auto auto auto;
    grid-template-areas:
        "left middle right"
        "bottom bottom bottom";
    gap: 0px;
    max-width: 1205px;
    margin: 0 auto;
}

.left_sec {
    grid-area: left;
}

.middle_sec {
    grid-area: middle;
    position: relative;
    min-width: 475px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.right_sec {
    grid-area: right;
}

.bottom_sec {
    grid-area: bottom;
    display: flex;
    align-items: center;
    justify-content: center;
}
.work_animation_sec_mobile{
    display: none;
}
.line_holder {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
}
.line_holder >*{
    position: absolute;
}
.line_holder >*:nth-child(1){
    left: 15px;
    top: 45px;
}
.line_holder >*:nth-child(2){
    right: 15px;
    top: 45px;
}
.line_holder >*:nth-child(3){
    left: 15px;
    bottom: 60px;
}
.line_holder >*:nth-child(4){
    right: 15px;
    bottom: 60px;
}

.middle_sec img.show {
    opacity: 1;
    transform: scale(1);
}

.middle_sec img {
    transform: scale(0.6);
    position: relative;
    margin-bottom: 30px;
    transition: all 0.6s ease;
}

.steps,
.lines {
    opacity: 0;
    transition: all 0.5s ease;
}

.steps.show,
.lines.active {
    opacity: 1;
}

.step_bx{
    max-width: 390px;
    background: #F9FFF2;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 40px;
}
.inner_work_sec .step_bx {
    background: #F9F9F9;
    border-radius: 6px;
    margin-bottom: 0px;
    transition: var(--default-trans);
}
.inner_work_sec .left_sec,.inner_work_sec .right_sec {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
}
.inner_work_sec .bottom_sec .step_bx{
    margin-bottom: 0;
}
.inner_work_sec .middle_sec img {
    margin-bottom: 50px;
}
.inner_work_sec .step_bx:hover{
    box-shadow: 0px 12px 12.6px 0px #B3B3B35E;
}
.inner_work_sec .step_bx h3{
    font-size: 16px;
    line-height: 108%;
    text-transform: capitalize;
    color: #2B2B2B !important;
    margin-bottom: 20px !important;
}
.inner_work_sec .step_bx p{
    font-weight: 500;
    font-size: 16px;
    line-height: 125%;
    color: #454444 !important;
    margin-bottom: 0;
    text-transform: unset;
}
.left_sec .steps:last-child .step_bx,.right_sec .steps:last-child .step_bx{
    margin-bottom: 0;
}
.line_holder .lines:nth-child(1) .pulse{
    left: -7px;
    top: -3px;
}
.line_holder .lines:nth-child(2) .pulse{
    right: -7px;
    top: -3px;
}
.line_holder .lines:nth-child(3) .pulse{
    left: -7px;
    bottom: -3px;
}
.line_holder .lines:nth-child(4) .pulse{
    right: -7px;
    bottom: -3px;
}

/* festive page lines  */
.inner_work_sec .line_holder >*:nth-child(1) {
    top: 20px;
}
.inner_work_sec .line_holder >*:nth-child(2) {
    top: 20px;
}
.inner_work_sec .line_holder >*:nth-child(3) {
    bottom: 35px;
}
.inner_work_sec .line_holder >*:nth-child(4) {
    bottom: 35px;
}
.inner_work_sec .line_holder >*:nth-child(5) {
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
}
/* ///////// */

/* private hire page lines  */
.hire_work_sec .line_holder >*:nth-child(1) {
    top: 20px;
}
.hire_work_sec .line_holder >*:nth-child(2) {
    top: 50%;
    left: 15px;
}
.hire_work_sec .line_holder .lines:nth-child(2) .pulse {
    right: auto;
    top: -3px;
}
.hire_work_sec .line_holder >*:nth-child(3) {
    bottom: 35px;
}
.hire_work_sec .line_holder >*:nth-child(4) {
    bottom: auto;
    top: 15px;
}
.hire_work_sec .line_holder .lines:nth-child(4) .pulse {
    right: -7px;
    bottom: auto;
    top: -3px;
}
.hire_work_sec .line_holder >*:nth-child(5) {
    bottom: auto;
    left: auto;
    transform: translateX(0%);
    right: 15px;
    top: 50%;
}
.hire_work_sec .line_holder .lines:nth-child(5) .pulse{
    right: 0;
    top: 10px;
}
.hire_work_sec .line_holder >*:nth-child(6) {
    bottom: 35px;
    left: auto;
    right: 15px;
}
.hire_work_sec .line_holder .lines:nth-child(6) .pulse {
    right: 0;
    bottom: -3px;
}
.hire_work_sec .line_holder >*:nth-child(7) {
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
}
.hire_work_sec .line_holder .lines:nth-child(7) .pulse {
    left: -1.75px;
    bottom: -1px;
}
.hire_work_sec .step_bx{
    min-height: 135px;
}
.wedding_work_sec .step_bx{
    min-height: unset;
}
.calculate_unit input {
    pointer-events: none;
}
/* festival lines  */

.festival_work_sec .line_holder >*:nth-child(2) {
    top: auto;
    bottom: 35px;
    right: auto;
    left: 15px;
}
.festival_work_sec .line_holder .lines:nth-child(2) .pulse {
    left: 0;
    bottom: -3px;
    top: auto;
}
.festival_work_sec .line_holder >*:nth-child(3) {
    left: 50%;
    transform: translateX(-50%);
    top: auto;
    bottom: 10px;
}
.festival_work_sec .line_holder .lines:nth-child(3) .pulse {
    top: auto;
    bottom: 0px;
    left: -2px;
}
.festival_work_sec .line_holder >*:nth-child(4) {
    bottom: auto;
    top: 15px;
}
.festival_work_sec .line_holder .lines:nth-child(4) .pulse {
    bottom: auto;
    top: -3px;
}
.festival_work_sec .line_holder >*:nth-child(5) {
    transform: translate(0);
    left: auto;
    right: 15px;
    bottom: 35px;
}
.festival_work_sec .line_holder .lines:nth-child(5) .pulse {
    right: 0;
    bottom: -3px;
}

/* ///////// */
.icn{
    margin-bottom: 20px;
}
.step_bx em{
    font-weight: 500;
    font-size: 16px;
    line-height: 110%;
    text-transform: capitalize;
    font-style: normal;
    color: #2B2B2B;
    display: block;
    margin-bottom: 20px;
}
.step_bx h3{
    font-size: 24px;
    line-height: 140%;
    text-transform: capitalize;
    color: #2B2B2B !important;
    margin-bottom: 13px;
}
.step_bx p{
    margin-bottom: 0;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    text-transform: capitalize;
    color: var(--gray);
}
/* animation end  */
.pulse {
    position: absolute;
    opacity: 0;
    width: 7px;
    height: 7px;
    background: var(--olive-green);
    transform: rotate(45deg);
    transition: all 0.4s ease;
}
.pulse::before,
.pulse::after {
  content: "";
  position: absolute;
  inset: 0;
  background:#044328dc;
  animation: pulse 2s infinite;
  transform: scale(1);
}
.pulse.show {
    opacity: 1;
}
.pulse::after {
  animation-delay: 0.5s;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  70% {
    transform: scale(2.2);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
/* Pulse layers */

/* SVG animation */
.dashed{
  stroke-dasharray: 9;

}
.lines.active .path {
    stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: dash 0.8s linear forwards;
}

@keyframes dash {
  from {
    stroke-dashoffset: 1000;
  }
  to {
    stroke-dashoffset: 0;
  }
}

/* work_sec end  */


/* package_sec start  */
.package_sec {
    background: #DFE8D6;
}

.package_sec .cmn_title {
    padding-bottom: 75px;
}

.pckg_title h3 {
    font-size: 36px;
    line-height: 41px;
    text-transform: capitalize;
    color: #6E8E4E !important;
    margin-bottom: 20px;
}

.pckg_title h3 a {
    color: #6E8E4E;
    display: inline-block;
    transition: var(--default-trans);
}

.pckg_title h3 a:hover {
    color: var(--olive-green);
}

.package_sec .row>*:last-child {
    margin-top: 125px;
    text-align: right;
}

.package_sec .row .packg_bx {
    margin-left: 25px;
}

.package_sec .row>*:last-child .packg_bx {
    margin-left: 25px;
}

.price h5 {
    font-size: 20px;
    line-height: 38px;
    text-transform: capitalize;
    color: var(--olive-green) !important;
    margin-bottom: 0;
}

.price b {
    font-weight: 500 !important;
    font-size: 36px;
    line-height: 38px;
    text-transform: capitalize;
    color: var(--olive-green);
}

.down_title {
    text-align: center;
    padding-top: 40px;
}

.down_title p {
    text-align: left;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-transform: capitalize;
    margin-bottom: 0;
    display: inline-block;
}

/* package_sec end  */


/* choose_sec start  */
.choose_sec {
    padding-bottom: 0;
}
.choose_sec .cmn_title h2{
    margin-bottom: -10px;
}
.choose_sec .cmn_title h2 em{
    background: var(--white);
}
.choose_row{
    padding-left: 45px;
    border-top: 1px solid #D5D5D5;
    position: relative;
}
.choose_row::after,.offer_row::after{
    position: absolute;
    right: -100%;
    top: -1px;
    width: 100%;
    height: 1px;
    content: "";
    border-top: 1px solid #D5D5D5;
}
.choose_row .row .chs_bx_wrapper{
    padding-top: 140px;
    margin-right: 120px;
    padding-bottom: 50px;
    border-right: 1px solid #D5D5D5;
    height: 100%;
}
.chs_bx{
    margin-bottom: 80px;
}
.chs_bx:hover .num{
    background: #9DAF89;
    color: var(--black);
}
.chs_bx:hover .chs_text{
    background: #DEEBCF;
    color: var(--black);
}
.num{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #D8D8D8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 16px;
    line-height: 25px;
    text-transform: capitalize;
    color: #A1A1A1;
    padding: 9px;
    background: #F5F5F5;
    transition: var(--default-trans);
}
.chs_text{
    background: #F8F8F8;
    border-radius: 6px 0 0 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 12px;
    margin-top: 40px;
    transition: var(--default-trans);
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    text-transform: capitalize;
    color: var(--gray);
}
.chs_text p{
    margin-bottom: 0;
    min-width: 200px;
    color: var(--black);
}
/* choose_sec end  */


/* trust_sec start  */
.trust_sec .cmn_title.text-center{
    padding-bottom: 100px;
}
.trust_sec .row .cmn_title{
    padding-top: 35px;
    padding-bottom: 0;
    max-width: 540px;
}
.trust_imgs {
    position: relative;
    max-width: 665px;
    margin: 0 auto;
    padding-bottom: 105px;
}
.trust_imgs img{
    border-radius: 20px
}
.trust_imgs>*{
    position: absolute;
    border-radius: 20px
}
.smalll{
    left: 30px;
    top: -30px;
    z-index: 1;
}
.medium{
    left: auto;
    right: 0;
}
.large{
    left: 0;
    top: 105px;
    position: relative;
}
.cmn_btn a{
    font-weight: 700;
    font-size: 16px;
    line-height: 125%;
    padding: 14px 115px;
    color: var(--white);
    transition: var(--default-trans);
    background: #C2B280;
    border-radius: 6px;
    display: inline-block;
    border: 1px solid transparent;
    text-align: center;
}
.cmn_btn a:hover{
    background: var(--olive-green);
    color: var(--white);
    border: 1px solid #BDA65E;
}
.trust_sec .row .cmn_title .cmn_btn{
    padding-top: 95px;
}
/* trust_sec end  */


/* intent_sec start  */
.intent_sec{
    border-bottom: 0.5px solid #D5D5D5;
}
.home .intent_sec{
    border-bottom: none !important;
}
.int_title{
    position: relative;
    margin-bottom: 65px;
}
.int_title::after{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 45%;    
    background: transparent;
    backdrop-filter: blur(4px);
    content: "";
}
.int_title h2{
    font-weight: 700 !important;
    font-size: 115px;
    line-height: 100%;
    color: #F4F4F4 !important; 
    position: relative;
    margin-bottom: 0;
    text-align: center;
}
.int_img{
    padding: 30px 35px;
    background: #F4F4F4;
    border-radius: 6px;
}
.int_img img{
    width: 100%;
    border-radius: 3px;
}
.intent_text_wrapper{
    padding-left: 35px;
}
.intent_bx{
    padding-bottom: 95px;
    margin-bottom: 95px;
    border-bottom: 0.5px solid #D5D5D5;
}
.intent_bx h4{
    font-size: 24px;
    line-height: 100%;
    color: #303030 !important;
    margin-bottom: 40px;
}
.intent_bx p{
    margin-bottom: 40px;
    max-width: 465px;
}
.intent_text_wrapper .intent_bx:last-child{
    padding-bottom: 0;
    border-bottom: none;
    margin-bottom: 0;
}
/* intent_sec end  */


/* footer start  */
footer {
    overflow: hidden;
    border-top: 0.5px solid #D5D5D5;
}
.ft_top_left, .ft_info{
    height: 100%;
    padding: 130px 0 70px 100px;
}
.ft_top_left {
    padding-right: 100px;
    padding-left: 0 !important;
    border-right: 1px solid #D5D5D5;
}
.ft_top_left .cmn_btn{
    padding-top: 30px;
}
.ft_info h3{
    font-size: 20px;
    line-height: 125%;
    margin-bottom: 40px;
    color: var(--black) !important;
}
.info_top ul{
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 25px 40px;
    flex-wrap: wrap;
    max-width: 460px;
}
.info_top ul li{
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    color: #454444;
}
.info_top ul li a{
    display: inline-block;
    color: #454444;
    transition: var(--default-trans);
}
.info_top ul li a:hover{
    color: var(--olive-green);
}
.info_bottom{
    padding-top: 70px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 30px 60px;
}
.inf_left ul{
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
}
.inf_left ul li a{
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: var(--olive-green);
    color: var(--white);
    display: flex;
    align-items: center;
    padding: 6px;
    justify-content: center;
    font-size: 14px;
    border: 1px solid transparent;
    transition: var(--default-trans);
}
.inf_left ul li a:hover{
    color: var(--olive-green);
    background: var(--white);
    border: 1px solid var(--olive-green);
}
.inf_right ul{
    margin: 0;
    padding: 0;
}
.inf_right ul li{
    display: block;
}
.inf_right ul li a{
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
    color: var(--gray);
    display: inline-block;
    transition: var(--default-trans);
}
.inf_right ul li a:hover{
    color: var(--olive-green);
}
.foot_bottom{
    background: #F0F0EE;
}
.ft_btm_wrapper{
    padding: 40px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.ft_btm_wrapper ul{
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.ft_btm_wrapper ul li{
    padding: 0 20px;
    border-right: 1px solid var(--gray);
    line-height: 18px;
}
.ft_btm_wrapper ul li a,.ft_btm_wrapper p,.ft_btm_wrapper p a{
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    display: inline-block;
    color: var(--gray);
    transition: var(--default-trans);
}
.ft_btm_wrapper ul li a:hover,.ft_btm_wrapper p a:hover{
    color: var(--olive-green);
}
.ft_btm_wrapper ul li:first-child{
    padding-left: 0;
}
.ft_btm_wrapper ul li:last-child{
    border: none;
}
.ft_btm_wrapper p{
    display: block;
    margin-bottom: 0;
}
/* footer end  */

/*/////// inner-pages css start  ////////*/

/* about page css start */
.inner_banner .banner_bx {
  padding: 175px 0 150px;
}

.inner_banner .banner_title_sec {
  margin-bottom: 0;
}

.inner_banner .banner_text h1 {
  margin-bottom: 25px;
}

.inner_banner .banner_title_sec {
  padding: 25px;
  padding-left: 0;
  padding-bottom: 32px;
}

/* dolan css start start   */
.buttom-text {
  font-size: 16px;
  margin-bottom: 0;
}

/*about us page start*/
.about-sideimg {
  margin-left: 46px;
  position: relative;
  text-align: center;
  z-index: 5;
}

.about-sideimg img {
  width: 100%;
  position: relative;
  z-index: 1;
  border-radius: 6px;
}

.intro_sec .cmn_title h2 em::after {
  left: 0%;
  transform: translateX(-0%);
}

.intro_sec .cmn_title h2 em::before {
  position: absolute;
  left: 98%;
  top: 83%;
  max-width: 1920px;
  height: 2px;
  background: url(images/line-about.png) no-repeat;
  background-size: cover;
  content: "";
}

.our_approach .cmn_title h2 em {
  background-image: url(images/bg-img.webp);
  position: relative;
  display: inline-block;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.our_approach .cmn_title h2 em::after {
  left: 0%;
  transform: translateX(-0%);
}
/* textarea.form-control {
    min-height: 170px !important;
} */
.our_approach .cmn_title h4,
.what_wedo .cmn_title h4 {
  font-weight: 400;
  font-size: 20px;
  line-height: 125%;
  color: var(--gray);
  margin-bottom: 40px;
}

.our_approach .choose_row {
  padding-left: 45px;
  border-top: 1px solid #d5d5d5;
  position: relative;
  margin-top: -100px;
}

.our_approach .choose_row .chs_text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 40px 20px;
  flex-direction: row;
  background-color: #deebcf;
}
.our_approach .chs_bx_wrapper {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}
.our_approach .choose_row .chs_text:hover {
  box-shadow: 0px 2px 25.1px 0px #b1c4a0bf;
}

.about_choose .choose_row .chs_text:hover {
  box-shadow: 0px 2px 25.1px 0px #b1c4a0bf;
  background-color: #f8f8f8;
}

.about_choose .choose_row .chs_bx:hover .chs_text {
  background-color: #f8f8f8;
  color: var(--black);
}

.our_approach .choose_row .chs_bx {
  margin-bottom: 0px;
}

.our_approach .choose_row .chs_bx {
  margin-bottom: 0px;
}

.our_approach .choose_row .row .chs_bx_wrapper {
  padding-bottom: 0;
}

/* .our_approach .chs_bx .num {
  background: #9daf89;
  color: var(--black);
} */

.our_approach .buttom-text {
  font-size: 16px;
  line-height: 32px;
  max-width: 1164px;
  margin-top: 70px;
  color: var(--black);
}

.what_wedo {
  padding-bottom: 130px;
}

.what_wedo .offer_row .offer_bx p {
  padding: 120px 0px 30px 0px;
  font-size: 15px;
  margin-bottom: 0;
}
.what_wedo .offer_row .offer_bx{
    height: auto;
}
.what_wedo .cmn_title h2 em {
  background: var(--white);
}

.what_wedo .cmn_title h2 {
  margin-bottom: 25px;
  background: transparent;
}

.what_wedo .offer_row {
  margin-top: -100px;
}

.what_wedo .buttom-text {
  max-width: 768px;
  margin-top: 30px;
}

.about_choose {
  background-color: #dfe8d6;
  padding-bottom: 130px;
}

.about_choose .cmn_title h2 em::after {
  left: 0%;
  transform: translateX(-0%);
}

.about_choose .cmn_title h2 em {
  background: #dfe8d6;
}

.about_choose .choose_row .chs_text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-direction: row;
  padding: 40px 20px;
}
.about_choose .choose_row .row .chs_bx_wrapper {
  padding-top: 100px;
  padding-bottom: 0;
}

.about_choose .chs_bx:last-child {
  margin-bottom: 0px;
  border-right: 0 !important;
}
/* .about_choose .choose_row .row .chs_bx_wrapper .chs_bx:last-child {
    padding-bottom: 0px;
} */

.about_choose .buttom-text {
  color: #000000;
}

.lets_start {
  background: #dfe8d6;
  padding: 115px 0;
}

.lets_start .cmn_title h2 em::after {
  display: none;
}

.lets_start .cmn_btn {
  padding-top: 30px;
}
.inner_inquiry_start.lets_start .cmn_title h2 em::after {
  display: block;
  left: 1.5%;
}
.inner_inquiry_start.lets_start .cmn_title h2 em{
    background: url(images/bg-img.webp) no-repeat center;
}
.inner_inquiry_start.lets_start .cmn_title h2:before{
    position: absolute;
    left: 0;
    bottom: 7px;
    width:4000px;
    z-index: -1;
    content: "";
    height: 1px;
    background-color: #D5D5D5;
}
.inner_inquiry_start.lets_start{
    padding: 130px 0;
}
/* about page css end */

/*festival page start */
.festival_intro .cmn_title h2 em::before {
  position: absolute;
  left: 98%;
  top: 83%;
  max-width: 654px;
  height: 2px;
  background: url(images/line-about.png) no-repeat;
  background-size: cover;
  content: "";
}

.festival_intro .about-sideimg {
  z-index: 2;
  position: relative;
  margin-top: 49px;
}

.festival_intro .about-sideimg::after {
    position: absolute;
    left: 30%;
    top: 49%;
    transform: translateY(-50%);
    width: 3000px;
    height: 130%;
    background: url(images/bg-img.webp) no-repeat;
    background-size: cover;
    content: "";
    z-index: -1;
}

.festival_intro .cmn_title {
  padding-bottom: 30px;
}

.festival_intro .festive-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  margin-top: 47px;
}
.festival_intro .festive-wrapper  p{
    margin-bottom: 0;
}

.qna_sec {
  margin-top: -95px;
  padding: 0;
}

.custom-dropdown {
  position: relative;
  width: 100%;
}
.custom-dropdown select {
  width: 100%;
  padding: 16px 40px 16px 10px;
  font-size: 13px;
  border-radius: 4px;
  border: 1px solid #ced4da;
  background-color: #ffffff;
  appearance: none;
  -webkit-appearance: none;
  color: #2b2b2b;
  cursor: pointer;
  line-height: 1.2;
}
.custom-dropdown select:focus {
  outline: none;
  border-color: #7e9a6b;
}
.custom-dropdown i {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #5e7c4e;
  font-size: 1.2rem;
}
.custom-dropdown label {
  position: absolute;
  left: 10px;
  top: -8px;
  font-size: 11px;
  color: #2f4d2f;
  background: white;
  padding: 0 5px;
  border-radius: 3px;
  z-index: 5;
  pointer-events: none;
}

.custom-dropdown select:valid + label,
.custom-dropdown select:focus + label {
  top: -8px;
  font-size: 11px;
  background: white;
}

.attending_sec .cmn_title h2 em::after,
.inquire_form .cmn_title h2 em::after,
.closing_reassurance .cmn_title h2 em::after,
.get_touch .cmn_title h2 em::after {
  position: absolute;
  left: 1.5%;
  transform: translateX(-0%);
}

.attending_sec .cmn_title h2 em::before,
.inquire_form .cmn_title h2 em::before {
  position: absolute;
  left: 98%;
  top: 83%;
  width: 1920px;
  max-width: 1920px;
  height: 2px;
  background: url(images/line-about.png) no-repeat;
  background-size: cover;
  content: "";
}
.inquire_form.attendee_inquire_form .cmn_title h2 em::before {
    position: absolute;
    top: auto;
    bottom: 10px;
}
.inquire_form.attendee_inquire_form .row.g-0{
    margin-top: 60px;
}
/*inqueir form */

.inquire_form .img-col {
  margin-right: -50%;
}
.inquire_form .row {
  align-items: center;
}
.inquire_form .form-container .row{
    align-items: unset;
}
.form-container form .row>*:nth-child(2) .row{
    flex-direction: column;
    height: 100%;
}
.form-container form .row>*:nth-child(2) .row>*:last-child{
    flex-grow: 1;
}
.form-container form .row>*:nth-child(2) .row>*:last-child textarea{
    min-height: unset !important;
}
.inquire_form .form-container {
  background-color: #e5eddc;
  box-shadow: 5px 5px 23.9px 0px #e4e1d6;
  padding: 20px;
  padding-bottom: 10px;
  border-radius: 8px;
  z-index: -1;
}
.inquire_form .form-container .row>*{
    padding: 0 8px;
}
.inquire_form .form-container .row>* .row>*{
    margin-bottom: 10px;
    padding: 0 8px;
}
.form-container h5 {
  font-weight: 400 !important;
  font-size: 24px;
  line-height: 30px;
}
.attendee_form .form-container h5{
    margin-bottom: 20px;
    padding-left: 7px;
}
.inquire_form.attendee_form .form-container .row>* {
    margin-bottom: 10px;
}
.attendee_form .form-container .row{
    margin-bottom: 30px;
}
.inquire_form .input_wrapper {
  position: relative;
  width: 100%;
}
.inquire_form .input-group-text {
  background-color: #ffffff;
  border-radius: 4px;
  color: #454444;
  padding-right: 0;
  outline: none;
}
.attendee_form .input_wrapper{
    position: relative;
}
.unit_bx{
    position: absolute;
    right: 10px;
    top: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #E7F6DA;
    border-radius: 4px !important;
    gap: 25px;
    min-width: 70px;
    z-index: 3;
    height: 35px;
}
.unit_bx .bx_btn{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.unit_bx em{
    font-weight: 400;
    font-size: 16px;
    line-height: 108%;
    display: block;
    font-style: normal;
    color: var(--gray);
}
.bx_btn button {
    background-color: transparent !important;
    border: none;
    outline: none;
    color: var(--black);
    display: block;
    padding: 0px;
    font-size: 11px;
}
.fxd_unit_price,.fnl_price{
    font-weight: 400;
    font-size: 18px;
    line-height: 108%;
    color: #1C1C1C;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
}
.fxd_unit_price em,.fnl_price em{
    display: inline-block;
    font-style: normal;
}
.calculate_unit input::placeholder, .calculate_unit input{
    font-weight: 400;
    font-size: 13px;
    line-height: 108%;
    color: var(--gray);
}
.attendee_form .cmn_title {
    padding-bottom: 25px;
}

/*///////// style for label up as input place holder animation start  ////////*/
.inquire_form .form-control {
  border-radius: 4px !important;
  padding: 16px 10px;
  font-size: 13px;
  box-shadow: none !important;
}
.inquire_form .input_wrapper {
  position: relative;
}

.inquire_form .input_wrapper label {
  position: absolute;
  left: 10px;
  top: 18px;
  color: #454444;
  font-size: 13px;
  pointer-events: none;
  z-index: 10;
  transition: var(--default-trans);
}

/* Focus OR has value */
.inquire_form .input_wrapper:focus-within label,
.inquire_form .input_wrapper input.has-value ~ label,
.inquire_form .input_wrapper select.has-value ~ label,
.inquire_form .input_wrapper textarea.has-value ~ label {
  top: -8px;
  font-size: 12px;
  padding: 0 5px;
}
.inquire_form .input_wrapper:has(.has-value) label{
  top: -8px;
  font-size: 12px;
  padding: 0 5px;
}
/*///////// style for label up as input place holder animation end  ////////*/

.inquire_form .calculate_unit .input_wrapper input:not(:placeholder-shown) ~ label {
  top:15px;
  font-size: 13px;
  padding: 0;
}
.inquire_form .calculate_unit .input_wrapper:focus-within label {
  top: 15px !important;
  font-size: 13px;
}
.inquire_form .calculate_unit .input_wrapper label {
    top: 15px;
}
input#ab_qty {
    color: white;
}
input.form-control.fixed_unit_price,input.form-control.final_unit_price {
    background: white !important;
}

.inquire_form .form-control:focus {
  color: #767676;
  border-color: transparent;
  outline: 0;
}

.inquire_form .col-md-5 .input_wrapper textarea {
  min-height: 200px;
}

.inquire_form .radio-section {
  background: white;
  padding: 10px 15px;
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.inquire_form .btn-submit {
  font-weight: 700;
  font-size: 16px;
  line-height: 125%;
  padding: 13px 84px;
  max-width: 500px;
  color: var(--white);
  transition: var(--default-trans);
  background: var(--olive-green);
  border: 1px solid transparent;
  border-radius: 6px;
  display: inline-block;
  border: 1px solid transparent;
  text-align: center;
  transition: var(--default-trans);
}
.inquire_form .btn-submit:hover {
  color: var(--olive-green);
  border: 1px solid var(--olive-green);
  background: var(--white);
}

.inquire_form .btn-reset {
  font-weight: 700;
  font-size: 16px;
  line-height: 125%;
  padding: 13px 84px;
  max-width: 500px;
  color: #2b2b2b;
  transition: var(--default-trans);
  background: #c3d5b1;
  border: 1px solid transparent;
  border-radius: 6px;
  display: inline-block;
  border: 1px solid transparent;
  text-align: center;
  transition: var(--default-trans);
}

.inquire_form .img-col img {
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
  /* margin-top: 50%; */
}

.inquire_form .custom-radio-group {
  background-color: #ffffff;
  padding: 14px 6px;
  border-radius: 4px;
  border: 1px solid #ced4da;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}

.inquire_form .question-text {
  font-size: 13px;
  color: #454444;
  margin-right: auto;
}
div#customer_details {
    display: flex;
    flex-direction: column;
    background: #D3E3C5;
    box-shadow: 0px 4px 18.3px 0px #5D7E363B;
    padding: 50px 18px;
    border-radius: 8px;
    margin-bottom: 30px;
}
div#customer_details>*{
    width: 100% !important;
    max-width: 100%;
    text-align: left;
}
.intro_sec form.checkout h3{
    font-weight: 400 !important;
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 10px;
}
.intro_sec form.checkout .woocommerce-additional-fields h3{
    margin-bottom: 5px;
    margin-top: 25px;
}
button#place_order {
    background: #044328 !important;
    border: 1px solid transparent !important;
    transition: all 0.3s ease-in-out;
}
button#place_order:hover{
    color: #044328 !important;
    border: 1px solid #044328 !important;
    background: var(--white) !important;
}
.woocommerce-checkout #payment {
    background: rgb(211 227 197);
    border-radius: 8px;
}
#add_payment_method #payment div.payment_box, .woocommerce-cart #payment div.payment_box, .woocommerce-checkout #payment div.payment_box {
    background-color: #04432894;
}
#add_payment_method #payment div.payment_box::before, .woocommerce-cart #payment div.payment_box::before, .woocommerce-checkout #payment div.payment_box::before {
    border: 1em solid #5b866a;
    border-right-color: transparent;
    border-left-color: transparent;
    border-top-color: transparent;
}
.woocommerce-checkout #payment div.payment_box p:last-child {
    color: white;
}
.woocommerce table.shop_table{
    background: #d3e3c5;
}
div#customer_details input ,div#customer_details .select2-selection ,div#customer_details textarea{
    border-radius: 4px !important;
    padding: 16px 10px;
    font-size: 13px;
    box-shadow: none !important;
    border: 1px solid #ced4da;
    color: #5F656F;
    outline: none;
}
div#customer_details textarea{
    min-height: 100px;
}
div#customer_details .select2-selection{
    padding: 10px 10px;
}
dl.variation>* {
    vertical-align: middle;
    line-height: 188%;
}
.page-id-597 :is(.intro_sec,section){
    padding: 0;
}
.page-id-597 section.intro_sec {
    padding: 80px 0 55px!important;
}
.page-id-597 ul.wc-item-meta {
    padding: 0;
}
.page-id-597 table.woocommerce-table.woocommerce-table--order-details.shop_table.order_details tbody td {
    line-height: 180%;
}
.page-id-597 table.woocommerce-table.woocommerce-table--order-details.shop_table.order_details tbody td a{
    font-weight: 500;
    font-size: 18px;
    line-height: 120%;
    color: var(--olive-green);
    display: inline-block;
    transition: var(--default-trans);
}
.page-id-597 table.woocommerce-table.woocommerce-table--order-details.shop_table.order_details tbody td a:hover{
    color: var(--black);
}
.page-id-597 section.intro_sec .cmn_title h2,.page-id-597 section.intro_sec .cmn_title p,.page-id-597 section.intro_sec  p {
    text-align: left !important;
}
.page-id-597  .woocommerce ul.order_details {
    margin: 0 0 25px;
    list-style: none;
    padding: 13px;
    background: #d3e3c5;
}


.inquire_form .radio-container {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  user-select: none;
  gap: 4px;
}

.inquire_form .radio-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.inquire_form .checkmark {
  height: 20px;
  width: 20px;
  background-color: #d9d9d9;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.2s ease;
}

.inquire_form .radio-container:hover input ~ .checkmark {
  background-color: #d9d9d9;
}

.inquire_form .radio-container input:checked ~ .checkmark {
  background-color: #063b21;
}

.inquire_form .checkmark:after {
  content: "";
  display: none;
}

.inquire_form .radio-container input:checked ~ .checkmark:after {
  display: block;
}
.inquire_form .form_footer {
  text-align: end;
  position: relative;
}
.fest-last-form .form_footer span.wpcf7-spinner,#wpcf7-f226-o1 .form_footer span.wpcf7-spinner {
    position: absolute;
    right: 0%;
    margin: 0;
    bottom: 0px;
}
.form-container.fest-2nd-form.fest-last-form .mb-2 {
    margin: 0 !important;
}
#wpcf7-f226-o1 .form_footer span.wpcf7-spinner{
    bottom: -30px;
}
.wpcf7 form .wpcf7-response-output {
    margin: 15px 0;
}
.fest-last-form .form_footer {
    padding-bottom: 30px;
}
form#Festival_Organiser_Inquire_Form .form_footer {
    padding-bottom: 20px;
}
/*..*/
.attendee_inquire_form {
  background-color: #dfe8d6;
}

/* debalina */
.attendee_inquire_form .form-container {
    background-color: #faf6e7;
    box-shadow: 5px 5px 23.9px 0px #dfe8d6;
    padding: 20px;
    border-radius: 8px;
    z-index: -1;
    box-shadow: 5px 5px 23.9px 0px #B7C9A2;
}
/* debalina */
.attendee_inquire_form .img-col {
  margin-right: 0px;
}

.intent_text h4 {
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #303030;
  margin-bottom: 40px;
  margin-left: 51px !important;
}

.intent_bx p {
  font-size: 16px;
  line-height: 1.6;
  color: #454444;
  margin-bottom: 15px;
}

.custom_list {
  list-style: none;
  padding-left: 0;
  overflow: hidden;
  clear: both;
}

.custom_list li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  margin-bottom: 10px;
  color: #454444;
  width: 50%;
  float: left;
  padding-right: 5px;
}

.custom_list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #000000;
}

.small_note {
  font-size: 13px !important;
  margin-top: 20px;
}
.festive_intent {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin-left: 51px;
}

.fesive_intent .intent_bx {
  padding-bottom: 0px;
  margin-bottom: 0px;
  border-bottom: 0px solid #d5d5d5;
}
.our-icon {
    min-width: 40px;
}
.inquiry_start {
  background-color: var(--white);
}

.inquiry_start .cmn_btn a {
  padding: 14px 33px;
}

/*Faq page */
.faq_sec .cmn_title h2 em::after {
  left: 0%;
  transform: translateX(-0%);
}
.faq_sec .cmn_title h2 em::before {
  position: absolute;
  left: 98%;
  top: 83%;
  width: 1920px;
  max-width: 1920px;
  height: 2px;
  background: url(images/line-about.png) no-repeat;
  background-size: cover;
  content: "";
}

.c_accordion_wrap {
  position: relative;
  border-radius: 34px;
  z-index: 1;
  color: #4d4d4d;
  font-size: 18px;
  font-weight: 400;
  line-height: 31px;
  text-align: left;
}
/* debalina */
.acc_heading {
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    line-height: 31px;
    text-align: left;
    color: #303030;
    padding-right: 40px;
    width: 100%;
    background-color: #f5f5f5;
    padding: 20px 45px 20px 15px;
    border-radius: 6px;
    border: 1px solid #F2F2F2;
    margin-top: 4px;
}
/* debalina */

/* debalina */
.acc_heading::before {
  content: "";
  background: url(images/up-arw.svg) no-repeat right center;
  background-size: 100%;
  vertical-align: middle;
  display: inline-block;
  float: right;
  width: 20px;
  height: 20px;
  transition: all 0.5s;
  position: absolute;
  right: 15px;
  left: auto;
  top: 50%;
  transform: translate(0, -50%);
}

.acc_heading.active::before {
  background: url(images/down-arw.svg) no-repeat right center;
  background-size: 100%;
}
/* debalina */
/* debalina */
.acc_contents {
    display: none;
    padding: 20px 25px;
}

.acc_contents p:last-child {
    margin: 0;
}
/* debalina */

.acc_contents p, .acc_contents ul li {
    font-size: 14px;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 15px;
}
.acc_contents ul {
    list-style: disc;
    margin-bottom: 10px;
}
.acc_contents ul li {
    margin-bottom: 7px;
    line-height: 20px;
}
.faq_category {
  padding: 40px 0px 30px 0px;
}
.faq_category h4 {
  font-weight: 700;
  font-size: 24px;
  color: #303030;
}
/*private hire sec start*/
.private_hire_sec .about-sideimg::after {
  position: absolute;
  left: 30%;
  top: 49%;
  transform: translateY(-50%);
  width: 3000px;
  height: 353px;
  background: url(images/bg-img.webp) no-repeat;
  background-size: cover;
  content: "";
  z-index: -1;
}

.wedding_private_hire_sec .about-sideimg::after {
    position: absolute;
    left: 30%;
    top: 49%;
    transform: translateY(-50%);
    width: 3000px;
    height: 130%;
    background: url(images/bg-img.webp) no-repeat;
    background-size: cover;
    content: "";
    z-index: -1;
}
.private_intent .int_title h2{
    text-transform: uppercase;
}
.wedding_work_sec + .package_sec .down_title p {
    display: block;
    max-width: 895px;
    margin: 0 auto 0;
}
.privatehire_choose .cmn_title h4 {
  font-weight: 400;
  font-size: 20px;
  line-height: 125%;
  color: var(--gray);
  margin-top: 20px;
}
.privatehire_choose .cmn_title h4 i{
    display: inline-block;
    font-style: normal;
    background-color: #dfe8d6;
}
.cmn_title {
    z-index: 2;
    position: relative;
}
.privatehire_choose .choose_row {
  margin-top: -19px;
  /* z-index: -1; */
}
.private_hire_sec .cmn_title h2 em::before {
  position: absolute;
  left: 98%;
  top: 83%;
  max-width: 584px;
  height: 1px;
  background: url(images/line-about.png) no-repeat;
  background-size: cover;
  content: "";
  z-index: -1;
}
.tentoption_sec {
  padding-bottom: 80px;
}
.gallery{
    border-top: 1px solid #D5D5D5;
}
.gallery .cmn_title h2 em::after {
    left: 15px;
}
.btn_grps {
    padding-top: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 13px 10px;
    flex-wrap: wrap;
}
.btn_grps>*{
    padding: 0 !important;
}
.inner_inquiry_start.lets_start:has(.btn_grps) .cmn_title h2 em{
    background: var(--white);
}
.inner_inquiry_start.lets_start:has(.btn_grps) .cmn_title h2::before{
    display: none;
}
.tentoption_sec .cmn_title h4 {
  font-weight: 400;
  font-size: 20px;
  line-height: 125%;
  color: var(--gray);
  margin-top: 20px;
  margin-bottom: 0px;
}
.tentoption_sec .offer_row {
  margin-top: -10px;
}
.tentoption_sec .cmn_title h2 em {
  background-image: url(images/bg-img.webp);
}
.tentoption_sec .cmn_title h4 span {
  background-image: url(images/bg-img.webp);
}
.tentoption_sec .offer_row .offer_bx p {
  padding: 60px 0px 15px 0px;
}
.offer_sec.what_wedo.tentoption_sec .offer_row .offer_bx p {
  padding-bottom: 40px;
  font-size: 16px;
  color: var(--gray);
}
.tentoption_sec .offer_bx {
  height: auto;
}
.factor-card {
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  background: var(--white);
  padding: 50px 20px;
  border-radius: 6px;
  margin-bottom: 0px !important;
  align-items: center;
  height: 100%;
  transition: var(--default-trans);
}
.factor-card:hover{
  box-shadow: 0px 2px 25.1px 0px #DDDDDDBF;
}
.tent_btmrow {
  padding: 40px 0px 40px 0px;
  border: 1px solid #D5D5D5;
  border-width: 1px 0px 1px 0px;
}
.tent_btmrow .row>*{
    margin-bottom: 10px;
}
section.offer_sec.what_wedo.tentoption_sec .tent_btmrow {
    border-bottom: none;
}
section.intro_sec.private_hire_sec .row {
    align-items: center;
}

.row.calculate_unit {
    width: 100%;
    margin: 0;
    margin-top: -6px;
}
.factor-text{
    display: block;
}
.section_footer {
  margin-top: -16px;
}
.section_footer p {
  font-size: 16px;
  color: #000000;
}
.section_footer span,
.pr_section_footer span {
  background-image: url(images/bg-img.webp);
    font-weight: 500;
    font-size: 16px;
    text-transform: capitalize;
    display: inline-block;
    color: var(--black);
}
.chs_icn{
    min-width: 40px;
}
.pr_section_footer {
  margin-bottom: -10px;
  margin-top: 50px;
}
.pr_section_footer p {
  font-size: 14px;
}
.private_intent {
  padding: 60px 0px;
}
.private_intent .intent_bx {
  padding-bottom: 45px;
  margin-bottom: 49px;
}

.private_intent .intent_bx p {
  font-size: 14px;
  font-weight: 400;
  color: #454444;
  margin-bottom: 10px;
}
.hire_inquire .form-container {
  background-color: #e5eddc;
  box-shadow: 5px 5px 23.9px 0px #d2d7cc;
}

.hire_inquire p {
  font-size: 16px;
  font-weight: 400;
  color: #454444;
  margin-bottom: 10px;
  max-width: 950px;
}
.hire_inquire p:last-child{
    margin-bottom: 60px;
}
section.inquire_form.attendee_inquire_form.hire_inquire .cmn_title p:last-child{
    margin-bottom: 0px;
}
.closing_reassurance {
  background-color: var(--white);
}
.closing_reassurance .cmn_title p:last-child{
    margin-bottom: 0;
}
/**contuct us */
/**debalina */
.contact_item .icon_box {
    width: 32px;
    height: 32px;
    background-color: #8CBF52;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    margin-top: 2px;
}
/**debalina */

.contact_item .icon_box i, .get_touch .contact_item .icon_box i {
  width: 20px;
  height: 20px;
  color: var(--white);
}
.gallery .slick-slide img {
  display: block;
  height: 100% !important;
}
.fancybox-caption__body {
    max-height: unset !important;
    overflow: hidden !important;
    pointer-events: all;
    font-weight: 700;
    font-size: 26px;
    line-height: 108%;
    text-transform: capitalize;
    padding-bottom: 5px;
}

/* debalina */
.contact_item h6 {
    margin: 0 0 13px 0;
    font-size: 20px;
    font-weight: 600;
    color: #202020;
}
/* debalina */
.get_touch .input_wrapper textarea {
  min-height: 120px;
}
.get_touch .row {
  align-items: flex-start;
}
.contacr_wrapper{
  position: relative;
  padding:46px 35px 0px 35px;
  
}
.contacr_wrapper::before{
 position: absolute;
  left: 0;
  top: 0;
  width:100%;
  height: 430px;
  background: url(./images/contact-background.webp) no-repeat;
  background-size: cover;
  content: "";
  z-index: -1;
}
.get_touch .contact_item .text_box a,p {
    color: #454444;
    font-size: 14px;
    transition: var(--default-trans);
}
.get_touch .contact_item .text_box a{
    display: inline-block;
}
.get_touch .contact_item .text_box a:hover{
    color: var(--olive-green);
}
.get_touch .form-container {
    padding: 50px 30px;
}

 .get_touch .btn-submit {
    padding: 12px 93px;
}
.text_box p{
    margin-bottom: 0;
}
.fest_org a{
  color: #044328;
font-size: 14px;
}
.contact_info_wrapper ul{
    padding: 0;
    margin: 0;
    margin-bottom: 25px;
}
.contact_info_wrapper ul li{
    color: #454444;
    font-size: 14px;
    display: flex;
    justify-content: flex-start;
    gap: 5px;
}
.contact_info_wrapper ul li em{
    display: block;
    font-style: normal;
}
.contact_info_wrapper ul li p{
    margin-bottom: 0;
}
.contact_info_wrapper ul li + li{
    margin-top: 7px;
}
.invitation_text{
    padding-right: 40px;
}
.invitation_text p{
    font-size: 16px;
    margin-bottom: 25px;
}
.invitation_text p span{
  font-size: 20px;
  display: inline-block;
}
.inquire_form.attendee_form .form-container{
    background: #D3E3C5;
    box-shadow: 0px 4px 18.3px 0px #5D7E363B;
}
.attendee_form .cmn_title p em{
    font-style: normal;
    display: inline-block;
    color: var(--olive-green);
}
.image-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.grid-item {
  overflow: hidden;
  display: block;
  position: relative;
  border-radius: 3px;
padding: 10px;
background: #FDF9EF;
}
.grid-item img{
    width: 100%;
}
.grid-item::after {
    position: absolute;
    right: 10px;
    bottom:  10px;
    width: 36px;
    height: 36px;
    background: url('data:image/svg+xml,<svg width="36" height="36" viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 3C0 1.34315 1.34315 0 3 0H36V33C36 34.6569 34.6569 36 33 36H0V3Z" fill="black" fill-opacity="0.4"/><path d="M17.1667 23.8333C20.8486 23.8333 23.8333 20.8486 23.8333 17.1667C23.8333 13.4848 20.8486 10.5 17.1667 10.5C13.4848 10.5 10.5 13.4848 10.5 17.1667C10.5 20.8486 13.4848 23.8333 17.1667 23.8333Z" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M25.5 25.5L21.875 21.875" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M17.168 14.667V19.667" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M14.668 17.167H19.668" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
     background-size: cover;
    content: "";
}
.grid-item::before{
  position: absolute;
  left: 10px;
  top: 10px;
  right: 10px;
  bottom: 10px;
  width: 94%;
  height: 92%;
  background: rgba(0, 0, 0, 0.226);
  content: "";
   border-radius: 3px;
}
.gallery-tab-btn {
    font-size: 14px;
    text-align: center;
    padding: 15px 0px;
    white-space: nowrap;
    cursor: pointer;
    transition: var(--default-trans);
}
.gallery-tab-btn:hover{
    background-color: #044227;
  color: var(--white);
}
.gallery-tab-btn.active,
.gallery-tab-btn :hover
{
  background: #063b21;
}

.gallery .slick-prev,
.gallery .slick-next {
  font-size: 0;
  line-height: 0;
  color: transparent;
}
.gallery .slick-prev::before,
.gallery .slick-next::before {
  content: none !important;
}


.gallery .slick-prev, .gallery .slick-next {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 18px;
    z-index: 10;
    transition: all 0.3s ease;
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
}
.slick-current .gallery-tab-btn{
  background-color: #044227;
  color: var(--white);
}
.gallery-slider-nav {
    margin-bottom: 92px;
    overflow: visible;
    position: relative;
}
.gallery-slider-nav::after{
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 4000px;
    height: 1px;
    background: #B1C4A0;
    content: "";
}
.gallery-slider-nav::before{
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 4000px;
    height: 1px;
    background: #B1C4A0;
    content: "";
}
.wedding_sec .chs_text {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 35px 20px;
    background: white;
}
.wedding_sec .chs_text:hover{
    background: var(--white);
    box-shadow: 0px 2px 25.1px 0px #D3D3D3BF;
}
/* .wedding_sec .chs_bx .num ,.privatehire_choose .chs_bx .num{
    background: #9DAF89;
    color: var(--black);
} */
.privatehire_choose .chs_bx .chs_text:hover{
    box-shadow: 0px 2px 25.1px 0px #B1C4A0BF !important;
}
/*Wedding sec start*/

  .wedding_sec .cmn_title h2 em::after {
    left: 0%;
    transform: translateX(-0%);
}
.wedding_sec .cmn_title h2 em {
    background-image: url(images/bg-img.webp);
}
/* Arrow Position */
.gallery .slick-prev {
  left: -65px;
  background-image: url(./images/Arrow.svg);
}
.gallery .slick-next {
  right: -46px;
  background-image: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M9 18L15 12L9 6" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}
.privatehire_choose .chs_bx .chs_text:hover{
    box-shadow: 0px 2px 25.1px 0px #B1C4A0BF !important;
}
section.choose_sec.about_choose.privatehire_choose{
    padding-bottom: 0;
}
section.choose_sec.about_choose.privatehire_choose .choose_row .row .chs_bx_wrapper {
    padding-bottom: 130px;
}
.why_choose .buttom-text{
    margin-top: 70px;
    padding-left: 50px;
}
/* contuct us end */
/* dolon css end  */

/*/////// inner-pages css end  ////////*/

/*///////////// default_content start  /////////////*/

.alignleft {
  float: left;
  margin: 0px 30px 25px 0px;
  border-radius: 6px;
}

.alignright {
  float: right;
  margin: 0px 0px 25px 30px;
  border-radius: 6px;
}

.aligncenter {
  float: none;
  margin: 30px auto;
  border-radius: 6px;
}

/*//////////////// default_content end ///////////////// */

/* <!-- back-to-top start  --> */
#back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  cursor: pointer;
  transition: 0.3s all ease-in-out;
  z-index: 10;
}

.back_to_top a {
  position: relative;
  font-size: 53px;
  background: white;
  width: 51px;
  height: 51px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.1);
  transition: 0.3s all ease-in-out;
}

.back_to_top a svg {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 25px !important;
  transform: translate(-50%, -50%);
}

.back_to_top a:hover {
  background: var(--olive-green);
}

.back_to_top a:hover svg path {
  transition: var(--default-trans);
}

.back_to_top a:hover svg path {
  fill: var(--white);
}

/* <!-- back-to-top end  --> */
/* debalina start */

.bottom-text-faq .cmn_title h2 em::after,
.bottom-text-faq .cmn_title h2 em::before {
    display: none;
}

.bottom-text-faq {
    padding-top: 77px;
}

.form-container.contact-container {
    background-color: #D3E3C5;
    box-shadow: 0px 4px 18.3px 0px #5D7E363B;
}

.our-icon img {
    min-width: 25px;
}

ul.custom_list_100 li {
    width: 100%;
}
.intent_text2 h4 {
    margin-left: 0 !important;
}

.fest-2nd-form textarea {
    height: 111px;
}