body {
    background-color: var(--deepSeaGreen);
    color: var(--white);
}

h1,
h2,
h3 {
    font-family: var(--font-2);
    color: var(--white);
    font-size: 4rem;
    text-align: center;
    font-weight: bold;
    letter-spacing: 4px;
}

.burger-menu,
.menu-bar {
    background-color: inherit;
}

.right-menu-bar .logo-container img {
    width: 100%;
    background-color: var(--deepSeaGreen);
    border-radius: 50%;
    padding: 0 10px 10px 10px;
}

.aboust-us-content {
    background-image: url('../images/info_pages/backround-1.jpeg');
    background-size: cover;
    background-position: center;

    height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    padding: 30px 0;

    position: relative;
    isolation: isolate;
}

.aboust-us-content ::after {
    content: '';
    position: absolute;
    z-index: -1;

    inset: 0;
    background-color: var(--white);
    opacity: 0.2;
}

.aboust-us-content h1 {
    font-family: var(--font-2);
    font-weight: bolder;
    font-size: 10rem;
    margin: 0;
    line-height: 140%;
    letter-spacing: 14px;
}

@media (max-width:1230px) {
    .aboust-us-content {
        height: 70vh;
    }

    .aboust-us-content h1 {
        font-size: 11rem;
    }
}

@media (max-width: 758px) {
    .aboust-us-content {
        height: 50vh;
    }

    .aboust-us-content h1 {
        font-size: 5rem;
    }
}

.introduction {
    width: 96%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 6px solid var(--white);
    padding: 10px;
    margin: 60px 20px;
    border-radius: 2rem;
}

.introduction img {
    height: 80vh;
    border-radius: 2rem;
    padding: 0 1em;
}

.introduction p {
    letter-spacing: 1px;
    font-size: 1.5rem;
    padding: 0 20px;
    text-align: justify;
}

@media (max-width:1230px) {
    .introduction {
        height: auto;
        margin: 20px auto;

    }

    .introduction div h2 {
        font-size: 3rem;
    }

    .introduction p {
        padding: 10px;
        font-size: 1.2rem;
    }

    .introduction img {
        height: 95%;
        width: 90%;
        margin-top: 20px;
    }
}

@media (max-width: 890px) {
    .introduction {
        height: auto;
        display: flex;
        justify-content: space-around;
        padding: 10px;
        margin: 20px auto;
    }

    .introduction #family_photo {
        display: none;
    }

    .introduction img {
        height: 50%;
        width: 90%;
    }

    .introduction .introduction-text {
        width: 160%;
        padding-left: 0 0 0 0.5rem;
        font-size: 1.4rem;
    }
}
@media (max-width: 490px) {
    .introduction {
       flex-direction: column;
    }
    .introduction img {
        height: 50%;
        width: 90%;
        margin-bottom: 0.5rem;
    }
    .introduction .introduction-text {
        width: 100%;
        font-size: 0.6rem;
        text-align: justify;
    }
}

.parallax {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background-color: var(--gray);
}

.background-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
}

.background-images img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    opacity: 0.8;
    transition: 0.5s ease;
}

.content {
    /* position: absolute; */
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
    color: white;
}

.introduction-part-2 p {
    width: 70%;
    margin: 0 auto;
    text-align: justify;
    background-color: var(--deepSeaGreen);
    opacity: 0.8;
    padding: 1rem;
    margin: 1rem;
    border-radius: 1rem;
}

@media (max-width:1230px) {
    .content {
        top: 20%;
        font-size: 1.4rem;
    }
}

@media (max-width: 758px) {
    .parallax {
        height: fit-content;
    }
    .content {
        font-size: 1.2rem;
    }

    .introduction-part-2 p {
        width: 90%;
        text-align: left;
    }
}

.ending {
    height: 50vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-style: var(--font-2);
    background-color: var(--white);
}

.ending h1 {
    font-size: 6rem;
    margin-bottom: 40px;
    color: var(--deepSeaGreen);
}

@media (max-width: 758px) {
    .ending {
        height: 40vh;
    }
    .ending h1 {
        font-size: 3rem;
    }
}

.ending a.button {
    font-weight: bolder;
    font-family: var(--font);
    font-size: 1em;
    color: var(--deepSeaGreen);
    letter-spacing: 2px;
    word-wrap: break-word;

    cursor: pointer;
    text-decoration: none;
    border: var(--deepSeaGreen) 0.2em solid;
    border-radius: 0.5rem;
    margin: 0 auto;
    padding: 0.8em 0.8em;
}

@media (max-width: 758px) {
    .ending a.button {
        font-size: 0.8em;
    }
}

.ending a.button:hover {
    background-color: var(--deepSeaGreen);
    color: var(--white);
}