/* segment 1 */
.seg1 {
    display:flex;
    column-gap: 30px;
    justify-content: space-between;
    padding: 20px;
}

.column1 {
    width: 810px;
    text-align: center;
    align-content: center;
    justify-self: center;
}

.column1 img {
    width: 100%;
    display: flex;
}

.column2 {
    width: 600px;
    height: 643px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

h1 .quote {
    margin: 0 60px 0 60px;
}

.column2 .block-1 {
    width: 100%;
    height: 60px;
    display: flex;
    flex-direction: row;
    text-decoration: none;
    text-align: center;

    background-color: rgba(169, 169, 169, 0.493);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1), inset 0 0 1px rgba(255, 255, 255, 0.525);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.column2 .block-2 {
    width: 100%;
    height: 60px;
    display: flex;
    flex-direction: row;
    text-decoration: none;
    text-align: center;

    background-color: rgba(169, 169, 169, 0.493);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1), inset 0 0 1px rgba(255, 255, 255, 0.525);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.column2 .block-3 {
    width: 100%;
    height: 60px;
    display: flex;
    flex-direction: row;
    text-decoration: none;
    text-align: center;

    background-color: rgba(169, 169, 169, 0.493);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1), inset 0 0 1px rgba(255, 255, 255, 0.525);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.link {
    width: 100%;
    height: 75%;
    background-color: rgba(26, 26, 26, 0.75);
    align-self: center;
    align-content: center;
    margin: 20px;
    font-size: 24px;
    font-family: 'JosefinSans';
    color: #f2f7ef;
    font-weight: 700;
    text-decoration: none;
    box-shadow: inset 0 0 10px black;
    border-radius: 10px;
    text-shadow: 0 0 1px #f2f7ef;
    filter: var(--fil);
}

.link:hover {
    background-color: #e73a27;
    text-shadow: 0 0 3px #f2f7ef;
    box-shadow: inset 0 0 15px black;
}

.direct {
    width: 50%;
    align-self: center;
    font-size: 36px;
    font-family: 'JosefinSans';
    font-weight: 400px;
    text-wrap: none;
    color: rgba(26, 26, 26, 0.217);
}

@media screen and (max-width: 1220px) {
    .seg1 {
        flex-direction: column;
        row-gap: 30px;
    }
    .column1, .column2 {
        width: 100%;
    }
    .column1 {
        order: 2;
    }
}

/* Gallery */

.gallery {
    display: block;
    align-items: space-between;
    column-gap: 10px;
    padding: 20px;
}

.gallery div {
    height: 100%;
}

.gallery > * {
    padding: 1rem 1rem 0 0;;
    margin: auto;
    width: 100%;
}

@media (min-width:1220px) {
    .gallery {
        display: grid;
        grid-auto-rows: 1fr;
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.gallery img {
    width: 100%;
    height: auto;
    padding: 6px 0 6px 0;
}
