html, body {
    background:#000;
    margin:0;
    padding:0;
    font-family: "area-variable", sans-serif;
    font-variation-settings: "slnt" 0, "wdth" 100, "wght" 100, "INKT" 0;
    font-weight:300;
    width:100%;
    height:100%;
}

* {
    box-sizing:border-box;
    transition:250ms;
}

#content {
    width:100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center; /* Aligns the top of the #photo div with any vertical spacing */
    padding-top:84px;
}

header  {
    background:rgb(38,38,38,.7);
    position:fixed;
    top:0;
    left:0;
    right:0;
    backdrop-filter: blur(10px); /* Apply blur effect */
    -webkit-backdrop-filter: blur(10px); /* For Safari support */
    z-index: 1000; /* Ensure the header is above other content */
}

header > div {
    width:100%;
    max-width:1200px;
    margin: 0 auto;
    display:flex;
    justify-content: center;
    align-items: center;
    height:84px;
}

header > div > div {
    flex:1;
    padding:0 15px;
    display:flex;
    align-items: center;
    height:100%;
}

header > div > div:nth-child(1) > a > div {
    background:url('/images/goxeeailogowhtsolid.svg');
    background-repeat:no-repeat;
    background-position:left center;
    background-size:contain;
    height:84px;
    width:137px;
}

header > div > div:nth-child(2) {
    flex:4;
    text-align:center;
    justify-content:center;
}

header > div > div:nth-child(3) {
    text-align:right;
    justify-content:right;
}

header > div > div:nth-child(2) > div > a {
    font-size:14px;
    margin:0 20px;
    text-decoration:none;
    color:#FFF;
    font-variation-settings: "slnt" 0, "wdth" 100, "wght" 600, "INKT" 0;
}

header > div > div:nth-child(2) > div {
    height:70px;
    line-height:70px;
}

header > div > div:nth-child(3) > a {
    font-size: 14px;
    display: flex;
    background: #3a94ff;
    padding: 0 20px;
    height: 36px;
    line-height: 37px;
    border-radius: 30px;
    text-decoration: none;
    color: #FFF;
    font-variation-settings: "slnt" 0, "wdth" 100, "wght" 600, "INKT" 0;
}

/* Set initial opacity of all anchor elements to 1 */
header > div > div:nth-child(2) > div {
  opacity: 1;
  transition: opacity 0.3s ease; /* Smooth transition */
}

/* When hovering over any anchor element */
header > div > div:nth-child(2) > div:hover {
  opacity: 1; /* Keep the hovered anchor element at full opacity */
}

/* When hovering any anchor element, set all anchors to opacity 0.5 */
header > div > div:nth-child(2):hover > div {
  opacity: 0.5; /* Set all to reduced opacity when hovering over any anchor */
}

/* Exclude the hovered anchor element from being reduced */
header > div > div:nth-child(2) > div:hover {
  opacity: 1; /* Reset the opacity of the hovered anchor */
}

header > div > div:nth-child(3) > a:hover, .button:hover {
    box-shadow:inset 0 0 0 100px rgba(0,0,0,.1);
}

.fullspace, .halfspace, .quarterspace {
    width:100%;
}

.fullspace {
    height:140px;
}

.halfspace {
    height:80px;
}

.quarterspace {
    height:60px;
}

.title1, .title2 {
    display:inline-block;
    text-align:center;
    color:#FFF;
    max-width:840px;
}

.title1 > div:nth-child(1) {
    font-size:53px;
    font-variation-settings: "slnt" 0, "wdth" 100, "wght" 600, "INKT" 0;
}

.title2 > div:nth-child(1) {
    font-size:34px;
    font-variation-settings: "slnt" 0, "wdth" 100, "wght" 600, "INKT" 0;
}

.title1 > div:nth-child(2) {
    display:inline-block;
    padding-top:5px;
    font-size:23px;
    font-variation-settings: "slnt" 0, "wdth" 100, "wght" 500, "INKT" 0;
    color:#a8a7a3;
    line-height:125%;
    width:80%;
}

.white-section {
    background:#FFF;
    width:100%;
    text-align:center;
}

.white-section .title1 {
    color:#000;
}

.seperator-white {
    width:100%;
    height:10px;
    background:rgba(255,255,255,.1);
}

.seperator-black {
    width:100%;
    height:10px;
    background:rgba(0,0,0,.05);
}

#photo {
    width: 100%;
    max-width: 1000px;
    aspect-ratio: 4 / 3;
    background: url('/images/baa/ferrari-after.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    margin: 50px auto 0 auto;
}


.logo-background {
    margin: 0 auto;
    width: 90%;
    max-width:1200px;
    height: 260px;
    position: relative;
    overflow: hidden;
}

.logo-partners {
    max-width:900px;
}

.logo-background:before, 
.logo-background:after {
    content: "";
    position: absolute;
    top: 0;
    width: 30%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.logo-background:before {
    left: 0;
    background: linear-gradient(to right, white, rgba(255, 255, 255, 0));
}

.logo-background:after {
    right: 0;
    background: linear-gradient(to left, white, rgba(255, 255, 255, 0));
}

.logo-track {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    animation: scroll 60s linear infinite;
    gap: 20px;
    width: max-content; /* Allows the track to grow based on content */
}

.makelogo {
    width: 150px;
    height: 260px;
    background-size: 45% !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

.logo-partners .makelogo {
    width: 240px;
    background-size: 65% !important;
    filter: grayscale(100%);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); /* Move by half the track's width for seamless looping */
    }
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

.button {
    font-size: 14px;
    display: inline-block;
    background: #3a94ff;
    padding: 0 20px;
    height: 36px;
    line-height: 37px;
    border-radius: 30px;
    text-decoration: none;
    color: #FFF;
    font-variation-settings: "slnt" 0, "wdth" 100, "wght" 600, "INKT" 0;
}

.buttonspace {
    height:30px;
}

.slideshow-frame {
    width:100%;
    overflow:hidden;
}

.slideshow-container {
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    position: relative;

}

.slideshow {
    width: 100%; /* Full width for the slideshow */
    display: flex;
    transition: transform 0.5s linear;
    cursor: grab;
}

.slide {
    width: 100%; /* Let the slide take full width responsively */
    max-width: 1200px; /* Each slide can be at most 1000px wide */
    aspect-ratio: 4 / 3; /* This enforces a 4:3 aspect ratio */
    image-rendering: -webkit-optimize-contrast; /* Ensures crisper rendering in Chrome */
    image-rendering: crisp-edges;
    flex-shrink: 0; /* Prevent the slides from shrinking */
    position: relative;
    opacity: 0.25; /* Default opacity for non-active slides */
    filter: grayscale(75%) contrast(0.75);
    transition: all 350ms ease; /* Smooth transition for opacity change */
    will-change: transform, filter, opacity;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.slidesample-container {
    width: 100%;
    max-width: 1200px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    position: relative;
    flex-wrap: wrap; /* Allows wrapping for mobile view */
    gap: 20px; /* Space between items */
    margin:0 auto;
}

.slidesample {
    cursor:pointer;
    display: inline-block;
    width: calc(50% - 10px); /* 50% width minus half the gap for each side */
    max-width: 1080px; /* Each slide can be at most 1080px wide */
    aspect-ratio: 4 / 3; /* Enforce a 4:3 aspect ratio */
    object-fit: contain; /* Ensure the image maintains aspect ratio without being cropped */
    flex-shrink: 0; /* Prevent slides from shrinking */
    position: relative;
    transition: all 350ms ease; /* Smooth transition for opacity change */
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.slidesampleseparator {
    display: inline-block;
    width: calc(100%);
    height:30px;
}

/* Ensure no margin on the left of the first element and right of the second one in a row */
.slidesample:nth-child(2n+1) {
    margin-right: 0; /* First item of the row */
}

.slidesample:nth-child(2n) {
    margin-left: 0; /* Second item of the row */
}

.slide.active {
    opacity: 1; /* Full opacity for the active slide */
    filter: grayscale(0%);
    background-repeat: no-repeat!important;
}

.after, .before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover!important; /* Ensure the background image covers the entire div */
    background-position: center!important; /* Center the background image */
    background-repeat: no-repeat!important;
}

.slidesample .before {
    transition: clip-path 1s ease-in-out;
    clip-path: inset(0 100% 0 0);
    z-index: 3;
}

.slide .before {
    opacity: 0;
    animation: none;
    z-index: 3;
}

.slide .before::before {
    content: "Before";
    position: absolute;
    bottom: 18px;
    left: 18px;
    background-color: white;
    color: black;
    padding: 0px 20px;
    height: 32px;
    line-height: 36px;
    border-radius: 30px;
    font-size: 14px;
    color: #000;
    font-variation-settings: "slnt" 0, "wdth" 100, "wght" 600, "INKT" 0;
    z-index:2;
}

.slide .before::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.25), transparent);
    z-index: 1;
}

.slide .after::before {
    opacity: .45;
    content: "Enhanced with";
    position: absolute;
    bottom: 26px;
    right: 118px;
    color: #FFF;
    font-size: 11px;
    z-index: 2;
}

.slidesample .after::before {
    opacity: .45;
    content: "Enhanced with";
    position: absolute;
    bottom: 26px;
    right: 109px;
    color: #FFF;
    font-size: 11px;
    z-index: 2;
}

.slidesample.other .after::before {
    opacity: .45;
    content: "Generic AI";
    position: absolute;
    bottom: 26px;
    right: 26px;
    color: #FFF;
    font-size: 14px;
    font-weight:bold;
    z-index: 2;
}

.slide .after::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: url('/images/goxeeailogowhtsolid.svg'), linear-gradient(to top, rgba(0, 0, 0, 0.25), transparent);
    background-position: right 19px bottom 19px, left bottom;
    background-size: 92px 30px, 100% 50%;
    background-repeat: no-repeat;
    z-index: 1;
}

.slidesample .after::after {
    opacity:.45;
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: url('/images/goxeeailogowhtfull.svg'), linear-gradient(to top, rgba(0, 0, 0, 0.25), transparent);
    background-position: right 19px bottom 19px, left bottom;
    background-size: 84px 29px, 100% 50%;
    background-repeat: no-repeat;
    z-index: 1;
}

.slidesample.other {
    z-index:9;
}

.slidesample.other .after::after {
    opacity: 1;
    content: 'VS';
    color: #FFF;
    font-size: 18px;
    position: absolute;
    top: calc(50% - 30px);
    right: -42px;
    left: auto;
    vertical-align: middle;
    padding: 19px;
    text-align: center;
    line-height: 32px;
    border-radius: 100px;
    width: 25px;
    height: 25px;
    background: #3a94ff;
    z-index: 10;
    box-shadow: 0 0 0 15px #000;
}

.after::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: url('/images/goxeeailogowhtsolid.svg'), linear-gradient(to top, rgba(0, 0, 0, 0.25), transparent);
    background-position: right 19px bottom 19px, left bottom;
    background-size: 92px 30px, 100% 50%;
    background-repeat: no-repeat;
    z-index: 1;
}

.slidesample::after {
    content: "See Original"; /* Font Awesome eye icon (f06e) */
    position: absolute;
    bottom: 18px;
    left: 18px;
    background: url('/images/before.svg'), white;
    background-position: 20px center;
    background-size:22px;
    background-repeat:no-repeat;
    color: black;
    padding: 0px 20px 0 50px;
    height: 32px;
    line-height: 35px;
    border-radius: 3px;
    font-size: 14px;
    color: #000;
    font-variation-settings: "slnt" 0, "wdth" 100, "wght" 600, "INKT" 0;
    z-index:4;
    opacity:.75;
    transition:all .2s;
}

.slidesample:hover::after {
    opacity:1;
}

.slidesample.active::after {
    content: "Enhanced";
    background: url('/images/after.svg'), white;
    background-position: 20px center;
    background-size:22px;
    background-repeat:no-repeat;
}

.slidesample .before::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.25), transparent);
    z-index: 1;
}


.slide.active > .before {
    opacity: 1;
    clip-path: inset(0 100% 0 0);
    animation: clipReveal 10s infinite ease-in-out;
    animation-delay: 1s;
}

.slidesample.active > .before {
    opacity: 1;
    clip-path: inset(0 0 0 0);
}

@keyframes clipReveal {
    /* Keep the "before" image hidden for the first 2 seconds */
    0%, 20% {
        clip-path: inset(0 100% 0 0); /* Before image fully hidden */
    }

    /* Begin to reveal the "before" image after 2 seconds (no movement during this time) */
    20%, 40% {
        clip-path: inset(0 0 0 0); /* Fully reveal the "before" image over 2 seconds */
    }

    /* Keep the "before" image fully revealed for 1 second */
    40%, 50% {
        clip-path: inset(0 0 0 0); /* Before image stays fully revealed */
    }

    /* Move the "before" image to a 50% reveal for comparison over 1 second */
    50%, 60% {
        clip-path: inset(0 50% 0 0); /* Before image at 50% reveal */
    }

    /* Hold the 50% reveal for 1 second */
    60%, 70% {
        clip-path: inset(0 50% 0 0); /* Hold at 50% reveal */
    }

    /* Close the "before" image, hiding it again */
    70%, 80% {
        clip-path: inset(0 100% 0 0); /* Hide the "before" image again */
    }

    /* Show the "after" image fully for 2 seconds */
    80%, 100% {
        clip-path: inset(0 100% 0 0); /* Show only the "after" image */
    }
}

.highlighted-text, .highlighted-text-large {
    width: 80%;
    max-width: 620px;
    line-height: 130%;
    color: #fff;
    font-size: 23px;
    padding: 0 20px;
    text-align: center;
    font-variation-settings: "slnt" 0, "wdth" 100, "wght" 500, "INKT" 0;
    margin:0 auto;
}

.highlighted-text-large {
    width: 80%;
    max-width: 820px;
}

.white-text {
    color: #fff;
}

.gray-text {
    color: #888; /* Gray text for the subtle part */
}


.white-section .white-text {
    color: #000;
}

.white-section .gray-text {
    color: #888; /* Gray text for the subtle part */
}


.split-section {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1200px;
    margin: 50px auto 0 auto;
}

.split-section div {
    flex: 1;
    max-width: 50%;
    text-align:left;
}

@media (max-width: 768px) {
    .split-section div {
        text-align:center;
        max-width: 100%; /* On mobile, each div takes up full width */
    }
}


#log {
    display:none;
    position:fixed;
    z-index:10000;
    top:0;
    left:0;
    padding:10px;
    background:#FFF;
    color:#333;
    font-size:11px;
}



.testimonial-widget {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 10px;
    text-align: center;
    font-size: 23px;
    font-variation-settings: "slnt" 0, "wdth" 100, "wght" 500, "INKT" 0;
    color: #a8a7a3;
    height: 260px; /* Set a fixed height based on your content */
    display: flex; /* Flexbox to align content vertically */
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.testimonial-slide {
    opacity: 0;
    position: absolute; /* Absolute positioning to stack all testimonials */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 300ms ease-in-out;
}

.testimonial-slide p {
    font-style: italic;
    width: 80%;
    max-width: 620px;
    color:#FFF;
    line-height:125%;
    margin-bottom: 10px;
}

.white-section .testimonial-slide p {
    color:#000;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size:16px;
}

.testimonial-author span {
    margin-top:20px;
}

.stars {
    color: #5d93f8;
    font-size: 26px!important;
}

/* Initially, only the first slide should be visible */
.testimonial-slide:first-child {
    opacity: 1;
}


.video-background {
    margin: 0 auto;
    position: relative;
    width: 100%;
    max-width: 800px;
    height: auto;
    overflow: hidden; /* This hides any overflow */
}

.video-background video {
    width: 100%;
    height: auto;
    aspect-ratio: 5 / 1.2; /* Maintain a 4:2 ratio */
    object-fit: cover; /* This ensures the video fills the container while keeping the ratio */
}

.lambo-bg {
    width:100%;
    background-position:bottom center!important;
    background-size:auto 90%!important;
    background-repeat:no-repeat!important;
    padding-bottom:600px;
}

.compare-table-container {
    margin:0 auto;
}

.compare-table, .compare-table-note {
    width:90%;
    max-width:700px;
    margin:0 auto;
    display:flex;
}

.compare-table > div:first-of-type {
    flex:1;
}

.compare-table > div {
    flex:1.5;
}

.compare-table > div > div {
    width:100%;
    margin:0 auto;
}

.compare-table > div > div {
    width:calc(100% - 15px);
    min-height:54px;
    line-height:54px;
}

.compare-table > div > div:nth-child(1) {
    height:100px;
    line-height:100px;
}

.compare-table > div:nth-child(1) > div {
    text-align:right;
    padding-right:30px;
    font-size: 13px;
    font-variation-settings: "slnt" 0, "wdth" 100, "wght" 500, "INKT" 0;
}

.compare-table > div:nth-child(2) > div, .compare-table > div:nth-child(3) > div {
    background:rgba(0,0,0,.05);
}

.compare-table > div:nth-child(2) > div:nth-child(1), .compare-table > div:nth-child(3) > div:nth-child(1) {
    border-top-left-radius:15px;
    border-top-right-radius:15px;
    font-size: 18px;
    font-variation-settings: "slnt" 0, "wdth" 100, "wght" 600, "INKT" 0;
}

.compare-table > div:nth-child(1) > div:last-child, .compare-table > div:nth-child(2) > div:last-child, .compare-table > div:nth-child(3) > div:last-child {
    border-bottom-left-radius:15px;
    border-bottom-right-radius:15px;
    min-height:30px;
}

.compare-table > div > div.active {
    background:url('/images/check.svg'), rgba(0,0,0,.05);
    background-size:22px;
    background-position:center center;
    background-repeat:no-repeat;
}

.compare-table > div > div.deactive {
    background:url('/images/circle.svg'), rgba(0,0,0,.05);
    background-size:8px;
    background-position:center center;
    background-repeat:no-repeat;
}

.compare-table-note > div {
    flex:1;
}

.compare-table-note > div:nth-child(2) {
    flex:2;
    text-align:left;
    padding: 30px 20px;
    line-height:125%;
    font-size: 12px;
    font-variation-settings: "slnt" 0, "wdth" 100, "wght" 400, "INKT" 0;
}

.uploadform {
    width:90%;
    max-width:800px;
    margin:0 auto;
}

.scrollmargin {
    margin:-84px 0 84px 0;
}

.questions {
    width:90%;
    max-width:800px;
    margin: 0 auto;
}

.questions > div {
    cursor:pointer;
    text-align:left;
    background:rgba(255,255,255,.1);
    border-radius:8px;
    margin-bottom:8px;
    transition:all .2s;
}

.questions > div:hover {
    box-shadow:inset 0 0 0 500px rgba(255,255,255,.15);
}

.questions > div > div:nth-child(1) {
    padding:28px 60px 28px 28px;
    background:url('/images/arrowdown.svg');
    background-size:28px;
    background-position: right 20px top 23px;
    background-repeat:no-repeat;
    font-size:16px;
    color:#FFF;
    font-variation-settings: "slnt" 0, "wdth" 100, "wght" 600, "INKT" 0;
}

.questions > div > div:nth-child(2) {
    display:none;
    padding:0 28px 28px 28px;
    font-size: 15px;
    line-height: 130%;
    font-variation-settings: "slnt" 0, "wdth" 100, "wght" 400, "INKT" 0;
    color:rgba(255,255,255,.85);
}

.questions > div.active > div:nth-child(2) {
    display:block;
}

.creditlogos {
    width:90%;
    max-width:800px;
    margin:0 auto;
}

.creditlogos > div {
    display:inline-block;
    width:calc(100% / 6 - 4px);
    height:150px;
    background-size:70%!important;
    background-position:center!important;
    background-repeat:no-repeat!important;
}

footer {
    width:100%;
    color:#FFF;
}

footer > div {
    width:100%;
    max-width:1200px;
    padding:45px;
    margin:0 auto;
    text-align:center;
}

.ustext {
    display:inline-block;
    font-size:20px;
    line-height:38px;
    vertical-align:top;
    margin-right:8px;
    font-variation-settings: "slnt" 0, "wdth" 100, "wght" 700, "INKT" 0;
}

.usicon {
    display:inline-block;
    width:34px;
    height:34px;
    line-height:34px;
    vertical-align:top;
    background-size:cover!important;
    background-repeat:no-repeat!important;
    background-position:center!important;
}

.copytext {
    margin-top:20px;
    font-size:13px;
    color:rgba(255,255,255,.75);
}


@media only screen and (max-width: 767px) {
    .title1 > div:nth-child(1) {
        font-size: 40px;
        line-height: 125%;
    }
    .title1, .title2 {
        width:90%;
    }
    .title1 > div:nth-child(2), .highlighted-text, .highlighted-text-large, .testimonial-widget {
        font-size:20px;
    }
    .title1 > div:nth-child(2), .highlighted-text-large {
        width:90%;
    }
    .title2 > div:nth-child(1) {
        font-size:26px;
    }
    .video-background video {
        aspect-ratio: 5 / 1.5;
    }
    .lambo-bg {
        background-position: bottom left 29%!important;
        background-size: auto 70%!important;
        background-repeat: no-repeat!important;
        padding-bottom: 380px;
    }
    .compare-table > div:nth-child(1) > div {
        padding:0 11px;
        font-size: 11px;
        white-space: nowrap;
    }
    .compare-table > div:nth-child(1) > div {
        width:calc(100%);
    }
    .compare-table, .compare-table-note {
        width:95%;
    }
    .testimonial-author {
        font-size:14px;
    }
    .slidesample {
        width: 100%; /* Each slide takes the full width on mobile */
        margin: 5px 0; /* Add vertical spacing between the slides */
    }
    .slidesample-container {
        gap:0;
    }
    .slidesample::after {
        font-size:13px;
    }
    .slidesample .after::after {
        background-position: right 15px bottom 19px, left bottom;
        background-size: 77px 29px, 100% 50%;
    }
    .slidesample .after::before {
        right:98px;
        font-size:10px;
    }
    .slidesample.other .after::after {
        font-size: 16px;
        top: auto;
        bottom: -28px;
        right: calc(50% - 24px);
        left: auto;
        padding: 12px;
        box-shadow: 0 0 0 8px #000;
    }
    .testimonial-widget {
        width:85%;
        height:240px;
    }
    .logo-track {
        gap:0;
    }
    .logo-background {
        width:100%;
    }
    .logo-background, .makelogo {
        height:180px;
    }
    .makelogo {
        width: 120px;
        background-size: 40% !important;
    }
    .logo-partners .makelogo {
        width:200px;
    }
    .questions > div > div:nth-child(1) {
        font-size:14px;
        line-height: 125%;
    }
    .ustext {
        font-size:13px;
    }
    .copytext {
        margin-top:12px;
        font-size:11px;
    }
    .fullspace {
        height:90px;
    }
    .halfspace {
        height:40px;
    }
    .quarterspace {
        height:40px;
    }
    .compare-table > div:nth-child(2) > div:nth-child(1), .compare-table > div:nth-child(3) > div:nth-child(1) {
        font-size:16px;
    }
    .creditlogos {
        width:80%;
    }
    .creditlogos > div {
        width:calc(100% / 3 - 4px);
        background-size: 65%!important;
    }
    .creditlogos > div {
        height:100px;
    }
    header > div > div:nth-child(2) > div {
        display:none;
    }
    header > div > div:nth-child(1) > a > div {
        width:119px;
    }
    header > div > div {
        padding:0 20px;
    }
    header > div, header > div > div:nth-child(1) > a > div {
        height:64px;
    }
    
}

