.first-section .text-container {
    width: 80%;
    max-width: 1200px;
}

.first-section p {
    font-size: 1.4rem;
}

.first-section h1 {
    margin: 0;
}

.second-section {
    background-image: linear-gradient(180deg, rgba(35,40,53,1) 0%, rgb(49, 55, 73) 100%);
}

/*
    Palvelut
*/

.services {
    margin: 3rem 0 2rem 0;
    width: 80%;
    flex-wrap: wrap;
    gap: 2rem 5rem;
}

.option {
    display: flex;
    flex-flow: column;

    width: 100%;
    max-width: 500px;
    height: auto;

    border-radius: 20px;
    overflow: hidden;

    background-color: #0d152d;
}

.option-image {
}

.option-image img {
    width: 100%;
    aspect-ratio: 1/1;
    display: block;
}

.option-info {
}

.option-info .wrapper {
    width: 100%;
    height: 100%;

    display: flex;
    flex-flow: column;
}

.option-description {
    flex: 1 1 auto;
    padding: 1rem;
}

.option-description h3 {
    text-transform: uppercase;
}

.option-link {
     padding: 1rem;
     background-color: rgba(0,0,0,0);
}

.option-link a {
    color: white;
    text-transform: capitalize;
}

.option-link a:hover {
    font-weight: 600;
    transition: 0.5s;
}

@media screen and (min-width: 800px) {

    .responsive-order-first {
        order: -1;
    }

    .services {
        gap: 5rem 5rem;
    }


    /*
    .option-image {
        flex: 1 1 0;
    }

    .option-info {
        flex: 1 1 0;
    }

    .option {
        flex-flow: row;
        max-width: none;
    }
    */
}

@media screen and (max-width: 459)
{
    .title-text h1 {
        font-size: 2.2rem;
    }
}

@media screen and (max-width: 359)
{
    .first-section .text-container {
        width: 100%;
    }
}