.At_skill_align {
    display: flex;
    justify-content: space-between;
    padding: 50px;
    gap: 20px;
    flex-wrap: wrap;
    /* background-image: linear-gradient(341deg, #3763f4 -26%, #ffffff1c 45%); */
}

.At_content_wrapper {
    width: 100%;
    max-width: calc(60% - 20px * 1 / 2);
}

.At_heading {
    font-family: var(--secondary-font);
    font-size: 3.2em;
    font-weight: 700;
}

.At_paragraph {
    font-family: var(--tertiary-font);
    font-size: 1.2em;
    margin: 20px 0;
}

.At_more_about_us {
    background-color: #3763f4;
    color: #fff;
    border-radius: 5px;
    padding: 8px 18px;
    text-decoration: none;
    font-weight: 600;
    width: fit-content;
    font-family: var(--primary-font);
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
}

.At_services_wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: calc(30% - 20px * 1 / 2);
}

.At_service_item {
    background-color: rgba(28, 28, 28, 0.8);
    padding: 20px;
    border-radius: 5px;
    border: 1px solid #333;
    text-align: center;
    opacity: 0;
    transform: translateX(100%);
}

.At_service_title {
    font-family: var(--primary-font);
    font-size: 1.5em;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.At_service_description {
    font-family: var(--tertiary-font);
    font-size: 1em;
}

@media screen and (max-width: 981px) {
    .At_content_wrapper, .At_services_wrapper {
        max-width: none;
    }
}

@media (max-width: 768px) {
    .home-grp-section-1 .container {
        padding: 16px;
    }
    .At_paragraph {
        font-size: 1em;
    }
    h1.hp_service_sec-heading {
        font-size: 30px;
    }

    .At_skill_align {
        padding: 16px;
    }

    .At_heading {
        font-size: 30px;
    }
}