/* general */
@font-face {
    font-family: 'GT Walsheim';
    src: url('../font/GT-Walsheim-Regular.woff2') format('woff2'),
         url('../font/GT-Walsheim-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body {
    font-family: 'GT Walsheim', sans-serif;
}
:root {
    --WhiteColor: white;
    --BlackColor: #000000;
    --MenuBackground: #f4f4f4;
    --GreenColor: #9fab79;
}

/* main */
.main-section {
    position: relative;
    top: 0;
    width: 100vw;
    height: auto;
}

/* informations */
.informations-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}
.informations-image-box {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.img-nesa {
    width: 100%;
    display: block;
    filter: grayscale(100%);
    animation: fadeInPicture 1000ms ease 500ms 1 forwards;
}
@keyframes fadeInPicture {
    0% {
        filter: grayscale(100%);
    }
    100% {
        filter: grayscale(0%);
    }
}

.informations-text-box {
    padding: 1.5rem;
    width: 100%;
    max-width: 900px;
}

.informations-text-box p {
    line-height: 1.6rem;
    font-size: 1rem;
}

.informations-text-box a {
    font-size: 1.2rem;
    color: black;
    text-decoration: none;
    transition: all 150ms ease;
}
.informations-text-box a:hover {
    color: orange;
}

@media screen and (min-width: 1025px) {
    .informations-box {
        flex-direction: row-reverse;
        align-items: center;
        justify-content: center;
        gap: 3rem;
        padding: 2rem 5vw;
    }

    .informations-image-box {
        width: 40%;
        aspect-ratio: auto;
        height: auto;
    }

    .informations-text-box {
        width: 60%;
        padding: 2rem;
    }

    .informations-text-box p {
        font-size: 1.1rem;
        line-height: 1.8rem;
    }
}