body{
    min-width: 320px;
    font-family: 'Manrope';
    margin: 0;
}

.f8f8f8{
    background-color: #f8f8f8;
}

.f8f8f8hid{
    background-color: #f8f8f8;
    overflow: hidden;
}

.eceded{
    background-color: #eceded;
}

.eceded_hide{
    position: relative;
    background-color: #eceded;
}

.g656769{
    background-color: #656769;
}

.redspan{
    color: #ba282d;
}

a{
    text-decoration: none;
    color: #545454;
}

.button{
    display: flex;
    padding: 12px 12px 12px 16px;
    gap: 8px;
    border-radius: 8px;
    background-color: #ba282d;
    cursor: pointer;
}

.textbut{
    font-size: 16px;
    font-weight: 700;
    line-height: 150%;
    color: #f8f8f8;
    white-space: nowrap;
}

.arrow{
    width: 24px;
    height: 24px;
    max-width: 24px;
    max-height: 24px;
    background-image: url(../items/icons/URArrow_f8f8f8.svg);
    background-size: 100%;
    transition: transform 0.5s;
}

.button:hover .arrow{
    transform: rotate(45deg);
}

.who_button{
    width: 1.667vw;
    height: 1.667vw;
    max-width: 24px;
    max-height: 24px;
    background-color: #f8f8f8;
    border-radius: 3.333vw;
    padding: 0.833vw;
    align-self: flex-end;
    cursor: pointer;
}

.who_button div{
    background-image: url(../items/icons/URArrow_ba282d.svg);
    background-size: 100%;
    width: 1.667vw;
    height: 1.667vw;
    max-width: 24px;
    max-height: 24px;
    transition: transform 0.5s;
}

.who_button:hover div{
    transform: rotate(45deg);
}

.client_nav{
    display: flex;
    gap: 0.556vw;
}

.client_nav div{
    width: 1.667vw;
    max-width: 24px;
    height: 1.667vw;
    max-height: 24px;
    padding: 0.833vw;
    background-position: center;
    background-size: 1.667vw;
    background-repeat: no-repeat;
    cursor: pointer;
}

.aleft{
    background-image: url(../items/icons/LArrow_ba282d.svg);
}

.aright{
    background-image: url(../items/icons/RArrow_ba282d.svg);
}

.noleft{
    background-image: url(../items/icons/LArrow_C5C8C9.svg);
}

.noright{
    background-image: url(../items/icons/RArrow_C5C8C9.svg);
}

.aleft, .aright{
    border-radius: 50%;
    background-color: #fff;
}

.noleft, .noright{
    background-color: #eceded;
}

.values_button{
    width: 1.667vw;
    height: 1.667vw;
    max-width: 24px;
    max-height: 24px;
    border-radius: 3.333vw;
    padding: 0.833vw;
    background-color: #eceded;
    background-image: url(../items/icons/Plus.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 1.667vw;
    transition: 0.5s;
    cursor: pointer;
}

.button_clicked{
    transform: rotate(45deg);
}

.approach_button{
    display: flex;
    padding: 0.833vw 0;
    gap: 0.556vw;
    align-items: center;
    margin: auto;
    cursor: pointer;
    border-bottom: 0.139vw solid #ba282d;
}

.red_textbut{
    font-size: 1.111vw;
    font-weight: 700;
    line-height: 150%;
    color: #ba282d;
    white-space: nowrap;
}

.red_arrow{
    width: 1.667vw;
    height: 1.667vw;
    max-width: 24px;
    max-height: 24px;
    background-image: url(../items/icons/URArrow_ba282d.svg);
    background-size: 100%;
    transition: transform 0.5s;
}

.approach_button:hover .red_arrow{
    transform: rotate(45deg);
}

.join_button{
    display: flex;
    padding: 0.833vw 0;
    gap: 0.556vw;
    align-items: center;
    margin: auto;
    cursor: pointer;
    margin-bottom: 3.646vw;
    border-bottom: 0.139vw solid #f8f8f8;
}

.join_button:hover .arrow{
    transform: rotate(45deg);
}

.areas_button, .areas_button_white{
    width: 1.389vw;
    height: 1.389vw;
    max-width: 20px;
    max-height: 20px;
    aspect-ratio: 1;
    border-radius: 50%;
    padding: 0.417vw;
    background-image: url(../items/icons/Plus.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 1.389vw;
    transition: 0.5s;
    cursor: pointer;
}

.areas_button{
    background-color: #f8f8f8;
}

.areas_button_white{
    background-color: #eceded;
}

.key_button{
    display: none;
}

.corner_tr, .corner_tl, .corner_br, .corner_bl{
    width: 7.778vw;
    max-width: 112px;
    height: 7.778vw;
    max-height: 112px;
    position: absolute;
    z-index: 2;
}

.corner_tr{
    right: 0;
    top: 0;
    transform: rotate(180deg);
}

.corner_bl{
    left: 0;
    bottom: 0;
}

.corner_br{
    right: 0;
    bottom: 0;
    transform: rotate(270deg);
}

.read_more{
    display: flex;
    padding: 12px 18px;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    justify-self: center;
    background-color: #f8f8f8;
    color: #202020;
    border-radius: 48px;
    position: absolute;
    bottom: 0px;
    right: 45px;
    white-space: nowrap;
    transform-origin: 100% 50%;
    transform: scaleX(0);
    transition-duration: 0.25s;
}



@media screen and (max-width: 768px) {
    *::-webkit-scrollbar{
        display: none;
    }

    *{
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .button{
        padding: 12px 12px 12px 16px;
        gap: 8px;
        border-radius: 8px;
    }

    .button:hover .arrow{
        transform: rotate(0deg);
    }

    .textbut{
        font-size: 16px;
    }

    .arrow{
        width: 24px;
        height: 24px;
        transform: none;
    }

    .who_button{
        width: 24px;
        height: 24px;
        padding: 12px;
        border-radius: 48px;
    }

    .who_button div{
        width: 24px;
        height: 24px;
        transform: none;
    }

    .client_nav{
        gap: 8px;
    }

    .client_nav div{
        width: 24px;
        height: 24px;
        padding: 12px;
        background-size: 24px;
    }

    .values_button{
        width: 24px;
        height: 24px;
        max-width: none;
        max-height: none;
        padding: 12px;
        background-size: 24px;
        border-radius: 48px;
    }

    .approach_button{
        padding: 12px 0;
        margin-top: 67px;
        border-bottom: 2px solid #ba282d;
    }

    .red_textbut{
        font-size: 16px;
    }

    .red_arrow{
        width: 24px;
        height: 24px;
        transform: rotate(45deg);
    }

    .join_button{
        padding: 12px 0;
        margin-bottom: 0;
        border-bottom: 2px solid #f8f8f8;
    }
    
    .key_button{
        display: initial;
        width: 24px;
        height: 24px;
        background-color: #f8f8f8;
        border-radius: 48px;
        padding: 12px;
        align-self: flex-end;
        cursor: pointer;
    }
    
    .key_button div{
        background-image: url(../items/icons/URArrow_ba282d.svg);
        background-size: 100%;
        width: 24px;
        height: 24px;
        transform: rotate(45deg);
    }

    .areas_button, .areas_button_white{
        width: 24px;
        height: 24px;
        max-width: none;
        max-height: none;
        padding: 12px;
        background-size: 24px;
    }    

    .corner_tr, .corner_tl, .corner_br, .corner_bl{
        width: 75px;
        height: 75px;
        max-width: none;
        max-height: none;
    }

    .read_more{
        display: flex; 
    }
}

@media screen and (min-width: 1440px) {
    .button{
        padding: 12px 12px 12px 16px;
        gap: 8px;
        border-radius: 8px;    
    }

    .textbut{
        font-size: 16px;
    }

    .who_button{
        padding: 12px;
        border-radius: 48px;
    }

    .client_nav{
        gap: 8px;
    }

    .client_nav div{
        padding: 12px;
        background-size: 24px;
    }

    .values_button{
        padding: 12px;
        background-size: 24px;
        border-radius: 48px;
    }

    .approach_button{
        padding: 12px 0;
        gap: 8px;
        border-bottom: 2px solid #ba282d;
    }

    .red_textbut{
        font-size: 16px;
    }

    .join_button{
        padding: 12px 0;
        margin-bottom: 52.5px;
        gap: 8px;
        border-bottom: 2px solid #f8f8f8;
    }

    .areas_button, .areas_button_white{
        padding: 6px;
        border-radius: 48px;
        background-size: 20px;
    }
}