.policies_wrapper {
    margin-top: -50px;
}

.policy {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: calc((100% - 100px) / 3);
    margin-top: 50px;
    background-color: var(--light-brown);
    border: 10px solid #FFFFFF;
    border-radius: 20px;
    padding: 30px;
    box-sizing: border-box;
    box-shadow: 0px 3px 6px #00000029;
    transition: 0.1s all ease-in-out;
}

.policy .policy_details h2 {
    margin: -8px 0 0 0;
    color: var(--brown);
}

.policy .policy_details p {
    color: var(--black);
    margin: 10px 0 20px;
    font-weight: 500;
}

.policy .policy_details p i {
    width: 26px;
    margin-top: 4px;
}

.card_icon {
    position: absolute;
    top: -23px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    margin: 0;
    height: 50px !important;
    background-color: var(--brown);
    text-align: center;
    color: var(--white) !important;
    font-family: "BPreplay-Bold";
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 1px;
    text-decoration: none;
    border: none;
    outline: none;
    border-radius: 5px;
    cursor: pointer;
    opacity: 1;
    text-transform: uppercase;
    box-sizing: border-box;
    transition: 0.1s all ease-in-out;
    box-shadow: 0px 5px 5px #0000001A;
}

.policy .button1 {
    margin: 0;
}

.policy:hover {
    background-color: var(--brown);
    transition: 0.1s all ease-in-out;
}

.policy:hover h2 {
    color: var(--white);
    transition: 0.1s all ease-in-out;
}

.policy:hover h3,
.policy:hover p {
    color: var(--white);
    opacity: 0.6;
    transition: 0.1s all ease-in-out;
}

@media (max-width: 1350px) {
    .policy {
        width: calc((100% - 50px) / 2);
    }
}

@media (max-width: 1000px) {
    .policy {
        width: 100%;
    }
}