/* =====================================================
   MUDRAA REAL ESTATE
   COMPLETE STYLE.CSS
===================================================== */


/* =====================================================
   ROOT COLORS
===================================================== */

:root {
    --brown: #6B4A2F;
    --brown-dark: #352317;

    --blue: #159BC5;

    --yellow: #F4C51B;
    --yellow-dark: #D7A900;

    --cream: #F8F5EF;
    --cream-dark: #EEE7D8;

    --text: #6B665F;

    --white: #FFFFFF;

    --border: #E2DDD5;
}


/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: "Poppins", sans-serif;

    color: var(--brown-dark);

    background: #FFFFFF;

    line-height: 1.6;

    overflow-x: hidden;
}


img {
    max-width: 100%;

    display: block;
}


a {
    color: inherit;

    text-decoration: none;
}


button,
input,
select,
textarea {
    font-family: inherit;
}


button {
    cursor: pointer;
}


.wrap {
    width: min(
        1180px,
        calc(100% - 40px)
    );

    margin-left: auto;
    margin-right: auto;
}


/* =====================================================
   HEADER
===================================================== */

.header {
    position: sticky;

    top: 0;

    z-index: 9999;

    background:
        rgba(255,255,255,0.97);

    backdrop-filter: blur(15px);

    border-bottom:
        1px solid #ECE8E1;

    transition: 0.3s;
}


.nav {
    min-height: 82px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


/* LOGO */

.brand {
    display: inline-flex;

    align-items: center;
}


.brand img {
    width: 165px;

    height: auto;
}


/* NAV */

nav {
    display: flex;

    align-items: center;

    gap: 30px;
}


nav a {
    position: relative;

    color: var(--brown);

    font-size: 13px;

    font-weight: 500;

    transition: 0.3s;
}


nav a:not(.nav-btn)::after {
    content: "";

    position: absolute;

    left: 0;

    bottom: -7px;

    width: 0;

    height: 2px;

    background: var(--yellow);

    transition: 0.3s;
}


nav a:not(.nav-btn):hover {
    color: var(--blue);
}


nav a:not(.nav-btn):hover::after {
    width: 100%;
}


/* NAV BUTTON */

.nav-btn {
    padding: 11px 22px;

    border-radius: 4px;

    background: var(--brown);

    color: #fff !important;

    transition: 0.3s;
}


.nav-btn:hover {
    background: var(--blue);

    transform: translateY(-2px);
}


/* MOBILE MENU */

.menu {
    display: none;

    width: 42px;

    height: 42px;

    border: 0;

    background: transparent;

    color: var(--brown);

    font-size: 28px;

    line-height: 1;
}


/* =====================================================
   COMMON BUTTONS
===================================================== */

.btn {
    min-height: 48px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 13px 24px;

    border-radius: 4px;

    font-size: 12px;

    font-weight: 600;

    transition:
        background 0.3s,
        color 0.3s,
        border 0.3s,
        transform 0.3s;
}


.btn.primary {
    background: var(--brown);

    color: #FFFFFF;

    border:
        1px solid var(--brown);
}


.btn.primary:hover {
    background: var(--blue);

    border-color: var(--blue);

    transform: translateY(-2px);
}


.btn.white {
    background: #FFFFFF;

    color: var(--brown);

    border:
        1px solid #FFFFFF;
}


.btn.white:hover {
    background: var(--yellow);

    border-color: var(--yellow);

    color: var(--brown-dark);

    transform: translateY(-2px);
}


.btn.full {
    width: 100%;
}


/* =====================================================
   SECTION LABEL
===================================================== */

.section-label {
    display: inline-block;

    color: var(--blue);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2.2px;

    text-transform: uppercase;
}


.section-label.light {
    color: var(--yellow);
}


/* =====================================================
   HERO
===================================================== */

.hero {
    position: relative;

    width: 100%;

    height: 720px;

    overflow: hidden;

    background: #151515;
}


/* =====================================================
   HERO SLIDES
===================================================== */

.hero-slide {
    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    opacity: 0;

    visibility: hidden;

    transform: scale(1.025);

    transition:
        opacity 0.9s ease,
        visibility 0.9s ease,
        transform 1.4s ease;
}


.hero-slide.active {
    opacity: 1;

    visibility: visible;

    transform: scale(1);
}


/* =====================================================
   HERO IMAGE
===================================================== */

.hero-slide img {
    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center center;
}


/* =====================================================
   HERO OVERLAY
===================================================== */

.hero-overlay {
    position: absolute;

    inset: 0;

    z-index: 2;

    background:
        linear-gradient(
            90deg,

            rgba(8,10,9,0.90) 0%,

            rgba(8,10,9,0.78) 20%,

            rgba(8,10,9,0.55) 38%,

            rgba(8,10,9,0.25) 56%,

            rgba(8,10,9,0.06) 76%,

            rgba(8,10,9,0.00) 100%
        );
}


/* =====================================================
   HERO CONTENT
===================================================== */

.hero .hero-content {
    position: relative;

    z-index: 5;

    height: 100%;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    justify-content: center;

    padding-top: 20px;

    padding-bottom: 50px;

    color: #FFFFFF;
}


/* =====================================================
   HERO EYEBROW
===================================================== */

.hero .eyebrow {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 22px;

    color: var(--yellow);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2.5px;
}


.hero .eyebrow span {
    display: block;

    width: 28px;

    height: 2px;

    background: var(--yellow);
}


/* =====================================================
   HERO HEADING
===================================================== */

.hero h1 {
    max-width: 680px;

    margin: 0 0 22px;

    color: #FFFFFF;

    font-size:
        clamp(
            48px,
            5.5vw,
            78px
        );

    font-weight: 400;

    line-height: 1.04;

    letter-spacing: -3px;
}


.hero h1 b {
    color: var(--yellow);

    font-weight: 600;
}


/* =====================================================
   HERO DESCRIPTION
===================================================== */

.hero .hero-content > p {
    max-width: 520px;

    margin-bottom: 31px;

    color:
        rgba(255,255,255,0.84);

    font-size: 15px;

    line-height: 1.85;
}


/* =====================================================
   HERO BUTTONS
===================================================== */

.hero-buttons {
    display: flex;

    align-items: center;

    gap: 12px;

    flex-wrap: wrap;
}


/* HERO PRIMARY */

.hero .btn.primary {
    background: var(--yellow);

    color: var(--brown-dark);

    border-color: var(--yellow);

    font-weight: 700;
}


.hero .btn.primary:hover {
    background: #FFFFFF;

    border-color: #FFFFFF;

    color: var(--brown-dark);
}


/* HERO OUTLINE */

.hero-outline {
    min-height: 48px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 13px 24px;

    border:
        1px solid
        rgba(255,255,255,0.75);

    border-radius: 4px;

    background:
        rgba(255,255,255,0.04);

    backdrop-filter: blur(5px);

    color: #FFFFFF;

    font-size: 12px;

    font-weight: 600;

    transition: 0.3s;
}


.hero-outline:hover {
    background: #FFFFFF;

    border-color: #FFFFFF;

    color: var(--brown-dark);

    transform: translateY(-2px);
}


/* =====================================================
   SLIDER ARROWS
===================================================== */

.slider-arrow {
    position: absolute;

    top: 50%;

    z-index: 20;

    width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 0;

    border:
        1px solid
        rgba(255,255,255,0.55);

    border-radius: 50%;

    background:
        rgba(35,28,20,0.30);

    backdrop-filter: blur(8px);

    color: #FFFFFF;

    font-size: 18px;

    transform: translateY(-50%);

    transition: 0.3s;
}


.slider-arrow:hover {
    background: var(--yellow);

    border-color: var(--yellow);

    color: var(--brown-dark);
}


.slider-prev {
    left: 28px;
}


.slider-next {
    right: 28px;
}


/* =====================================================
   SLIDER DOTS
===================================================== */

.slider-dots {
    position: absolute;

    left: 50%;

    bottom: 28px;

    z-index: 20;

    display: flex;

    align-items: center;

    gap: 8px;

    transform: translateX(-50%);
}


.slider-dot {
    width: 8px;

    height: 8px;

    padding: 0;

    border: 0;

    border-radius: 20px;

    background:
        rgba(255,255,255,0.55);

    transition: 0.3s;
}


.slider-dot:hover {
    background: #FFFFFF;
}


.slider-dot.active {
    width: 30px;

    background: var(--yellow);
}


/* =====================================================
   INTRO
===================================================== */

.intro {
    padding: 100px 0;
}


.intro-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    align-items: end;

    gap: 80px;
}


.intro h2 {
    margin-top: 10px;

    color: var(--brown-dark);

    font-size:
        clamp(
            36px,
            4vw,
            52px
        );

    font-weight: 400;

    line-height: 1.15;

    letter-spacing: -1.5px;
}


.intro h2 b {
    color: var(--blue);

    font-weight: 600;
}


.intro-grid > p {
    max-width: 530px;

    color: var(--text);

    font-size: 14px;

    line-height: 1.9;
}


/* =====================================================
   PROJECTS
===================================================== */

.projects {
    padding: 90px 0 110px;

    background: var(--cream);
}


/* PROJECT HEADING */

.section-heading {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 40px;

    margin-bottom: 45px;
}


.section-heading h2 {
    margin-top: 10px;

    color: var(--brown-dark);

    font-size:
        clamp(
            36px,
            4vw,
            52px
        );

    font-weight: 400;

    line-height: 1.15;

    letter-spacing: -1px;
}


.section-heading h2 b {
    color: var(--blue);

    font-weight: 600;
}


.section-heading > p {
    max-width: 340px;

    color: var(--text);

    font-size: 13px;

    line-height: 1.8;
}


/* =====================================================
   PROJECT CARDS
===================================================== */

.cards {
    display: grid;

    grid-template-columns:
        repeat(
            3,
            minmax(0,1fr)
        );

    gap: 30px;
}


.project-card {
    display: flex;

    flex-direction: column;

    overflow: hidden;

    background: #FFFFFF;

    border:
        1px solid
        #E6E0D4;

    border-radius: 8px;

    box-shadow:
        0 10px 35px
        rgba(59,41,27,0.06);

    transition: 0.35s;
}


.project-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 20px 50px
        rgba(59,41,27,0.12);
}


/* PROJECT IMAGE */

.project-image {
    width: 100%;

    height: 275px;

    overflow: hidden;

    background: #EAEAEA;
}


.project-image img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

    transition: 0.5s;
}


.project-card:hover
.project-image img {
    transform: scale(1.04);
}


/* PROJECT CONTENT */

.project-content {
    flex: 1;

    display: flex;

    flex-direction: column;

    padding: 21px;
}


.project-content h3 {
    margin-bottom: 7px;

    color: var(--brown-dark);

    font-size: 19px;

    font-weight: 600;
}


.project-meta {
    min-height: 45px;

    margin-bottom: 20px;

    color: var(--text);

    font-size: 12px;

    line-height: 1.7;
}


.project-meta span {
    margin: 0 5px;

    color: #B6B0A7;
}


/* PROJECT BUTTONS */

.project-buttons {
    display: flex;

    align-items: center;

    gap: 9px;

    margin-top: auto;
}


/* EXPLORE */

.explore-btn {
    height: 44px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    padding: 0 20px;

    border-radius: 25px;

    background: var(--brown);

    color: #FFFFFF;

    font-size: 12px;

    font-weight: 600;

    white-space: nowrap;

    transition: 0.3s;
}


.explore-btn:hover {
    background: var(--blue);

    transform: translateY(-2px);
}


.explore-btn span {
    color: var(--yellow);

    font-size: 15px;
}


/* BROCHURE */

.brochure-btn {
    height: 44px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 0 18px;

    border:
        1px solid
        #D0CBC1;

    border-radius: 25px;

    background: #FFFFFF;

    color: var(--brown-dark);

    font-size: 11px;

    white-space: nowrap;

    transition: 0.3s;
}


.brochure-btn:hover {
    border-color: var(--blue);

    color: var(--blue);
}


/* =====================================================
   ABOUT
===================================================== */

.about {
    padding: 120px 0;

    background:
        linear-gradient(
            135deg,
            var(--brown-dark),
            var(--brown)
        );

    color: #FFFFFF;
}


.about-grid {
    display: grid;

    grid-template-columns:
        220px 1fr;

    align-items: center;

    gap: 80px;
}


.about-symbol {
    height: 220px;

    display: flex;

    align-items: center;

    border-left:
        2px solid
        var(--yellow);

    padding-left: 30px;
}


.about-symbol span {
    color:
        rgba(244,197,27,0.18);

    font-size: 150px;

    font-weight: 600;

    line-height: 1;
}


.about h2 {
    margin: 12px 0 25px;

    color: #FFFFFF;

    font-size:
        clamp(
            38px,
            4vw,
            55px
        );

    font-weight: 400;

    line-height: 1.15;

    letter-spacing: -1.5px;
}


.about h2 b {
    color: var(--yellow);

    font-weight: 600;
}


.about p {
    max-width: 720px;

    margin-bottom: 30px;

    color:
        rgba(255,255,255,0.76);

    font-size: 14px;

    line-height: 1.9;
}


/* =====================================================
   WHY MUDRAA
===================================================== */

.why {
    padding: 110px 0;
}


.center-heading {
    margin-bottom: 65px;

    text-align: center;
}


.center-heading h2 {
    margin-top: 10px;

    color: var(--brown-dark);

    font-size:
        clamp(
            36px,
            4vw,
            52px
        );

    font-weight: 400;

    line-height: 1.15;
}


.center-heading h2 b {
    color: var(--blue);

    font-weight: 600;
}


.why-grid {
    display: grid;

    grid-template-columns:
        repeat(
            4,
            minmax(0,1fr)
        );

    gap: 35px;
}


.why-grid > div {
    padding-top: 25px;

    border-top:
        1px solid
        var(--border);
}


.why-grid span {
    color: var(--yellow-dark);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1px;
}


.why-grid h3 {
    margin: 18px 0 10px;

    color: var(--brown-dark);

    font-size: 18px;

    font-weight: 600;
}


.why-grid p {
    color: var(--text);

    font-size: 13px;

    line-height: 1.8;
}


/* =====================================================
   ENQUIRY
===================================================== */

.enquiry {
    padding: 110px 0;

    background: var(--cream);
}


.enquiry-grid {
    display: grid;

    grid-template-columns:
        1fr 500px;

    align-items: start;

    gap: 90px;
}


.enquiry h2 {
    margin: 12px 0 25px;

    color: var(--brown-dark);

    font-size:
        clamp(
            40px,
            5vw,
            60px
        );

    font-weight: 400;

    line-height: 1.1;

    letter-spacing: -2px;
}


.enquiry h2 b {
    color: var(--blue);

    font-weight: 600;
}


.enquiry-grid > div > p {
    max-width: 580px;

    color: var(--text);

    font-size: 14px;

    line-height: 1.9;
}


/* CONTACT LINKS */

.contact-links {
    display: flex;

    gap: 50px;

    margin-top: 40px;
}


.contact-links a {
    display: flex;

    flex-direction: column;

    color: var(--brown-dark);

    font-size: 14px;

    font-weight: 600;

    transition: 0.3s;
}


.contact-links a:hover {
    color: var(--blue);
}


.contact-links small {
    margin-bottom: 5px;

    color: var(--blue);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.5px;
}


/* =====================================================
   ENQUIRY FORM
===================================================== */

#leadForm {
    padding: 35px;

    background: #FFFFFF;

    border-radius: 12px;

    box-shadow:
        0 20px 60px
        rgba(59,41,27,0.08);
}


#leadForm h3 {
    margin-bottom: 25px;

    color: var(--brown-dark);

    font-size: 25px;

    font-weight: 600;
}


#leadForm label {
    display: block;

    margin-bottom: 17px;

    color: var(--brown);

    font-size: 10px;

    font-weight: 600;
}


#leadForm input,
#leadForm select,
#leadForm textarea {
    width: 100%;

    margin-top: 7px;

    padding: 13px 14px;

    outline: none;

    border:
        1px solid
        #DDD8D0;

    border-radius: 4px;

    background: #FFFFFF;

    color: #222222;

    font-size: 13px;

    transition: 0.3s;
}


#leadForm input:focus,
#leadForm select:focus,
#leadForm textarea:focus {
    border-color: var(--blue);

    box-shadow:
        0 0 0 3px
        rgba(21,155,197,0.08);
}


#leadForm textarea {
    min-height: 100px;

    resize: vertical;
}


.success {
    min-height: 18px;

    margin-top: 15px;

    color: #318047;

    font-size: 12px;
}


/* =====================================================
   FOOTER
===================================================== */

footer {
    background: var(--brown-dark);

    color: #FFFFFF;
}


.footer-grid {
    display: grid;

    grid-template-columns:
        2fr 1fr 1fr;

    gap: 50px;

    padding: 60px 0;
}


.footer-logo {
    width: 155px;
    height: auto;
    display: block;
    background: transparent;
    mix-blend-mode: normal;
}


.footer-grid p {
    margin-top: 12px;

    color:
        rgba(255,255,255,0.60);

    font-size: 12px;
}


.footer-grid h4 {
    margin-bottom: 15px;

    color: var(--yellow);

    font-size: 14px;

    font-weight: 600;
}


.footer-grid a {
    display: block;

    margin-bottom: 10px;

    color:
        rgba(255,255,255,0.65);

    font-size: 12px;

    transition: 0.3s;
}


.footer-grid a:hover {
    color: var(--yellow);
}


/* COPYRIGHT */

.copyright {
    padding: 20px;

    border-top:
        1px solid
        rgba(255,255,255,0.10);

    color:
        rgba(255,255,255,0.40);

    font-size: 10px;

    text-align: center;
}


/* =====================================================
   LARGE TABLET
===================================================== */

@media (max-width: 1100px) {

    .hero {
        height: 680px;
    }


    .hero h1 {
        font-size: 62px;
    }


    .enquiry-grid {
        grid-template-columns:
            1fr 450px;

        gap: 50px;
    }

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 950px) {

    .hero {
        height: 650px;
    }


    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(8,10,9,0.90) 0%,
                rgba(8,10,9,0.72) 35%,
                rgba(8,10,9,0.38) 70%,
                rgba(8,10,9,0.15) 100%
            );
    }


    .hero h1 {
        max-width: 620px;

        font-size:
            clamp(
                46px,
                7vw,
                66px
            );
    }


    .hero .hero-content > p {
        max-width: 480px;
    }


    .cards {
        grid-template-columns:
            repeat(
                2,
                minmax(0,1fr)
            );
    }


    .why-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0,1fr)
            );
    }


    .enquiry-grid {
        grid-template-columns: 1fr;
    }

}


/* =====================================================
   MOBILE NAVIGATION
===================================================== */

@media (max-width: 800px) {

    .menu {
        display: flex;

        align-items: center;

        justify-content: center;
    }


    nav {
        position: absolute;

        top: 82px;

        left: 0;

        right: 0;

        display: none;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding:
            15px 20px 25px;

        background: #FFFFFF;

        border-bottom:
            1px solid #DDD;

        box-shadow:
            0 15px 30px
            rgba(0,0,0,0.08);
    }


    nav.show {
        display: flex;
    }


    nav a {
        padding: 12px 0;
    }


    nav a:not(.nav-btn)::after {
        display: none;
    }


    .nav-btn {
        margin-top: 10px;

        text-align: center;
    }


    .intro-grid {
        grid-template-columns: 1fr;

        gap: 30px;
    }


    .section-heading {
        flex-direction: column;

        align-items: flex-start;

        gap: 20px;
    }


    .about-grid {
        grid-template-columns: 1fr;
    }


    .about-symbol {
        display: none;
    }


    .footer-grid {
        grid-template-columns:
            1fr 1fr;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .wrap {
        width:
            calc(100% - 30px);
    }


    /* HEADER */

    .nav {
        min-height: 70px;
    }


    nav {
        top: 70px;
    }


    .brand img {
        width: 145px;
    }


    /* HERO */

    .hero {
        height: 650px;
    }


    .hero-slide img {
        object-position:
            center center;
    }


    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(8,10,9,0.92) 0%,
                rgba(8,10,9,0.76) 38%,
                rgba(8,10,9,0.42) 75%,
                rgba(8,10,9,0.18) 100%
            );
    }


    .hero .hero-content {
        justify-content: center;

        padding:
            30px 0 70px;
    }


    .hero .eyebrow {
        margin-bottom: 18px;

        font-size: 9px;

        letter-spacing: 1.7px;
    }


    .hero .eyebrow span {
        width: 22px;
    }


    .hero h1 {
        max-width: 90%;

        margin-bottom: 20px;

        font-size: 42px;

        line-height: 1.08;

        letter-spacing: -2px;
    }


    .hero .hero-content > p {
        max-width: 92%;

        margin-bottom: 26px;

        font-size: 13px;

        line-height: 1.75;
    }


    .hero-buttons {
        width: 92%;

        flex-direction: column;

        align-items: stretch;

        gap: 10px;
    }


    .hero-buttons .btn,
    .hero-buttons .hero-outline {
        width: 100%;
    }


    /* SLIDER ARROWS */

    .slider-arrow {
        width: 36px;

        height: 36px;

        font-size: 14px;
    }


    .slider-prev {
        left: 10px;
    }


    .slider-next {
        right: 10px;
    }


    /* DOTS */

    .slider-dots {
        bottom: 18px;
    }


    /* INTRO */

    .intro {
        padding: 75px 0;
    }


    .intro h2 {
        font-size: 36px;
    }


    /* PROJECTS */

    .projects {
        padding:
            75px 0 85px;
    }


    .cards {
        grid-template-columns: 1fr;

        gap: 30px;
    }


    .project-image {
        height: 245px;
    }


    .project-buttons {
        width: 100%;
    }


    .explore-btn,
    .brochure-btn {
        flex: 1;
    }


    .brochure-btn {
        padding:
            0 12px;
    }


    /* ABOUT */

    .about {
        padding: 75px 0;
    }


    .about h2 {
        font-size: 37px;
    }


    /* WHY */

    .why {
        padding: 75px 0;
    }


    .why-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }


    /* ENQUIRY */

    .enquiry {
        padding: 75px 0;
    }


    .enquiry h2 {
        font-size: 42px;
    }


    .contact-links {
        flex-direction: column;

        gap: 20px;
    }


    #leadForm {
        padding: 25px 20px;
    }


    /* FOOTER */

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 35px;

        padding:
            50px 0;
    }

}


/* =====================================================
   VERY SMALL MOBILE
===================================================== */

@media (max-width: 400px) {

    .hero {
        height: 620px;
    }


    .hero h1 {
        font-size: 37px;
    }


    .hero .hero-content > p {
        font-size: 12px;
    }


    .hero-buttons {
        width: 95%;
    }


    .intro h2 {
        font-size: 32px;
    }


    .section-heading h2 {
        font-size: 34px;
    }


    .enquiry h2 {
        font-size: 37px;
    }

}