.line {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 40px;
}

.line:nth-child(2) .text {
    order: -1;
    text-align: right;
    align-items: end;
}

.line:nth-child(2) {
    grid-template-columns: 3fr 1fr;
}

.photo {
    background: #a0a0a009;
    border-radius: 5px;
    overflow: hidden;
}

.content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

img {
    width: 100%;
    position: relative;
}

.btn {
    border: 1px solid #A0A0A0;
    color: #A0A0A0 !important;
    padding: 10px 20px;
    display: inline-block;
    text-align: center;
    border-radius: 5px;
    background: rgba(24, 24, 24, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    transition: .3s;
    cursor: pointer;
    text-decoration: none;
    width: fit-content;
}

.text {
    display: flex;
    flex-direction: column;
}

.text p {
    height: 100%;
}

.btn:hover {
    background: rgba(100, 100, 100, 0.3);
}

@media screen and (max-width: 1000px) {
    .line {
        grid-template-columns: 1fr 1fr;
    }

    .line:nth-child(2) {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 1200px) {
    .line {
        grid-template-columns: 1fr 2fr;
    }

    .line:nth-child(2) {
        grid-template-columns: 2fr 1fr;
    }
}

@media screen and (max-width: 650px) {
    .line {
        grid-template-columns: 1fr;
    }

    .line:nth-child(2) {
        grid-template-columns: 1fr;
    }

    .line:nth-child(2) .text {
        order: unset;
        text-align: unset;
        align-items: start;
    }

    .btn {
        margin-top: 20px;
    }
}

.contact {
    gap: 8px;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.contact:last-child {
    margin-bottom: 0;
}

.metaheader {
    margin: 60px 0 20px 0;
    font-size: 3.5em;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
}

@media screen and (max-width: 970px) {
    .metaheader {
        font-size: 1.7rem;
        justify-content: start;
        align-items: center;
    }
}