@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500&display=swap");

.about-us {
    display: flex;
    align-items: center;
    height: 100vh;
    width: 100%;
    background: #fff;
}

.pic {
    height: auto;
    width: 400px;
    border-radius: 12px;
}

.about {
    width: 1130px;
    max-width: 85%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.text {
    width: 540px;
}

.text h2 {
    color: #4070f4;
    font-size: 90px;
    font-weight: 600;
    margin-bottom: 10px;
}

.text h5 {
    padding-top: 10px;
    padding-left: 10px;
    color: #333;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 20px;
}

.text p {
    color: #333;
    font-size: 18px;
    line-height: 25px;
    letter-spacing: 1px;
}

.data {
    margin-top: 30px;
}

.hire {
    font-size: 18px;
    background: #4070f4;
    color: #fff;
    text-decoration: none;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    transition: 0.5s;
}

.hire:hover {
    background: #000;
}

/* Responsive for Mobile */

.about-us-mob{
    display: none;
}

@media (max-width: 768px) {
    .about-us{
        display: none;
    }

    .about-us-mob{
        display: block;
    }
}