.policy {
    padding: 120px 0;
}

.policy-content {
    background: #fff;
    padding: 30px;
    border-radius: 16px;

    border: 1px solid var(--maroof-bdr-color);
}

.policy-content__title {
    font-size: 32px;
    font-weight: 600;
    color: var(--maroof-black);
    margin-bottom: 10px;
}

.policy-content__update {
    margin-bottom: 25px;
}

hr {
    border: none;
    height: 2px;
    margin: 20px 0;
    border-color: var(--maroof-bdr-color);
}

.policy-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
    position: relative;
    font-weight: 600;
}

/* ===== LIST ===== */

.policy-content li {
    position: relative;
    margin-bottom: 8px;
    list-style-type: disc;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .policy-content {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .policy {
        padding: 50px 0;
    }

    .policy-content h3 {
        font-size: 24px;
    }
}

/* ===== SIDEBAR ===== */

.policy__left {
    position: relative;
    display: block;

    position: sticky;
    top: 100px;
}

.policy__category {
    position: relative;
    display: block;
}

.policy__category-list {
    position: relative;
    display: block;
}

.policy__category-list li {
    position: relative;
    display: block;
}

.policy__category-list li + li {
    margin-top: 15px;
}

.policy__category-list li a {
    color: #333;
    font-size: 19px;
    font-weight: 500;
    position: relative;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    display: block;
    background: none;
    padding: 18px 20px 18px;
    border-radius: 8px;
    background-color: var(--maroof-primary);
    z-index: 1;
    text-decoration: none;
}

.policy__category-list li:hover a {
    color: var(--maroof-white);
}

.policy__category-list li.active a {
    color: var(--maroof-white);
}

.policy__category-list li a:after {
    position: absolute;
    bottom: 0px;
    top: 0px;
    left: 0;
    right: 0px;
    content: "";
    background-color: var(--maroof-base);
    border-radius: 8px;
    transform: scaleX(0);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: -1;
}

.policy__category-list li:hover a:after {
    transform: scaleX(1);
}

.policy__category-list li.active a:after {
    transform: scaleX(1);
}

.policy__category-list li a span {
    position: absolute;
    top: 50%;
    right: 40px;
    -webkit-transform: translateY(-50%) scale(1);
    transform: translateY(-50%) scale(1);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    color: var(--roofsie-black);
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 15px;
}

.policy__category-list li a:hover span {
    color: var(--maroof-white);
    -webkit-transform: translateY(-50%) scale(1);
    transform: translateY(-50%) scale(1);
}

.policy__category-list li.active a span {
    -webkit-transform: translateY(-50%) scale(1);
    transform: translateY(-50%) scale(1);
    color: var(--maroof-white);
}

.policy__need-help {
    position: relative;
    display: block;
    padding: 50px;
    margin-top: 40px;
    text-align: center;
    z-index: 1;
    border-radius: 16px;
}

.policy__need-help-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 16px;
    z-index: -1;
}

.policy__need-help-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    top: 0;
    left: 0;
    width: 100%;

    height: 100%;

    border-radius: 16px;

    background-color: var(--maroof-black);
    opacity: 0.7;
}

.policy__need-help-icon {
    height: 75px;
    width: 75px;
    background-color: var(--maroof-base);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 24px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.policy__need-help-icon:hover {
    background-color: var(--maroof-black);
}

.policy__need-help-icon i {
    font-size: 28px;
    color: var(--maroof-white);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.policy__need-help-icon:hover span {
    color: var(--maroof-white);
}

.policy__need-help-title {
    font-size: 36px;
    color: var(--maroof-white);
    line-height: 38px;
    font-weight: 600;
    text-align: center;
}

.policy__need-help-contact {
    position: relative;
    display: block;
    margin-top: 38px;
}

.policy__need-help-contact p {
    color: #fff;
    font-weight: 600;
    margin-bottom: 6px;
    text-align: center;
}

.policy__need-help-contact a {
    font-size: 22px;
    color: var(--maroof-white);
    font-weight: 600;
    transition: all 500ms ease;
    text-decoration: none;
    text-align: center;
}

.policy__need-help-contact a:hover {
    color: var(--maroof-base);
}

.policy__download {
    position: relative;
    display: block;
}
