.privacy .privacy-head {
    height: 700px;
    background: #2c3033 url(../../../images/privacy_img.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: relative;
    aspect-ratio: 1 / 1;
    object-fit: fill;
    width: 100%;
}

.privacy .privacy-head .content {
    width: 100%;
    position: absolute;
    bottom: 10px;
}

.privacy .privacy-head .icons i {
    cursor: pointer;
    font-size: 15px;
    box-shadow: 0px 4px 4px 0px #00000040;
    background-color: #fff;
    color: var(--black);
    margin-right: 10px;
    border-radius: 4px;
}

.privacy .privacy-head .title h2 {
    color: #fff;
    font-weight: bold;
    margin-bottom: 10px;
}

.privacy .privacy-head .logo img {
    width: 150px;
    margin-bottom: 20px;
}

@media (min-width: 280px) and (max-width: 767px) {
    .privacy .privacy-head {
        height: 300px;
        margin-top: 65px;
    }

    .privacy .privacy-head .content {
        justify-content: space-evenly !important;
        left: 15px;
    }

    .privacy .privacy-head .icons i {
        font-size: 10px;
        margin-right: 5px;
    }

    .privacy .privacy-head .title h2 {
        margin-bottom: 0px;
        font-size: 15px;
    }

    .privacy .privacy-head .logo img {
        width: 75px;
        margin-bottom: 0px;
    }
}

/* /////////////////////////////// */

.privacy-desc {
    margin: 30px auto;
}

.shapes {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.shapes span:first-child {
    display: inline-block;
    height: 2px;
    width: 250px;
    background-color: var(--primary2);
    margin-right: 10px;
}

.shapes span:nth-child(2) {
    display: inline-block;
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: var(--primary2);
}

.shapes span:nth-child(3) {
    display: inline-block;
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: #2E394B;
}

.shapes span:nth-child(4) {
    display: inline-block;
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: var(--primary2);
}

.shapes span:nth-child(5) {
    display: inline-block;
    height: 2px;
    width: 250px;
    background-color: var(--primary2);
    margin-left: 10px;
}

@media (min-width: 280px) and (max-width: 767px) {
    .privacy-desc {
        margin: 10px auto;
    }
}

/* ///////////////// */


.privacy-policy {
    background: url(../../../images/ourServiceAr.png);
    background-repeat: no-repeat;
    background-position: left -100px;
    background-size: 30% 100%;
}

.privacy-policy .contain {
    background-color: #d9dfe8c2;
    width: 90%;
    margin: 50px auto;
    padding: 25px;
}

.privacy-policy .contain h2 {
    margin-left: 20px;
    font-weight: 700;
}

.privacy-policy .contain .icons {
    margin-left: 20px;
}

.privacy-policy .contain .icons i {
    cursor: pointer;
    font-size: 20px;
    color: var(--primary2);
    margin-left: 10px;
    border-radius: 4px;
}

.privacy-policy .contain .images {
    margin: -30px 0 10px;
}

.privacy-policy .contain .privacy-img-1 img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: fill;
}

.privacy-policy .contain .privacy-img-2 img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: fill;
}

.privacy-policy .contain .privacy-img-3 img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: fill;
}

.privacy-policy .contain .privacy-img-4 img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: fill;
}

@media (min-width: 280px) and (max-width: 767px) {
    .privacy-policy .contain {
        margin: 0px auto;
        padding-top: 10px;
    }

    .privacy-policy .contain h2 {
        margin-left: 0px;
    }

    .privacy-policy .contain .icons {
        margin-left: 30px;
    }

    .privacy-policy .contain .images {
        margin: 10px 0;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .privacy-desc {
        margin: 10px auto;
    }

    .privacy-policy .contain {
        margin: 20px auto;
        padding: 10px;
    }

    .privacy-policy .contain h2 {
        margin-left: 0px;
    }

    .privacy-policy .contain .images {
        margin: -20px 0 10px;
    }
}

@media (min-width: 1439px) {
    .privacy-policy .contain {
        /* height: auto; */
        padding: 30px;
    }

    .privacy-policy .contain .images {
        margin: -70px 0 10px;
    }

    .privacy-policy .contain .privacy-img-1 img {
        width: 100%;
        height: 400px;
    }

    .privacy-policy .contain .privacy-img-2 img {
        width: 100%;
        height: 200px;
    }

    .privacy-policy .contain .privacy-img-3 img {
        width: 100%;
        height: 150px;
    }

    .privacy-policy .contain .privacy-img-4 img {
        width: 100%;
        height: 200px;
    }
}


/* ///////////////////////////// */

.privacy-info p {
    text-align: justify;
    -webkit-line-clamp: 4;
    display: -webkit-box;
    overflow-y: clip;
    -webkit-box-orient: vertical;
}

.privacy-info i {
    font-size: 60px;
    color: var(--primary2);
    margin-bottom: 20px;
    cursor: pointer;
    transition: .5s;
}

.privacy-info i:hover {
    transform: scale(1.3);
}

.privacy-info .line {
    height: 1px;
    background-color: var(--primary2);
    margin: 15px 0px 8px;
}

.privacy-info .contact {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

@media (min-width: 280px) and (max-width: 767px) {
    .privacy-info {
        margin-top: 20px;
    }
}