body {
    width: 100%;
    height: 100%;
}

main {
    margin: 0 1rem 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.light-blue {
    color: #41B8AA;
}

.orange {
    color: #FA994A;
}

.marg {
    margin: 0 0 1rem 0;
    font-weight: bold;
}

.heading {
    color: #fa994a;
    text-align: center;
    font-size: 40px;
    margin: 5rem 0 3rem 0;
}

.subheading {
    color: white;
    text-align: center;
    font-size: 26px;
    margin: 0 0 2rem 0;
}

#contctus {
    width:100%;
    background: url(/backgrounds/background1111.svg)center center / cover no-repeat border-box border-box;
    display: flex;
    flex-direction: column;
}

h3 {
    font-size: 24px;
    color: #fa994a;
    margin: 5rem 3rem 5rem 3rem;
    text-align: center;
}

#cont {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.article_picture {
    display: flex;
    flex-direction: column;
}

.article {
    font-size: 16px;
    color: white;
    line-height: 30px;
    border: solid 1px #595959;
    padding: 1rem;
    border-radius: 20px;
    margin: 0 0 2rem 0;
}

.article:hover,
.article:active {
    background-color: rgb(37, 37, 37);
    border: solid 1px #fa994a;
}

.solutions_picture {
    background: linear-gradient(to bottom, rgb(65, 184, 170, 0.2) 57%, transparent), url(/backgrounds/business.png) center / cover no-repeat border-box;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: solid 1px #fa994a;
    border-radius: 20px;
}

.box-article {
    font-size: 16px;
    color: white;
    line-height: 30px;
}

.feature-box {
    border: solid 1px #595959;
    padding: 1rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-box:hover,
.feature-box:active {
    background-color: #252525;
    border: solid 1px #fa994a;
}

.contact-option {
    color: #41B8AA;
    text-decoration: none;
    font-weight: bold;
    font-size: 20px;
    margin: 0 0 3rem 0;
}

.button {
    width: 8rem;
    height: 3rem;
    color: #252525;
    text-decoration: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    transition: all 0.3s ease;
    margin-bottom: 3rem;
}

.button {
    background: #41B8AA;
    border: 1px solid #FA994A;
}

.button:hover {
    background: #52efdd;
    border: 1px solid #FA994A;
}

@media (min-width: 768px) {
    .article {
        font-size: 20px;
    }

    .box-article {
        font-size: 20px;
    }
}

@media (min-width: 1024px) {
    .article_picture {
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .article {
        height: 13rem;
        margin: 0 2rem 0 0;
    }

}

@media (min-width: 1100px) {
    main {
      margin:0
    }

    .article {
        height: auto;
        padding: 4rem;
        margin: 0 2rem 0 0;

    }

    .solutions_picture {
        aspect-ratio: 14 / 9;
    }

    .services {
        display: flex;
        flex-direction: row;
    }

    .feature-box {
        height: auto;
        width: 21rem;
        padding: 3rem;
        margin: 1rem 1rem 1rem 1rem;
    }

    .button {
        width: 11rem;
        height: 3rem;
        font-size: 20px;
    }
}

@media (min-width: 2400px) {

    main {
        width: 80%;
        max-width: 1750px;
        margin-left: auto;
        margin-right: auto;
    }


}