@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");

#services {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.servicesTitle h1 {
    font-family: Poppins, sans-serif;
    font-weight: 500;
    text-align: center;
}

#services .servicesImage {
    height: 180px;
    width: 400px;
    margin-bottom: 30px;
}

#services .servicesImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

#services .servicesText {
    width: 80%;
    margin: 0 auto 30px;
    color: #5b5a5a;
}

#services .servicesText a {
    color: #5b5a5a;
    font-size: 1rem;
}

#services .servicesText a:hover {
    border: none;
    text-decoration: underline;
    color: #383838;
}

#services .servicesText ul {
    position: initial;
    width: initial;
    height: initial;
    background: initial;
    top: initial;
    left: initial;
    text-align: initial;
}

#services .servicesText ul li span {
    background-color: rgb(18, 175, 13);
    color: white;
    padding: 2px 10px;
    border-radius: 4px;
}

@media (min-width: 800px) {
    #services {
        flex-direction: row;
    }

    #services > div {
        margin: 0 20px;
    }

    #services .servicesImage {
        height: 500px;
    }

    #services .servicesText {
        font-size: 1rem;
    }
}

@media (min-width: 1000px) {
    #services {
        width: 80%;
        margin: 4rem auto 8rem;
        align-items: initial;
    }

    #services .servicesImage {
        height: 600px;
        width: 550px;
    }

    #services .servicesText,
    #services .servicesText a {
        font-size: 1.3rem;
    }

    .servicesTitle {
        width: 80%;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .servicesTitle h1 {
        text-align: initial;
    }
}

.footerDivider {
    background-color: var(--purple-color);
}

.footerBox {
    border-top: 5px solid var(--purple-color);
    color: #5d4538;
}

.footerRightAddress {
    color: #5d4538;
}

.copyright {
    background-color: var(--purple-color);
}

.copyright a {
    color: #5d4538;
}

.copyright a:hover {
    color: black;
}

#myBtn {
    background: var(--purple-color);
}

#myBtn:hover {
    background-color: rgb(14, 28, 158);
}
