:root {
    --cream: #F8EFE5;
    --blue: #5FBBCE;
    --green: #69E175;
    --hover: #36e147;
    --black: #353535;
    --pale: rgba(226, 226, 226, 0.45);
    --grey: #C3C3C3;
    --darkGrey: #7E7B77;
}

* {
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    background-color: #F8EFE5;
}

section {
    position: relative;
    padding: 12rem 5rem 4rem;
    margin-top: -5rem;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    border-bottom-right-radius: 50px;
    border-bottom-left-radius: 50px;
}

section:nth-child(odd) {
    background-color: var(--cream);
    color: var(--black)
}

section:nth-child(even) {
    background: radial-gradient(circle at 25% 35%, rgba(77, 180, 191, 1), rgba(98, 136, 171, 0.66));
    ;
    color: white;
}

a {
    color: inherit;
    text-decoration: none;
    font-style: normal;
    font-weight: normal;
    font-weight: normal;
    cursor: pointer;
}

.button {
    background: var(--green);
    padding: 1rem 2rem;
    border-radius: 22px;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--black);
    border: 2px solid #00000000;
    cursor: pointer;
    transition: border .5s;
    width: fit-content;
    margin: auto;
}

.button:hover {
    background: var(--hover);
    border: 2px solid white;
    color: white;
}

h1 {
    font-size: 50px;
}

h2 {
    font-size: clamp(1.5rem, 40px, 4rem);
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 24px;
}

p {
    font-size: clamp(0.8rem, 2vw, 1.2rem);
}


/* HEADER */
header {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(#000000a5, rgba(145, 152, 229, 0));
    padding: 1rem 3rem;
    z-index: 20;
}

.SKElogo {
    margin-left: 0;
}

.headerLogo {
    max-height: clamp(10px, 10vh, 40px);
}

.headerNavs {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 2.5rem;
    margin-right: 0;
}

.mobileNavs {
    display: none;
}

.nav-items {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: auto;
    z-index: 3;
}

.nav-item a {
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s;
    cursor: pointer;
}

.nav-item a:hover {
    color: var(--hover);
}

.dropdownContainer {
    position: relative;
    width: max-content;
}

/* Dropdown Menu */
#dropdownMenu {
    position: absolute;
    top: 2rem;
    width: max-content;
    max-width: 200%;
    max-height: 90vh;
    z-index: 22;
    transform-origin: top left;
    transition: scale 0.5s, opacity 1s ease-in-out;
}

#dropdownMenu ul {
    list-style-type: none;
    padding: 0;
    background-color: var(--pale);
    border-radius: 0px 0px 20px 20px;
}

#dropdownMenu li a {
    display: block;
    padding: 1rem;
    text-decoration: none;
    color: var(--black);
    border-bottom: 2px solid var(--pale);
}

#dropdownMenu li a:hover {
    background-color: var(--green);
    border-radius: 0px 0px 20px 20px;
}

.servicesLink {
    font-size: 1.5rem;
}

.hidden {
    scale: 0;
    opacity: 0;
}

.visible {
    scale: 1;
    opacity: 1;
}

/* HAMBURGER MENU */
.ham {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: transform 400ms;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.hamRotate.active {
    transform: rotate(45deg);
}

.hamRotate180.active {
    transform: rotate(180deg);
}

.hamburgerLine {
    fill: none;
    transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
    stroke: #ffffff;
    stroke-width: 5.5;
    stroke-linecap: round;
    overflow: visible;
}


.ham6 .top {
    stroke-dasharray: 41 172;
}

.ham6 .middle {
    stroke-dasharray: 41 111;
}

.ham6 .bottom {
    stroke-dasharray: 41 172;
}

.ham6.active .top {
    stroke-dashoffset: -132px;
}

.ham6.active .middle {
    stroke-dashoffset: -71px;
}

.ham6.active .bottom {
    stroke-dashoffset: -132px;
}

/* MOBILE HEADER */
.mobileNavContainer {
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: space-around;

    background: var(--blue);
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;

    width: 100vw;
    padding: 1rem;
    padding-top: 1rem;
    z-index: 18;

    transform: scale(0);
    overflow: hidden;
    transform-origin: top;
    transition: all 0.75s;
}

.mobileNavList {
    display: flex;
    justify-content: center;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.mobileNavListItem {
    padding: 0.5rem;
    margin: 0;
    line-height: normal;
    font-size: inherit;
}

.mobileNavLink {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.25rem;
}

.mobileNavLink:hover {
    color: var(--green);
}

@media only screen and (max-width: 600px) {
    .mobileNavContainer {
        align-items: center;
        background: var(--blue);
    }

    .mobileNavList {
        flex-direction: column;
    }

    .mobileNavListItem {
        padding: 0.3rem;
    }

    .mobileNavLink {
        color: white;
        text-decoration: none;
        font-weight: 500;
        font-size: 1.5rem
    }

    .mobileHeaderButton {
        scale: 2;
        margin-top: 2rem;
    }
}

/* SERVICES MENU */
.mobileServiceContainer {
    position: fixed;
    display: flex;
    justify-content: space-around;

    background: var(--blue);
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;

    width: 100vw;
    padding: 1rem;
    z-index: 19;

    transform: scale(0);
    overflow: hidden;
    transform-origin: top;
    transition: all 0.75s;
}

.mobileServiceList {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.mobileServiceListItem {
    padding: 1rem;
    margin: 0;
    line-height: normal;
    font-size: inherit;
}

.mobileServiceLink {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.25rem;
}

.mobileServiceLink:hover {
    color: var(--green);
}

@media only screen and (max-width: 600px) {
    .mobileServiceContainer {
        align-items: center;
        background: var(--blue);
    }

    .mobileServiceList {
        flex-direction: column;
    }

    .mobileServiceListItem {
        padding: 1rem;
    }

    .mobileServiceLink {
        color: white;
        text-decoration: none;
        font-weight: 500;
        font-size: 1.5rem;
        line-height: 80%;
    }
}

/* SCALING */
.scaled {
    transform: scale(1);
}

/* HERO SECTION */
.heroSection {
    padding: 5rem;
    padding-top: 25rem;
    display: flex;
    flex-direction: column;
    color: white;
    gap: 5rem;
    min-height: 95vh;
}

.heroText {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 45%;
    margin-left: 0;
}

.heroTitle {
    font-size: clamp(2.5rem, 3vw, 5rem);
    font-weight: bolder;
}

.heroSell {
    font-size: clamp(1.25rem, 1vw, 2rem);
    font-weight: 500;
}

.heroButton {
    background: var(--green);
    padding: 1rem 2rem;
    border-radius: 22px;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--black);
    border: 2px solid #00000000;
    cursor: pointer;
    transition: border .5s;
    width: fit-content;
}

.heroButton:hover {
    background: var(--hover);
    border: 2px solid white;
    color: white;
}

.partnerLogos {
    grid-area: logos;

    display: flex;
    flex-direction: row;
    justify-content: center;

    width: 100%;
    background-color: transparent;
    justify-content: space-around;
}

.logo {
    padding: 0.5rem;
    max-height: 65px;
    max-width: 100%;
}

/* VERTICAL BENEFITS */
.verticalBenefits {
    gap: 2rem;
}

.vBenefitsContainer {
    display: grid;
    grid-template-columns: 65% 1fr;
    gap: 3rem;
}

.vBenefitsListContainer {
    gap: 1rem;
    display: flex;
    flex-direction: column;
}

/* GRID BENEFITS */
.gridBenefits {
    gap: 2rem;
}

.gBenefitsIntro {
    width: 80%;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.gBenefitsContainer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.gBenefit {
    gap: 1rem;
}

/* AFTERCARE */
.promises {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* INFO SECTION */
.infoSection {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* INSTALL SMALL */
.installSmall {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 2rem;
}

.installSmallIntro {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* INSTALL BIG */
.installBig {
    display: grid;
    grid-template-columns: 70% 30%;
    gap: 2rem;
    max-width: 100%;
}

.installBigColumn {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.installBigList {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* stepIcon */
.step {
    display: flex;

}

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

.stepArrow {
    margin: -10px 5px 0;
    width: 40px;
    scale: 0;
}

.stepArrowReverse {
    margin-right: 10px;
}

.installBigImage {
    position: sticky;
    top: 5rem;
    margin-bottom: 0 auto 5px;
    border-radius: 35px;
    max-width: 85%;
}

/* TARGET MARKET */
.targetSection {
    gap: 2rem;
    padding-bottom: 3rem;
}

.targetIntro {
    display: grid;
    gap: 2rem;
    grid-template-areas: "title text";
    grid-template-columns: 40% 60%;
}

.targetMarkets {
    display: grid;
    gap: 2rem;
    grid-template-columns: 30% 1fr;
}

.targetMarketText {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 2rem;
}

.homeowners {
    display: grid;
    grid-template-areas:
        "title"
        "copy"
    ;
}

.homeownersTitle {
    grid-area: title;
    margin-left: 0;
}

.targetMarketButton {
    display: none;
}

.homeownersCopy {
    grid-area: copy;
    overflow: hidden;
}

.propertyDevelopers {
    display: grid;
    grid-template-areas:
        "title"
        "copy"
    ;
}

.propertyDevelopersTitle {
    grid-area: title;
    margin-left: 0;
}

.propertyDevelopersCopy {
    grid-area: copy;
    overflow: hidden;
}

.businesses {
    display: grid;
    grid-template-areas:
        "title"
        "copy"
    ;
}

.businessesTitle {
    grid-area: title;
    margin-left: 0;
}

.businessesCopy {
    grid-area: copy;
    overflow: hidden;
}

#slideshow,
#slideshow2 {
    position: sticky;
    max-width: 600px;
    height: auto;
    overflow: hidden;
}

.slide {
    position: sticky;
    top: 5rem;
    margin: 0 auto;
    border-radius: 35px;
    transition: opacity 1s ease-in-out;
    max-width: 100%;
}

/* SERVICES TILES */
.servicesSection {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.servicesIntro {
    display: grid;
    gap: 2rem;
    grid-template-areas: "title text";
    grid-template-columns: 40% 60%;
}

.servicesText {
    grid-area: text;
}

.tilesContainer {
    width: 100%;
    overflow: none;
    background-color: var(--pale);
    border-radius: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
    padding: 2rem;
}

.tile {
    max-width: 100%;
    border-radius: 35px;
    display: flex;
    flex-direction: column;
    padding: 1rem;
    overflow: hidden;
    cursor: pointer;
    background: red;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 1;
}

.servicesCardContent {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    opacity: 0;
    transform: translateY(75%);
    transition: transform 500ms ease, opacity 500ms ease;
}

.servicesCardTitle {
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: 20px;
    opacity: 1;
}

.commercialTile:hover .commercialContent {
    transform: translateY(0%);
    opacity: 1;
}

.commercialTile {
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.9)), url('/static/images/heroImages/commercial-hero-800.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.solarPanelTile:hover .solarPanelContent {
    transform: translateY(0%);
    opacity: 1;
}

.solarPanelTile {
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.9)), url('/static/images/heroImages/solarP-hero-800.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.newBuildTile:hover .newBuildContent {
    transform: translateY(0%);
    opacity: 1;
}

.newBuildTile {
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.9)), url('/static/images/heroImages/new-build-hero-800.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.evChargePointTile:hover .evChargePointContent {
    transform: translateY(0%);
    opacity: 1;
}

.evChargePointTile {
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.9)), url('/static/images/heroImages/ev-hero-800.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.afterCareTile:hover .afterCareContent {
    transform: translateY(0%);
    opacity: 1;
}

.afterCareTile {
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.9)), url('/static/images/heroImages/aftercare-hero-800.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.heatPumpTile:hover .heatPumpContent {
    transform: translateY(0%);
    opacity: 1;
}

.heatPumpTile {
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.95)), url('/static/images/heroImages/air-source-hero-800.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* PROJECTS */
.projectContainer {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.projectCard {
    background: var(--blue);
    padding: 4rem 1rem;
    text-align: center;
    max-width: 30%;
    border-radius: 35px;
    background-size: cover;
    background-position: center;
}

/* PROJECT PROFILES */
.projectHeroSection {
    text-align: left;
}

.projectHeroText {
    justify-content: center;
    margin: auto;
    margin-bottom: 2rem;
    text-align: center;
    max-width: 65%;
}

.projectSection {
    gap: 3.5rem;
}

/* WARRANTY REGISTRATION FORM */
.centered {
    text-align: center;
}

.warrantySection {
    padding-top: 12rem;
}

.formContainer {
    margin: auto;
    display: flex;
    flex-direction: column;
    padding: 1rem;
    gap: 2rem;
}

.formGroup {
    padding: 0.25rem;
    width: 100%;
}

.warrantyNeighbours {
    display: flex;
}

/* FOOTER */
footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 4rem 1rem;
    gap: 2rem;
}

/* .footer {
    border-top: 2px solid var(--black);
} */

footer ul {
    list-style-type: none;
}

footer h4 {
    margin-bottom: 1rem;
}

.footerLi {
    padding-bottom: 0.75rem;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--black);
    text-decoration: none;
    transition: all 0.5s;
    cursor: pointer;
}

.footerLi:hover {
    color: var(--green);
}

.footerRight {
    display: flex;
    flex-direction: column;
    max-width: 45%;
}

.footerLogo {
    width: clamp(300px, 20vw, 700px);
    max-width: 100%;
}

/* SECTION STYLINGS */
.imageColumn {
    display: flex;
    flex-direction: column;
    position: relative;
}

/* HEROS */
#homeHero {
    background: radial-gradient(circle at 25% 35%, rgba(77, 180, 191, 0.95), rgba(98, 136, 171, 0.6)), url('/static/images/heroImages/landing-hero.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#aboutHero {
    background: radial-gradient(circle at 25% 35%, rgba(77, 180, 191, 0.95), rgba(98, 136, 171, 0.6)), url('/static/images/heroImages/about-hero.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#contactHero {
    background: radial-gradient(circle at 25% 35%, rgba(77, 180, 191, 0.95), rgba(98, 136, 171, 0.6)), url('/static/images/heroImages/Contact-hero.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#aftercareHero {
    background: radial-gradient(circle at 25% 35%, rgba(77, 180, 191, 0.95), rgba(98, 136, 171, 0.6)), url('/static/images/heroImages/aftercare-hero.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#airSourceHero {
    background: radial-gradient(circle at 25% 35%, rgba(77, 180, 191, 0.95), rgba(98, 136, 171, 0.6)), url('/static/images/heroImages/air-source-hero.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#commercialHero {
    background: radial-gradient(circle at 25% 35%, rgba(77, 180, 191, 0.95), rgba(98, 136, 171, 0.6)), url('/static/images/heroImages/commercial-hero.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#evHero {
    background: radial-gradient(circle at 25% 35%, rgba(77, 180, 191, 0.95), rgba(98, 136, 171, 0.6)), url('/static/images/heroImages/ev-hero.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#newBuildHero {
    background: radial-gradient(circle at 25% 35%, rgba(77, 180, 191, 0.95), rgba(98, 136, 171, 0.6)), url('/static/images/heroImages/new-build-hero.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#solarPHero {
    background: radial-gradient(circle at 25% 35%, rgba(77, 180, 191, 0.95), rgba(98, 136, 171, 0.6)), url('/static/images/heroImages/solarP-hero.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 800px) {
    #homeHero {
        background: radial-gradient(circle at 25% 35%, rgba(77, 180, 191, 0.95), rgba(98, 136, 171, 0.6)), url('/static/images/heroImages/landing-hero-800.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    #aboutHero {
        background: radial-gradient(circle at 25% 35%, rgba(77, 180, 191, 0.95), rgba(98, 136, 171, 0.6)), url('/static/images/heroImages/about-hero-800.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    #contactHero {
        background: radial-gradient(circle at 25% 35%, rgba(77, 180, 191, 0.95), rgba(98, 136, 171, 0.6)), url('/static/images/heroImages/Contact-hero-800.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    #aftercareHero {
        background: radial-gradient(circle at 25% 35%, rgba(77, 180, 191, 0.95), rgba(98, 136, 171, 0.6)), url('/static/images/heroImages/aftercare-hero-800.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    #airSourceHero {
        background: radial-gradient(circle at 25% 35%, rgba(77, 180, 191, 0.95), rgba(98, 136, 171, 0.6)), url('/static/images/heroImages/air-source-hero-800.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    #commercialHero {
        background: radial-gradient(circle at 25% 35%, rgba(77, 180, 191, 0.95), rgba(98, 136, 171, 0.6)), url('/static/images/heroImages/commercial-hero-800.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    #evHero {
        background: radial-gradient(circle at 25% 35%, rgba(77, 180, 191, 0.95), rgba(98, 136, 171, 0.6)), url('/static/images/heroImages/ev-hero-800.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    #newBuildHero {
        background: radial-gradient(circle at 25% 35%, rgba(77, 180, 191, 0.95), rgba(98, 136, 171, 0.6)), url('/static/images/heroImages/new-build-hero-800.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    #solarPHero {
        background: radial-gradient(circle at 25% 35%, rgba(77, 180, 191, 0.95), rgba(98, 136, 171, 0.6)), url('/static/images/heroImages/solarP-hero-800.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
}

/* ROOT QUERIES */
@media only screen and (max-width: 1150px) {
    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: clamp(1.5rem, 40px, 4rem);
    }

    h3 {
        font-size: 28px;
    }

    h4 {
        font-size: 20px;
    }
}

@media only screen and (max-width: 1000px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    h4 {
        font-size: 20px;
    }

    .button {
        padding: 0.5rem 1rem;
        font-size: 1rem;
        border-radius: 15px;
    }
}

@media only screen and (max-width: 850px) {

    .sectionTitle,
    .bracketTitle {
        text-align: center;
    }
}

@media only screen and (max-width: 800px) {
    section {
        padding: 8rem 3rem 3rem;
    }
}

@media only screen and (max-width: 500px) {
    section {
        padding: 7rem 2rem 2rem;
    }
}

/* HEADER REPOSIVENESS */
@media only screen and (max-width: 850px) {
    .mobileNavs {
        display: block;
        margin-right: 0;
    }

    .headerNavs {
        display: none;
    }
}

/* HEO SECTION QUERIES */
@media only screen and (max-width: 850px) {
    .heroSection {
        display: flex;
        flex-direction: column;
        align-items: baseline;
        padding: 15rem 2rem 2rem;
        width: 100%;
        gap: 2rem;
    }

    .heroText {
        justify-content: center;
        margin: auto;
        margin-bottom: 1rem;
        text-align: center;
        max-width: 100%;
    }

    .heroButton {
        margin: auto;
    }

    .partnerLogos {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .logo {
        margin: auto;
        max-height: 55px;
    }
}

/* VERTICAL BENEFITS SECTION QUERIES */
@media only screen and (max-width: 850px) {
    .vBenefitsContainer {
        display: grid;
        grid-template-columns: 1fr 0;
        gap: 0;
    }
}

/* GRID BENEFITS SECTION QUERIES */
@media only screen and (max-width: 850px) {
    .gBenefitsIntro {
        width: 100%;
    }

    .gBenefitsContainer {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* INSTALL SMALL QUERIES */
@media only screen and (max-width: 850px) {
    .installSmall {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
}

/* INSTALL BIG QUERIES */
@media only screen and (max-width: 1050px) {
    .installBig {
        grid-template-columns: 100% 0;
        gap: 0;
    }

    .installBigImage {
        display: none;
    }
}

/* TARGET MARKET SECTION QUERIES */
@media only screen and (max-width: 850PX) {
    .targetMarkets {
        gap: 0;
        grid-template-columns: 0 100%;
    }

    .targetIntro {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin: auto;
    }
}

/* SERVICES TILES QUERIES*/
@media only screen and (max-width: 850px) {
    .tilesContainer {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .servicesCardTitle {
        margin: auto;
    }

    .servicesCardCopy {
        display: none;
    }

    .commercialContent {
        transform: translateY(0%);
    }

    .solarPanelContent {
        transform: translateY(0%);
    }

    .newBuildContent {
        transform: translateY(0%);
    }

    .evChargePointContent {
        transform: translateY(0%);
    }

    .underfloorHeatingContent {
        transform: translateY(0%);
    }

    .afterCareContent {
        transform: translateY(0%);
    }

    .heatPumpContent {
        transform: translateY(0%);
    }
}

/* WARRANTY REGISTRATION FORM QUERIES */
@media only screen and (max-width: 700px) {
    .warrantyNeighbours {
        flex-direction: column;
    }
}

/* FOOTER QUERIES */
@media only screen and (max-width: 700px) {
    .footerRight {
        max-width: 75%;
    }
}

/* CONTACT PAGE */

/* PAGE LAYOUT */
.contactPage {
    width: 100%;
    padding: 12rem 1rem 10rem;
}

.contactPageContainer {
    max-width: 80%;
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    margin: auto;

}

.contactColumn {
    flex: 1 1 35rem;
    max-width: 50rem;
    margin: auto;
}

/* CONTACT FORM */
.formColumn h5 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    color: white;
}

.name-fields {
    display: flex;
    gap: 1rem;
    width: 100%;
}

form {
    margin: auto;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid #00000000;
    border-radius: 35px;
    background-color: var(--pale);
    box-shadow: 0px 12px 18px -6px rgba(0, 0, 0, 0.3);
}

textarea {
    height: 10rem;
    resize: vertical;
}

.formButton {
    padding: 0.5rem 1rem;
    font-size: 1.5rem;
    margin: auto;
    width: 50%;
}

input::placeholder,
textarea::placeholder {
    color: white;
}

/* PROJECT PROFILES queries */
@media only screen and (max-width: 800px) {
.projectHeroSection {
    padding-top: 12rem;
}

.projectHeroText {
    max-width: 100%;
}
}


/* CONTACT DETAILS */
.contactColumn {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: min-contents;
}

.contactInfoEmail,
.contactInfoPhone,
.contactInfoAddress {
    margin-left: 0;
}

.contactInfo {
    font-size: 1.5rem;
    font-weight: 300;
    color: white;
}

/* MEDIA QUERIES */
@media only screen and (max-width: 850px) {
    .contactPage {
        padding: 12rem 1rem 5rem;
    }
}


@media only screen and (max-width: 550px) {
    .name-fields {
        flex-wrap: wrap;
        gap: 0;
    }

    .contactPageContainer {
        max-width: 100%;

    }

    #telNumber h6 {
        font-size: 21px;
    }
}

/* SLICK SLIDER */
.slick-slide {
    padding: 0.75rem;
}