.services {
    padding: 5rem 0;
    text-align: center
}

.services .head-sec h3 {
    text-align: center
}

.services .content {
    padding: 6rem 0;
}

.services .content .service {
    display: flex;
    gap: 1rem;
}

.services .content .service .icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    border: thin solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
}

.services .content .service .title {
    color: var(--text-color);
    font-size: 18px;
    font-weight: bold;
}

.services .content .service .description {
    color: var(--gray-color);
}

.services .content .loader {
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.services .content .loader img {
    height: 100%;
    cursor: pointer;
}

.services .btn {
    margin: 0 auto
}

@media (max-width: 991.99px) {
    .services .content {
        padding: 1rem 0;
    }
}

@media (max-width: 767.99px) {
    .services .content .loader {
        width: 100%;
    }

    .services .content .loader img {
        width: 100%;
    }
}
