.home__header__wrapper {
    position: relative;
    width: 100%;
    height: 680px;
    max-width: 1400px;
    width: 100%;
}

#slide {
    position: absolute;
    left: -1200px;
    width: 1200px;
    background-color: var(--color-black-200);
    -webkit-animation: slide 0.5s forwards;
    -webkit-animation-delay: 1s;
    animation: slide 0.5s forwards;
    animation-delay: 1s;
    height: 680px;
    padding: 60px;
}

@-webkit-keyframes slide {
    100% {
        left: 0;
    }
}

@keyframes slide {
    100% {
        left: 0;
    }
}

.home__header__image {
    right: 0;
    top: -200px;
    width: 661px;
    height: 721px;
    position: absolute;
    z-index: 100;
}

.home__header__image img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.home__header__title {
    font-family: Lora;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 56px;
    text-align: left;
    max-width: 616px;
}

.home__header__text p {
    font-family: Lora;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 56px;
    text-align: left;
    max-width: 616px;
}

.home__header__email {
    display: flex;
    margin-top: 24px;
}

.home__header__email a svg {
    fill: var(--color-black-800);
    margin-right: 4px;
}

.home__header__email a {
    font-family: Roboto;
    font-size: 18px;
    font-weight: 500;
    line-height: 32px;
    text-decoration: none;
    color: var(--color-black-800);
}

.home__more__work {
    margin-top: 100px;
}

@media screen and (max-width: 1100px) {
    .home__header__wrapper {
        height: 180px;
    }
    .home__header__image {
        right: 0;
        top: -200px;
        width: 240px;
        height: auto;
        z-index: 29;
    }
    .home__header__text p,
    .home__header__title {
        font-size: 24px;
        line-height: 34px;
    }
    #slide {
        position: absolute;
        left: -500px;
        width: 100%;
        background-color: var(--color-black-200);
        -webkit-animation: slide 0.5s forwards;
        -webkit-animation-delay: 0.5s;
        animation: slide 0.5s forwards;
        animation-delay: 1s;
        height: auto;
        padding: 120px 24px 64px 24px;
        margin-top: -100px;
    }
}