.our_clients {
    display: none;
}

.container {
    font-family: "Poppins", "Roboto", sans-serif;
    width: 80%;
    max-width: 1200px;
    margin: 30px auto 0px auto;
    display: flex;
}

.head {
    width: 70%;
    display: flex;
    /* background: blue; */
    flex-direction: column;
}

.head_secondary {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.09rem;
    color: #ccc;
}

.head_primary {
    margin: 10px 0 30px 0;
    font-size: 45px;
    font-weight: 500;
    line-height: 4rem;
}

.head_primary::after {
    content: "";
    display: block;
    margin-top: 10px;
    height: 5px;
    width: 100px;
    background: var(--gradient);
    border-radius: 35px;
}

.info {
    color: #ccc;
    font-size: 12px;
    width: 80%;
    line-height: 1.4rem;
    margin-bottom: 20px;
}

.analytic {
    display: flex;
}

.analytic div {
    width: 200px;
    margin-right: 20px;
}

.number {
    font-size: 45px;
    font-weight: 500;
}

.analytic_info {
    color: #ccc;
    font-size: 14px;
    font-size: 12px;
    width: 100%;
    /* width: 140px !important; */
}

.all_clients {
    position: relative;
    /* background: red; */
    width: 40%;
}
.clients {
    /* width: 100%; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.clients:last-child {
    margin-top: 40px;
}

.clients img {
    width: 45%;
}

.divider {
    position: absolute;
    height: 100%;
    width: 3px;
    left: 50%;
    background: var(--gradient-vertical);
    border-radius: 30px;
}

@media screen and (max-width: 1200px) {
    .head_primary {
        font-size: 32px;
        line-height: 3rem;
    }
    .head_secondary {
        font-size: 12px;
    }
}

@media screen and (max-width: 1000px) {
    .container {
        flex-direction: column;
    }
    .head {
        width: 100%;
    }
    .all_clients {
        margin-top: 50px;
        width: 60%;
    }
}
@media screen and (max-width: 850px) {
    .our_clients {
        display: block;
    }
}
@media screen and (max-width: 700px) {
    .head_secondary {
        font-size: 12px;
    }
    .head_primary {
        font-size: 32px;
        line-height: 2.5rem;
    }
}
@media screen and (max-width: 450px) {
    .head_secondary {
        font-size: 10px;
    }
    .head_primary {
        font-size: 24px;
        line-height: 2rem;
    }
    .info {
        font-size: 10px;
        line-height: 1.2rem;
    }
    .analytic {
        flex-direction: column;
    }
    .analytic div {
        display: flex;
        margin: 10px 0;
        align-items: center;
        width: 100%;
    }
    .number {
        width: 40%;
        /* margin-right: 10px; */
    }
    .analytic_info {
        flex: 1;
    }
    .all_clients {
        width: 100%;
    }
}

@media screen and (max-width: 350px) {
    .analytic div {
        width: 200px;
    }
    .number {
        width: 90%;
        margin-right: 10px;
    }
    .analytic_info {
        flex: auto;
    }
}
