.company__logo__container {
    min-height: 68px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.company__upper__logo {
    object-fit: contain;
    width: 224px;
}

.upper__colored__banner {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 46px;
    font-weight: 900;
    font-size: 20px;
}

.colored__frame__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    max-width: 574px;
    width: 574px;
    margin: 0 auto;
    height: 480px;
    border-radius: 20px;
    margin-top: 35px;
}

.heading__container {
    margin-top: 23px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center;
    text-align: center;
}

.heading__main__title {
    font-size: 36.88px;
    font-weight: 100;
}

.heading__secondary__title {
    font-size: 22.13px;
    margin-top: 5px;
    font-weight: 100;
    display: block;
}

.hero__image {
    width: 459px;
}

.hero__container {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
}


.uncolored__frame__container {
    position: relative;
    width: 722px;
    margin: 0 auto;
    height: 127px;
}

.main__order__button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: none;
    width: 327px;
    height: 52px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    z-index: 2;
    color: inherit;
}

.sticky {
    z-index: 2000;
    position: fixed;
    top: 0;
    width: 100vw;
    height: 95px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #FFFFFF;
}

.sticky__text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #101820;
    font-size: 20px;
    z-index: 1;
    opacity: 0;
    text-align: right;
}


/* Mobile mode. */
@media (max-width: 768px) {
    .company__logo__container img {
        object-fit: contain;
        width: clamp(160px, 54vw, 216px);
        max-height: clamp(16px, 5vw, 20px);
    }

    .upper__colored__banner {
        font-size: clamp(14px, 4.5vw, 18px);
    }

    .heading__main__title {
        font-size: clamp(32px, 10vw, 40px);
    }

    .heading__secondary__title {
        font-size: clamp(20px, 6vw, 24px);
        margin-top: clamp(6px, 2vw, 8px);
        display: block;
    }

    .hero__image {
        width: clamp(300px, 90vw, 420px);
        height: clamp(140px, 40vw, 170px);
        object-fit: cover;
        object-position: top;
    }

    .colored__frame__container {
        width: clamp(300px, 90vw, 354px);
        min-height: clamp(320px, 90vw, 362px);
        margin-top: clamp(16px, 6vw, 24px);
        padding-left: clamp(16px, 4vw, 22px);
        padding-right: clamp(16px, 4vw, 22px);
        height: auto;
    }

    .uncolored__frame__container {
        width: auto;
        width: 100%;
    }

    .main__order__button {
        width: min(327px, 90vw);
        height: min(52px, 13.5vw);
        transform: translate(-50%, -50%);
        font-size: clamp(14px, 4.2vw, 16px);
        white-space: nowrap;
    }

    .sticky__text {
        font-size: clamp(12px, 3.5vw, 14px);
        transform: translate(-50%, -50%);
        text-align: right;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: calc(100vw - clamp(60px, 15vw, 80px));
    }

    .sticky {
        height: clamp(68px, 20vw, 82px);
    }
}

/* Mobile mode. */
@media (max-width: 400px) {
    .upper__colored__banner {
        font-size: clamp(13px, 3.75vw, 15px);
    }
}