.companyArea {
    width: 100%;
    height: 100%;
    font-family: var(--fontOne);
    position: relative;
}

.areaIntroCm {
    padding: 25px 30px 17px 30px;
}

.areaIntroCm>a {
    width: fit-content;
    height: fit-content;
}

.areaIntroCm>a>img {
    width: 30px;
    height: auto;
    animation: rotate 4s infinite;
    margin-bottom: 10px;
}

@keyframes rotate {
    to {
        rotate: 360deg;
    }
}

.areaIntroCm>h2 {
    width: fit-content;
    background: -webkit-linear-gradient(-45deg, #ffffff, #AA9CFC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 23px;
    line-height: 1.27;
}

.areaIntroCm>p {
    font-weight: 400;
    color: #ACA0E4;
    font-size: 90%;
    max-width: 90%;
    margin: 15px 0 20px 0;
}

.CoSocialsArea {
    width: fit-content;
    height: fit-content;
    padding: 7px;
    background-color: rgba(17, 10, 43, 0.8);
    border-radius: 0.75rem;
    box-shadow: inset 0 3px 1px #110A2B;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.oneComProfile {
    width: 32px;
    height: 32px;
    border-radius: 0.5rem;
    border: none;
    overflow: hidden;
    background-color: transparent;
}

.oneComProfile>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.companyServicesImg {
    position: absolute;
    width: 80%;
    bottom: 0;
    right: 0;
    margin: 15px;
    filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.05));
}

@media only screen and (max-width: 1280px) {
    .areaIntroCm>a>img {
        width: 27px;
    }

    .areaIntroCm>h2 {
        font-size: 19px;
    }

    .areaIntroCm>p {
        font-size: 80%;
    }

    .oneComProfile {
        width: 27px;
        height: 27px;
        border-radius: 0.4rem;
    }
}

@media only screen and (max-width: 1080px) {
    .areaIntroCm>a>img {
        width: 30px;
    }

    .areaIntroCm>h2 {
        font-size: 23px;
    }

    .areaIntroCm>p {
        font-size: 90%;
        max-width: 55%;
    }

    .oneComProfile {
        width: 32px;
        height: 32px;
        border-radius: 0.5rem;
    }

    .companyServicesImg {
        width: 40%;
        bottom: 0;
        right: 0;
    }
}

@media only screen and (max-width: 768px) {
    .areaIntroCm>a>img {
        width: 27px;
    }

    .areaIntroCm>h2 {
        font-size: 19px;
    }

    .areaIntroCm>p {
        font-size: 80%;
    }

    .oneComProfile {
        width: 27px;
        height: 27px;
        border-radius: 0.4rem;
    }
}

@media only screen and (max-width: 576px) {
    .companyArea {
        display: flex;
        flex-direction: column;
    }

    .areaIntroCm>p {
        max-width: 85%;
    }

    .companyServicesImg {
        position: relative;
        width: 70%;
        align-self: flex-end;
    }

}