:root {
    --color-datgreen: #909c83;
}

section#services-sect {
    display: flex;
    flex-direction: column;
    width: 100vw;
    height: 100vh;
    background: transparent;
    margin-top: 10rem;
}
#services-sect * {
    display: flex;
    flex-direction: column;
    text-align: center;
}

#services-sect > div:nth-child(1) {
    padding-bottom: 5vh;
    color: white;
}

#services-sect > div:nth-child(2) {
    align-self: center;
    flex-direction: row;
    width: 85vw;
    column-count: 2;
}

#services-sect > div:nth-child(2) > .product {     
    width: 100%;
    height: 100%;
    margin: 0px 10px;
    border-radius: 5px;
    overflow: hidden;
}
.product > div {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    display: block !important;
}
.product > div > img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}
.product > div > .product-info {
    padding: 10px;
    text-align: center;
    flex-direction: row;
    display: block !important;
}
.product-info > * {
    margin: 10px 3%;
}
.product-info > h1 {
    color: var(--color-bg);
}
.product-info > p {
    font-size: 1rem;
    font-weight: 400;
}
.product-info > p:last-child {
    font-weight: 700;
}

#text-holder {     
    display: inline;
    height: 100% !important;
    margin-top: 10%;
}
#text-holder > h3 {
    font-weight: 400;
}
#text-holder > h1 {
    color: var(--color-datgreen);
    font-size: 5vw;
}
#text-holder > p {
    justify-self: center;
    padding: 0% 10%;
    font-weight: 300;
}
#text-holder > button {
    background: var(--color-datgreen);
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    margin: 10% auto;
    cursor: pointer;
}

#services-sect div:nth-child(2) > img#i2 {     
    height: 100%;
    aspect-ratio: auto;
}

@media (max-width: 900px) {
    section {
        height: auto !important;
    }
    #services-sect > div:nth-child(2) {
        flex-direction: column !important;
        height: auto !important;
        width: 90vw !important;
    }
    .product {
        background: transparent !important;
        margin: 15px 0px !important;
        padding: 0px !important;
    }
}
