:root {
    --dark: #263746;
    --dark-2: #405365;
    --gray: #667585;
    --light: #d9e7f0;
    --light-2: #c7dce9;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family:inherit;

    background: var(--dark);
    color: var(--white);
}

.about {
    display: grid;
    grid-template-columns: 1fr 1fr;

    min-height: 720px;
}

.about__image {
    overflow: hidden;
}

.about__image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .8s ease;
}

.about__image:hover img {
    transform: scale(1.04);
}

.about__content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 80px clamp(40px, 7vw, 100px);
}

.about__label {
    color: var(--light-2);

    font-size: 12px;
    font-weight: 800;
    letter-spacing: .15em;
}

.about h1 {
    margin-top: 22px;

    font-size: clamp(40px, 5vw, 67px);
    line-height: .98;
    letter-spacing: -.055em;
}

.about h1 span {
    color: var(--light-2);
}

.about__lead {
    margin-top: 32px;

    color: rgba(255,255,255,.8);

    font-size: 19px;
    line-height: 1.6;
}

.about__content > p:not(.about__lead) {
    margin-top: 22px;

    color: rgba(255,255,255,.58);

    font-size: 15px;
    line-height: 1.7;
}

.about__button {
    width: fit-content;

    margin-top: 35px;
    padding: 14px 19px;

    border: 1px solid rgba(255,255,255,.2);
    border-radius: 12px;

    color: var(--white);
    text-decoration: none;

    transition:
        background .25s ease,
        transform .25s ease;
}

.about__button:hover {
    background: rgba(255,255,255,.1);
    transform: translateY(-3px);
}

@media (max-width: 800px) {

    .about {
        grid-template-columns: 1fr;
    }

    .about__image {
        min-height: 420px;
    }
}

