@font-face {
    font-family: blinker;
    src: url(fonts/Blinker-SemiBold.ttf);
}


.package-second .value {
    width: 36%;
    height: 4%;
    background-color: #d8000e;
    position: absolute;
    top: -15px;
    left: 30%;
    border-radius: 25px;
    font-size: 14px;
    color: white;
    font-weight: 500;
    padding: 1px 2px;
}

.other-container {
    background-color: #F5F5FA;
    padding: 5px 15px 40px 15px;
}

.other-content {
    background-color: white;
}

.other-content .card-btn {
    width: 60%;
    margin: 0 auto;
    padding: 0px 10px 35px 10px;

}

.other-content .card-btn button {
    font-size: 15px;
}


.unique-extra {
    margin-top: 0px;
    box-shadow: none;
}


.other-removing {
    background-color: transparent;
}

.number-flex {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.number-three {
    max-width: 1020px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

/* .number-three .content-cards {
    width: 20em;
} */

.content-cards h2 {
    font-size: 31px;
}

.privacy-content {
    padding: 10px 20px;
}

.privacy-content h2 {
    font-size: 25px;
    font-weight: bold;
    font-family: blinker;
    color: linear-gradient(135deg,
            #000000 0%,
            #232033 50%,
            #8c86a8 100%);
}

.privacy-content h1 {
    font-size: 31px;
    font-weight: bold;
    font-family: Ptsans;
    color: #1c2644;
}

ol li span {
    font-weight: bold;
    color: rgb(63, 63, 63);
    font-size: 14px;
}

ol li {
    font-size: 15px;
    color: rgb(63, 63, 63);
    line-height: 30px;
    list-style: circle;
}

ol li a {
    color: rgb(63, 63, 63);
}

ol li a:hover {
    color: rgb(63, 63, 63);
}

#after {
    color: rgb(63, 63, 63);
    font-size: 14px;
    line-height: 25px;
}

.privacy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 20px;
    animation: left-right 1.3s ease 1;
}

.privacy-content {
    padding: 15px 10px;
}

.footer-stretch {
    gap: 100px;
}

@media only screen and (max-width:545px) {
    .footer-stretch {
        gap: 40px;
    }
}

@media only screen and (max-width:1040px) {
    .other-cards {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .extra {
        width: 204%;
    }
}


@media only screen and (max-width:1050px) {
    .number-three {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .number-three .content-cards {
        max-width: 100%;
    }
}


@media only screen and (max-width:693px) {
    .other-cards {
        display: grid;
        grid-template-columns: 1fr;
    }

    .extra {
        width: 100%;
    }
}

@media only screen and (max-width:895px) {
    .number-flex {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

}


@keyframes left-right {
    from {
        transform: translatex(-75px);
    }

    to {
        transform: translatex(0px);
    }
}