* {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

.ribbon-div {
    display: flex;
    max-width: 1440px;
    padding: 16px 120px;
    align-items: center;
    gap: 24px;
    background: var(--Bg-gray-0, #F4F5F7);
}

.ribbon-div-left {
    color: #1b1c1d;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 36px */
}

.ribbon-div-right {
    display: flex;
    gap: 4px;
}

.ribbon-div-link {
    display: flex;
    height: 56px;
    padding: 4px 24px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 48px;
    background: #fff;
    color: #0076d5;
    font-feature-settings: "liga" off, "clig" off;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}

.ribbon-div-link:hover, .ribbon-div-link:focus {
    background-color: #E0EEFF ;
    color: #124FC9 ;
}

.ribbon-div-link:focus{
    outline: 2px solid #0076D5;
}

/* MEDIA QUERIES */

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .ribbon-div {
        padding: 24px 48px;
        flex-direction: column;
        align-items: baseline;
    }
	
}

@media screen and (-webkit-min-device-pixel-ratio: 3) and (max-width: 767px) {
    .ribbon-div {
        padding: 24px 16px;
        flex-direction: column;
        align-items: baseline;
    }

    .ribbon-div-right {
        display: flex;
        gap: 4px;
        flex-direction: column;
        width: 100%;
    }
}

@media screen and (max-width: 767px) {
    .ribbon-div {
        padding: 24px 16px;
        flex-direction: column;
        align-items: baseline;
    }

    .ribbon-div-right {
        display: flex;
        gap: 4px;
        flex-direction: column;
        width: 100%;
    }
}