/* PROTECTION */

.protection {
    padding: 70px 0 60px;
}

.protection__title {
    max-width: 800px;
    margin-bottom: 70px;
}

.protection__head {
    display: flex;
    align-items: center;
    background-color: var(--color-gray);
    height: 80px;
    font-weight: 700;
    font-size: 30px;
    line-height: 36px;
    text-transform: uppercase;
    color: #fff;
    padding-left: 30px;
    margin-bottom: 50px;
}

.protection__nav {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    background-color: var(--color-accent);
    margin-left: auto;
    width: 250px;
    height: 100%;
}

.protection__nav svg {
    cursor: pointer;
}

.protection__pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: auto !important;
}

.protection__pagination .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    border: 2px solid #000000;
    background-color: transparent;
    opacity: 1;
    margin: 0 !important;
    transition: all .3s;
}

.protection__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #000;
}

.protection__slider {
    position: relative;
    overflow: hidden;
}

.protection__slider::before {
    content: '';
    width: 100%;
    height: 1px;
    background-color: var(--color-gray);
    position: absolute;
    top: 20px;
    left: 0;
    z-index: -1;
}

.protection__numb {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-gray);
    background-color: var(--color-light-gray);
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: var(--color-gray);
    margin-bottom: 25px;
}

.protection__slider h3 {
    font-size: 15px;
    line-height: 24px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.protection__slider p {
    color: var(--color-gray);
}

@media (max-width: 650px) {
    .protection__head {
        flex-direction: column;
        height: auto;
        padding-left: 0;
        text-align: center;
        font-size: 20px;
        line-height: 45px;
    }

    .protection__nav {
        height: 60px;
        width: 100%;
    }

    .protection__nav svg {
        display: flex;
    }
}

@media (max-width: 590px) {
    .protection {
        padding: 30px 0 30px;
    }

    .protection__title {
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .protection__pagination .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }

    .protection__pagination {
        gap: 6px;
    }

    .protection__nav svg {
        width: 10px;
    }

    .protection__head {
        padding: 10px;
        line-height: 34px;
    }
}

/* \PROTECTION */