/*
Theme Name: Studio Solo Child Theme
Template: twentytwenty
Version: 1.0
*/
/* ************************* Global ************************* */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;');

:root {
    --primary: #2f4050;
    --action: #B8006B;
    --secondary: #37af67;
    --accent: #eee;
    --white: #fff;
    --black: #000;
    --base: #222222;
    --bg-primary: #f9f9f9;
    --border: #ddd;
    /* --title-font: "Staatliches", sans-serif; */
    --body-font: "Lato", sans-serif;
    --base-transition: all .3s ease-in-out;
    --sub-font: "Poppins", sans-serif;

    --header-height: 120px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 124px;
}

html body {
    font-size: 16px;
    line-height: 1.5;
    font-family: var(--body-font);
    min-height: 100svh;
    color: var(--base);
}

img {
    vertical-align: top;
    width: 100%;
    height: auto;
}

body a {
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    color: currentColor;
    display: inline-block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--body-font);
    font-weight: 600;
}

p {
    margin-bottom: 1em;
}

p:last-child {
    margin-bottom: 0 !important;
}

.h--1,
h1 {
    font-size: 50px;
    line-height: 1.2;
}

.h--2,
h2 {
    font-size: 40px;
    line-height: 1.2;
}

.h--3,
h3 {
    font-size: 34px;
    line-height: 1.2;
}

.h--4,
h4 {
    font-size: 30px;
    line-height: 1.2;
}

.h--5,
h5 {
    font-size: 24px;
    line-height: 1.2;
}

.h--6,
h6 {
    font-size: 20px;
    line-height: 1.2;
}

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

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

.text-xl {
    font-size: 18px;
    line-height: 1.5;
}

section {
    padding-block: 80px;
    padding-inline: 20px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}

.block {
    display: flex;
    flex-direction: column;
}

.gap-s {
    gap: 2.5rem;
}

.gap-m {
    gap: 4rem;
}

.grid {
    display: grid;
    grid-template-rows: 1fr;
}

.title-tag {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 6px;
    font-weight: 600;
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.5;
}

.title-tag::after {
    content: '';
    position: absolute;
    background: currentColor;
    width: 60px;
    height: 2px;
    border-radius: 4px;
    left: 0;
    bottom: 0;
}

.btn-wrap {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn {
    padding: .6em 1.5em;
    text-decoration: none;
    transition: all .3s ease;
    border-radius: 30px;
    font-size: 16px;
    border: 2px solid transparent;
    font-weight: 600;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--secondary);
    color: var(--black);
    border-color: var(--secondary);
}

.btn-white {
    color: var(--primary);
    background: var(--white);
}

.btn-white:hover {
    color: var(--white);
    background: var(--primary);
}

.btn-secondary {
    background: var(--action);
    color: var(--white);
    border-color: var(--action);
}

.btn-secondary:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.grid-intro {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.text--center {
    text-align: center;
}

.intro {
    max-width: 768px;
    margin-inline: auto;
    gap: 1.5em;
}

.text--center .title-tag::after {
    left: 50%;
    transform: translateX(-50%);
}

/* ************************* Global ************************* */
/******************* header *******************/
.site_header {
    padding: 20px;
    position: fixed;
    transition: all .3s linear;
    top: 0;
    z-index: 99;
    background: transparent;
    width: 100%;
}

.site_header .header_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    position: relative;
}

.site_header .header_logo {
    position: relative;
    z-index: 4;
    width: 18%;
}

.site_header .header_logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease-in-out;
    /* border-radius: 38px 38px 0px 0px; */
}

.site_header .header_logo .logo2 {
    display: none;
}

.site_header.custom_sticky .header_logo .logo2 {
    height: 78px;
    display: block;
}

.site_header.custom_sticky .header_logo .logo {
    display: none;
}

body.header_open #site-header {
    background: var(--white);
}

body.header_open #site-header .header_row .search-icon {
    color: var(--primary);
}

body.header_open #site-header .header_logo .logo2 {
    display: block;
}

body.header_open #site-header .header_logo .logo {
    display: none;
}

.site_header .header_menu .nav-menu {
    list-style: none;
}

.site_header .header_row .search-icon {
    color: var(--white);
    font-size: 18px;
}

.site_header.custom_sticky .header_row .search-icon {
    color: var(--primary);
}

@media (min-width:1025px) {

    .site_header:not(.custom_sticky) .header_menu__wrap .nav-menu>li.mega_menu>span.sub-arrow,
    .site_header:not(.custom_sticky) .header_mobile-menu .nav-menu>li.mega_menu>span.sub-arrow {
        filter: invert(1) !important;
    }

    .site_header .header_menu {
        width: 60%;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        margin-left: auto;
    }

    .site_header .header_row>.btn_wrap {
        width: auto;
        display: flex;
        justify-content: flex-end;
    }

    .site_header .btn_wrap a {
        margin-left: auto;
    }

    .site_header .header_menu .nav-menu {
        display: flex;
        margin: 0;
        gap: 30px;
        align-items: center;
        justify-content: center;
    }

    .site_header .header_menu .mega_menu.menu-item-has-children:hover .sub-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: visible !important;
        display: flex;
        pointer-events: all;
    }

    .site_header .header_menu ul.nav-menu>li>a {
        position: relative;
        line-height: 1.5;
        display: inline-block;
        font-size: 16px;
        color: var(--primary);
        font-family: var(--body-font);
        font-weight: 600;
    }

    .site_header .header_menu .nav-menu li a:hover {
        color: var(--primary);
    }
}

.site_header .header_menu ul.nav-menu>li.menu-item-has-children {
    display: flex;
    gap: 6px;
    align-items: center;
    transition: all .3s ease-in-out;
    flex-wrap: wrap;
    cursor: pointer;
    width: fit-content;
}

@media(max-width:1024px) {
    .site_header .header_row .header_menu {
        order: 3;
    }

    .site_header .header_row .btn-wrap {
        margin-left: auto;
    }

    .header_menu__wrap {
        display: none;
    }

    .site_header .header_logo {
        width: auto;
    }

    body .mobile_toggle_icon {
        display: flex;
    }

    .pricing_plans_section .pricing_plans_wrapper .pricing_plan.best {
        scale: 1;
        margin-inline: 0px;
        order: -1;
        max-width: 493px;
        margin: auto;
        grid-column: 1/-1;
    }
}

.mobile_toggle_icon.active span {
    background-color: var(--primary) !important;
}

.header_mobile-menu {
    display: flex !important;
    position: fixed;
    width: 100vw;
    left: 100%;
    right: 0;
    background-color: var(--white);
    height: 100%;
    top: 80px;
    padding-top: 30px;
    padding-inline: 20px;
    padding-bottom: 40px;
    transition: var(--base-transition);
    border-top: 1px solid var(--accent);
}

.header_mobile-menu .btn_wrap a {
    background: var(--primary) !important;
    color: var(--white) !important;
    border: 1px solid var(--primary) !important;
}

.header_mobile_menu__wrap {
    /* overflow: auto; */
    width: 100%;
    scrollbar-width: none;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.site_header .header_logo {
    width: auto;
}

.mobile_toggle_icon {
    width: 28px;
    height: 20px;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    cursor: pointer;
    display: none;
}

.header_menu .mobile_toggle_icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--white);
    border-radius: 9px;
    opacity: 1;
    transform: rotate(0.1deg);
    transition: .25s ease-in-out;
    left: 0;
}

.site_header.custom_sticky .header_menu .mobile_toggle_icon span {
    background: var(--primary);
}

.header_menu .mobile_toggle_icon span:nth-of-type(1) {
    top: 0px;
}

.header_menu .mobile_toggle_icon span:nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
    transform-origin: left center;
}

.header_menu .mobile_toggle_icon span:nth-of-type(3) {
    top: 100%;
    transform: translateY(-100%);
}

.header_menu .mobile_toggle_icon.active span:nth-of-type(2) {
    opacity: 0;
}

.header_menu .mobile_toggle_icon.active span:nth-of-type(1) {
    transform: translate(-50%, -50%) rotate(45deg);
    top: 50%;
    left: 50%;
}

.header_menu .mobile_toggle_icon.active span:nth-of-type(3) {
    transform: translate(-50%, -50%) rotate(-45deg);
    top: 50%;
    left: 50%;
}

.header_open .header_mobile-menu {
    left: 0;
}

.header_mobile-menu .nav-menu {
    display: flex;
    flex-direction: column;
    gap: 1em;
    font-weight: 500;
}

.header_mobile-menu .btn_wrap {
    margin-top: 30px;
}

.header_mobile-menu .header_mobile_menu__wrap .btn-wrap {
    display: flex !important;
}

body.header_open {
    overflow: hidden;
}

.header_mobile-menu ul.nav-menu>li>a {
    color: var(--primary) !important;
    font-weight: 600;
}

.header_mobile-menu .nav-menu a[aria-current="page"] {
    color: var(--primary) !important;
}

header:not(.custom_sticky) .btn_wrap a {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.site_header .header_menu ul.nav-menu>li>a:hover::after {
    width: 100%;
}

.site_header .header_menu ul.nav-menu>li>a::after {
    content: '';
    position: absolute;
    background: currentColor;
    width: 0;
    height: 2px;
    left: 0;
    bottom: -0.17em;
    transition: var(--base-transition);
    transform-origin: left;
}

.site_header .menu-item-has-children li {
    width: 100%;
    list-style: none;
}

.site_header.custom_sticky {
    background: var(--white) !important;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.site_header:not(.custom_sticky) .header_menu ul.nav-menu>li>a {
    color: var(--white);
}

body .site_footer .inner_wrap .wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column {
    flex-basis: unset !important;
}

.site_header .header_row .btn-wrap .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .7em 1.5em;
    gap: 6px;
    font-size: 14px;
}

.site_header .header_row .btn-wrap .btn .header-btn-icon {
    width: 20px;
}

.site_header .header_row .btn-wrap .btn:hover .header-btn-icon {
    filter: invert(0) brightness(100);
}

/******************* header *******************/

/******************* header color *******************/
.header-color .site_header {
    background: var(--white) !important;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.header-color .site_header .header_logo .logo {
    display: none;
}

.header-color .site_header .header_logo .logo2 {
    display: block;
}

.header-color .site_header .header_menu ul.nav-menu>li>a,
.header-color .site_header .header_row .search-icon {
    color: var(--primary);
}

.header-color .site_header .header_menu ul.nav-menu>li>.sub-arrow {
    filter: unset !important;
}

.header-color .site_header .header_menu .mobile_toggle_icon span {
    background-color: var(--primary);
}

/******************* header color *******************/

/*********** form ***********/

.site_header .search-form {
    border: 2px solid var(--action);
    outline: none;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    transition: var(--base-transition);
    z-index: 4;
    opacity: 1;
    visibility: visible;
    overflow: hidden;
}

.site_header .search-form input {
    border: 0px;
    min-height: 38px;
    padding: 8px 12px;
    outline: none;
    font-size: 14px;
    line-height: 1.2;
    color: var(--primary);
    font-family: var(--body-font);
    font-weight: 500;
    letter-spacing: 0.2px;
}

.site_header .search-form>span {
    margin-right: 10px;
    cursor: pointer;
}

.search-form:not(.form_active) {
    width: 0px;
    border-color: transparent;
    opacity: 0;
    visibility: hidden;
}

.search-form.form_active {
    width: 228px;
}


/*********** form ***********/
/* updated mega menu */
.site_header .header_menu ul.nav-menu>li.drop-mega-menu {
    position: relative;
}

.site_header .header_menu ul.nav-menu>li.drop-mega-menu .sub-menu {
    top: 36px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    margin-top: 0;
    position: absolute;
    width: 200px;
    display: none;
    z-index: 1;
}

.site_header .header_menu ul.nav-menu>li.drop-mega-menu:hover .sub-menu {
    display: block;
}

.site_header .header_menu ul.nav-menu>li.drop-mega-menu>.sub-menu>li>.sub-arrow {
    display: none !important;
}

.site_header .header_menu ul.nav-menu>li.drop-mega-menu .sub-menu>li>a {
    background: #fff none repeat scroll 0 0;
    border-top: 1px solid var(--border);
    padding: 10px 15px;
    color: var(--primary) !important;
    width: 100%;
    font-family: var(--body-font);
    font-weight: 600;
    font-size: 14px;
}

.site_header .header_menu ul.nav-menu>li.drop-mega-menu .sub-menu>li>a:hover {
    color: var(--action) !important;
}

.site_header .header_menu ul.nav-menu>li.drop-mega-menu .sub-arrow {
    width: 20px;
    height: 20px;
    background-image: url(/wp-content/uploads/2026/05/arrow-down-svgrepo-com.svg) !important;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    display: block !important;
    cursor: pointer;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1);
}

.site_header .header_menu ul.nav-menu>li.drop-mega-menu:hover .sub-arrow {
    transform: rotate(180deg);
}

.site_header .header_menu .drop-mega-menu>ul.sub-menu::before {
    content: "";
    position: absolute;
    height: 25px;
    width: 100%;
    top: -16px;
    background-color: #ffffff00;
    left: 0px;
}

/* updated mega menu */
/* resposnive mega menu */
.site_header .header_row .header_menu .header_mobile_menu__wrap .sub-arrow,
.site_header.custom_sticky .sub-arrow {
    filter: brightness(0) saturate(100%) invert(23%) sepia(13%) saturate(1148%) hue-rotate(168deg) brightness(95%) contrast(93%) !important;
}

/* resposnive mega menu */
/* header chnage bg */
.privacy-policy .site_header,
.error404 .site_header {
    background: var(--white) !important;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.privacy-policy .site_header:not(.custom_sticky) .header_menu ul.nav-menu>li>a,
.error404 .site_header:not(.custom_sticky) .header_menu ul.nav-menu>li>a {
    color: var(--primary);
}

.privacy-policy .footer-nav-widgets-wrapper.header-footer-group,
.error404 .footer-nav-widgets-wrapper.header-footer-group {
    display: none;
}

.privacy-policy .header_menu .mobile_toggle_icon span,
.error404 .header_menu .mobile_toggle_icon span {
    background: var(--primary);
}

.privacy-policy .site_header .header_logo .logo2,
.error404 .site_header .header_logo .logo2 {
    display: block;
}

.privacy-policy .site_header .header_logo .logo,
.error404 .site_header .header_logo .logo {
    display: none;
}

.privacy-policy .site_header .sub-arrow,
.error404 .site_header .sub-arrow {
    filter: brightness(0) saturate(100%) invert(23%) sepia(13%) saturate(1148%) hue-rotate(168deg) brightness(95%) contrast(93%) !important;
}

.privacy-policy .site_header .header_row .search-icon,
.error404 .site_header .header_row .search-icon {
    color: var(--primary);
}

/* header chnage bg */
/* ************************** Footer ************************** */
.site-footer {
    padding: 0px 20px;
    overflow: hidden;
    background: var(--accent);
    border-top: 1px solid var(--border);
}

.site-footer .footer-row {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-row .footer-menu-wrap .footer-menu {
    display: flex;
    list-style: none;
    justify-content: center;
}

.footer-row .footer-menu-wrap {
    padding: 30px 0px;
}

.footer-row .footer-menu-wrap .footer-menu li {
    padding: 0px 10px;
    border-right: 1px solid #ccc;
    border-left: 1px solid #ccc;
}

.footer-row .footer-menu-wrap .footer-menu li:first-child {
    border-left: 0px;
}

.footer-row .footer-menu-wrap .footer-menu li:last-child {
    border-right: 0px;
    padding-right: 0px;
}

.footer-row .footer-menu-wrap .footer-menu li a {
    font-size: 16px;
    color: var(--primary);
    font-weight: 600;
    line-height: 1.2;
}

.footer-row .footer-menu-wrap .footer-menu li a:hover {
    color: var(--action);
}

.site-footer .footer-row .footer-copyright {
    display: flex;
    justify-content: space-between;
    background: var(--black);
    padding: 30px 0px;
    position: relative;
    align-items: center;
}

.site-footer .footer-row .footer-copyright:after {
    width: 100vw;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
    content: '';
    position: absolute;
    top: 0;
    background: var(--black);
}

.site-footer .footer-row .footer-copyright .copyright {
    color: var(--white);
    position: relative;
    z-index: 1;
}

.site-footer .footer-row .footer-copyright .copyright p a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.site-footer .footer-row .footer-copyright .copyright p a:hover {
    color: var(--action);
}

.site-footer .footer-row .footer-copyright .top-scroll {
    position: relative;
    z-index: 1;
    color: var(--white);
    border: 2px solid var(--white);
    border-radius: 4px;
    padding: 6px 8px;
    flex-shrink: 0;
}

.site-footer .footer-row .footer-copyright .top-scroll:hover {
    background-color: var(--white);
    color: var(--primary);
}

/* ************************** Footer  ************************** */
/* ************************* Error ************************* */
.error-sec {
    min-height: 400px;
    display: flex;
    align-items: center;
    padding-top: 160px;
}

.error-sec .intro {
    align-items: center;
}

/* ************************* Error ************************* */

/* ************************* header color ************************* */
.header-bg-color .header_logo .logo {
    display: none;
}

.header-bg-color .header_logo .logo2 {
    display: block;
}

.header-bg-color .site_header {
    background: var(--white) !important;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.header-bg-color .site_header .header_menu ul.nav-menu>li>a {
    color: var(--primary) !important;
}

.header-bg-color .site_header .header_row .search-icon {
    color: var(--primary);
}

.header-bg-color .site_header .header_menu ul.nav-menu>li.drop-mega-menu .sub-arrow {
    filter: brightness(0) saturate(100%) invert(23%) sepia(13%) saturate(1148%) hue-rotate(168deg) brightness(95%) contrast(93%) !important;
}

.header-bg-color section:first-child .container {
    padding-top: 120px;
}

.header-bg-color .site_header .header_menu .mobile_toggle_icon span {
    background: var(--primary);
}

/* ************************* header color ************************* */

/* ************************* Thank You ************************* */

.thank-you .block {
    justify-content: center;
    align-items: center;
}

.thank-you .thank-you-img img {
    width: 100%;
    margin: auto;
    object-fit: contain;
    max-width: 400px;
}

/* ************************* Thank You ************************* */

/* ************************* single content ************************* */
#site-content {
    padding-bottom: 80px;
    padding-top: 180px;
    padding-inline: 20px;
}

#site-content article {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}

#site-content article ol,
#site-content article ul {
    padding-left: 1.5em;
    margin: 0px 0px 20px 0px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

#site-content article h1,
#site-content article h2,
#site-content article h3,
#site-content article h4,
#site-content article h5,
#site-content article h6 {
    margin-top: 1em;
    margin-bottom: 0.3em;
}

#site-content article>*:first-child {
    margin-top: 0 !important;
}

#site-content article>*:last-child {
    margin-bottom: 0 !important;
}

#site-content article header .entry-header-inner .entry-title {
    margin-top: 0px;
    font-size: 40px;
}

#site-content article h1 {
    font-size: 40px;
}

#site-content article h2 {
    font-size: 34px;
}

#site-content article h3 {
    font-size: 30px;
}

#site-content article h4 {
    font-size: 26px;
}


@media(max-width:768px) {
    #site-content {
        padding-bottom: 60px;
        padding-top: 150px;
    }
}

/* ************************* single content ************************* */
/* ************************* Hero Banner ************************* */
.hero-banner .container {
    padding-top: 120px;
}

.hero-banner .hero-banner_row {
    position: relative;
    z-index: 1;
}

.hero-banner .hero-banner_row .hero-banner_intro {
    position: relative;
    z-index: 1;
    color: #fff;
    max-width: 767px;
    gap: 32px;
    margin: auto;
    text-align: center;
}

.hero-banner .hero-banner_row .hero-banner_inner {
    gap: 10px;
}

.hero-banner .hero-banner_row .hero-banner_intro .btn-wrap {
    justify-content: center;
}

.hero-banner .hero-banner_row .hero-banner_intro .intro-content span {
    margin-left: 30px;
}

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

.hero-banner .hero-banner_images .hero-img-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--white);
    width: calc(33.33% - 20px);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 1);
}

.hero-banner .hero-banner_images .hero-img-card .hero-img-card_img img {
    aspect-ratio: 404/ 360;
    object-fit: cover;
    min-height: 240px;
    width: 100%;
    /* object-position: top; */
}

.hero-banner .hero-banner_images .hero-img-card .hero-img-card_title {
    position: absolute;
    bottom: 0;
    color: var(--white);
    left: 0;
    padding: 16px;
    font-size: 16px;
    width: 100%;
    text-align: center;
    z-index: 2;
}

.hero-banner .hero-banner_images .hero-img-card .hero-img-card_title::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5));
}

.hero-banner {
    padding-bottom: 0;
}

.hero-banner .hero-banner_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 80px);
    pointer-events: none;
}

.hero-banner .hero-banner_bg img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.hero-banner .hero-banner_bg::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-image: linear-gradient(45deg, black, transparent);
}

/* ************************* Hero Banner ************************* */
/* ************************* Gallery ************************* */
.gallery_section .gallery_list {
    margin: auto;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.gallery_section .gallery_list .gallery_box {
    width: calc(39.2% - 5px);
    height: 260px;
    position: relative;
}

.gallery_section .gallery_list .gallery_box:nth-child(even) {
    width: calc(21% - 5px);
}

.gallery_section .gallery_list .gallery_box img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.gallery_section .gallery_list .gallery_box:nth-child(6n+5) {
    width: calc(57.4% - 5px);
}

.gallery_section .gallery_list a::after {
    content: '';
    position: absolute;
    background: var(--black);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0;
    transition: var(--base-transition);
}

.gallery_section .gallery_list a:hover::after {
    opacity: 0.5;
}

.gallery_section .gallery_list a::before {
    position: absolute;
    content: '';
    pointer-events: none;
    mask-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMiIgaGVpZ2h0PSIzMiIgZmlsbD0iIzAwMDAwMCIgdmlld0JveD0iMCAwIDI1NiAyNTYiPjxwYXRoIGQ9Ik0yMTYsNDhWOTZhOCw4LDAsMCwxLTE2LDBWNjcuMzFsLTQyLjM0LDQyLjM1YTgsOCwwLDAsMS0xMS4zMi0xMS4zMkwxODguNjksNTZIMTYwYTgsOCwwLDAsMSwwLTE2aDQ4QTgsOCwwLDAsMSwyMTYsNDhaTTk4LjM0LDE0Ni4zNCw1NiwxODguNjlWMTYwYTgsOCwwLDAsMC0xNiwwdjQ4YTgsOCwwLDAsMCw4LDhIOTZhOCw4LDAsMCwwLDAtMTZINjcuMzFsNDIuMzUtNDIuMzRhOCw4LDAsMCwwLTExLjMyLTExLjMyWk0yMDgsMTUyYTgsOCwwLDAsMC04LDh2MjguNjlsLTQyLjM0LTQyLjM1YTgsOCwwLDAsMC0xMS4zMiwxMS4zMkwxODguNjksMjAwSDE2MGE4LDgsMCwwLDAsMCwxNmg0OGE4LDgsMCwwLDAsOC04VjE2MEE4LDgsMCwwLDAsMjA4LDE1MlpNNjcuMzEsNTZIOTZhOCw4LDAsMCwwLDAtMTZINDhhOCw4LDAsMCwwLTgsOFY5NmE4LDgsMCwwLDAsMTYsMFY2Ny4zMWw0Mi4zNCw0Mi4zNWE4LDgsMCwwLDAsMTEuMzItMTEuMzJaIj48L3BhdGg+PC9zdmc+');
    width: 100%;
    height: 100%;
    background: var(--white);
    mask-position: center;
    mask-repeat: no-repeat;
    opacity: 0;
    transform: scale(0);
    transition: var(--base-transition);
    z-index: 2;
    mask-size: 40px;
}

.gallery_section .gallery_list a:hover::before {
    opacity: 1;
    transform: scale(1);
}

.gallery_section .btn-wrap {
    display: flex;
    justify-content: center;
}

.gallery_section .gallery_list .gallery_box:nth-child(n+7) {
    display: none;
}

/* ************************* Gallery ************************* */
/* *********************** Happening *************************** */
.happening-sec .happening_inner {
    display: grid;
    grid-template-columns: 45% 1fr;
    gap: 40px;
    align-items: center;
}

.happening-sec .happening_inner .happening_left {
    max-width: 600px;
    width: 100%;
}

.happening-sec .happening_inner .happening_left .happening_image {
    width: 100%;
    aspect-ratio: 576/500;
    object-fit: cover;
    border-radius: 10px;
    object-position: 100% 84%;
}

.happening-sec .happening_inner .happening_right .sec-intro {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.happening-sec .happening_inner .happening_right .sec-intro .btn-wrap {
    margin-top: 10px;
    justify-content: center;
}

.happening-sec .btn-wrap {
    justify-content: center;
}

/* *********************** Happening *************************** */
/* *********************** About *************************** */
.about-sec .about_row {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.about-sec .about_row .about_left {
    width: calc(30% - 20px);
}

.about-sec .about_row .about_left .about_inner img {
    aspect-ratio: 1/1.1;
    border-radius: 12px;
    object-fit: cover;
    object-position: top;
    min-height: 260px;
    border: 1px solid #ccc;
}

.about-sec .about_row .about_right {
    width: calc(70% - 20px);
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-sec .about_row .about_right .sec-intro {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 800px;
}

.about-sec .about_row .about_right .sec-intro .title-tag {
    margin-bottom: 12px;
}

.about-sec .about-wrapper .about_row:nth-child(2n) {
    flex-direction: row-reverse;
}

/* .about-sec .about_row .about_right .sec-intro .global_sub_header_title {
	color: var(--secondary);
} */
.social_link_wrapper {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social_link_wrapper .link {
    display: flex;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: var(--action);
    color: var(--white);
    transition: var(--base-transition);
    position: relative;
}

.social_link_wrapper .link:hover {
    background-color: var(--primary);
}

/* *********************** About *************************** */
/* *********************** event *************************** */
.event-sec {
    padding: 0;
    overflow: hidden;
    background: var(--black);
}

.event-sec .container {
    max-width: 100%;
}

.event-sec .container .event_row {
    position: relative;
    min-height: 380px;
    gap: 0px;
    display: flex;
    align-items: stretch;
}

.event-sec .container .event_row .intro {
    max-width: 100%;
    position: relative;
    width: calc(50% + 200px);
    /* height: 100%; */
    display: flex;
    align-items: end;
    margin: 0;
}

.event-sec .container .event_row .intro .intro-inner {
    position: relative;
    z-index: 1;
    padding: 80px 20px;
    max-width: 862px;
    width: 100%;
}

.event-sec .container .event_row .intro .intro-inner .intro-title {
    color: var(--white);
}

.event-sec .container .event_row .event-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    left: 0;
    top: 0;
    content: '';
}

.event-sec .container .event_row .event-bg::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background-color: var(--black);
    opacity: 0.3;
    left: 0;
}

.event-sec .container .event_row .event-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-sec .event-inner {
    padding: 80px 20px 80px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--white);
    max-width: 462px;
    width: calc(50% - 200px);
}

.event-sec .event-inner .event-gmail {
    font-size: 22px;
    padding-top: 80px;
}

.event-inner .event-grid {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    gap: 30px;
}

.event-inner .event-grid .event-info-card .event-info-card_title {
    margin-bottom: 6px;
}

/* *********************** event *************************** */


/* *********************** Contact *************************** */

.hero-banner-v2 {
    background-image: var(--bg-image);
    color: var(--white);
}

.hero-banner-v2::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-image: linear-gradient(45deg, black, transparent);
}

.hero-banner-v2__title {
    color: var(--white);
}

.hero-banner-v2 .container {
    z-index: 1;
    position: relative;
    margin-top: var(--header-height);
    display: flex;
    align-items: flex-end;
    padding-top: 3rem;
}

.hero-banner-v2__row {
    gap: 1.5rem;
}

.contact-sec__row {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.block.sec-intro {
    gap: 1.5rem;
}

.contact-sec__left {
    gap: 3rem;
}

.contact-sec__left .sec-content {
    max-width: 386px;
}

.address-card {
    grid-template-columns: 1.5em 1fr;
    gap: 0.7em;
    text-wrap: balance;
}

.address-card svg {
    width: 100%;
    height: auto;
    color: var(--action);
}

.address-wrap {
    gap: 1.5em;
}

.featured-sec__row {
    grid-template-columns: 1fr 50%;
    gap: 4rem;
}

.featured-sec__left .intro-full {
    gap: 1.5rem;
}

.featured-sec__left {
    gap: 2rem;
}

.featured-sec__image-block {
    display: flex;
    gap: 1rem;
    align-items: stretch;
    height: 100%;
}

.featured-sec__image-block img {
    height: auto;
    object-fit: cover;
    flex-grow: 1;
    border-radius: 0.5rem;
}

.what-us-different__row {
    background: #f7f7f7;
    border-radius: 1rem;
    padding: 3.2rem;
    gap: 1.5rem;
}

.what-us-different {
    padding-block: 2rem;
}

.what-us-different__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
}

.wud-card__svg svg {
    color: var(--action);
    height: 3rem;
    width: auto;
}

.wud-card__svg {
    align-items: flex-start;
}

.wud-card {
    gap: 1.5rem;
    position: relative;
}

.wud-card::after {
    content: '';
    position: absolute;
    background: #cfcfcf;
    width: 1px;
    height: 100%;
    left: -2em;
}

@media(min-width:1025px) {
    .wud-card:nth-child(4n + 1)::after {
        display: none;
    }
}

@media(max-width:1024px) and (min-width:769px) {
    .wud-card:nth-child(2n + 1)::after {
        display: none;
    }
}

.wud-card__info {
    gap: 0.5rem;
}

.wud-card__title {
    font-size: 19px;
}

/* *********************** Contact *************************** */

/* *********************** Gallery sec *************************** */
.serve_section {
    padding-inline: 0px;
}

.serve_section .serve_wrapper {
    display: flex;
    width: 100%;
}
.serve_section .intro {
	padding: 0px 20px;
}
.serve_section .btn-wrap {
	justify-content: center;
	padding: 0px 20px;
}
.serve_section .container {
    max-width: 100%;
    padding: 0;
}

.serve_section .serve_wrapper .serve_item {
    position: relative;
    height: 600px;
    transition: all .5s linear;
    width: 14%;
    overflow: hidden;
}

.serve_section .serve_wrapper .serve_item a::after {
    content: '';
    background: linear-gradient(180deg, #fff0 10%, rgb(0 0 0 / .8) 100%);
    width: 100%;
    height: 50%;
    position: absolute;
    bottom: 0;
    left: 0;
}

.serve_section .serve_wrapper .serve_item a {
    display: flex;
    position: relative;
    height: 100%;
    padding: 30px;
    align-items: end;
}

.serve_section .serve_wrapper .serve_item a img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.serve_section .serve_wrapper .serve_item .serve_item-inner {
    transform: rotate(-90deg);
    transition: var(--base-transition);
    transform-origin: 10px 10px;
    position: relative;
    z-index: 1;
    text-align: left;
}

.serve_section .serve_wrapper .serve_item a::after {
    content: '';
    background: linear-gradient(180deg, #fff0 10%, rgb(0 0 0 / .8) 100%);
    width: 100%;
    height: 50%;
    position: absolute;
    bottom: 0;
    left: 0;
}

.serve_section .serve_wrapper .serve_item.active {
    width: 58%;
}

.serve_section .serve_wrapper .serve_item h3 {
    position: relative;
    color: #fff;
    z-index: 2;
    font-weight: 400;
    font-size: 24px;
    text-wrap: nowrap;
    text-transform: uppercase;
    line-height: 1.1;
}

.serve_section .serve_wrapper .serve_item.active .serve_item-inner {
    transform: unset;
    animation: moveup 2s;
}

@keyframes moveup {
    0% {
        opacity: 0;
    }

    50% {
        transform: rotate(0) translateY(-20px);
    }

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

/* *********************** Gallery sec *************************** */

/* *********************** Global Form *************************** */

body .gform-theme--foundation {
    --gf-form-gap-y: 1.5rem;
    --gf-ctrl-choice-check-color: var(--action);
    --gf-ctrl-outline-color-focus: #b8006b66;
}

body .gform-theme--foundation .gfield .ginput_password,
body .gform-theme--foundation .gfield input:not([type="checkbox"]),
body .gform-theme--foundation .gfield select,
body .gform-theme--foundation .gfield textarea {
    border-color: #d3d3d3;
    box-shadow: unset;
    font-size: 17px;
    line-height: 1;
    padding: 0.8em 1em;
    display: block;
    height: auto;
    font-weight: 500;
    outline: none;
}

body .gform-theme--foundation .gfield input::placeholder,
body .gform-theme--foundation .gfield textarea::placeholder {
    font-size: inherit;
}

body .gform-theme--foundation .gfield textarea {
    height: 150px !important;
}

.gform-phone__country-selector {
    padding-block: 1em !important;
    border-color: #d3d3d3 !important;
}

.gform_button.button {
    background: var(--action) !important;
    border-color: var(--action) !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    border-radius: 999px !important;
    padding: 1em 2em !important;
    transition: all .3s ease-in-out !important;
}

.gform_button.button:hover {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
}

/* *********************** Global Form *************************** */

/* *********************** Gallery page*************************** */
.gallery_list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
}

.gallery-banner {
    min-height: 600px;
}

.gallery-banner .hero-banner-v2__row {
    margin: auto;
    gap: 10px;
}

.gallery-cat-wrap ul {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
    list-style: none;
    flex-wrap: wrap;
}

.gallery-cat-wrap ul .gallery-cat a {
    padding: .5em 1.3em;
    text-decoration: none;
    transition: all .3s ease;
    border-radius: 30px;
    font-size: 14px;
    border: 2px solid transparent;
    font-weight: 600;
    display: inline-block;
    text-align: center;
    background: #ddd;
    color: var(--base);
}

.gallery-cat-wrap ul .gallery-cat a:hover {
    background: var(--action);
    color: var(--white);
}

.gallery-cat-wrap ul .gallery-cat.active a {
    background: var(--action);
    color: var(--white);
}

.gallery_list .gallery_box.hidden-item {
    display: none;
}

/* *********************** Gallery page *************************** */
/* ** contact form** */
.gform_wrapper {
    font-family: "Roboto", sans-serif !important;
}

body .gform_wrapper .gform_fields {
    grid-row-gap: 18px;
}

body .gform_wrapper .top_label .gfield_label {
    font-size: 14px !important;
    line-height: 24px !important;
    margin-top: 0;
    font-weight: 600;
}

body .gform_wrapper .gfield_required {
    font-size: .9em;
}

.gform_wrapper form .gfield--input-type-name .ginput_container--name {
    column-gap: 3px;
}

body .gform_wrapper .gfield select,
body .gform_wrapper .gfield input,
body .gform_wrapper .gfield textarea {
    position: relative;
    display: block;
    width: 100%;
    border: 1px solid #ddd;
    font-size: 14px;
    color: #000;
    padding: 10px 16px;
    transition: all 500ms ease;
    line-height: 24px;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    outline: none !important;
}

body .gform_wrapper .gfield textarea {
    height: 180px;
    min-height: unset;
    min-block-size: unset !important;
}

body .gform_wrapper .ginput_complex label {
    font-size: 14px;
    line-height: 24px;
    color: #000;
    font-weight: 400;
    text-align: left;
}

body .gform_wrapper .gfield.gfield--type-textarea .gfield_description,
body .gform_wrapper .gfield .charleft {
    display: none;
}

.gform_wrapper .gform_validation_errors {
    display: none;
}

.gform_wrapper .gform_confirmation_message {
    border: 1px solid var(--primary);
    padding: 10px;
}

.get_started {
    /* background: #2972bb29; */
    background-color: var(--secondry);
}

.get_started .main_wrapper .sec_intro h2 {
    color: var(--primary);
}

.get_started .main_wrapper .get-form {
    max-width: 900px;
    width: 100%;
    margin: auto;
}

.get_started .main_wrapper .gform_wrapper {
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.gform_wrapper .gform_heading {
    display: none;
}

body .gform_wrapper .gform_fields .ginput_container_checkbox {
    padding-top: 10px;
}

body .gform_wrapper .gform_fields .gchoice {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
}

body .gform_wrapper .gform_fields .gchoice label {
    margin: 0;
    font-size: 14px;
    line-height: 24px;
}

body .gform_wrapper .gform_fields .gchoice input[type="checkbox"],
body .gform_wrapper .gform_fields .gchoice input[type="radio"] {
    width: 20px;
    height: 20px;
    padding: 0;
    border-radius: 4px;
    border: 1px solid var(--action);
    margin-top: 2px;
}

body .gform_wrapper .gform_fields .gchoice input[type="radio"] {
    border-radius: 50%;
}

body .gform_wrapper .gform_fields .gchoice input[type="radio"]::before {
    top: 4px !important;
    left: 4px !important;
    color: var(--primary) !important;
    width: 10px;
    height: 10px;
}

body .gform_wrapper .gform_fields .gchoice input[type="checkbox"]::before,
body .gform_wrapper .gform_fields .gchoice input[type="radio"]::before {
    top: 2px;
    position: absolute;
    left: 2px;
    color: var(--primary);
}

body .gform_wrapper .gform_fields .gfield_checkbox {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding-bottom: 20px;
}

.gform_validation_errors {
    display: none !important;
}

.gform_wrapper .gf_progressbar_wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.gform_wrapper .gf_progressbar_wrapper .gf_progressbar_title {
    color: var(--primary);
}

.gform_wrapper .gf_progressbar_wrapper .gf_progressbar {
    background: #eee;
    height: 12px;
}

body .gform_wrapper .gform_fields .gsection_title {
    font-size: 24px;
    line-height: 1.3;
}

.gform_wrapper .gf_progressbar_wrapper .gf_progressbar .gf_progressbar_percentage {
    height: 12px;
    background-color: var(--accent);
}

/* ** contact form** */

/* *********************** responsive *************************** */

@media(max-width:1024px) {
    .grid-intro {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .featured-sec__row {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .what-us-different__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-sec__row {
        grid-template-columns: 1fr;
    }

    .title-tag {
        margin-bottom: 15px;
    }

    .hero-banner .hero-banner_images .hero-img-card {
        width: calc(33.33% - 20px);
    }

    /* 
    .happening-sec .happening_inner {
        grid-template-columns: 1fr;
    } */

    .event-sec .container .event_row .intro,
    .event-sec .event-inner {
        width: 50%;
    }

    .gallery_section .gallery_list .gallery_box {
        width: 100% !important;
    }

    .gallery_section .gallery_list {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
    }

    .site_header .search-form {
        right: 40px;
    }

    .happening-sec .happening_inner {
        grid-template-columns: 1fr;
    }
}

@media(max-width:768px) {
    html {
        scroll-padding-top: 110px;
    }

    .what-us-different__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .wud-card::after {
        display: none;
    }

    .what-us-different__row {
        padding: 2.5rem 2rem;
    }

    .h--1,
    h1 {
        font-size: 40px;
    }

    .h--2,
    h2 {
        font-size: 38px;
    }

    .h--3,
    h3 {
        font-size: 30px;
    }

    .h--4,
    h4 {
        font-size: 28px;
    }

    .hero-banner .hero-banner_images .hero-img-card {
        width: calc(50% - 15px);
    }

    .about-sec .about_row .about_left {
        width: 100%;
        max-width: 500px;
    }

    .about-sec .about_row .about_right {
        width: 100%;
    }

    .footer-row .footer-menu-wrap .footer-menu {
        flex-wrap: wrap;
        row-gap: 12px;
    }

    .footer-row .footer-menu-wrap .footer-menu li:first-child,
    .footer-row .footer-menu-wrap .footer-menu li:last-child {
        border-right: 1px solid #ccc;
        border-left: 1px solid #ccc;
        padding: 0px 10px;
    }

    .gallery_section .gallery_list {
        grid-template-columns: 1fr 1fr;
    }

    .about-sec .about-wrapper .about_row:nth-child(2n) {
        flex-direction: unset;
    }
.serve_section .serve_wrapper {
	flex-direction: column;
}
.serve_section .serve_wrapper .serve_item.active {
	width: 100%;
}
   .serve_section .serve_wrapper .serve_item {
	height: 300px;
	width: 100%;

} 
.serve_section .serve_wrapper .serve_item .serve_item-inner {
	transform: none;
}

}

@media(max-width:575px) {

    :root {
        --header-height: 84px;
    }

    .hero-banner-v2__row {
        gap: 1rem;
    }

    .featured-sec__image-block {
        flex-direction: column;
    }

    .site_header .header_row {
        gap: 16px;
    }

    .h--1,
    h1 {
        font-size: 32px;
    }

    .h--2,
    h2 {
        font-size: 30px;
    }

    .h--3,
    h3 {
        font-size: 28px;
    }

    .h--4,
    h4 {
        font-size: 26px;
    }

    .h--5,
    h5 {
        font-size: 22px;
    }

    .title-tag {
        font-size: 14px;
        line-height: 1.4;
    }

    .btn {
        padding: .6em 1.2em;
        font-size: 15px;
    }

    .text-xl {
        font-size: 16px;
        line-height: 1.4;
    }

    section {
        padding-block: 60px;
    }

    .gap-m {
        gap: 2.6rem;
    }

    .hero-banner .hero-banner_images .hero-img-card {
        width: 100%;
    }


    .event-sec .container .event_row {
        flex-wrap: wrap;
    }

    .event-sec .container .event_row .intro,
    .event-sec .event-inner {
        width: 100%;
    }

    .event-sec .event-inner {
        padding: 40px 20px 40px 20px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        color: var(--white);
        max-width: 462px;
        width: 100%;
    }

    .event-sec .event-inner .event-gmail {
        padding-top: 60px;
    }

    .site_header {
        padding: 12px 20px;
    }

    .site_header .header_logo img {
        height: 60px !important;
    }

    .site_header.custom_sticky .header_logo .logo {
        height: 56px;
    }

    .gallery_section .gallery_list .gallery_box {
        height: 170px;
    }

    .hero-banner .container {
        padding-top: 80px;
    }

    .header-bg-color section:first-child .container {
        padding-top: 80px;
    }

    .contact-sec__left {
        gap: 2rem;
    }
    .serve_section .serve_wrapper .serve_item h3 {
	font-size: 20px;
}
}

/* *********************** responsive *************************** */