.text_center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tagline {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
}

.section-m1 {
    margin: 48px 0;
}

.btn-2 {
    margin-top: 20px;
    display: flex;
    cursor: pointer;
    margin: 15px;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background-color: white;
    font-weight: 700;
    transition: 0.2s;
    outline: none;
}

.btn-2:hover {
    background-color: rgb(83, 87, 94);
    color: white;
    border: 5px solid;
}

.social-icons {
    display: flex;
}

.social-icons a {
    font-size: 40px;
    margin: 0 20px;
    color: white;
    width: 15px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    display: flex;
    flex-wrap: wrap;
    text-decoration: none;
    transition: 0.3s;
}

.social-icons a:hover {
    transform: scale(1.1);
    opacity: 0.9;
}

.services {
    margin: 15px;
}


@media (max-width:477px) {

    .hero {
   
    height: 47vh;
    width: 100%;
    background-color: rgb(242, 243, 245);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top 117% right 0px;
    display: flex;
   
}
    h1 {
        margin-bottom: 10px;
        font-size: 15px;
    }

    h5 {
        font-size: 8px;
        display: flex;
    }

    p {
        padding: 20px;
        font-size: 13px;
    }

    .tagline {
        margin-top: 10px;
    }

    h2 {
        margin-bottom: 10px;
        font-size: 14px;
    }
    .btn-2{
    width: 105px;
    padding: 8px
}

}