.pol__titles {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    background: #FFF;
    box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.09);
    padding: 8px;
}
.pol__titles__wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}
.pol__title {
    padding: 15px 20px;
    border-radius: 100px;
    cursor: pointer;
    text-align: center;
}
.pol__title.active {
    box-shadow: 0px 8px 30px 0px rgba(29, 76, 90, 0.22);
}
.pol__content {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    max-width: 100%;
}
.pol__content.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    pointer-events: unset;
}
@media(max-width:767px){
.pol__title {
    flex-wrap: wrap;
}
.pol__titles {
    flex-wrap: wrap;
}
}