/*
Base CSS Styles
Uplocal v1.0.0
*/

/* Reset */

/* CSS Variables */
:root {
    --primary-color: #6E1EE6;
    --primary-muted: #B68DE9;
    --greyfill: #F2F1F3;
    --maize: #FCE762;
    --maize-muted: #FDF1A1;
    --text-primary: #4A4A41;
}

/* Fonts  */
.handwritten {
    font-family: 'Handlee', cursive;
    letter-spacing: 1px;
}

.inter {
    font-family: 'Inter', sans-serif;
}

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

/* Base */

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

html,
body {
    background-color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    color: var(--text-primary);
    margin: 0;
    padding: 0;
    min-width: 375px;
}

.page {
    margin: 0 auto;
    overflow: hidden;
    /* max-width: 1440px; */
}


/* Buttons  */
.button {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-size: 1.4rem;
    border-radius: 16px;
    font-weight: 600;
}

.button.secondary {
    background-color: #fff;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    /* padding: 14px 25px; */
}

.button:hover,
.button.secondary:hover {
    background-color: var(--maize);
    color: var(--primary-color);
    transition: all 0.5s ease;
    text-decoration: none;
}

.button.secondary:hover {
    border-color: #fff;
}


/* Responsive Styles */

@media (min-width: 1440px) {}

@media (min-width: 1024px) {

    html,
    body {
        font-size: 10px;
    }
}

@media (min-width: 768px) {
    .button {
        padding: 16px 30px;
        font-size: 1.3rem;
        border-radius: 20px;
    }
}

/* - Navigation --------------------------------------------------------- */

header.menu {
    position: fixed;
    z-index: 2;
    background-color: #fff;
    width: 100%;
    opacity: 1;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    background-color: var(--primary-color);
    box-shadow: 3px 4px 1px #00000020;
}

nav .hamburger {
    width: 28px;
    height: 22px;
    position: relative;
    cursor: pointer;
}

nav .hamburger span {
    background-color: #fff;
    width: 100%;
    height: 3px;
    display: block;
    position: absolute;
    border-radius: 4px;
    top: 50%;
    transform: translate(0, -50%);
    transition: all .5s;
}

nav .hamburger .bar-1 {
    transform: translate(0, -11px);
}

nav .hamburger .bar-2,
nav .hamburger .bar-3 {
    margin-left: 30%;
    width: 70%;
}

nav .hamburger .bar-4 {
    transform: translate(0, 8px);
}

#checkbox_toggle {
    display: none;
}

nav ul.menu {
    width: 100%;
    list-style: none;
    padding: 30px;
    font-size: 1.8rem;
    gap: 30px;
    position: absolute;
    top: 60px;
    left: 0px;
    z-index: 9;
    flex-direction: column;
    background-color: #5e1ac3;
    color: #fff;
    display: none;
    border-bottom: 8px solid #00000030;
    overflow: hidden;
}

nav ul.menu li.buttons {
    display: none;
}

nav ul.menu:first-of-type li.buttons {
    border-top: 1px solid #FFFFFF50;
    padding-top: 20px;
}


@keyframes uicoreFadeInUp {
    0% {
        transform: translateY(15px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;

    }
}


nav input[type=checkbox]:checked~.menu {
    display: flex;
}

nav input[type=checkbox]:checked~.menu li.buttons {
    display: block;
    line-height: 3em;
    /* font-size: 1.7rem; */
}


/* change content of checkbox label to X close when checked */
nav input[type=checkbox]:checked~label .bar-1 {
    transform: translate(0, -16px) !important;
    opacity: 0;
}

nav input[type=checkbox]:checked~label .bar-2 {
    margin-left: 0%;
    width: 100% !important;
    transform: rotate(-45deg);
    transition-delay: .1s;
}

nav input[type=checkbox]:checked~label .bar-3 {
    margin-left: 0%;
    width: 100% !important;
    transform: rotate(45deg);
    transition-delay: .1s;
}

nav input[type=checkbox]:checked~label .bar-4 {
    transform: translate(0, 12px) !important;
    opacity: 0;
}

nav input[type=checkbox]:checked~.menu li {
    opacity: 0;
    animation-name: uicoreFadeInUp !important;
    animation-duration: .45s;
    animation-fill-mode: forwards;
}

/* Add a delay to each menu item */
nav input[type=checkbox]:checked~.menu li:nth-child(1) {
    animation-delay: .1s;
}

nav input[type=checkbox]:checked~.menu li:nth-child(2) {
    animation-delay: .2s;
}

nav input[type=checkbox]:checked~.menu li:nth-child(3) {
    animation-delay: .3s;
}

nav input[type=checkbox]:checked~.menu li:nth-child(4) {
    animation-delay: .4s;
}

nav input[type=checkbox]:checked~.menu li:nth-child(5) {
    animation-delay: .5s;
}

nav input[type=checkbox]:checked~.menu li:nth-child(6) {
    animation-delay: .6s;
}

nav input[type=checkbox]:checked~.menu li:nth-child(7) {
    animation-delay: .7s;
}

nav input[type=checkbox]:checked~.menu li:nth-child(8) {
    animation-delay: .8s;
}


nav ul.menu a {
    color: #fff;
}

nav a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
}

nav a:hover,
nav ul.menu a:hover {
    text-decoration: underline;
}

nav .logo {
    margin-right: auto;
    background: url('/images/logo_white.svg') 0 0 no-repeat;
    background-size: contain;
    width: 140px;
    height: 44px;
    overflow: hidden;
}

nav .logo a {
    display: block;
    text-indent: 999px;
    width: 100%;
    height: 100%;
}

nav div.buttons {
    display: none;
}


/* Responsive Styles */

@media (min-width: 1440px) {}


@media (min-width: 500px) {
    nav a.login {
        display: block;
    }

    nav .buttons {
        display: flex;
        gap: 20px;
    }

}


@media (min-width: 768px) {
    nav {
        padding: 30px 30px;
    }


    nav .logo {
        width: 160px;
    }


    nav ul.menu {
        padding: 30px 30px;
        gap: 30px;
        top: 89px;
        left: 0px;

    }


}


@media (min-width: 1024px) {
    nav {
        padding: 30px 60px;
    }


    nav ul.menu {
        font-size: 1.5rem;

        padding: 30px 60px;
    }
}


@media (min-width: 1280px) {

    nav {
        background-color: #fff;
        box-shadow: none;

    }

    nav ul.menu {
        display: flex;
        width: 50%;
        list-style: none;
        padding: 0;
        justify-content: space-around;
        align-items: center;
        position: relative;
        background: none;
        flex-direction: row;
        top: 0;
        border-bottom: none;
        text-wrap: nowrap;
    }

    nav ul.menu a {
        color: var(--text-primary);
        text-decoration: none;
        font-weight: 550;
    }

    nav .logo {
        background: url('/images/logo.svg') 0 0 no-repeat;
    }


    nav div.buttons {
        display: flex;
    }

    nav ul li.signup {
        margin-left: 0;
    }


    nav label {
        display: none;
    }

    nav .logo {
        margin-right: 0;
    }
}


/* - Homepage Hero --------------------------------------------------------- */

main {
    padding-top: 75px;
}

section.hero {
    position: relative;
    padding: 55px 20px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero h2 {
    font-weight: 500;
    color: var(--primary-color);
    font-size: 1.8rem;
    letter-spacing: 1px;
    line-height: 3.8rem;
    margin: 0 0 16px 0;
    padding: 0;
}


.hero h1 {
    font-family: 'Lora', serif;
    font-size: 3.3rem;
    font-weight: 500;
    line-height: 130%;
    letter-spacing: -2px;
    margin: 0 0 30px 0;
    padding: 0 0 50px;
    min-height: 245px;
    position: relative;
}

.hero h1 span {
    display: block;
    margin-bottom: 12px;
}

.hero h1 span.strikeout {
    position: relative;
    width: fit-content;
}

.hero h1 span.strikeout::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    left: 0;
    top: 57%;
    transform: translateY(-50%);
}

.callout {
    color: var(--primary-color);
    font-weight: bold;
    background-color: var(--maize);
    padding: 2px 15px;
    display: block;
    margin: 0 auto;
    width: fit-content;
    font-family: 'Handlee', cursive;
    letter-spacing: 1px;
}

.hero .callout {
    font-size: 2rem;
    line-height: 2em;
    position: absolute;
    bottom: -22px;
    border: 3px solid #fff;
    left: 50%;
    margin-left: -35%;
    transform: rotate(-4deg);
}


.hero .content {
    flex-shrink: 0;
    order: 2;
    animation: scaleUp 1000ms linear 1 normal forwards;
    animation-delay: 200ms;
    opacity: 0;
}

.hero h2,
.hero h1 {
    line-height: 110%;
    padding-right: 164px;
}

.hero .heroImage {
    background-image: url('/images/home-hero-mobile.png');
    background-position: bottom right;
    background-repeat: no-repeat;
    width: 375px;
    height: 380px;
    position: absolute;
    right: 0;
    top: 10%;
    background-size: contain;
}

.hero .heroImage img,
.hero .heroImage svg {
    display: none;
}

.hero .signup {
    text-align: center;
    padding-top: 20px;
}

.hero .signup p {
    font-size: 1.9rem;
}

.hero .signup h3 {
    color: var(--primary-color);
    font-size: 2.6rem;
    font-weight: 500;
    margin: 0 0 6px;
}

.hero .signup strong.title {
    font-weight: 800;
    font-size: 2.6rem;
    color: var(--primary-color);
}

.hero .signup .tagline {
    font-size: 1.3rem;
    margin: 0 0 1em;
}

.hero .signup form {
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    padding-left: 20px;
    display: inline-block;
    letter-spacing: -1px;
    display: flex;
    width: fit-content;
    margin: auto;
}

.hero .signup form input {
    border: none;
    font-size: 1.4rem;
}

/* remove border on selection of input */
.hero .signup form input:focus {
    outline: none;
}

.hero .signup form button {
    background-color: var(--primary-color);
    min-width: 120px;
    height: 36px;
    color: #fff;
    border: none;
    font-size: 1.3rem;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
}

.hero .signup form button:hover {
    background-color: var(--maize);
    color: var(--primary-color);
    transition: all 0.5s ease;
}

.hero .signup form button:disabled {
    opacity: 0.5;
    background-color: var(--maize);
    color: var(--primary-color);
}

.hero .signup form .hidden {
    display: none;
}

.hero .signup form .success {
    font-size: 2rem;
}

.hero .signup form .spinner {
    border: 3px solid black;
    border-top: 3px solid transparent;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    margin: auto;
    animation: spin 2s linear infinite;
}


@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes scaleUp {
    0% {
        transform: translate(0, 10px);
        opacity: 0
    }

    100% {
        transform: translate(0px, 0px);
        opacity: 1
    }
}

/* Responsive Styles */


@media (max-width: 500px) {


    .hero h1 {
        padding-right: 0px;
        min-height: unset;
        padding-bottom: 14px;
        font-size: 4.8rem;
        margin-bottom: 15px;
    }

    .heroImage {
        display: none;
    }
}


@media (min-width: 500px) {


    .hero h2,
    h2.callout {
        font-weight: 500;
        color: var(--primary-color);
        font-size: 1.8rem;
        letter-spacing: 1px;
        line-height: 3.8rem;
        margin: 0 0 10px 0;
        padding: 0;
    }

    .hero h1 {
        font-family: 'Lora', serif;
        font-size: 4.4rem;
        font-weight: 500;
        line-height: 125%;
        letter-spacing: -2px;
        margin: 0 0 30px 0;
        padding: 0;
        min-height: auto;
    }

    .hero h1 span {
        /* display: inline; */
        margin-bottom: 0;

    }

    .hero .heroImage {
        width: 100%;
        max-width: 400px;
        order: 1;
        margin-bottom: 20px;
        text-align: center;
        background: none;
        position: relative;
        height: auto;
    }

    .hero .heroImage img,
    .hero .heroImage svg {
        width: 100%;
        display: block;
    }


}


@media (min-width: 1024px) {
    section.hero {
        padding: 60px 90px 0px 90px;
        display: flex;
        flex-direction: row;
        gap: 80px;
        align-items: flex-start;
    }

    .hero .content {
        order: 1;

        padding-top: 80px;
    }

    .hero .heroImage {
        width: 100%;
        max-width: 500px;
        min-width: 365px;
        margin-bottom: -20px;
    }

    .hero h1 {
        font-size: 5.4rem;
    }

    .hero .callout {
        bottom: -34px;
    }

    .hero .signup {
        text-align: left;
    }

    .hero .signup form {
        margin: 0;
    }
}

@media (min-width: 1330px) {

    .hero .callout {
        bottom: -30px;
    }


    section.hero {
        padding: 60px 90px 0px 90px;
    }
}


/* - Trusted By Brands  --------------------------------------------------------- */

.waveBG {
    background: url('/images/bottomWave.png') left bottom no-repeat;
    background-size: contain;
    background-color: var(--greyfill);
}

.waveBG .content {
    background: url('/images/topWave.svg') left top no-repeat;
}

section.leadingbrands {
    padding: 0;
    text-align: center;

}


.leadingbrands .content {
    padding: 80px 20px;
}

.leadingbrands h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #797879;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 60px;
}

.leadingbrands .brands {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    opacity: 0.5;
    max-width: 1130px;
    margin: 30px auto;
}

.leadingbrands .brands img {
    width: 23%;
    max-width: 120px;
}

/* Responsive Styles */
@media (max-width: 500px) {

    .leadingbrands .content {
        padding: 60px 20px;
    }
}

@media (min-width: 768px) {

    .leadingbrands .brands {
        gap: 50px;
        width: auto;
    }

    .leadingbrands .content {
        padding: 80px 60px;
    }


    .leadingbrands .brands img {
        width: 11%;
    }
}

/* - Local Marketing was never this easy  --------------------------------------------------------- */
section.localMarketing {
    text-align: center;
    padding: 60px 0 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.localMarketing h1 {
    font-family: 'Lora', serif;
    font-size: 4rem;
    font-weight: 500;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
    margin: 0 32px 20px;
    max-width: 1000px;
}

.localMarketing h1 span {
    position: relative;
    display: inline-block;
}

.localMarketing h1 s {
    display: block;
    margin: 30px 0 0;
}

.localMarketing h1 em {
    font-size: 3rem;
    font-weight: normal;
    position: absolute;
    top: 0px;
    min-width: 230px;
    right: -40px;
    color: var(--primary-color);
}

.localMarketing h1 em::after {
    content: '^';
    position: absolute;
    left: 48%;
    color: var(--primary-color);
    bottom: -30px;
}

.localMarketing p.callout,
.trustedPartner p.callout {
    font-size: 2.4rem;
    background-color: var(--maize-muted);
    padding: 5px 15px;
    display: block;
    margin: 0 auto;
    width: fit-content;
    max-width: 70%;
}

.localMarketing .transition_to_uplocal .callout {
    font-family: 'Lora', sans-serif;
    color: var(--text-primary);
    font-weight: 500;
    /* font-size: 3rem; */
}

span.brandname {
    color: var(--primary-color);
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}

.transition_to_uplocal h1 {
    margin-bottom: 16px;
}

.localMarketing .tag-container {
    transform: rotate(-1.5deg);
    margin: 50px 0 60px;
    overflow: hidden;
}

.localMarketing a {
    text-decoration: none;
    font-size: 1.8rem;
}

div.line-1,
.line-2 {
    animation: tagScroll 30s linear forwards infinite;
    display: flex;
    column-gap: 16px;
    width: fit-content;
}

div.line-2 {
    animation-direction: reverse;
}


.localMarketing .tags {
    display: flex;
    /* flex-wrap: wrap; */
    justify-content: flex-start;
    gap: 16px;
    margin-bottom: 16px;
    /* width: fit-content; */
}


@keyframes tagScroll {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }

}

@keyframes tagScroll-reverse {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }

}


.localMarketing .tags .tag {
    color: #fff;
    padding: 12px 16px 12px 16px;
    border-radius: 12px;
    font-size: 1.5rem;
    font-weight: 600;
    box-shadow: 3px 2px 0 rgba(0, 0, 0, 0.1);
    /* background: url(images/checkmark-circle.svg) 18px center no-repeat var(--primary-muted); */
    background: var(--primary-muted);
    white-space: nowrap;
}

.localMarketing #transition_tags {
    margin-bottom: 48px;
    margin-top: 48px;
    max-width: 1400px;
}

.localMarketing #transition_tags .tags {
    
}

.localMarketing #transition_tags .tags .tag {
    background: #797879;
}

.localMarketing h3.handwritten {
    font-size: 3.4rem;
    font-weight: normal;
    color: var(--primary-color);
    margin: 0 30px 30px;
}

.localMarketing h3.handwritten strong {
    /* font-family: 'Inter', sans-serif; */
    font-size: 4rem;
    /* font-weight: 500; */
}


.localMarketing .bullet_points {
    display: flex;
    justify-content: space-around;
    max-width: 900px;
    margin: 0 auto;
    text-transform: uppercase;
    font-size: 1.8rem;
    font-weight: 600;
    flex-wrap: wrap;
}

.localMarketing .bullet_points p {
    background: url(/images/favicon-32x32.png) 0 0 no-repeat;
    background-size: contain;
    padding-left: 28px;
    margin: 0.75em auto;
}


/* Responsive Styles */

@media (min-width: 768px) {
    section.localMarketing {
        padding: 90px 0 0px;
    }


    .localMarketing h1 s {
        display: inline;
        margin: 0;
    }

    .localMarketing h1 em {
        top: -40px;
        right: -30%;
        min-width: 300px;
    }

    .localMarketing .tag-container {
        margin: 50px 0 150px;
    }


    .localMarketing .tags {
        gap: 20px;
        /* animation: none; */
        /* flex-wrap: wrap; */
        justify-content: center;
    }

    .localMarketing .tags .tag {
        padding: 18px 22px 18px 22px;
        border-radius: 17px;
        font-size: 1.4rem;
        width: fit-content;
    }

    .localMarketing .bullet_points {
        font-size: 1.6rem;
    }
}


@media (min-width: 1024px) {
    section.localMarketing {
        padding: 120px 0 60px;
    }
}

section.accelerateDemand {
    background: url('/images/topWave.svg') left top no-repeat, linear-gradient(180deg, rgba(242, 241, 243, 1) 0%, rgba(255, 255, 255, 1) 50%);
    padding-top: 60px;
}


/* - Feature Sections --------------------------------------------------------- */


section header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

section header h3 {
    font-weight: 500;
    color: var(--primary-color);
    font-size: 1.6rem;
    letter-spacing: 1px;
    line-height: 3.8rem;
    margin: 0 0 0px 0;
    padding: 0;
    text-transform: uppercase;
}

section header h2 {
    font-family: 'Lora', serif;
    font-size: 4rem;
    font-weight: 500;
    line-height: 134%;
    letter-spacing: -1px;
    margin: 0 0 20px 0;
    padding: 0;
    max-width: 30ch;
}

section header h2 strong {
    background-color: var(--maize-muted);
    padding: 5px 15px;
    display: block;
}


.features {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 0 10px;
}


.feature {
    display: flex;
    gap: 50px;
    margin: 20px 10px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
}

.feature img,
.feature svg {
    width: 100%;
    max-width: 400px;
    max-height: 400px;
}

.feature h4 {
    font-weight: 500;
    color: var(--primary-color);
    font-size: 1.6rem;
    letter-spacing: 1px;
    margin: 0 0 5px 0;
    padding: 0;
    text-transform: uppercase;
}

.feature h3 {
    font-family: 'Lora', serif;
    font-size: 3.2rem;
    font-weight: 400;
    line-height: 145%;
    letter-spacing: -1px;
    margin: 0 0 10px 0;
    padding: 0;
}


.feature p,
.feature ul {
    font-size: 1.6rem;
    line-height: 150%;
    margin: 0 0 10px;
}

.feature ul {
    padding: 0 0 0 30px;
    margin: 0 0 20px;
}

.feature ul li {
    margin-bottom: 5px;
}

.feature a.button {
    text-decoration: none;
    background-color: var(--primary-muted);
    font-size: 1.4rem;
    border-radius: 14px;
    padding: 12px 18px;
    font-weight: 500;
    margin-top: 20px;
    display: inline-block;
}

.feature a.button:hover {
    background-color: var(--primary-color);
    color: #fff;
    transition: all 0.5s ease;

}

/* Comprehensive Support ------------- */

.trustedPartner {
    margin: 60px auto;
    max-width: 1400px;
}

.trustedPartner header h2 {
    max-width: 900px;
}

.trustedPartner .features {
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0 30px;
    justify-content: space-around;
    gap: 30px;
    padding: 0 20px 120px;
}

.trustedPartner .feature {
    margin: 0;
}

.trustedPartner .feature p {
    line-height: 160%;
}

.trustedPartner .feature p strong {
    font-weight: 600;
}


.trustedPartner .feature h3 {
    color: var(--primary-color);
}

/* For Screen Sizes > 1024 */

@media (min-width: 768px) {
    section header h2 {
        margin: 0 0 10px 0;

    }

    .testimonials header h2 {
        max-width: 700px;
    }

    section header h2 strong {
        display: inline;
    }


    .feature {
        margin: 30px 10px;
    }

    .trustedPartner .features {
        flex-direction: row;
        flex-wrap: wrap;
        margin: 0 30px;
        justify-content: space-around;
        gap: 30px;
        padding-top: 30px;
    }

    .trustedPartner .feature {
        max-width: 30%;
        margin: 0;
        align-self: flex-start;
    }

}

@media (min-width: 1024px) {
    section header {
        margin-bottom: 30px;
    }

    .features {
        margin: 0 30px;
        gap: 60px;
    }

    .feature {
        margin: 0 40px;
        flex-wrap: nowrap;
    }

    .feature img {
        width: 100%;
        padding: 30px;
    }

    .feature-right .text {
        order: 1;
    }

    .feature-right img,
    .feature-right svg {
        order: 2;
    }


    .feature .text {
        min-width: 300px;
    }


    section.accelerateDemand,
    .elevateExperience,
    .growTogether,
    .footerSignUp {
        padding: 90px 60px 60px;
    }
}


.accelerateDemand .content,
.elevateExperience,
.growTogether,
.footerSignUp {
    padding: 30px 30px 30px;
    max-width: 1400px;
    margin: 0 auto;
}


.hyperLocal .content {
    padding: 60px 40px 20px;
    margin-bottom: 30px;
}

.hyperLocal ul {
    display: grid;
    grid-template-columns: 1fr;
    flex-wrap: wrap;
    justify-content: space-around;
    row-gap: 20px;
    padding: 0;
}

.hyperLocal ul li {
    list-style: none;
    background: url('/images/checkmark-circle-purple.png') 0 0 no-repeat;
    padding: 0 0 0 35px;
    text-align: left;
    text-transform: uppercase;
    font-size: 1.2rem;
    line-height: 3rem;
    letter-spacing: 2px;
}

.hyperLocal .cards {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin: 40px auto 30px;
    max-width: 1400px;
}

.hyperLocal .cards .card {
    border: 1px solid #00000070;
    border-radius: 20px;
    padding: 20px 10px 30px;
    overflow: hidden;
    animation-name: scaleOut;
    background-color: #fff;
    box-shadow: 3px 5px 0 rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 20px;
}

@keyframes scaleIn {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.02);
        opacity: 1;
    }
}

@keyframes scaleOut {
    0% {
        transform: scale(1.02);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.hyperLocal .cards .card:hover {
    animation: scaleIn 0.3s linear 1 normal forwards;
}

.hyperLocal .cards .card img {
    margin-bottom: 10px;
    max-height: 150px;
    max-width: 40%;
}

.hyperLocal .cards .card h4 {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.hyperLocal .cards .card p {
    font-size: 1.6rem;
    line-height: 160%;
    padding: 0;
}

.hyperLocal .partners {
    font-size: 2.2rem;
    text-align: center;
    opacity: 0.7;
}

.hyperLocal .partners img {
    width: 100%;
}

/* Responsive Styles */
@media (min-width: 600px) {
    .hyperLocal ul {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 20px;
    }

    .accelerateDemand,
    .elevateExperience,
    .growTogether,
    .footerSignUp {
        padding: 60px 30px 60px;
    }


    .hyperLocal .content {
        padding: 60px 40px;
    }
}

@media (min-width: 768px) {

    .hyperLocal .content {
        padding: 90px 40px 60px;
    }

    .hyperLocal .cards .card {
        max-width: 300px;
        display: block;
        text-align: center;
    }

    .hyperLocal .cards .card img {
        width: 100%;
        margin-bottom: 10px;
        max-height: 250px;
        max-width: 100%;
    }

    .hyperLocal .cards .card h4 {
        text-align: center;
    }

    .hyperLocal .cards .card p {
        font-size: 1.4rem;
        padding: 0 20px;
        text-align: left;
    }

}

@media (min-width: 1024px) {
    .hyperLocal ul {
        column-gap: 40px;
        grid-template-columns: repeat(3, 1fr);
        /* padding: 0 120px; */
    }

    .hyperLocal .content {
        padding: 120px 60px;
    }


}


/* - Testimonials --------------------------------------------------------- */
section.testimonials {
    background-color: var(--primary-muted);
    margin: 20px 0;
}

.testimonials .content {
    padding: 60px 30px;
}

.testimonials header h3,
.testimonials header h2,
.testimonials .brandname {
    color: #fff;
}

.testimonial-cards {
    display: flex;
    justify-content: center;
    gap: 50px;
    row-gap: 60px;
    flex-wrap: wrap;
}

.testimonial-card .quote {
    border: 1px solid #000;
    border-radius: 20px;
    padding: 40px 35px;
    background-color: #fff;
    box-shadow: 4px 6px 0 rgba(0, 0, 0, 0.4);
    margin-bottom: 30px;
}

.testimonial-card .quote h5 {
    font-size: 2.3rem;
    line-height: 130%;
    font-family: 'Lora', serif;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.testimonial-card .quote p {
    margin: 0;
    font-style: italic;
    font-size: 1.6rem;
    line-height: 160%;
}

.testimonial-card .source {
    display: flex;
    gap: 20px;
    color: #fff;
    align-items: center;
}

.testimonial-card .source img {
    display: block;
    width: 84px;
    height: 84px;
}

.testimonial-cards .source h6 {
    font-family: 'Lora', serif;
    font-size: 1.8rem;
    margin: 0 0 5px;
}

.testimonial-cards .source p {
    font-size: 1.4rem;
    margin: 0;
}

/* Responsive Styles */
@media (min-width: 768px) {

    .testimonials .content {
        padding: 80px 30px;
    }
}

@media (min-width: 1024px) {
    .testimonials .content {
        padding: 120px 60px;
    }

    .testimonial-card .quote {
        max-width: 525px;
        width: auto;
        flex-grow: 1;
    }

    .testimonial-cards {
        flex-wrap: nowrap;
        gap: 50px;
    }

    .testimonial-card {
        max-width: 40%;
        display: flex;
        flex-direction: column;
    }
}


/* - Success Stories --------------------------------------------------------- */
section.successStories {
    background-color: var(--greyfill);
}

section.successStories .content {
    padding: 90px 20px 120px;
    margin: 0 auto;
}

.successStories .slider {
    display: flex;
    gap: 30px;
    align-items: center;
    margin: 30px auto;
    flex-wrap: wrap;
    max-width: 1200px;
    position: relative;
}

.slider * {
    box-sizing: border-box;
}

.successStories .slider-nav {
    font-size: 2rem;
    font-weight: 600;
    color: #666;
    background-color: #fff;
    display: block;
    border-radius: 50%;
    height: 40px;
    text-align: center;
    width: 40px;
    line-height: 36px;
    box-shadow: 4px 6px 2px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    flex-shrink: 0;

}

.slider-content {
    width: 100%;
    overflow: hidden;
    display: flex;
    gap: 0px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    justify-content: space-evenly;
    box-shadow: 4px 6px 2px rgba(0, 0, 0, 0.06);
    border-radius: 18px;
    background-color: #fff;
}


.slider-content::-webkit-scrollbar {
    width: 0px;
    height: 0px;
}


.slider-content::-webkit-scrollbar-track {
    background: transparent;
}

.successStories .slider .slide {
    width: 100%;
    flex-shrink: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    background-color: #fff;
    align-items: center;
    padding: 50px 30px;
    overflow: hidden;
}


.successStories .slider .slide .highlights {
    font-size: 1.6rem;
    line-height: 150%;
    /* height: 100%; */
    border-top: 1px solid #A9A9A9;
    padding-top: 1.5em;
    width: 100%;
}

.successStories .slider .slide .highlights h4 {
    text-align: center;
    margin-top: 0;
    padding-bottom: 0.5em;
}

.successStories .slider .slide .highlights strong {
    color: var(--primary-color);
}


.successStories .slider .slide .highlights ul {
    padding: 0 0 0 10px;
}

.successStories .slider .slide .highlights ul li {
    margin-bottom: 10px;
}

.successStories .slider .slide .quote img.logo {
    max-width: 80%;
    padding: 2em 0 1em;
}


.successStories .slider .slide p {
    font-size: 1.5rem;
    line-height: 160%;
}

.successStories .slider .slide p.paragraph_1 {
    font-size: 1.8rem;
    line-height: 150%;
}

.successStories .slider .slide p.paragraph_2 {
    margin-right: 155px;
    position: relative;
}

.successStories .slider .slide .success_stories_creative {
    position: absolute;
    right: -230px;
    top: 0;
    transform: rotate(-6deg);
    opacity: 0.9;
    height: 100%;
    max-height: 300px;
}

.successStories .slider-pagination {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 10px;
    height: 20px;
    width: 100%;
}

.successStories .slider-pagination span.dot {
    color: #D9D9D9;
    font-size: 6rem;
    line-height: 20px;
    text-decoration: none;
    cursor: pointer;
}

.successStories .slider-pagination span.active {
    color: #B0AEAE;
}

/* Responsive Styles */

@media (min-width: 500px) and (max-width: 768px) {
    .successStories .slider .slide .success_stories_creative {
        height: 200px;
        right: -180px;
        max-height: unset;
    }
}


@media (max-width: 768px) {
    .slider .slider-nav {
        position: absolute;
        bottom: -70px;
        border: 2px solid var(--greyfill);
    }

    .nav-left {
        left: 50px;

    }

    .nav-right {
        right: 50px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {


    .slider .slider-nav {
        position: absolute;
        top: 50%;
        border: 2px solid var(--greyfill);
    }

    .nav-left {
        left: -20px;

    }

    .nav-right {
        right: -20px;
    }

    .successStories .slider .slide .quote p {
        margin-right: 220px;
    }

    .successStories .slider .slide .success_stories_creative {
        height: 200px;
        right: -180px;
        top: -80px;
    }
}

@media (min-width: 1024px) {
    section.successStories .content {
        padding: 90px 60px 120px;
    }

    .successStories .slider .slide .highlights ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        align-items: flex-start;
    }

    .successStories .slider .slide .highlights ul li {
        margin-right: 20px;
        min-width: 40%;
        max-width: 40%;
    }

    .successStories .slider .slide .quote {
        max-width: unset;
        overflow: hidden;
    }

    .successStories .slider .slide {
        flex-wrap: nowrap;
        padding: 50px 60px;
        flex-direction: column;
        row-gap: 20px;
    }

    .successStories .slider .slide p.paragraph_1 {
        padding-right: 350px;
    }

    .successStories .slider .slide p.paragraph_2 {
        padding-right: 350px;
        margin-right: 0;
        padding-bottom: 20px;
        min-height: 180px;
    }

    .successStories .slider .slide .success_stories_creative {
        transform: none;
        left: unset;
        max-width: 250px;
        top: -120px;
        height: auto;
        right: 40px;
        width: 100%;
    }

    .successStories .slider .slide .highlights {

        min-width: 350px;
    }

    .successStories .slider {
        flex-wrap: nowrap;
    }
}


/* - Footer Sign Up --------------------------------------------------------- */

section.footerSignUp {
    display: flex;
    gap: 0px;
    padding: 60px 30px 0px;
    flex-wrap: wrap;
    text-align: center;
    align-items: end;
    justify-content: center;
}

.footerSignUp img {
    width: 100%;
    max-width: 500px;
    order: 2;
}

.footerSignUp h1 {
    font-family: 'Lora', serif;
    font-size: 4rem;
    font-weight: 600;
    letter-spacing: -1px;
    line-height: 110%;
    text-align: center;
}

.footerSignUp iframe {
    width: 100%;
    max-width: 500px;
}

/* Responsive Styles */


@media (min-width: 768px) {
    section.footerSignUp {
        /* text-align: left; */
        gap: 80px;
        padding: 60px 60px 0;
        flex-wrap: nowrap;
    }

    .footerSignUp h1 {
        font-size: 3.6rem;
        line-height: 124%;
        padding: 0;
    }

    .footerSignUp a.button {
        font-size: 1.4rem;
    }

    .footerSignUp .cta {
        padding: 0;
        order: 2;
    }

    .footerSignUp img {
        width: auto;
        order: 1;
        max-width: 350px;
    }

}

@media (min-width: 1024px) {

    .footerSignUp img {
        width: auto;
        order: 1;
        max-width: 500px;
    }
}

/* - Footer  --------------------------------------------------------- */

footer {
    background-color: var(--primary-color);
    color: #fff;

}

footer .content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

footer a:link,
footer a:visited {
    color: #fff;

}

footer .tagline {
    background-color: var(--primary-muted);
    font-size: 1.4rem;
    padding: 15px 25px;

}

footer .tagline .content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

footer .accreditation {
    margin-left: auto;
    width: 50%;
    display: flex;
    justify-content: space-between;
    max-width: 150px;
}

footer .accreditation img {
    height: 30px;
}

.footer-menu {
    display: flex;
    justify-content: space-between;
    margin: 0px 10px;
    padding: 0 20px 20px;
    border-bottom: 1px solid #fdfcfc40;
    flex-direction: column;
}

.footer-links {
    padding-left: 0;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 10px;
}

.footer-links li {
    padding-left: 0px;
    padding-right: 10px;
}

.footer-links .title {
    list-style: none;
    text-indent: -18px;
    width: 100%;
    flex-shrink: 0;
}

.footer-links a {
    font-size: 1.4rem;
    line-height: 2.8rem;
}

.footer-links .title h5 {
    font-size: 1.6rem;
    margin: 25px 0 5px;
}

footer .legal {
    padding: 10px 20px 30px;
    font-size: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.legal img {
    width: 24px;
    height: 24px;

}

.location {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Responsive Styles */


@media (min-width: 768px) {

    footer .accreditation {
        margin-left: auto;
        width: auto;
        max-width: unset;
    }

    .footer-menu {
        flex-direction: row;
        margin: 0px 30px;
        padding: 0 40px 20px;
        max-width: 1400px;
        margin: 0 auto;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }

    footer .tagline {
        font-size: 1.6rem;
        padding: 15px 30px;
    }

    footer .accreditation img {
        height: 40px;
        margin: 0 10px;
    }

    footer .legal {
        padding: 10px 20px 30px;
        font-size: 1.3rem;
        margin: 0 auto;
        max-width: 1400px;
    }


    .footer-links a {
        font-size: 1.3rem;
    }

    .footer-links .title h5 {
        font-size: 1.4rem;
        margin: 15px 0 5px;
    }
}