*,
::after,
::before {
    box-sizing: border-box
}

html {
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    text-size-adjust: none
}

blockquote,
body,
dd,
dl,
figure,
h1,
h2,
h3,
h4,
p {
    margin-block-end: 0;
    line-height: 1.5;
}

ol[role=list],
ul[role=list] {
    list-style: none
}

body {
    min-height: 100vh;
    line-height: 1.5;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4 {
    text-wrap: balance
}

a:not([class]) {
    text-decoration-skip-ink: auto;
    color: currentColor
}

img,
picture {
    max-width: 100%;
    display: block
}

button,
input,
select,
textarea {
    font-family: inherit;
    font-size: inherit
}

textarea:not([rows]) {
    min-height: 10em
}

:target {
    scroll-margin-block: 5ex
}

/* Fonts */
@font-face {
    font-family: 'Gotham';
    font-style: normal;
    font-weight: normal;
    font-display: swap;
    src: url('https://go.crowncastle.com/rs/343-LQR-650/images/Gotham-Book-fix.woff') format('woff'),
        url('https://go.crowncastle.com/rs/343-LQR-650/images/Gotham-Book-fix.woff2') format('woff2'),
        url('https://go.crowncastle.com/rs/343-LQR-650/images/Gotham-Book-fix.ttf') format('truetype');
}

@font-face {
    font-family: 'Gotham';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('https://go.crowncastle.com/rs/343-LQR-650/images/Gotham-Medium.woff') format('woff');
}

@font-face {
    font-family: 'Gotham';
    font-style: normal;
    font-weight: bold;
    font-display: swap;
    src: url('https://go.crowncastle.com/rs/343-LQR-650/images/Gotham-Bold.woff') format('woff');
}

body {
    font-family: 'Gotham', sans-serif;
    font-weight: normal;
}

h1,
h2,
h3,
h4,
p,
div,
span {
    font-family: 'Gotham', sans-serif;
}

h1,
h2,
h3,
h4,
p,
div {
    line-height: 1.5;
}

h2,
h3,
h4 {
    font-weight: bold;
    color: #520B90;
}

h1>span,
h2>span,
h3>span,
h4>span {
    display: block;
}


/* Global & Containers */
.container {
    display: block;
    width: calc(100% - 40px);
    max-width: 1360px;
    margin: 0 auto;
}

@media screen and (min-width: 1550px) {
    .container {
        max-width: 1400px;
    }
}


/* Headings & Text */
.heading {
    color: #520B90;
    font-size: 27px;
    margin-bottom: 40px;
}

.heading.smaller {
    font-size: 18px;
    font-weight: normal;
}

@media screen and (min-width: 768px) {
    .heading {
        font-size: 52px;
        margin-bottom: 50px;
    }

    .heading.constrain {
        width: 70%;
    }

    .heading.constrain-wide {
        width: 65%;
    }

    .heading.smaller {
        font-size: 32px;
    }
}

@media screen and (min-width: 1024px) {
    .heading.constrain {
        width: 50%;
    }
}


/* CTA Form */
.cc-cta-form {
    display: flex;
    flex-direction: column;
    padding: 55px 0;
}

.cc-cta-form .cc-cta-form-col .form-grid-wrap {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    gap: 0px 0px;
    grid-template-areas: "form";
    position: relative;
}

.cc-cta-form .cc-cta-form-col h2,
h3 {
    margin: 0;
}

.cc-cta-form .cc-cta-form-col h2 {
    font-size: 24px;
}

.cc-cta-form .cc-cta-form-col h3 {
    font-weight: normal;
    font-size: 22px;
    margin-bottom: 20px;
}

.cc-cta-form .cc-cta-form-col p {
    font-size: 16px;
}

@media screen and (min-width: 768px) {
    .cc-cta-form {
        flex-direction: row;
        padding: 110px 0;
    }

    .cc-cta-form .cc-cta-form-col {
        width: 50%;
    }

    .cc-cta-form .cc-cta-form-col:first-child,
    .cc-cta-form .cc-cta-form-col:nth-child(3) {
        padding-right: 50px;
    }

    .cc-cta-form .cc-cta-form-col h2 {
        font-size: 52px;
    }

    .cc-cta-form .cc-cta-form-col h3 {
        font-size: 30px;
        margin-bottom: 45px;
    }

    .cc-cta-form .cc-cta-form-col p {
        font-size: 32px;
    }
}


/* 1/2 Form */
.cc-half-form {
    display: flex;
    flex-direction: column;
    margin-bottom: 60px;
}

.cc-half-form .cc-half-content .form-grid-wrap {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    gap: 0px 0px;
    grid-template-areas: "form";
    position: relative;
}

.cc-half-form .cc-half-content h2 {
    color: #000;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 35px;
}

@media screen and (min-width: 768px) {
    .cc-half-form {
        margin-top: 50px;
        flex-direction: row;
        margin-bottom: 100px;
    }

    .cc-half-form .cc-half-content {
        width: 50%;
    }

    .cc-half-form .cc-half-content:first-child {
        padding-right: 60px;
    }

    .cc-half-form .cc-half-content h2 {
        font-size: 42px;
        margin: 0;
    }
}


/* Full Width Image */
.cc-img {
    display: block;
    width: 100%;
    height: auto;
}

.cc-img .mktoGen.mktoImg,
.cc-img .mktoImg {
    display: block;
    width: 100%;
}

.cc-img img {
    display: block;
    width: 100%;
    height: auto;
}


/* 1/3 Cards */
.cc-three-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    gap: 20px;
    margin-bottom: 48px;
}

.cc-three-card .cc-card {
    position: relative;
    width: 100%;
    padding: 20px;
    background: #fff;
    color: #000;
    border-radius: 4px;
}

.cc-three-card .cc-card h2,
.cc-three-card .cc-card h3,
.cc-three-card .cc-card h4 {
    color: #520B90;
    margin: 0;
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 12px;
}

.cc-three-card .cc-card h2 span,
.cc-three-card .cc-card h3 span,
.cc-three-card .cc-card h4 span {
    display: inline-block;
    font-size: 18px;
}

.cc-three-card .cc-card h2.smaller,
.cc-three-card .cc-card h3.smaller,
.cc-three-card .cc-card h4.smaller {
    font-size: 18px;
}

#contentType-One .cc-three-card .cc-card h2,
#contentType-One .cc-three-card .cc-card h3,
#contentType-One .cc-three-card .cc-card h4 {
    font-size: 18px;
}

#contentType-One-S .cc-three-card .cc-card h2,
#contentType-One-S .cc-three-card .cc-card h3,
#contentType-One-S .cc-three-card .cc-card h4 {
    font-size: 18px;
}

.cc-three-card .cc-card img {
    display: block;
    width: 100%;
    max-width: 48px;
    height: auto;
    margin-bottom: 10px;
}

.cc-three-card .cc-card p {
    font-size: 16px;
}

/* .cc-three-card.gradient-bg .cc-card {
    background: rgb(142,39,143);
    background: linear-gradient(180deg, rgba(142,39,143,1) 0%, rgba(82,11,144,1) 100%);
    background-attachment: fixed;
    color: #fff;
}

.cc-three-card.gradient-bg .cc-card h2,
.cc-three-card.gradient-bg .cc-card h3,
.cc-three-card.gradient-bg .cc-card h4 {
    color: #fff;
} */

@media screen and (min-width: 768px) {
    .cc-three-card {
        flex-direction: row;
        margin-bottom: 70px;
    }

    .cc-three-card .cc-card {
        width: 33.333%;
        padding: 28px 32px 28px 28px;
        border-radius: 10px;
    }

    .cc-three-card .cc-card h2,
    .cc-three-card .cc-card h3,
    .cc-three-card .cc-card h4 {
        font-size: 64px;
        margin-bottom: 22px;
    }

    .cc-three-card .cc-card h2 span,
    .cc-three-card .cc-card h3 span,
    .cc-three-card .cc-card h4 span {
        font-size: 20px;
    }

    .cc-three-card .cc-card h2.smaller,
    .cc-three-card .cc-card h3.smaller,
    .cc-three-card .cc-card h4.smaller {
        font-size: 21px;
    }

    #contentType-One .cc-three-card .cc-card h2,
    #contentType-One .cc-three-card .cc-card h3,
    #contentType-One .cc-three-card .cc-card h4 {
        font-size: 21px;
    }

    #contentType-One-S .cc-three-card .cc-card h2,
    #contentType-One-S .cc-three-card .cc-card h3,
    #contentType-One-S .cc-three-card .cc-card h4 {
        font-size: 21px;
    }

    .cc-three-card .cc-card img {
        max-width: 90px;
    }

    .cc-three-card .cc-card p {
        font-size: clamp(16px, 1.25vw, 20px);
    }

    .cc-three-card.gradient-bg .cc-card {
        /* background: linear-gradient(90deg, rgba(142,39,143,1) 0%, rgba(82,11,144,1) 100%); */

        /* Animate Background Gradient */
        /* background: linear-gradient(90deg, rgba(142,39,143,1) 0%, rgba(82,11,144,1) 50%, rgba(142,39,143,1) 100%);
        background-attachment: fixed; 
        background-size: 200%;
        animation: linearBackgroundGradientAnimation 15s linear infinite; */
    }
}


/* Hero */
.cc-hero,
.cc-hero-text,
.img-hero {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.btm-spacing {
    margin-bottom: 60px;
}

.cc-hero,
.img-hero {
    min-height: 100vh;
    overflow: hidden;
}

.cc-hero .cc-header,
.cc-hero-text .cc-header,
.img-hero .cc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
}

.cc-hero-text .cc-header {
    position: relative;
}

.cc-hero .cc-header .cc-logo,
.cc-hero-text .cc-header .cc-logo,
.img-hero .cc-header .cc-logo {
    display: block;
    width: 100%;
    max-width: 125px;
}

.cc-hero .cc-header .cc-logo svg,
.cc-hero-text .cc-header .cc-logo svg,
.img-hero .cc-header .cc-logo svg,
.cc-hero .cc-header .cc-logo img,
.cc-hero-text .cc-header .cc-logo img,
.img-hero .cc-header .cc-logo img {
    display: block;
    width: 100%;
    height: auto;
}

.cc-hero .cc-header .cc-phone,
.cc-hero-text .cc-header .cc-phone,
.img-hero .cc-header .cc-phone {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.cc-hero .cc-header .cc-phone .cc-phone-icon,
.cc-hero-text .cc-header .cc-phone .cc-phone-icon,
.img-hero .cc-header .cc-phone .cc-phone-icon {
    display: flex;
    width: 100%;
    max-width: 21px;
}

.cc-hero .cc-header .cc-phone .cc-phone-icon svg,
.cc-hero-text .cc-header .cc-phone .cc-phone-icon svg,
.img-hero .cc-header .cc-phone .cc-phone-icon svg {
    display: block;
    width: 100%;
    height: auto;
}

.cc-hero .cc-header .cc-phone .cc-phone-number,
.cc-hero-text .cc-header .cc-phone .cc-phone-number,
.img-hero .cc-header .cc-phone .cc-phone-number {
    display: none;
}

.cc-phone>span:not(.cc-phone-icon) {
    display: none;
}

.cc-hero .cc-hero-background {
    position: absolute;
    width: 100%;
    max-width: 1600px;
    height: 100%;
    top: 0;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    z-index: 1;
    margin-top: 80px;
}

.cc-hero-background:before {
    content: '';
    display: block;
    width: 100%;
    height: 50vw;
    background: #000;
    position: absolute;
    top: 66vw;
    z-index: 4;
}

.cc-hero-background-circle {
    display: block;
    position: absolute;
    z-index: 3;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    border-radius: 50%;
    top: 4.75vw;
    width: 86.5vw;
    height: 86.5vw;
    max-width: 1384px;
    max-height: 1384px;
    transform-origin: center;
    animation: rotation 6s infinite linear;
}

.cc-hero-background-circle:after {
    content: " ";
    display: block;
    width: 81.5vw;
    height: 81.5vw;
    max-width: 1304px;
    max-height: 1304px;
    background: #000;
    position: absolute;
    z-index: 4;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    border-radius: 50%;
    top: 2.5vw;
}

.cc-hero .cc-hero-background svg {
    display: block;
    width: 100%;
    height: auto;
}

.cc-hero-cta {
    text-align: center;
    z-index: 5;
    position: relative;
    margin-top: 35vw;
}

.cc-hero-cta h1 {
    font-weight: 500;
    font-size: clamp(16px, 5vw, 30px);
}

.cc-hero-cta h1 span {
    display: block;
}

.cc-hero-cta h2 {
    line-height: 1;
    position: relative;
    font-weight: 500;
    margin-top: 2vw;
    font-size: clamp(48px, 22vw, 132px);
    letter-spacing: -1vw;
}

.cc-hero-cta h2 span {
    display: inline-block !important;
}

.cc-hero-cta h2 span.countup {
    display: inline-block !important;
    width: 44vw;
    max-width: 267px;
}

.cc-hero-cta h2 span.mini {
    display: inline-block !important;
    font-size: clamp(16px, 4.5vw, 26px);
    letter-spacing: 0;
}

.cc-hero-cards {
    position: relative;
    z-index: 4;
    padding-top: 7vw;
    padding-bottom: 60px;
}

.cc-hero-cards .cc-three-card {
    margin-bottom: 0;
}

.cc-hero-cards .cc-three-card .cc-card h2,
.cc-hero-cards .cc-three-card .cc-card h3,
.cc-hero-cards .cc-three-card .cc-card h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

@media screen and (min-width: 480px) {
    .cc-hero-cta {
        margin-top: 28vw;
    }
}

@media screen and (min-width: 768px) {

    .cc-hero,
    .img-hero {
        min-height: 0;
        height: auto;
    }

    .cc-hero .cc-header,
    .cc-hero-text .cc-header,
    .img-hero .cc-header {
        padding-top: 44px;
    }

    .cc-hero .cc-header .cc-logo,
    .cc-hero-text .cc-header .cc-logo,
    .img-hero .cc-header .cc-logo {
        max-width: 163px;
    }

    .cc-hero .cc-header .cc-phone,
    .cc-hero-text .cc-header .cc-phone,
    .img-hero .cc-header .cc-phone {
        width: auto;
        height: auto;
        border-radius: 0;
        padding: 12px;
    }

    .cc-hero .cc-header .cc-phone .cc-phone-icon,
    .cc-hero-text .cc-header .cc-phone .cc-phone-icon,
    .img-hero .cc-header .cc-phone .cc-phone-icon {
        margin-right: 12px;
    }

    .cc-hero .cc-header .cc-phone .cc-phone-number,
    .cc-hero-text .cc-header .cc-phone .cc-phone-number,
    .img-hero .cc-header .cc-phone .cc-phone-number {
        display: flex;
    }

    .cc-phone>span,
    .cc-phone>span:not(.cc-phone-icon) {
        display: flex !important;
    }

    .cc-hero .cc-hero-background {
        margin-top: 0;
    }

    .cc-hero-background:before {
        display: none;
    }

    .cc-hero-cta {
        margin-top: 8vw;
        margin-bottom: 3vw;
    }

    .cc-hero-cta h1 {
        font-size: clamp(36px, 3.6vw, 56px);
    }

    .cc-hero-cta h2 {
        font-size: clamp(120px, 15vw, 240px);
        letter-spacing: -11px;
    }

    .cc-hero-cta h2 span {
        display: inline;
    }

    .cc-hero-cta h2 span.countup {
        width: 29.69vw;
        max-width: 475px;
    }

    .cc-hero-cta h2 span.mini {
        font-size: 28px;
    }

    .cc-hero-cards {
        padding-top: 0;
        padding-bottom: 3.5vw;
    }

    .cc-hero-cards .cc-three-card .cc-card h2,
    .cc-hero-cards .cc-three-card .cc-card h3,
    .cc-hero-cards .cc-three-card .cc-card h4 {
        font-size: clamp(16px, 1.25vw, 20px);
        margin-bottom: 50px;
        margin-bottom: min(40px, 3.5vw);
    }
}

@media screen and (min-width: 1024px) {
    .cc-hero {
        height: 69vw;
        aspect-ratio: 720 / 497;
        max-height: 938px;
        justify-content: space-evenly;
        margin-bottom: 100px;
    }

    .cc-hero-cta {
        margin: 0;
    }

    .cc-hero-cta h2 span.mini {
        margin-right: -74px;
    }

    .cc-hero-cards {
        padding: 0;
    }
}

@media screen and (min-width: 1260px) {
    .cc-hero-cta h2 {
        margin-top: 4vw;
    }
}

@media screen and (min-width: 1600px) {
    .cc-hero-background-circle {
        top: 76px;
    }

    .cc-hero-background-circle:after {
        top: 40px;
    }

    .cc-hero-cta h2 {
        margin-top: 80px;
    }

    .cc-hero-cta h2 span.countup {
        width: 475px;
    }
}

/* Text Hero */
.cc-hero-text .cc-hero-text_content {
    margin-top: 20px;
}

.cc-hero-text h1 {
    color: #fff;
    display: block;
    width: 100%;
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 30px;
}

.cc-hero-text h1.bigger {
    font-size: 24px;
}

.cc-hero-text .cc-three-card .cc-card h2 {
    font-size: clamp(40px, 9vw, 48px);
}

.cc-hero-text .hero-img {
    display: block;
}

.cc-hero-text .hero-img p {
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
}

.cc-hero-text .hero-img #map-hero-content-snippet-desktop,
.cc-hero-text .hero-img #map-hero-content-snippet-mobile {
    width: 100%;
}

.cc-hero-text .hero-img #mapImgDesktop,
.cc-hero-text .hero-img #mapImgMobile {
    display: block;
    width: 100%;
}

.cc-hero-text .hero-img img {
    display: block;
    width: 100%;
    height: auto;
}

.cc-hero-text .hero-img #map-hero-content-snippet-desktop,
.cc-hero-text .hero-img .img-desktop {
    display: none;
}

.cc-hero-text .hero-img .img-desktop img {
    object-fit: cover;
}

.cc-hero-text .hero-img .img-mobile {
    display: block;
}

@media screen and (min-width: 768px) {
    .cc-hero-text .cc-hero-text_content {
        margin-top: 70px;
    }

    .cc-hero-text h1 {
        font-size: 32px;
        padding-right: 30%;
        margin-bottom: 50px;
    }

    .cc-hero-text h1.bigger {
        font-size: 52px;
    }

    .cc-hero-text .cc-three-card .cc-card h2 {
        font-size: clamp(38px, 4vw, 64px);
    }

    .cc-hero-text .hero-img {
        max-height: 750px;
        overflow: hidden;
    }

    .cc-hero-text .hero-img #map-hero-content-snippet-desktop,
    .cc-hero-text .hero-img .img-desktop {
        display: block !important;
    }

    .cc-hero-text .hero-img #map-hero-content-snippet-mobile,
    .cc-hero-text .hero-img .img-mobile {
        display: none !important;
    }
}


/* Footer */
.footer-accent {
    display: block;
    width: 100%;
    background: #fff;
}

.footer-accent svg {
    display: block;
    width: 100%;
    height: auto;
}

.cc-footer {
    padding: 15px 0;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
}

.cc-footer .cc-footer_left {
    width: 65%;
    text-align: left;
}

.cc-footer .cc-footer_right {
    width: 35%;
    text-align: right;
}

.cc-footer p {
    color: #fff;
    font-size: 12px;
}

.cc-footer p a {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
}

.cc-footer .footer-logo {
    width: 100px;
    margin-bottom: 30px;
}

.cc-footer .footer-logo svg,
.cc-footer .footer-logo img {
    display: block;
    width: 100%;
    height: auto;
}

@media screen and (min-width: 500px) {

    .cc-footer p,
    .cc-footer p a {
        font-size: 14px;
    }
}

@media screen and (min-width: 768px) {
    .cc-footer {
        padding: 25px 0;
        padding-top: 40px;
    }

    .cc-footer .footer-logo {
        width: 150px;
        margin-bottom: 50px;
    }

    .cc-footer p,
    .cc-footer p a {
        font-size: 16px;
    }
}


/* Embedded Video */
.embedded-video {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    max-width: 100%;
    overflow: hidden;
    max-height: 750px;
}

.embedded-video iframe {
    width: calc(100vw + 200px);
    aspect-ratio: 16/9;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border: none;
}


/* Keyframe Animations */
@keyframes rotation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(359deg);
    }
}

@keyframes linearBackgroundGradientAnimation {
    0% {
        background-position: 0;
    }

    100% {
        background-position: 200%;
    }
}

/* Form Styles */

.cc-phone p {
    margin: 0;
}

.mktoForm {
    width: 100% !important;
}

.mktoForm .mktoFormCol,
.mktoForm fieldset {
    border: none !important;
}

.mktoForm .mktoFormRow {}

.mktoForm .mktoFormRow>.mktoFormCol {}

.mktoForm .mktoFieldWrap {
    margin-bottom: 15px;
}


.mktoButtonWrap.mktoStriped,
.mktoButtonWrap {
    margin: 0 !important;
}

.cc-half-form .mktoForm .mktoRequiredField label.mktoLabel,
.cc-cta-form .mktoForm .mktoRequiredField label.mktoLabel {
    font-weight: 500;
}

.mktoButton,
a.button,
.cc-half-form .mktoForm .mktoButtonWrap.mktoSimple .mktoButton,
#cta-section .mktoForm .mktoButtonWrap.mktoStriped .mktoButton,
.cc-cta-form .mktoForm .mktoButtonWrap.mktoSimple .mktoButton {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    background: #520B90 !important;
    color: #fff !important;
    border: 1px solid #520B90 !important;
    font-weight: 500 !important;
    font-family: 'Gotham', sans-serif !important;
    font-size: 17px !important;
    padding: 11px 24px !important;
    text-shadow: none !important;
}

a.button {
    text-decoration: none;
    display: inline-flex;
    margin-top: 25px;
    margin-bottom: 20px;
}

.mktoForm .mktoButtonWrap.mktoDownloadButton .mktoButton {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    background: #520B90 !important;
    color: #fff !important;
    border: 1px solid #520B90 !important;
    font-weight: 500 !important;
    font-family: 'Gotham', sans-serif !important;
    font-size: 17px !important;
    padding: 11px 24px !important;
}

.mktoButton:hover,
a.button:hover,
.cc-half-form .mktoForm .mktoButtonWrap.mktoSimple .mktoButton:hover,
#cta-section .mktoForm .mktoButtonWrap.mktoStriped .mktoButton:hover,
.cc-cta-form .mktoForm .mktoButtonWrap.mktoSimple .mktoButton:hover {
    background: #520B90;
    border: 1px solid #520B90;
}

.mktoForm .mktoButtonWrap.mktoDownloadButton .mktoButton:hover {
    background: #520B90 !important;
    border: 1px solid #520B90 !important;
}

.cc-half-form .mktoForm input[type=text],
.cc-cta-form .mktoForm input[type=text],
.cc-half-form .mktoForm input[type=url],
.cc-cta-form .mktoForm input[type=url],
.cc-half-form .mktoForm input[type=email],
.cc-cta-form .mktoForm input[type=email],
.cc-half-form .mktoForm input[type=tel],
.cc-cta-form .mktoForm input[type=tel],
.cc-half-form .mktoForm input[type=number],
.cc-cta-form .mktoForm input[type=number] {
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid #000;
    color: #000;
}

.cc-half-form .mktoForm textarea,
.cc-cta-form .mktoForm textarea {
    color: #000;
    border: 1px solid #000;
}

.mktoForm .mktoFieldWrap label {
    color: #000;
}

.mktoForm .mktoButtonRow {
    margin-bottom: 40px;
}

#cta-section .mktoForm .mktoButtonWrap.mktoStriped .mktoButton,
#cta-section .cc-cta-form .mktoForm .mktoButtonWrap.mktoSimple .mktoButton {
    color: #520B90 !important;
    background: #fff !important;
    border: 1px solid #fff !important;
}

#cta-section .mktoForm .mktoButtonWrap.mktoStriped .mktoButton:hover,
#cta-section .cc-cta-form .mktoForm .mktoButtonWrap.mktoSimple .mktoButton:hover {
    color: #520B90 !important;
    background: #fff !important;
    border: 1px solid #fff !important;
}

#cta-section .cc-cta-form .mktoForm .mktoFieldWrap label {
    color: #fff;
}

#cta-section .cc-cta-form .mktoForm input[type=text],
#cta-section .cc-cta-form .mktoForm input[type=url],
#cta-section .cc-cta-form .mktoForm input[type=email],
#cta-section .cc-cta-form .mktoForm input[type=tel],
#cta-section .cc-cta-form .mktoForm input[type=number] {
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid #fff !important;
    color: #fff !important;
    background: none !important;
}

#cta-section .cc-cta-form .mktoForm textarea {
    color: #fff !important;
    background: none !important;
    border: 1px solid #fff !important;
}


.mktoForm .mktoGutter {}

/*
.mktoForm .mktoFieldWrap label {
    transform: translate(0.25rem, -1.5rem);
    transition: all 0.2s ease-out;
}

.mktoForm input[type=text]:focus + label,
.mktoForm input[type=url]:focus + label,
.mktoForm input[type=email]:focus + label,
.mktoForm input[type=tel]:focus + label,
.mktoForm input[type=number]:focus + label,
.mktoForm input[type=text]:not(:placeholder-shown) + label,
.mktoForm input[type=url]:not(:placeholder-shown) + label,
.mktoForm input[type=email]:not(:placeholder-shown) + label,
.mktoForm input[type=tel]:not(:placeholder-shown) + label,
.mktoForm input[type=number]:not(:placeholder-shown) + label {
    color: #111;
    transform: translate(0, -2.75rem);
}
*/

/* Formatting Fixes */
h1>.mktoText p,
h2>.mktoText p,
h3>.mktoText p,
h4>.mktoText p,
p>.mktoText p {
    display: inline;
    margin: 0 !important;
    padding: 0 !important;
}

#phone-snippet p,
#phone-snippet-2 p,
#phone-snippet-3 p {
    display: inline;
    margin: 0 !important;
    padding: 0 !important;
}

#phone-snippet #mktoEditorPlaceholder .mktoPlaceholder,
#phone-snippet-2 #mktoEditorPlaceholder .mktoPlaceholder,
#phone-snippet-3 #mktoEditorPlaceholder .mktoPlaceholder {
    display: flex;
    width: 183px;
    position: relative;
    height: 48px;
}

/* CTA Forms Full Width */
.mktoForm {
    width: 100%;
}

.mktoForm .mktoFormRow {
    display: flex;
    flex-direction: column;
}

.mktoForm .mktoButtonRow {
    width: 100%;
}

.mktoForm .mktoFormCol {
    width: 100%;
    float: none;
}

.mktoForm .mktoFieldWrap {
    float: none;
    display: flex;
    align-items: center;
    width: 100%;
}

.mktoForm .mktoFieldWrap label {
    font-size: 17px;
    width: 18% !important;
    min-width: 115px;
}

.mktoForm .mktoFieldWrap input,
.mktoForm .mktoFieldWrap textarea,
.mktoForm .mktoFieldWrap select {
    width: 80% !important;
    font-size: 17px;
}

.mktoForm .mktoFieldWrap label.mktoLabel[for=optIn] {
    width: 50% !important;
    font-size: 18px;
}

.mktoForm .mktoCheckboxList {
    display: flex;
    align-items: center;
}

@media screen and (max-width: 767px) {
    .mktoForm .mktoButton {
        width: 100% !important;
    }
}

/* City Form Override */
/* .mktoForm .mktoFieldWrap label[for=City] {
    display: none !important;
}

.mktoForm .mktoFieldWrap select#City {
    width: 100% !important;
} */

/* Image Hero */
.img-hero {
    display: flex;
    min-height: 0;
    background-size: cover;
    background-position: center;
    position: relative;
}

.img-hero .img-hero-bg {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
    z-index: 1;
}

.img-hero .mktoImg {
    display: block;
    width: 100%;
    height: 100%;
}

.img-hero .img-hero-bg img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-width: 100%;
}

.img-hero .cc-header, .img-hero .cc-hero-cta, .img-hero .cc-hero-cards {
    z-index: 2;
}

.img-hero .cc-hero-cta h2 {
    line-height: 1;
    position: relative;
    font-weight: 500;
    margin-top: 2vw;
    font-size: clamp(36px, 15vw, 100px);
    letter-spacing: normal;
}

@media screen and (min-width: 768px) {
    .img-hero {
        height: 48vw;
        max-height: 860px;
        min-height: 620px;
        justify-content: center;
    }

    .img-hero .cc-hero-cta {
        margin-bottom: 60px;
    }

    .img-hero .cc-hero-cta h2 {
        font-size: clamp(75px, 10vw, 120px);
        letter-spacing: normal;
    }
}


/* Marketo Form Loading Animation */
.mktoForm {
    grid-area: form;
}

.formLoader {
    display: none;
    justify-content: center;
    align-items: center;
    background: #fff;
    width: 100%;
    position: absolute;
    top: 0;
    height: 100%;
}

.spinner {
    -webkit-animation: rotator 1.4s linear infinite;
    animation: rotator 1.4s linear infinite;
}

@-webkit-keyframes rotator {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(270deg);
    }
}

@keyframes rotator {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(270deg);
    }
}

.path {
    stroke-dasharray: 187;
    stroke-dashoffset: 0;
    transform-origin: center;
    -webkit-animation: dash 1.4s ease-in-out infinite, colors 5.6s ease-in-out infinite;
    animation: dash 1.4s ease-in-out infinite, colors 5.6s ease-in-out infinite;
}

@-webkit-keyframes colors {
    0% {
        stroke: #8E278F;
    }

    25% {
        stroke: #8E278F;
    }

    50% {
        stroke: #8E278F;
    }

    75% {
        stroke: #520B90;
    }

    100% {
        stroke: #520B90;
    }
}

@keyframes colors {
    0% {
        stroke: #8E278F;
    }

    25% {
        stroke: #8E278F;
    }

    50% {
        stroke: #8E278F;
    }

    75% {
        stroke: #520B90;
    }

    100% {
        stroke: #520B90;
    }
}

@-webkit-keyframes dash {
    0% {
        stroke-dashoffset: 187;
    }

    50% {
        stroke-dashoffset: 46.75;
        transform: rotate(135deg);
    }

    100% {
        stroke-dashoffset: 187;
        transform: rotate(450deg);
    }
}

@keyframes dash {
    0% {
        stroke-dashoffset: 187;
    }

    50% {
        stroke-dashoffset: 46.75;
        transform: rotate(135deg);
    }

    100% {
        stroke-dashoffset: 187;
        transform: rotate(450deg);
    }
}