
.logo-main {
    max-width: 220px !important;
}

.hero-container {
    max-width: 800px;
}

.accordion-wrapper {
    display: flex;
    flex-direction: column;
    row-gap: 18px;
}
.accordion-wrapper .accordion-item {
    background: rgb(243,247,250);
    border-radius: 0.75rem !important;
}
.accordion-wrapper .accordion-item .item-title-wrapper {
    height: fit-content;
    margin-bottom: 5px;
    padding: 16px 18px;
    display: grid;
    grid-template-columns: auto 24px;
    column-gap: 10px;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
}
.accordion-wrapper .accordion-item .item-title-wrapper span {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 120%;
    color: #171a1f;
    text-align: left;
}
.accordion-wrapper .accordion-item .item-description-wrapper {
    display: none;
}
.accordion-wrapper .accordion-item .item-description-wrapper .item-content {
    max-width: 960px;
    padding: 0px 18px 24px;
}
.accordion-wrapper .accordion-item .item-description-wrapper .item-content p {
    margin: 0;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 180%;
    color: #000;
    text-align: left;
}

.footer-menu {
    margin-top: 5px;
}

.accept-cookies-block {
    position: fixed;
    left: 10px;
    bottom: 10px;
    display: flex;
    max-width: 750px;
    border-radius: 0.75rem !important;
    padding: 35px;
    flex: 1 0 0;
    background: rgb(243,247,250);
    z-index: 999999999;
}

.accept-cookies-block .content-inner {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: center;
}

.accept-cookies-block .content-text p {
    margin: 0;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 180%;
    color: #000;
}

.accept-cookies-block .content-text a {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 180%;
    color: #000;
    text-decoration: underline;
}

.accept-cookies-block .button {
    margin: 0;
    color: #fff;
    background-color:#0a345a;
    border-color:#0a345a;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 30px;
    transition: 0.3s;
    cursor: pointer;
    border-radius: 0 !important;
}

@media (max-width: 991px) {

    .header-navbar-wrapper {
        background: #FFF;
    }

    .accept-cookies-block .content-inner {
        flex-direction: column;
    }

    .accept-cookies-block .content-inner p {
        text-align: center;
    }

    .accept-cookies-block {
        max-width: calc(100vw - 20px);
    }

}