h1, h2, h3, h4, p, a, button, body {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background-color: #FFFDF8;
}
.navigation {
    display: flex;
    position: fixed;
    justify-content: space-between;
    top: 0;
    left: 0;
    right: 0;
    padding: 25px 75px;
    background: #FFFDF8;
    z-index: 100;
    /* border-bottom: 2px solid #000; */
}

.navigation__item {
    color: #000;
    font-family: 'Montserrat';
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.navigation-right {
    margin-left: 150px !important;
}

.navigation__right-container {
    display: flex;
}


.hero {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: flex-start;
    align-items: end;
}

.hero__item {
    max-width: 650px;
    padding: 120px 75px;
}

.hero__title {
    color: #000;
    font-family: 'Montserrat';
    font-size: 4rem;
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 76.8px */
    text-transform: uppercase;
}

.hero__desc {
    color: #000;
    font-family: 'Montserrat';
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.about {
    margin: 100px 0;
}

.about__text {
    width: 375px;
    color: #000;
    font-family: 'Montserrat';
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 183%;
}

.about_image {
    width: 375px;
    height: 437px;
    object-fit: cover;
}

.about__text-position-1 {
    margin-left: 30%;
}

.about_image-position-1 {
    margin-left: 65%;
    margin-top: -50px;
}

.about__text-position-2 {
    margin-left: 20%;
    margin-top: -50px;
}

.projects__title {
    width: 525px;
    color: #000;
    font-family: 'Montserrat';
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 183%;
    margin-left: 50%;
}

.project__image {
    display: block;
    width: 230px;
    height: 360px;
    background-image: url("./images/wedding-1.jpg");
    background-repeat: no-repeat;
    background-position: center;
    animation: project1 1.5s infinite;
    animation-play-state: paused;
}
.project__image:hover {
    animation-play-state: running;
}

@keyframes project1 {
    0%   { background-image: url('/images/wedding-1.jpg'); }
    33%   { background-image: url('/images/wedding-2.jpg'); }
    66%   { background-image: url('/images/wedding-3.jpg'); }
    100%   { background-image: url('/images/wedding-4.jpg'); }
}

.project__item {
    display: flex;
    gap: 30px;
    width: fit-content;
}

.project__text-container {
    max-width: 450px;
    display: flex;
    flex-direction: column;
}

.project__number, .project__title {
    color: #000;
    font-family: 'Montserrat';
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    line-height: 183%;
}

.project__desc {
    color: #000;
    font-family: 'Montserrat';
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 183%;
    margin: 24px 0;
}

.project__button {
    border-radius: 50px;
    background-color: #000;
    color: white;
    font-family: 'Montserrat';
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    padding: 14px;
    width: fit-content;
    text-decoration: none;
    transition: all 0.25s ease-in-out;
    margin: 4px 0;
}

.project__button:hover {
    background-color: #F4732B;
    color: black;
}

.project__position-1 {
    margin-top: 50px;
    transform: translateX(65%);
}

.project__position-2 {
    margin-top: 300px;
    transform: translateX(30%);
}

.project__position-3 {
    margin-top: 300px;
    transform: translateX(55%);
}

.project__more {
    font-size: 1rem;
    padding: 10px;
    border-radius: 50px;
    border: #7e7e7e 1px solid;
    width: fit-content;
    margin: 100px auto;
    font-family: 'Montserrat';
}

.footer {
    height: 90vh;
    width: 100%;
    background-color: #383838;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    margin-top: 100px;
}

.footer__container {
    margin: 75px;
}

.footer__text {
    max-width: 525px;
    color: #FFF;
    font-family: 'Montserrat';
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 183%;
    margin-bottom: 20px;
}

.footer__link {
    color: white;
    text-decoration: none;
    cursor: pointer;
}

@media (max-width: 1024px) {
    .navigation-right {
        margin-left: 50px !important;
    }

    .about_image-position-1 {
        margin-left: 40%;
        margin-top: 30px;
    }

    .about__text-position-2 {
        margin-left: 20%;
        margin-top: 30px;
    }

    .projects {
        margin: 50px 0;
    }

    .projects__title {
        width: 300px;
        margin-left: 20%;
    }

    .project__position-1, .project__position-2, .project__position-3 {
        transform: translateX(5%);
    }

    .project__desc {
        max-width: 300px;
    }

    .footer {
        height: fit-content;
    }
}

@media (max-width: 640px) {
    .navigation-right {
        margin-left: 10px !important;
    }

    .hero {
        justify-content: center;
        align-items: center;
    }

    .hero__item {
        max-width: 650px;
        padding: 20px;
    }

    .hero__title {
        font-size: 2rem;
        text-align: center;
    }

    .hero__desc {
        margin-top: 14px;
        font-size: 1rem;
        text-align: center;
    }

    .about {
        padding: 20px;
    }

    .about__text {
        width: 100%;
    }

    .about_image {
        width: 100%;
        height: auto;
        padding: 30px 0;
    }

    .about__text-position-1, .about__text-position-2, .about_image-position-1 {
        margin: 0;
    }

    .projects__title {
        width: 90%;
        margin: 0 20px;
    }

    .project__item {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
        gap: 10px;
    }

    .project__title {
        width: 100%;
    }

    .project__text-container {
        width: 100%;
    }

    .footer__container {
        margin: 30px;
    }
}