/* ------------------------------
   Global Reset
------------------------------ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    color: inherit;
}

/* ------------------------------
   Root Variables
------------------------------ */
:root {
    --primary-color: #C7A51B;
    --secondary-color: #E0D09B;
    --pale-color: #E6DFC4;
    --text-color: #333333;
    --accent-color: #004041;

    --font-primary: "DM Serif Display", serif;
    --font-secondary: "Overpass", sans-serif;

    --base-font-size: 18px;
    --line-height-base: 1.4;
}

/* ------------------------------
   Body
------------------------------ */
body {
    font-family: var(--font-primary);
    font-size: var(--base-font-size);
    color: var(--text-color);
    line-height: var(--line-height-base);
    font-weight: 400;
}

/* ------------------------------
   Typography
------------------------------ */
h1 {
    font-size: 54px;
    font-weight: 600;
    line-height: 1.2;
    font-family: var(--font-primary);
}

h2 {
    font-size: 45px;
    font-weight: 600;
    line-height: 1.2;
    font-family: var(--font-primary);
}

h3 {
    font-size: 22.5px;
    font-weight: 600;
    line-height: 1.2;
    font-family: var(--font-primary);
}

p {
    /* font-size: 13.5px; */
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    font-family: var(--font-primary);
}

/* ------------------------------
   Buttons
------------------------------ */
button {
    background-color: var(--primary-color);
    font-size: 15px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.1em;
    font-family: var(--font-secondary);
    border: none;
    cursor: pointer;
}

a {
    margin: 0px !important;
    padding: 0px !important;
}

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

/* ------------------------------
   Container
------------------------------ */
.container {
    max-width: 1440px !important;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}


/* Header */
header {
    position: relative;
}

.navbar .container {
    padding: 0px;
}

header nav.navbar {
    padding: 0px;
}

.navmenu-anchor .nav-item a,
.menu-number a {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.55;
    letter-spacing: 1.05px;
    color: var(--text-color);
    font-family: var(--font-secondary);
    padding: 0px 22.5px 0px 27px !important;
    border-right: 1.5px solid var(--primary-color);
    position: relative;
    transition: all 0.3s ease-in-out;
}

/* .navmenu-anchor .nav-item a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.35s ease;
} */
.dropdown-toggle::after {
    vertical-align: middle;
    font-size: 25px;
    margin-top: -4px;
    transition: all 0.3s ease-in-out;
}
.navbar-nav .dropdown-menu {
    margin-top: 10px;
    padding: 0px;
    border-radius: unset;
}
a.nav-link.dropdown-toggle.show::after {
    transform: rotate(180deg);
}
#menu-header-menu .dropdown-menu a.dropdown-item {
    border: unset;
    line-height: 25px;
    padding: 10px 15px 7px 15px !important;
}

.navmenu-anchor .nav-item a:hover,
.menu-number a:hover {
    color: var(--primary-color);
}

.menu-number a {
    border: unset;
    position: relative;
    padding-left: 70px !important;
}

header .navmenu-anchor {
    justify-content: end;
}

header .navmenu-anchor .menu-number a {
    padding-right: 0px !important;
}

.menu-number a::before {
    content: '\f095';
    position: absolute;
    font-family: FONTAWESOME;
    color: var(--primary-color);
    top: 50%;
    transform: translateY(-50%);
    left: 38px;
}

.navmenu-anchor .nav-item:first-child a {
    padding-left: 0px !important;
}

header .navbar-brand {
    padding-top: 12px !important;
    width: 291.75px;
    height: 100px;
    object-fit: contain;
}
a.nav-link.dropdown-toggle:hover {
    box-shadow: unset !important;
}
/* header::after {
    position: absolute;
    content: '';
    bottom: -219px;
    left: 0;
    background: linear-gradient(to bottom, #FFFFFF 0%, #FFFFFF00 100%);
    width: 100%;
    height: 219px;
    z-index: 9;
} */

button.navbar-toggler {
    box-shadow: unset !important;
}
a.nav-link.dropdown-toggle:hover::after {
    transform: rotate(180deg);
}
#menu-header-menu .dropdown-menu a.dropdown-item:active {
    background-color: #fff !important;
}
@media (max-width: 1200px) {
    .navmenu-anchor .nav-item a {
        font-size: 14px;
        padding: 0px 10px 0px 12px !important;
    }

    .menu-number a::before {
        left: 8px !important;
    }

    header .navmenu-anchor .menu-number a {
        padding-left: 30px !important;
    }

    /* header::after {
        bottom: -40px;
        height: 50px;
    } */
}
@media (min-width: 992px) {

    .navbar-nav .dropdown:hover .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .navbar-nav .dropdown-menu {
        display: block;     /* Important */
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.2s ease-in-out;
    }
}

@media (max-width: 992px) {

    .navmenu-anchor .nav-item a {
        padding: 0px !important;
        padding-bottom: 12px !important;
        border: unset;
    }

    header ul.navbar-nav {
        margin-bottom: 0px !important;
        margin-top: 20px;
    }

    /* 
    header::after {
        bottom: -50px;
    } */

    .menu-number {
        padding-bottom: 20px;
    }

    .menu-number a::before {
        left: 2px !important;
    }
.navbar-nav .dropdown-menu {
    margin-top: 0px;
    margin-left: 0px;
    margin-bottom: 20px;
    border: unset !important;
}
#menu-header-menu .dropdown-menu a.dropdown-item {
    padding: 10px 15px 7px 0px !important;
}
}

@media (max-width: 767px) {
    header .navbar-brand {
        width: 200px;
        height: 80px;
    }
}

/* End Header */


/* Footer Img */
.footer-img {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 688px;
    display: flex;
    justify-content: center;
    align-items: end;
    position: relative;
}

.footer-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to bottom, #333333 0%, #33333300 100%);
    height: 157px;
}

.footer-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, #333333 0%, #33333300 100%);
    height: 110px;
}

.footer-img-head h1 {
    color: #FFFFFF;
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 62px;
    padding-bottom: 110px;
    padding-left: 10px;
    padding-right: 10px;
}

@media (max-width: 768px) {
    .footer-img-head h1 {
        text-align: center;
    }

    .footer-img {
        min-height: 450px;
    }
    .footer-img::after {
    height: 380px;
}
}

@media (max-width: 450px) {
    .footer-img-head h1 {
    font-size: 40px;
    line-height: 45px;
    z-index: 9;
    position: relative;
}
}

/* End Footer Img */

/* Transparent Footer */
.transperent-left-img img {
    width: 187px;
    height: 121px;
}
.footer-transperent .swiper-pagination-bullet-active{
    background-color: #C7A51B !important;
}
section.footer-transperent .container {
    max-width: 1236px !important;
}

.footer-transperent-flex {
    background: linear-gradient(to left,
            #FFFFFF1A 10%,
            #FFFFFF66 40%);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    box-shadow: 0px 3px 15.8px -1px #00000024;
    padding: 27px 37px 34px 70px;
    display: flex;
    align-items: center;
    gap: 56px;
    flex-direction: row;
}

.transperent-left-content {
    position: relative;
    padding-left: 37px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.transperent-left-content::before {
    content: '';
    height: 115px;
    position: absolute;
    top: -12%;
    left: 0;
    width: 1.5px;
    background-color: #fff;
}

section.footer-transperent {
    position: absolute;
    left: auto;
    right: auto;
    width: 100%;
    margin-top: -69px;
}

.transperent-left-content h4 {
    font-weight: 700;
    font-family: var(--font-secondary);
    padding-bottom: 18px;
    font-size: 21px;
    line-height: 1.3;
    color: #FFFFFF;
}

.transperent-left-content p {
    font-weight: 400;
    font-family: var(--font-secondary);
    font-size: 13.5px;
    line-height: 1.185;
    color: #FFFFFF;
}

@media (max-width: 811px) {
    .transperent-left-content h4 {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .footer-transperent-flex {
        padding: 20px 30px;
        gap: 30px;
    }

    .transperent-left-img img {
        width: 250px;
        height: 100px;
        object-fit: contain;
    }

    .transperent-left-content {
        padding-left: 25px;
    }

    .transperent-left-content h4 {
        font-size: 16px;
    }
.footer-transperent .swiper-pagination-bullet{
    display: none;
}
}

@media (max-width: 614px) {
    .footer-transperent-flex {
        gap: 30px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .transperent-left-content::before {
        content: unset;
    }

    .transperent-left-content {
        text-align: center;
        padding: 0px;
    }

    .footer-transperent-flex {
        padding: 20px;
    }
}

/* Transperent Footer End */

/* Main Footer */
.main-footer {
    background-color: var(--text-color);
    padding-top: 175.5px;
    padding-bottom: 100px;
}

.foot-img img {
    width: 137.25px;
    height: 168.75px;
}

.main-footer-flex {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
}

.services-links h3,
.about-links h3 {
    color: var(--primary-color);
    font-size: 15px;
    line-height: 0.975;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    font-family: var(--font-secondary);
    font-weight: 700;
    padding-bottom: 16px;
}

.links-menu {
    display: flex;
    flex-direction: column;
}

.links-menu a,
.about-links a,
.location-links p {
    color: #FFFFFF;
    font-size: 12px;
    line-height: 1.5525;
    letter-spacing: 0.84px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: var(--font-secondary);
    transition: all 0.3s ease-in-out;
}

.links-menu a:hover,
.about-links a:hover {
    color: var(--primary-color);
}

.services-links,
.location-links {
    width: 251.25px;
    margin-left: 48.75px;
    position: relative;
}

.about-links {
    width: 255px;
    margin-left: 65.25px;
    position: relative;
}

.location-links {
    width: 243.75px;
    margin-left: 105px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 37.5px;
}

.services-links,
.about-links,
.location-links {
    border-left: 1.5px solid var(--primary-color);
    padding-left: 22.5px;
}

@media (max-width: 992px) {

    .about-links,
    .location-links {
        margin-left: 40px;
    }
}

@media (max-width: 614px) {
    .main-footer {
        padding-top: 280px;
        padding-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .main-footer-flex {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .foot-img {
        width: 100%;
        text-align: center;
    }

    .services-links,
    .about-links {
        width: 100%;
        margin: 0px;
        margin-top: 50px;
    }

    .location-links {
        width: 100%;
        margin-top: 50px;
        margin-left: 0px;
    }
}

/* End Main Footer */

/* Hero Section */
.hero-section-content {
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 501px;
}
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.hero-section::before {
    position: absolute;
    content: '';
    top: 0px;
    left: 0;
    background: linear-gradient(to bottom, #FFFFFF 0%, #FFFFFF00 100%);
    width: 100%;
    height: 219px;
    z-index: 9;
}

/* .hero-section-content::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 266.25px;
    background: linear-gradient(to top, #333333 0%, #33333300 100%);
    bottom: 0;
    left: 0;
} */

.hero-section-content h1 {
    color: #fff;
    font-weight: 400;
}

.hf-heigh {
    height: 196.5px;
    background-color: var(--text-color);
}

.hero-section-content p {
    font-size: 21px;
    color: var(--secondary-color);
    line-height: 27.3px;
    font-family: var(--font-secondary);
    font-weight: 600;
    padding: 60px 0px;
}

.hero-section-content a {
    font-size: 15px;
    color: #FFFFFF;
    line-height: 27.3px;
    font-family: var(--font-secondary);
    font-weight: 600;
    padding: 9.75px 17.25px 5px !important;
    letter-spacing: 1.5px;
    background-color: var(--primary-color);
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
}

.hero-section-content a:hover {
    background-color: var(--pale-color);
    color: var(--text-color);
}

section.hero-section {
    position: relative;
}

section.hero-section .swiper-slide::after {
    position: absolute;
    bottom: 45px;
    left: 50%;
    width: 95%;
    height: 90%;
    border: 4.5px solid var(--primary-color);
    content: '';
    border-top: unset;
    transform: translateX(-50%);
}

.hero-section-head {
    position: absolute;
    bottom: -170px;
    display: flex;
    justify-content: end;
    align-items: center;
    flex-direction: column;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
    z-index: 10;
    padding: 0px 15px;
}
section.hero-section .swiper {
    overflow: unset !important;
}


section.hero-section .swiper .swiper-button-prev:after, section.hero-section .swiper .swiper-button-next:after {
    color: #fff !important;
    font-size: 30px;
}

@media (max-width: 767px) {
    .hero-section-content h1 {
        font-size: 40px;
        line-height: 40px;
    }
section.hero-section .swiper-slide::after{
display: none;
}
    .hero-section-content {
        height: 300px;
    }
.hero-section::before {
    height: 100px;
}

section.hero-section .swiper h1, section.hero-section .swiper p, section.hero-section .swiper a,section.hero-section .swiper .swiper-button-prev:after, section.hero-section .swiper .swiper-button-next:after{
       z-index: 999999 !important;
}
}

/* End Hero */

/* Services Section */
.services-section {
    background-color: var(--text-color);
    padding: 56.25px 0px 52.5px;
}

.services-heading {
    border: 4.5px solid var(--primary-color);
    color: #FFFFFF;
    text-align: center;
    font-weight: 400;
    width: max-content;
    margin: 0 auto;
    padding: 13.5px 60px;
    border-left: unset;
    border-right: unset;
}

.services-cards {
    display: grid;
    grid-template-columns: auto auto auto;
    column-gap: 56.25px;
    row-gap: 99px;
    margin-top: 60px;
}

.card-content img {
    height: 223px;
    object-fit: cover;
}

.services-cards .card-content {
    background-color: #fff;
}

.card-head {
    padding: 22.5px 24px 22.5px 27.75px;
}

.card-head h3 {
    font-weight: 400;
    border-bottom: 1.5px solid var(--primary-color);
    padding-bottom: 9px;
}

.card-head p {
    padding-top: 15px;
    font-family: var(--font-secondary);
    color: #0C1C1C;
    padding-bottom: 15px;
}

.card-head a {
    font-size: 15px;
    color: #FFFFFF;
    line-height: 27.3px;
    font-family: var(--font-secondary);
    font-weight: 600;
    padding: 7.125px 18px !important;
    letter-spacing: 1.5px;
    background-color: var(--primary-color);
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
}

.card-head a:hover {
    background-color: var(--secondary-color);
    color: var(--text-color);
}

@media (max-width: 1023px) {
    .services-cards {
        grid-template-columns: auto auto;
    }
}

@media (max-width: 767px) {
    .services-cards {
        grid-template-columns: auto;
        row-gap: 30px;
    }

    .services-heading {
        padding: 8px 30px;
        font-size: 30px;
    }
.pro-org-section h1.services-heading {
    width: 100%;
}
.pro-org-section {
    padding: 50px 0px !important;
}
}

/* End Services Section */


/* Text Card Css */
.text-cards {
    padding: 75px 0px;
}

.text-cards-main {
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 75px;
}

.text-cards-mainr .text-cards-layout {
    background-color: #FFFFFF;
}

.text-cards-layout {
    padding: 73px 24px 60px 28px;
    border: 1px solid var(--primary-color);
}

.text-cards-layout h3 {
    font-weight: 400;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 9px;
}

.text-cards-layout p {
    padding-top: 15px;
    font-family: var(--font-secondary);
    color: #0C1C1C;
    padding-bottom: 18px;
}

.text-cards-layout a {
    font-size: 15px;
    color: #FFFFFF;
    line-height: 27.3px;
    font-family: var(--font-secondary);
    font-weight: 600;
    padding: 7px 18px !important;
    letter-spacing: 1.5px;
    background-color: var(--primary-color);
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
}

.text-cards-layout a:hover {
    background-color: var(--secondary-color);
    color: var(--text-color);
}

@media (max-width: 1023px) {
    .text-cards-main {
        display: grid;
        grid-template-columns: auto auto;
        gap: 35px;
    }
}

@media (max-width: 767px) {
    .text-cards-main {
        grid-template-columns: auto;
    }
.text-cards {
    padding: 50px 0px;
}
}

@media (max-width: 540px) {
    .text-cards-main {
        grid-template-columns: auto;
    }

    .text-cards-layout {
        padding: 50px 20px 50px 20px;
    }
}

/* End Text Card Css */

/* Introduction CSS */
.introduction-layout {
    padding: 116px 0px 90px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.introduction-layout-left h2 {
    font-size: 54px;
    line-height: 90px;
    font-weight: 400;
    font-family: var(--font-primary);
}

.introduction-layout-right {
    border-left: 4.5px solid var(--primary-color);
    padding-left: 79px;
    margin-left: 37px;
}

.introduction-layout-right h1 {
    color: var(--primary-color);
    line-height: 62px;
    font-weight: 400;
    font-family: var(--font-primary);
}

.introduction-layout-right p {
    font-family: var(--font-secondary);
    max-width: 820px;
    padding-top: 32px;
}

@media (max-width: 1080px) {
    .introduction-layout-right {
        padding-left: 30px;
        margin-left: 25px;
    }
}

@media (max-width: 1023px) {
    .introduction-layout-right h1 {
        font-size: 40px;
        line-height: 45px;
    }

    .introduction-layout-left h2 {
        font-size: 40px;
        line-height: 75px;
    }
}

@media (max-width: 950px) {
    .introduction-layout-left h2 {
        font-size: 30px;
        line-height: 50px;
    }
}

@media (max-width: 767px) {
    .introduction-layout-left h2 {
        font-size: 30px;
        line-height: 50px;
    }

    .introduction-layout {
        flex-wrap: wrap;
        padding: 50px 0px 50px;
        gap: 30px;
    }

    .introduction-layout-left {
        justify-content: center;
        flex-wrap: wrap;
        display: flex;
        align-items: center;
        border-bottom: 4px solid var(--primary-color);
        padding-bottom: 20px;
    }

    .introduction-layout-left h2 {
        width: 48%;
        text-align: center;
    }

    .introduction-layout-right {
        border-left: unset;
    }

    .introduction-layout-right {
        margin: 0px;
        padding: 0px;
    }

    .introduction-layout-right h1 {
        font-size: 24px;
        line-height: 30px;
        text-align: center;
    }

    .introduction-layout-right p {
        max-width: 100%;
        text-align: center;
    }
}

@media (max-width: 450px) {
    .introduction-layout-left h2 {
        font-size: 24px;
        line-height: 40px;
    }

}

/* End Introduction CSS */


/* Icon Card CSS */
.icon-cards {
    padding: 91px 0px 92px;
    background-color: var(--text-color);
}

.icon-cards-main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* FIXED */
    gap: 40px;
    /* gap thori kam rakho */
    align-items: center;
    justify-content: center;
}


.icon-cards-main .icon-cards-layout {
    background-color: #FFFFFF;
}

.icon-cards-layout img {
    width: 75px;
    height: 75px;
}

.icon-cards-layout h3 {
    font-weight: 400;
    border-top: 1.5px solid #C7A51B;
    padding-top: 14px;
}

.icon-cards-main .icon-cards-layout {
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 60px;
    text-align: center;
    border: 1px solid var(--primary-color);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    height: 320px;
    /* width: 252px; */
    padding: 14px 21px 0px;
}


.icon-cards-main .icon-cards-layout:hover {
    box-shadow: 0px 4px 15px 0px var(--primary-color);
    border-color: transparent;
}

@media (max-width: 1024px) {
    .icon-cards-main {
        grid-template-columns: repeat(3, auto);
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .icon-cards-main {
        grid-template-columns: repeat(2, auto);
        gap: 50px;
    }

    .icon-cards-main .icon-cards-layout {
        height: 320px;
        padding: 20px 60px;
    }
.icon-cards {
    padding: 50px 0px 50px;
}
}

@media (max-width: 450px) {
    .icon-cards-main {
        grid-template-columns: repeat(1, auto);
        gap: 50px;
    }
}

/* End Icon Card CSS */

/* bio card Section */
.bio-section {
    background-color: var(--text-color);
    padding: 65px 0px;
}


.bio-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 60px;
}

.bio-card {
    width: calc(50% - 28.125px);
    max-width: 900px;
    margin: 0;
    background: #fff;
    padding: 40.5px 33.75px 40.5px 38.25px;
    box-shadow: 0 2.25px 7.5px rgba(0, 0, 0, 0.1);
    align-self: flex-start;
    margin-bottom: 99px;
    height: max-content;
}

.bio-header {
    display: flex;
    gap: 18.75px;
}

.bio-photo {
    width: 199.5px;
    height: 251.25px;
    object-fit: cover;
    flex-shrink: 0;
}

.bio-info {
    flex: 1;
}

.bio-name {
    font-size: 27px;
    margin: 0;
    color: var(--text-color);
    font-weight: 400;
    font-family: var(--font-primary);
    text-transform: capitalize;
}

.bio-title {
    color: var(--text-color);
    font-weight: 600;
    letter-spacing: 0.75px;
    margin-bottom: 15px;
    font-size: 15px;
    font-family: var(--font-secondary);
    text-transform: uppercase;
}

.bio-contact {
    border-top: 1.5px solid var(--primary-color);
    list-style: none;
    padding: 0;
    padding-top: 10.5px;
    margin: 0 0 18.75px;
}

.bio-contact li {
    margin-bottom: 11.25px;
    font-size: 13.5px;
    font-family: var(--font-secondary);
}
.bio-contact li a {
    display: flex;
    align-items: center;
    gap: 11.25px;
    transition: all 0.3s ease-in-out;
}
.bio-contact li a:hover {
    color: #C7A51B;
}

.bio-contact li img {
    width: 15px;
    height: 15px;
}

.bio-toggle {
    font-size: 15px;
    color: #FFFFFF;
    line-height: 27px;
    font-family: var(--font-secondary);
    font-weight: 600;
    padding: 7.125px 18px 4px !important;
    letter-spacing: 1.5px;
    background-color: var(--primary-color);
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
}

.bio-toggle:hover {
    background-color: var(--secondary-color);
    color: var(--text-color);
}

.bio-content {
    margin-top: 18.75px;
    display: none;
    font-size: 11.25px;
    color: #333;
    line-height: 1.6;
}

.bio-content p {
    font-size: 13.5px;
    font-family: var(--font-secondary);
    margin-bottom: 11.25px;
}

@media (max-width: 1200px) {
    .bio-cards {
        padding: 0 15px;
    }

    .bio-card {
        width: calc(50% - 15px);
        margin-bottom: 75px;
    }

    .bio-header {
        gap: 15px;
    }

    .bio-name {
        font-size: 24px;
    }
}

@media (max-width: 992px) {
    .bio-section .container {
        max-width: 992px !important;
    }

    .bio-heading {
        font-size: 48px;
        padding: 12px 40px;
    }

    .bio-cards {
        flex-direction: column;
        padding: 0;
        gap: 0;
        margin-top: 40px;
    }

    .bio-card {
        width: 100%;
        max-width: 700px;
        margin: 0 auto;
        margin-bottom: 45px;
        padding: 30px 25px;
    }

    .bio-photo {
        width: 150px;
        height: 200px;
        align-self: center;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 48px;
    }

    .bio-heading {
        font-size: 30px;
        padding: 10px 30px;
        margin-top: 15px;
    }

    .bio-section {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .bio-card {
        padding: 20px;
        margin-bottom: 30px;
    }

    .bio-header {
        flex-direction: column;
        flex-wrap: wrap;
    }

    .bio-photo {
        width: 100%;
        height: 100%;
    }

    .bio-contact {
        margin-bottom: 15px;
    }

    .bio-contact li {
        font-size: 13px;
    }

    .bio-name {
        font-size: 22px;
    }

    .bio-title {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .bio-toggle {
        font-size: 14px;
        padding: 5px 15px !important;
    }

    .bio-content p {
        font-size: 14px;
    }
}

/* End Bio Css */
/* === Certification Section (75% Scaled) === */

.cva-section-main {
    background-color: #3333331A;
    padding: 45px 0 60px;
    /* 75% of 60/80 */
}

.cva-section {
    display: grid;
    grid-template-columns: auto auto;
    gap: 75px 59px;
    align-items: center;
    padding: 22.5px 0px;
    margin-top: 37.5px;
}

.cva-card {
    display: flex;
    gap: 22.5px;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    padding: 50px 46px 43px 43px;
    height: 100%;
}

.cva-content h2 {
    font-size: 27px;
    /* 75% of 36px */
    letter-spacing: -0.54px;
    /* 75% of -0.72px */
    line-height: 30px;
    /* 75% of 40px */
}

.cva-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    aspect-ratio: 9/7;
}

.cva-content {
    padding-left: 7.5px;
    /* 75% of 10px */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Titles */
.cva-section-main h1,
.cva-title {
    color: var(--text-color);
    font-weight: 400;
}

/* Sub Title */
.cva-sub {
    font-size: 15px;
    /* 75% of 20px */
    line-height: 18px;
    /* 75% of 24px */
    letter-spacing: 0.9px;
    /* 75% of 1.2px */
    font-family: var(--font-secondary);
    font-weight: 600;
    border-bottom: 1.5px solid var(--primary-color);
    padding: 18.75px 0 26.25px;
    /* 75% of 25/35 */
    text-transform: uppercase;
}

/* Separator */
.cva-sep {
    max-width: 187.5px;
    /* 75% of 250px */
    height: 1.5px;
    /* 75% of 2px */
    border-bottom: 1.5px solid var(--text-color);
    margin-bottom: 15px;
    /* 75% of 20px */
}

/* Button */
.cva-button {
    padding: 6px 15px !important;
    /* 75% of 8/20 */
    background-color: var(--primary-color);
    color: #fff;
    font-family: var(--font-secondary);
    text-transform: uppercase;
    margin-top: 21px !important;
    /* 75% of 28px */
    font-size: 13.5px;
    /* 75% of 18px */
    font-weight: bold;
    width: max-content;
    transition: 0.3s ease-in-out;
}

.cva-button:hover {
    background-color: var(--text-color);
}

/* === Responsive === */

@media (max-width:1023px) {
    .cva-section {
        grid-template-columns: auto;
        gap: 18.75px;
        /* 75% of 25px */
    }

    .cva-image img {
        width: 120px;
        /* reduced proportionally */
    }
}

@media (max-width:900px) {
    .cva-section {
        grid-template-columns: auto;
        gap: 18.75px;
        /* 75% of 25px */
    }

    .cva-image img {
        width: 120px;
    }
.cva-section-main {
    background-color: #3333331A;
    padding: 50px 0px 50px;
}
}

@media (max-width:640px) {
    .cva-section {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 11px;
        /* 75% of 15px */
        padding: 11px;
        /* 75% */
    }

    .cva-image img {
        width: 135px;
        margin: 0 auto;
    }

    .cva-content {
        padding-left: 0;
        align-items: center;
    }

    .cva-sep {
        margin: 0 auto;
    }

    .cva-card {
        flex-wrap: wrap;
        text-align: center;
    }
}


/* PROFESSIONAL ORGANIZATIONS */
.pro-org-section {
    background: #2e2e2e;
    padding: 80px 0;
    color: #fff;
}

.pro-org-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    font-family: "Georgia", serif;
    color: #ffffff;
    margin-bottom: 60px;
    position: relative;
}

.pro-org-title .line {
    display: block;
    height: 4px;
    width: 55%;
    background: #d4b449;
    margin: 10px auto;
}

.pro-org-grid {
    display: grid;
    grid-template-columns: auto auto auto auto;
    gap: 60px 80px;
    align-items: center;
    justify-items: center;
    margin-top: 80px;
}

.pro-org-grid img {
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: .3s ease;
    aspect-ratio: 16/9;
}

.pro-org-grid img:hover {
    opacity: 1;
}

/* media query for mobile view */
@media (max-width: 768px) {
    .pro-org-grid {
        grid-template-columns: auto auto !important;
        gap: 20px 10px;
    }

    .pro-org-grid img {
        width: 120px;
        /* slightly smaller for mobile */
    }
}

/* PROFESSIONAL ORGANIZATIONS ENDS HERE  */


/* Subhead Card */
.business-strategies {
    background-color: var(--text-color);
    padding: 90px 0px;
}

.business-strategies-grid {
    display: grid;
    grid-template-columns: auto auto auto auto;
    gap: 66px;
    padding: 0px 15px;
    max-width: 1440px;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.business-strategies-card {
    background: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.business-strategies-media {
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.business-strategies-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.business-strategies-card:hover img {
    transform: scale(1.06);
}

.business-strategies-content {
    padding: 50px 28px 50px;
    text-align: center;
    border: 1px solid var(--primary-color);
    border-top: unset;
}

.business-strategies-title {
    font-weight: 500;
}

.business-strategies-sub {
    text-transform: uppercase;
    color: var(--primary-color);
    font-family: var(--font-secondary);
    padding-top: 10px;
}

/* Responsive */
@media (max-width: 1024px) {
    .business-strategies-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .business-strategies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
.business-strategies {
    padding: 50px 0px;
}
}

@media (max-width: 480px) {
    .business-strategies-grid {
        grid-template-columns: 1fr;
    }

    .business-strategies-media {
        height: 220px;
    }
}


/* testimonial css */
section.testimoanl-callout {
    background-color: var(--text-color);
    padding: 80px 0px;
}

h1.testimonial-quote {
    font-weight: 400;
    position: relative;
}

h1.testimonial-quote::before {
    content: '';
    position: absolute;
    background-image: url('/wp-content/themes/harmon-partners/assets/images/arrow-2.png');
    top: 0px;
    left: -30px;
    background-position: center;
    background-size: cover;
    width: 50px;
    height: 37px;
}

h1.testimonial-quote::after {
    content: '';
    position: absolute;
    background-image: url('/wp-content/themes/harmon-partners/assets/images/arrow-1.png');
    bottom: -30px;
    right: 50px;
    background-position: center;
    background-size: cover;
    width: 50px;
    height: 37px;
}

.testimonial-slider-wrapper {
    position: relative;
    width: 100%;
    padding: 0px 15px;
    /* overflow: hidden; */
}

.testimonial-slider {
    position: relative;
}

p.testimonial-author {
    font-family: var(--font-secondary);
    padding-top: 20px;
}

.testimonial-slide {
    position: relative;
    width: 100%;
    display: none;
    text-align: center;
    color: #ffffff;
    max-width: 980px;
    margin: 0 auto;
}

.testimonial-slide.active {
    display: block;
    animation: fadeIn 1s ease-in-out;
}


/* Fade Animation */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

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

/* Responsive */
@media (max-width: 768px) {
    .testimonial-quote {
        font-size: 32px;
    }

    h1.testimonial-quote::before,
    h1.testimonial-quote::after {
        width: 40px;
        height: 30px;
    }

    h1.testimonial-quote::before {
        top: -30px;
        left: -20px;

    }

    h1.testimonial-quote::after {
        bottom: -10px;
        right: 0px;

    }
}

@media (max-width: 480px) {
    .testimonial-quote {
        font-size: 26px;
    }
}

/* end testimonail */

/* table css */
/* Wrapper */
.materials-table-section {
    padding: 165px 15px;
    text-align: center;
}

.materials-table-section h2 {
    font-weight: 400;
    color: #000000;
}

.materials-table-section p {
    font-size: 28px;
    font-weight: bold;
    font-family: var(--font-secondary);
    color: var(--primary-color);
    padding: 20px 0px 30px;
    text-transform: uppercase;
}

/* Heading */

/* Table Wrapper for Responsive Scroll */
.materials-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Table Base */
.materials-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-secondary);
    max-width: 870px !important;
    margin: 0 auto;
}

/* Table Header */
.materials-table thead th {
    background: #333333;
    color: #fff;
    padding: 10px 20px;
    font-size: 28px;
    font-family: var(--font-secondary);
    font-weight: bold;
    text-align: center;
}

/* Table Rows */
.materials-table tbody td {
    padding: 10px 20px;
    font-size: 28px;
    font-family: var(--font-secondary);
    font-weight: bold;
    color: #3D2F38;
    text-transform: uppercase;
}

/* Alternating Row Background */
.materials-table tbody tr:nth-child(even) {
    background: rgba(230, 223, 196, 0.35);
}
/* Responsive Text Size */
@media (max-width: 768px) {
    .materials-table-heading {
        font-size: 16px;
    }

    .materials-table tbody td,
    .materials-table thead th {
        font-size: 14px;
        padding: 12px 14px;
    }

    .materials-table-section {
        padding: 50px 15px;
        text-align: center;
    }

    .materials-table-section p {
        font-size: 18px;
    }
}

/* end table */

/* accroding */
.hp-accordion {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    color: var(--primary-color);
    font-family: "Arial", sans-serif;
}

.hp-acc-item {
    border-bottom: 1px solid var(--primary-color);
}

.hp-acc-btn {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    padding: 37px 0;
    display: flex;
    gap: 20px;
    align-items: center;
    color: #cfa524;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
}

.hp-acc-icon {
    width: 28px;
    height: 21px;
    transition: 0.3s;
    object-fit: contain;
}

button.hp-acc-btn span {
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 1.4px;
    font-family: var(--font-secondary);
    font-weight: 600;
    text-transform: uppercase;
}

.hp-acc-item.hp-active .hp-acc-icon {
    transform: rotate(180deg);
}

.hp-acc-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    padding-right: 10px;
}

.hp-acc-content p {
    padding: 0px 0px 37px 70px;
    color: #000;
    font-size: 18px;
    line-height: 140%;
    font-weight: 400;
    font-family: var(--font-secondary);

}
.hp-acc-content ul li,.hp-acc-content ol li {
    list-style: auto;
}
.hp-acc-content ul {
    padding-left: 70px;
    color: #000;

}

/* Responsive */
@media (max-width: 768px) {
    .hp-acc-btn {
        font-size: 18px;
    }

    .hp-acc-icon {
        width: 12px;
    }
}

/* end according css */
/* Start Heading & Introduction Text */

.hero-section-wrapper {
    width: 100%;
    padding: 140px 30px 110px;
    display: flex;
    justify-content: center;
}

.hero-grid {
    max-width: 1500px;
    width: 100%;
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 100px;
    align-items: center;
}

.hero-left-art img {
    width: 100%;
    display: block;
}

.hero-right-content {
    padding-top: 5px;
}

.heading-introduction-text__title {
    font-size: 54px;
    font-weight: 400;
    line-height: 110%;
    color: #333;
    font-family: var(--font-primary);
    position: relative;
    padding-bottom: 20px;
    border-bottom: 4px solid var(--primary-color);
}

.hero-right-content p {
    font-size: 18px;
    line-height: 150%;
    font-family: var(--font-secondary);
    font-weight: 400;
    padding-top: 30px;
}

.heading-introduction-text__title span {
    display: block;
}

.heading-introduction-text__underline {
    margin-top: 15px;
    height: 3px;
    width: 100%;
    max-width: 600px;
    background-color: #c8a520;
    border-radius: 2px;
}

/* Responsive */

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .heading-introduction-text__title {
        font-size: 26px;
        line-height: 130%;
    }

    .hero-section-wrapper {
        padding: 40px 15px;
    }
}

@media (max-width: 830px) {
    .hero-grid {
        text-align: center;
    }

    .heading-introduction-text__underline {
        margin-left: auto;
        margin-right: auto;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .heading-introduction-text__title {
        font-size: 26px;
    }
}

/* End Heading & Introduction Text */


/* ===============================
   CALL OUT HIGHLIGHT SECTION
   =============================== */

/* image size */
.callout-image-box img {
    width: 187px;
    height: 121px;
}


/* main flex box */
.callout-flex-row {
    background: linear-gradient(to left, #FFFFFF1A 10%, #FFFFFF66 40%);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    box-shadow: 0px 3px 15.8px -1px #00000024;

    padding: 27px 37px 34px 70px;
    display: flex;
    align-items: center;
    gap: 56px;
}

/* text box */
.callout-text-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 37px;
    position: relative;

}

.callout-text-box::before {
    content: '';
    height: 115px;
    position: absolute;
    top: -12%;
    left: 0;
    width: 1.5px;
    background-color: #fff;
}

/* title */
.callout-title {
    font-weight: 700;
    font-family: var(--font-secondary);
    font-size: 21px;
    line-height: 1.3;
    color: #FFFFFF;
    padding-bottom: 18px;
}

/* text */
.callout-desc p{
    font-weight: 400;
    font-family: var(--font-secondary);
    font-size: 18x;
    line-height: 1.185;
    color: #FFFFFF;
}

/* no absolute section */
.callout-highlight-wrap {
    width: 100%;
    background: var(--text-color);
    padding-top: 80px;
    padding-bottom: 80px;
}

/* ===============================
   RESPONSIVE
   =============================== */

@media (max-width: 811px) {
    .callout-title {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .callout-flex-row {
        padding: 20px 30px;
        gap: 30px;
    }

    .callout-image-box img {
        width: 250px;
        height: 100px;
        object-fit: contain;
    }

    .callout-text-box {
        padding-left: 25px;
    }

    .callout-title {
        font-size: 22px;
    }
.callout-highlight-wrap {
    padding-bottom: 50px;
    padding-top: 50px;
}
}

@media (max-width: 614px) {
    .callout-flex-row {
        gap: 30px;
        flex-wrap: wrap;
        justify-content: center;
        padding: 20px;
        text-align: center;
    }

    .callout-text-box {
        padding-left: 0;
    }

    .callout-text-box::before {
        content: unset;
    }
}

/* Banner 2 */
/* .bg-overlay {
    content: '';
    position: absolute;
    width: 100%;
    height: 400px;
    bottom: 0;
    left: 0;
} */
.banner-about {
    height: 500px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: end;
    padding-bottom: 65px;
    position: relative;
}

section.banner-about h2 {
    color: #FFFFFF;
    font-weight: 500;
    z-index: 9;
}

/* .banner-about::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 400px;
    background: linear-gradient(to top, #333333 0%, #33333300 100%);
    bottom: 0;
    left: 0;
} */
.banner-about::after {
    position: absolute;
    content: '';
    top: 0px;
    left: 0;
    background: linear-gradient(to bottom, #FFFFFF 0%, #FFFFFF00 100%);
    width: 100%;
    height: 219px;
    z-index: 9;
}

section.banner-about {

    position: relative;

}

section.banner-about::afer {
    position: absolute;
    content: '';
    top: 0px;
    left: 0;
    background: linear-gradient(to bottom, #FFFFFF 0%, #FFFFFF00 100%);
    width: 100%;
    height: 219px;
    z-index: 9;

}

@media (max-width: 767px) {
    .banner-about {
        height: 280px;
    }

    .banner-about::before {
    height: 180px !important;
}
}

/* End Banner 2 */

/* Introduction & Heading */
section.introduction-headings {
    text-align: center;
    padding-top: 85px;
    padding-bottom: 85px;
}

section.introduction-headings h1 {
    font-weight: 500;
    position: relative;
}

section.introduction-headings h1::before {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    width: 304px;
    height: 6px;
    background-color: var(--primary-color);
    transform: translateX(-50%);
}

section.introduction-headings .container {
    gap: 65px;
    display: flex;
    flex-direction: column;
}

section.introduction-headings p {
    font-family: var(--font-secondary);
    max-width: 1280px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    section.introduction-headings h1 {
        font-size: 30px;
    }
section.introduction-headings {
    padding-top: 40px;
    padding-bottom: 40px;
}
}

/* End Introduction & Heading */




/* Full-width Callout with Media Text Block */
.left-media-text-block-main {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 100px;
    padding-top: 180px;
    padding-bottom: 200px;
}

.left-media-text-block,
.media-text-block-content {
    width: 50%;
}

.media-text-block-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.media-text-block-content h1 {
    font-weight: 500;
    color: var(--primary-color);
}

.media-text-block-content p {
    font-family: var(--font-secondary);
    max-width: 600px;
}

@media (max-width: 767px) {
    .left-media-text-block-main {
        flex-wrap: wrap;
        gap: 30px;
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .left-media-text-block,
    .media-text-block-content {
        width: 100%;
    }
}

/* End Full-width Callout with Media Text Block */


.block-quote-section {
    padding: 60px 0;
    overflow: hidden;
}

.quote-image-column {
    padding: 0 30px 0 0;
}

.quote-image {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-bottom: 75%;
    min-height: 300px;
}

.quote-text-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 0 0 30px;
}

.quote-wrapper {
    position: relative;
    padding: 3.75px 0;
    text-align: center;
}

.quote-text {
    font-family: var(--font-primary);
    font-size: 54px;

    line-height: 62.25px;
    font-weight: 400;
    color: var(--text-color);
    margin-bottom: 22.5px;
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 337.5px;
    margin: 0 auto;
}

.quote-mark {
    position: absolute;
    font-family: var(--font-primary);
    font-size: 180px;
    line-height: 0.7;
    color: var(--primary-color);
    z-index: 1;
}

.quote-mark.start {
    top: -22.5px;
    left: 60px;
}

.quote-mark.end {
    bottom: -70px;
    right: 100px;
    transform: rotate(0deg);
}

.quote-signature {
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 21px;
    letter-spacing: 1.5px;
    color: #E0D09B;
    text-transform: uppercase;
    margin-top: 20px;
}

@media (min-width: 992px) {
    .quote-text-column {
        min-height: 375px;
    }
.block-quote-section {
    padding: 50px 0;
}
}

@media (max-width: 991.98px) {
    .quote-image-column {
        order: 1;
        padding: 0 11.25px 0px 11.25px;
    }

    .quote-text-column {
        order: 2;
        padding: 0 11.25px 0px 11.25px;
        text-align: center;
    }

    .quote-text {
        font-size: 24px;
        line-height: 40px;
        padding-bottom: 20px
    }

    .quote-mark.start,
    .quote-mark.end {
        display: none;
    }

    /* .quote-mark.start {
    top: -10px;
    left: 0px;
}
.quote-mark.end {
    right: 40px;
    bottom: 0;
} */
    .quote-wrapper {
        padding: 15px 0;
    }
}

/*  end colums wiht form  */
.columns-with-text-or-form .columns-content-info .columns-subtitle {
    margin-top: 0px;
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 21px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}
.page-content-wrapper .col-lg-5, .page-content-wrapper .col-lg-7 {
    padding: 0px;
}
section.columns-with-text-or-form {
    padding: 50px 0px;
}

.columns-with-text-or-form .columns-content-info h1 {
    font-size: 45px;
    color: #000;
    font-weight: 500;
}

.columns-with-text-or-form .columns-content-info p {
    font-family: var(--font-secondary);
    font-size: 18px;
    line-height: 1.6;
    margin-top: 32.5px;
    font-weight: 400;
}

.columns-with-text-or-form .columns-form-container {
    background-color: #EEEEEE !important;
    padding: 30px;
}

.page-content-wrapper .row.justify-content-between {
    gap: 40px;
    flex-wrap: nowrap;
}
.first-row p,.second-row p {
    display: flex;
    flex-direction: row;
    gap: 20px;
}
.first-row p input, .second-row p input, form textarea {
    border: 1px solid #C7A51B;
    outline: unset;
    padding: 15px 20px;
    min-height: unset;
    height: unset;
    font-size: 18px;
    font-weight: 400;
    font-family: var(--font-secondary);
    color: #333333 !important;
    width: 100%;
}
form textarea {
    height: 98px;
    resize: none;
    width: 100%;
}
form  .text-form-submit {
    background-color: #C7A51B;
    color: #fff;
    outline: unset;
    border: unset;
    padding: 12px 87px;
    text-transform: uppercase;
    font-family: var(--font-secondary)
    font-size: 20px;
    font-weight: bold;
    margin-top: 25px;
}
.columns-form-container h3 {
    font-weight: 400;
}
.first-row, .second-row {
    margin-bottom: 25px;
}
.first-row p span, .second-row p span {
    width: 42%;
}
.first-row p span, .second-row p span {
    width: 50%;
}

.columns-with-text-or-form .columns-form-container h3 {
    font-family: var(--font-primary);
    font-size: 22.5px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 30px;
}

.columns-with-text-or-form .columns-form-group {
    margin-bottom: 15px;
}

.columns-with-text-or-form .form-control {
    border: 1px solid var(--primary-color);
    padding: 10px 15px;
    height: 48px;
    font-family: var(--font-secondary);
    font-size: 16px;
    background-color: #FFFFFF;
    box-shadow: none !important;
    border-radius: 0px;
}

.columns-with-text-or-form .form-control:focus {
    border-color: var(--primary-color) !important;
    box-shadow: none !important;
    outline: none !important;
}

.columns-with-text-or-form .form-control.message-box {
    height: 98px;
}

.columns-with-text-or-form .form-control::placeholder {
    color: var(--text-color);
}

.columns-with-text-or-form .submit-btn {
    font-size: 15px;
    color: #ffffff;
    line-height: 27.3px;
    font-family: var(--font-secondary);
    font-weight: 600;
    padding: 7.125px 18px !important;
    letter-spacing: 1.5px;
    background-color: var(--primary-color);
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
}

.columns-with-text-or-form .gap {
    column-gap: 80px;
}

.columns-with-text-or-form .submit-btn:hover {
    background-color: var(--secondary-color);
    color: var(--text-color);
}

@media (max-width: 992px) {
    .columns-with-text-or-form .columns-content-info {
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .columns-with-text-or-form h1 {
        font-size: 40px;
    }

    .columns-with-text-or-form .columns-form-container {
        padding: 30px 20px;
    }
}

/* css end colums wiht form  */

/* columms  */
.columns .page-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 50px 15px;
}

.columns .gap {
    column-gap: 127px;
}

.columns-content-info h2 {
    font-weight: 500;
    color: #000;
}

.columns .columns-content-info .columns-subtitle {
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 21px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}
.container.page-content-wrapper {
    padding: 0px 30px;
}
.container.page-content-wrapper .row.justify-content-between {
    gap: 30px;
}
.container.page-content-wrapper .row.justify-content-between .col-lg-7 {
    padding: 0px 0px 0px 50px;
}

.columns .columns-content-info h1 {
    font-size: 50px;
    color: var(--black--color);
}

.columns .columns-content-info p {
    font-family: var(--font-secondary);
    font-size: 18px;
    line-height: 1.6;
    margin-top: 32.5px;
    font-weight: 400;
}



@media (max-width: 992px) {
    .columns .columns-content-info {
        margin-bottom: 40px;
    }
.container.page-content-wrapper {
    padding: 0px 0px;
}
.page-content-wrapper .row.justify-content-between {
    gap: 0px;
    flex-wrap: wrap;
    width: 100%;
    padding: 0px 15px;
}
.container.page-content-wrapper .row.justify-content-between .col-lg-7 {
    padding: 0px 0px 0px 0px;
}
.first-row p, .second-row p {
    display: flex;
    flex-direction: row;
    gap: 1px;
    flex-wrap: wrap;
}
.first-row p input, .second-row p input, form textarea {
    padding: 10px 20px;
}
.first-row p span, .second-row p span {
    width: 100%;
}
.page-content-wrapper .col-lg-5, .page-content-wrapper .col-lg-7 {
    padding: 0px;
    width: 100%;
}
}

@media (max-width: 576px) {
    .columns .columns-content-info{
        margin-bottom: 40px;
    }
.columns-content-info h2, .columns-with-text-or-form .columns-content-info h1{
font-size: 30px;
}
.container.page-content-wrapper {
    padding: 0px 0px;
}
.page-content-wrapper .row.justify-content-between {
    gap: 0px;
    flex-wrap: wrap;
    width: 100%;
    padding: 0px 15px;
}
.container.page-content-wrapper .row.justify-content-between .col-lg-7 {
    padding: 0px 0px 0px 0px;
}
.first-row p, .second-row p {
    display: flex;
    flex-direction: row;
    gap: 1px;
    flex-wrap: wrap;
}
.first-row p input, .second-row p input, form textarea {
    padding: 10px 20px;
}
.first-row p span, .second-row p span {
    width: 100%;
}
.page-content-wrapper .col-lg-5, .page-content-wrapper .col-lg-7 {
    padding: 0px;
    width: 100%;
}
}

/* end colums */
/* single services */
.service-single-thumb::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 220px;
    background: linear-gradient(to bottom, #FFFFFF 0%, #FFFFFF00 100%);
    top: 0;
    left: 0;
}

.service-single-thumb {
    position: relative;
}

.service-single-thumb img {
    height: 500px;
    object-fit: cover;
}

.service-single-content>p:first-of-type {
    display: none !important;
}

@media (max-width: 767px) {
    .service-single-thumb img {
        height: 250px;
    }
}

/* end single services */


/* media with form */
/* ---------------------------
   CONTACT SECTION WRAPPER
---------------------------- */
.contact-section {
    width: 100%;
    padding: 0;
    background: #fff;
    padding-top: 90px;
    padding-bottom: 60px;
}

/* ---------------------------
   FLEX CONTAINER
---------------------------- */
.contact-section .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 90px;
    flex-direction: row;
}

/* ---------------------------
   LEFT IMAGE
---------------------------- */

.contact-left img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* ---------------------------
   RIGHT CONTENT AREA
---------------------------- */

.contact-title {
    font-weight: 500;
    color: var(--text-color);
}

/* ---------------------------
   INFO ROW
---------------------------- */
.contact-info-box {
    display: flex;
    justify-content: flex-start;
    gap: 60px;
    margin: 20px 0px 30px;
    flex-direction: row;
    width: 100%;
}

.info-column h4 {
    letter-spacing: 2px;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-color);
    font-family: var(--font-secondary);
    margin-bottom: 10px;
}

.info-column p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    font-family: var(--font-secondary);
    max-width: 220px;
}

/* ---------------------------
   MAP
---------------------------- */
.map-wrapper {
    width: 100%;
}

.map-wrapper img {
    width: 100%;
    height: auto;
}

.contact-left,
.contact-right {
    width: 50%;
}

/* ---------------------------
   RESPONSIVE STYLES
---------------------------- */
@media (max-width: 1024px) {
    .contact-title {
        font-size: 40px;
    }

    .contact-section .container {
        flex-wrap: wrap;
        gap: 50px;
    }

    .contact-left,
    .contact-right {
        width: 100%;
    }

    .map-wrapper iframe {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .contact-info-box {
        flex-direction: column;
        gap: 20px;
    }

    .contact-title {
        font-size: 34px;
    }

    .info-column p {
        max-width: 100%;
    }
.contact-section {
    padding-top: 50px;
    padding-bottom: 50px;
}
}

@media (max-width: 500px) {
    .contact-title {
        font-size: 30px;
    }
}

/* end media with form */

/* Introduction & Heading Services Main Section */
.consulting-section {
    width: 100%;
    padding: 80px 0;
    background: #ffffff;
}

.consulting-section-main {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 120px;
}

/* Heading */
.consulting-heading {
    font-size: 60px;
    font-weight: 500;
    color: #333333;
    margin-bottom: 25px;
    font-family: var(--font-primary);
}

/* Sub-heading */
.consulting-section-left h3 {
    font-weight: 700;
    font-size: 24px;
    text-transform: uppercase;
    font-family: var(--font-secondary);
    color: var(--primary-color);
    margin-bottom: 28px;
}

/* Column Sizes (75% width layout feel) */
.consulting-section-left {
    width: 65%;
}

.consulting-section-right {
    width: 35%;
}

/* Paragraph */
.consulting-section-left p {
    font-size: 18px;
    line-height: 1.6;
    color: #000;
    font-weight: 400;
    font-family: var(--font-secondary);
}

/* Right Side: List Items */
.consulting-section-right h5 {
    font-size: 18px;
    font-weight: 400;
    font-family: var(--font-secondary);
    padding-bottom: 15px;
    margin-bottom: 18px;
}
.consulting-section-right a {
    position: relative;
}
.consulting-section-left ul {
    padding-left: 20px;
    padding-top: 20px;
    color: #000;
}

.consulting-section-right a::after {
    content: '';
    position: absolute;
    width: 100%;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
    border: 1px solid var(--primary-color);
}

.consulting-section-right a:last-child::after {
    content: unset;
}

.consulting-section-left ul li,
.consulting-section-left ol li {
    font-size: 18px;
    font-weight: 400;
    font-family: var(--font-secondary);
}


/* ================================
   RESPONSIVE DESIGN
================================ */

/* Tablet */
@media (max-width: 992px) {

    .consulting-section-main {
        flex-direction: column;
        gap: 50px;
    }

    .consulting-section-left,
    .consulting-section-right {
        width: 100%;
    }

    .consulting-heading {
        font-size: 48px;
    }

    .consulting-section-left h3 {
        font-size: 22px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .consulting-section {
        padding-top: 50px;
        padding-bottom: 20px;
    }

    .consulting-heading {
        font-size: 36px;
        line-height: 1.2;
    }

    .consulting-section-left h3 {
        font-size: 18px;
    }

    .consulting-text {
        font-size: 16px;
    }

    .consulting-section-main {
        gap: 35px;
    }

    .consulting-section-right h5 {
        font-size: 16px;
    }
}

/* end Introduction & Heading Services */





.columns-with-text-or-form .columns-form-container .gform_wrapper h2.gform_title {
    display: none;
}

.columns-with-text-or-form .columns-form-container .gform_wrapper label.gform-field-label {
    display: none;
}
.columns-with-text-or-form .columns-form-container .gform_wrapper input {
    background-color: #FFFFFF;
    border: 1px solid #C7A51B !important;
    border-radius: unset;
    padding: 27.7px 16px;
    font-size: 18px;
    font-family: 'Overpass';
    font-weight: 400;
box-shadow: unset;
}
.columns-with-text-or-form .columns-form-container .gform_wrapper input:focus, .columns-with-text-or-form .columns-form-container .gform_wrapper input:visited, .columns-with-text-or-form .columns-form-container .gform_wrapper input:active, .columns-with-text-or-form .columns-form-container .gform_wrapper textarea:focus, .columns-with-text-or-form .columns-form-container .gform_wrapper textarea:visited, .columns-with-text-or-form .columns-form-container .gform_wrapper textarea:active {
    border: 1px solid #C7A51B !important;
    outline: unset;
}

.columns-with-text-or-form .columns-form-container .gform_wrapper #gform_fields_1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.columns-with-text-or-form .columns-form-container .gform_wrapper .gfield {
    width: 100% !important;
    grid-column: unset;
}
.columns-with-text-or-form .columns-form-container .gform_wrapper .gfield:last-child {
    grid-column: 1/-1;
}
.columns-with-text-or-form .columns-form-container .gform_wrapper textarea {
    background-color: #FFFFFF;
    border: 1px solid #C7A51B !important;
    border-radius: unset;
    padding: 17px 16px;
    font-size: 18px;
    font-family: 'Overpass';
    font-weight: 400;
    min-height: 98px !important;
    resize: none;
box-shadow: unset;
}
.gform-footer.gform_footer input {
    background-color: #C7A51B !important;
    border: unset !important;
    border-radius: unset !important;
    font-size: 20px !important;
    font-family: 'Overpass' !important;
    padding: 10.7px 35px !important;
    text-transform: uppercase !important;
    font-weight: 700 !important;
box-shadow: unset;
}

@media (max-width: 767px) {
.columns-with-text-or-form .gform-footer.gform_footer .gform-theme--foundation .gfield {
    grid-column: 1/-1 !important;
}
.columns-with-text-or-form .columns-form-container .gform_wrapper .gfield {
    grid-column: 1/-1 !important;
}
.columns-with-text-or-form .page-content-wrapper .row.justify-content-between {
    padding-right: 0px !important;
}
}