﻿html {
    font-family: 'Nunito Sans', Sans-Serif;
}

.content-body {
    width: 800px;
}

.form-err {
    color: #A92626;
}

.form-err label {
    color: #A92626;
}

.form-err input,
.form-err select {
    border-color: #A92626;
    color: #A92626 !important;
}

select {
    appearance: none;
    background-repeat: no-repeat;
    background-size: 12px auto;
    background-position: right 12px center;
    background-image: url(/assets/images/chevron-down-gray-400.svg);
}

.text-link {
    color: #7759a1;
}

.max-w-395 {
    max-width: 395px;
}

.w-395 {
    width: 395px;
}

.submit-button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 14px 38px;
    gap: 10px;
    width: 397px;
    height: 54px;
    background: linear-gradient(270deg, #BC3C89 -0.22%, #E88845 99.78%);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 38px;
    color: #FFF;
    flex: none;
    order: 0;
    flex-grow: 0;
}

.hero-image-wrapper {
    margin-top: 40px;
    margin-bottom: 96px;
}

.testimonial-container {
    min-width: 409px;
}

.submit-button[disabled] {
    background: #ccc;
    cursor: wait;
}

@media only screen and (min-width: 1000px) {
    .content-container {
        width: 100%;
        max-width: 800px;
    }

    .content-body {
        width: auto;
        margin-right: 0;
    }
}

@media only screen and (max-width: 1000px) {
    .content-body {
        width: auto;
        margin-right: 0;
    }
}

@media only screen and (max-width: 1000px) {
    .testimonial-container {
        display: none;
    }

    .content-container {
        align-items: initial;
    }
}


/* Hero Image Styling (Rotating Logos)*/

.intro {
    overflow-x: hidden;
    overflow-y: hidden;
}

.logo-globe {
    width: 210px;
    height: 140px;
    perspective: 910px;
    transform-style: preserve-3d;
    margin: 0 auto;
    transform: translateY(60%);
}

@media screen and (min-width: 2561px) {
    /* Workaround for Chromium on Windows for wide-screen displays */
    .logo-globe {
        perspective: 1400px;
        transform: translateY(60%) scale(0.90);
    }
}

.hero-image-wrapper {
    max-width: 450px;
    transform: scale(0.70);
}

.logo-globe img {
    transform: translateX(-150px) translateY(-300px) translateZ(-388px);
    width: 500px;
    max-width: unset;
}

.ring {
    width: 100%;
    height: 100%;
    position: absolute;
    transform: translateZ(-388px) translateY(-130px) rotateY(0deg);
    transform-style: preserve-3d;
    animation: ring 45s infinite linear forwards;
}

.ring-2 {
    width: 100%;
    height: 100%;
    position: absolute;
    transform: translateZ(-388px) translateY(0px) scale(0.95) rotateY(0deg);
    transform-style: preserve-3d;
    animation: ring-2 45s infinite linear forwards;
}


.ring__cell {
    position: absolute;
    width: 190px;
    height: 120px;
    left: 10px;
    top: 10px;
    border-radius: 16px;
    transform-style: preserve-3d;
    background: linear-gradient(45deg, #6484C0, #653BAB);
    box-shadow: 0px 12px 12px -12px rgba(0,0,0,0.5);
}

    .ring__cell::after {
        position: absolute;
        width: 100%;
        height: 100%;
        display: block;
        top: 0;
        left: 0;
        box-sizing: border-box;
        background: url("https://www.centercode.com/img/clients/ring.png") white;
        background-position: center;
        background-repeat: no-repeat;
        content: '';
        border-radius: 16px;
        backface-visibility: hidden;
        box-shadow: 0px 12px 12px -12px rgba(0,0,0,0.5);
    }

    .ring__cell:nth-child(1) {
        transform: rotateY( 0deg) translateZ(388px);
    }

    .ring__cell:nth-child(2) {
        transform: rotateY( 30deg) translateZ(388px);
    }

    .ring__cell:nth-child(3) {
        transform: rotateY( 60deg) translateZ(388px);
    }

    .ring__cell:nth-child(4) {
        transform: rotateY(90deg) translateZ(388px);
    }

    .ring__cell:nth-child(5) {
        transform: rotateY(120deg) translateZ(388px);
    }

    .ring__cell:nth-child(6) {
        transform: rotateY(150deg) translateZ(388px);
    }

    .ring__cell:nth-child(7) {
        transform: rotateY(180deg) translateZ(388px);
    }

    .ring__cell:nth-child(8) {
        transform: rotateY(210deg) translateZ(388px);
    }

    .ring__cell:nth-child(9) {
        transform: rotateY(240deg) translateZ(388px);
    }

    .ring__cell:nth-child(10) {
        transform: rotateY(270deg) translateZ(388px);
    }

    .ring__cell:nth-child(11) {
        transform: rotateY(300deg) translateZ(388px);
    }

    .ring__cell:nth-child(12) {
        transform: rotateY(330deg) translateZ(388px);
    }

    .ring__cell:nth-child(1)::after {
        background: url("/assets/images/marketing/google2.png") white;
        background-position: center;
        background-repeat: no-repeat;
    }

    .ring__cell:nth-child(2)::after {
        background: url("/assets/images/marketing/microsoft-updated.png") white;
        background-position: center;
        background-repeat: no-repeat;
    }

    .ring__cell:nth-child(3)::after {
        background: url("/assets/images/marketing/apple-updated.png") white;
        background-position: center;
        background-repeat: no-repeat;
    }

    .ring__cell:nth-child(4)::after {
        background: url("/assets/images/marketing/ford.png") white;
        background-position: center;
        background-repeat: no-repeat;
    }

    .ring__cell:nth-child(5)::after {
        background: url("/assets/images/marketing/lowes.png") white;
        background-position: center;
        background-repeat: no-repeat;
    }

    .ring__cell:nth-child(6)::after {
        background: url("/assets/images/marketing/verizon.png") white;
        background-position: center;
        background-repeat: no-repeat;
    }

    .ring__cell:nth-child(7)::after {
        background: url("/assets/images/marketing/toyota.png") white;
        background-position: center;
        background-repeat: no-repeat;
    }

    .ring__cell:nth-child(8)::after {
        background: url("/assets/images/marketing/netgear.png") white;
        background-position: center;
        background-repeat: no-repeat;
    }

    .ring__cell:nth-child(9)::after {
        background: url("/assets/images/marketing/cisco-updated.png") white;
        background-position: center;
        background-repeat: no-repeat;
    }

    .ring__cell:nth-child(10)::after {
        background: url("/assets/images/marketing/sap.png") white;
        background-position: center;
        background-repeat: no-repeat;
    }

    .ring__cell:nth-child(11)::after {
        background: url("/assets/images/marketing/t-mobile.png") white;
        background-position: center;
        background-repeat: no-repeat;
    }

    .ring__cell:nth-child(12)::after {
        background: url("/assets/images/marketing/4_dell.png") white;
        background-position: center;
        background-repeat: no-repeat;
    }

.ring-2 .ring__cell:nth-child(1) {
    transform: rotateY(0deg) translateZ(320px);
}

.ring-2 .ring__cell:nth-child(2) {
    transform: rotateY(36deg) translateZ(320px);
}

.ring-2 .ring__cell:nth-child(3) {
    transform: rotateY(72deg) translateZ(320px);
}

.ring-2 .ring__cell:nth-child(4) {
    transform: rotateY(108deg) translateZ(320px);
}

.ring-2 .ring__cell:nth-child(5) {
    transform: rotateY(144deg) translateZ(320px);
}

.ring-2 .ring__cell:nth-child(6) {
    transform: rotateY(180deg) translateZ(320px);
}

.ring-2 .ring__cell:nth-child(7) {
    transform: rotateY(216deg) translateZ(320px);
}

.ring-2 .ring__cell:nth-child(8) {
    transform: rotateY(252deg) translateZ(320px);
}

.ring-2 .ring__cell:nth-child(9) {
    transform: rotateY(288deg) translateZ(320px);
}

.ring-2 .ring__cell:nth-child(10) {
    transform: rotateY(324deg) translateZ(320px);
}

.ring-2 .ring__cell:nth-child(1)::after {
    background: url("/assets/images/marketing/seagate-updated.png") white;
    background-position: center;
    background-repeat: no-repeat;
}

.ring-2 .ring__cell:nth-child(2)::after {
    background: url("/assets/images/marketing/pg.png") white;
    background-position: center;
    background-repeat: no-repeat;
}

.ring-2 .ring__cell:nth-child(3)::after {
    background: url("/assets/images/marketing/go-pro-updated.png") white;
    background-position: center;
    background-repeat: no-repeat;
}

.ring-2 .ring__cell:nth-child(4)::after {
    background: url("/assets/images/marketing/lg-updated.png") white;
    background-position: center;
    background-repeat: no-repeat;
}

.ring-2 .ring__cell:nth-child(5)::after {
    background: url("/assets/images/marketing/intel.png") white;
    background-position: center;
    background-repeat: no-repeat;
}

.ring-2 .ring__cell:nth-child(6)::after {
    background: url("/assets/images/marketing/mattel.png") white;
    background-position: center;
    background-repeat: no-repeat;
}

.ring-2 .ring__cell:nth-child(7)::after {
    background: url("/assets/images/marketing/dolby.png") white;
    background-position: center;
    background-repeat: no-repeat;
}

.ring-2 .ring__cell:nth-child(8)::after {
    background: url("/assets/images/marketing/comcast-updated.png") white;
    background-position: center;
    background-repeat: no-repeat;
}

.ring-2 .ring__cell:nth-child(9)::after {
    background: url("/assets/images/marketing/amazon.png") white;
    background-position: center;
    background-repeat: no-repeat;
}

.ring-2 .ring__cell:nth-child(10)::after {
    background: url("/assets/images/marketing/dreamworks.png") white;
    background-position: center;
    background-repeat: no-repeat;
}

@keyframes ring {
    100% {
        transform: translateZ(-388px) translateY(-130px) rotateY(360deg);
    }
}

@keyframes ring-2 {
    100% {
        transform: translateZ(-388px) translateY(0px) scale(0.95) rotateY(360deg);
    }
}