:root {
    --purple: #ab00df;
    --blue: #4c93e3;
    --ink: #143b5a;
    --brand-red: #e3032e;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
}



button,
a {
    font: inherit;
}

.award-card {
    container-type: inline-size;
    position: relative;
    display: grid;
    grid-template-rows: 36.5% 18% 3% 23.5% 19%;
    width: min(100%, 417px);
    aspect-ratio: 417 / 627;
    overflow: hidden;
    border-radius: 10px;
    background:
        linear-gradient(145.7deg,
            var(--purple) 0%,
            var(--blue) 58.136%,
            #ffffff 96.635%);
    box-shadow: 0 24px 60px rgb(31 47 74 / 16%);
    transition:
        opacity 220ms ease,
        transform 220ms ease;
    isolation: isolate;
}

.award-card.is-closing {
    opacity: 0;
    transform: translateY(8px) scale(.985);
    pointer-events: none;
}

.close-button {
    position: absolute;
    z-index: 4;
    top: 3.5%;
    right: 5.1%;
    width: 28px;
    height: 28px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: var(--white);
    cursor: pointer;
    transition:
        background-color 160ms ease,
        transform 160ms ease;
}

.close-button::before,
.close-button::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
}

.close-button::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.close-button::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.close-button:hover {
    background: rgb(255 255 255 / 12%);
    transform: rotate(4deg);
}

.close-button:focus-visible,
.award-card__cta:focus-visible {
    outline: 3px solid rgb(255 255 255 / 86%);
    outline-offset: 4px;
}

.award-card__brands {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 5.5cqw;
    padding: 12% 7% 2%;
    color: var(--white);
}

.novadora-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    line-height: 1;
    white-space: nowrap;
}

.novadora-logo__mark {
    flex: 0 0 auto;
    width: 28cqw;
    max-width: 42px;
    height: auto;
    margin-right: 2.4cqw;
    overflow: visible;
}

.novadora-logo__name {
    font-size: 15.1cqw;
    font-weight: 400;
    letter-spacing: -.085em;
}

.novadora-logo__year {
    align-self: flex-start;
    margin: -.05em 0 0 .15em;
    font-size: 6.8cqw;
    font-weight: 800;
    letter-spacing: -.04em;
}

.cotec-logo {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.cotec-logo__mark {
    position: absolute;
    top: -8.6cqw;
    right: -4.5cqw;
    width: 25cqw;
    max-width: 38px;
    height: auto;
    overflow: visible;
}

.cotec-logo__name {
    font-family:
        "Avenir Next",
        Avenir,
        "Century Gothic",
        Arial,
        sans-serif;
    font-size: 7.2cqw;
    font-weight: 500;
    letter-spacing: .04em;
    transform: scaleX(1.28);
}

.cotec-logo__country {
    margin-top: .35em;
    font-size: 3.7cqw;
    font-weight: 400;
    letter-spacing: -.025em;
}

.award-card__heading {
    align-self: center;
    margin: 0;
    padding: 0 7%;
    color: var(--white);
    font-size: 6.55cqw;
    font-weight: 400;
    line-height: 1.32;
    letter-spacing: -.037em;
    text-align: center;
}

.award-card__heading strong {
    font-weight: 800;
}

.award-card__heading-line {
    display: block;
    white-space: nowrap;
}

.award-card__rule {
    align-self: center;
    justify-self: center;
    width: 25.2%;
    height: 3px;
    border: 0;
    background: var(--white);
}

.award-card__copy {
    align-self: start;
    margin: 0;
    padding: 2% 8% 0;
    color: #050505;
    font-size: 3.9cqw;
    font-weight: 400;
    line-height: 1.42;
    letter-spacing: -.01em;
    text-align: center;
}

.award-card__action {
    align-self: start;
    margin-top: -1.8cqw;
    padding: 0 20.2%;
}

.award-card__cta {
    display: grid;
    place-items: center;
    width: 100%;
    min-height: 13.5cqw;
    padding: 3cqw 4cqw;
    border: 1px solid var(--ink);
    border-radius: 999px;
    background: var(--white);
    color: var(--ink);
    font-size: 4.2cqw;
    font-weight: 800;
    line-height: 1.1;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 0 0 0 rgb(20 59 90 / 0%);
    transition:
        color 180ms ease,
        background-color 180ms ease,
        box-shadow 180ms ease,
        transform 180ms ease;
}

.award-card__cta:hover {
    background: var(--ink);
    color: var(--white);
    box-shadow: 0 9px 22px rgb(20 59 90 / 22%);
    transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {

    .award-card,
    .close-button,
    .award-card__cta {
        transition: none;
    }
}

.bannerImage {
    position: relative;
}

.banner {
    position: relative;
}

.award-card {
    position: absolute;
    top: 15%;
    left: 80%;
    transform: translateX(-50%);
    z-index: 100;
    width: 320px !important;
    overflow-y: auto;
}


@media (max-width: 768px) {
    .award-card {
        position: absolute;
        left: 20%;
        right: auto;
        bottom: auto;
        top: auto;
        transform: none;
        width: 100%;
        margin-top: 20px;
    }
}