@charset "UTF-8";

@media (max-width: 2000px) {
    main {
        font-size: 1.5em;
    }
}

@media (max-width: 1300px) {
    main {
        font-size: 1em;
    }
}

.hideScreen {
    display: none;
}

#logo {
    float: left;
}

header {
    background-color: var(--secondary-color-dark);
    position: fixed;
    top: 0;
    left: 0;
    padding-top: var(--base-separation);
    padding-left: calc(var(--base-separation) * 2);
    padding-right: calc(var(--base-separation) * 2);
    max-height: 165px;
}

header h1,
header p {
    margin: 0;
    padding-left: calc(var(--base-separation) + var(--logo-width));
}

header div:nth-child(2) {
    padding-bottom: var(--base-separation-screen);
}

header div:last-child {
    padding-top: calc(var(--base-separation) / 2);
    padding-bottom: var(--base-separation);
}

header nav {
    justify-content: space-between;
    flex-wrap: wrap;
}

main {
    padding-top: 165px;
}

#welcome {
    position: relative;
    overflow: hidden;
    max-height: 800px;
    text-shadow: 2px 2px 2px var(--secondary-color-dark);
}

#welcome img {
    position: absolute;
    left: 0;
    z-index: -1;
    height: auto;
}

#welcome div {
    padding: calc(var(--base-separation-screen) * 10) calc(var(--base-separation-screen) * 20);
}

#whatIs {
    display: flex;
}

#whatIs img {
    width: 100%;
    height: 100%;
}

#whatIs > div:first-child {
    flex: 70%;
}

#whatIs > div:last-child {
    flex: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#whatIs > div > div,
#benefits > div > div,
#addressing div > div {
    padding: calc(var(--base-separation-screen) * 5);
}

#benefits,
#addressing article {
    display: flex;
}

#benefits > div:first-child {
    flex: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#benefits > div:last-child {
    flex: 60%;
}

#addressing {
    background-color: var(--text-color-dark);
    padding: calc(var(--base-separation-screen) * 2 ) calc(var(--base-separation-screen) * 10);
}

#addressing article {
    padding-top: calc(var(--base-separation-screen) * 2);
    padding-bottom: calc(var(--base-separation-screen) * 2);
}

#addressing article > div:first-child {
    flex: 50%;
    display: flex;
}

#addressing article > div:last-child {
    flex: 50%;
}

#facilitator {
    padding: calc(var(--base-separation-screen) * 2) 15%;
}

#facilitator img {
    max-width: 50%;
}

#contact {
    padding: calc(var(--base-separation-screen) * 4);
    display: grid;
    grid-template-columns: 50% 50%;
    place-items: center;
}

#contact > div {
    width: 80%;
}

#contact > div:nth-child(even) {
    grid-area: 1 / 2 / 3 / 3;
}

footer {
    padding: var(--base-separation);
}

footer img {
    height: calc(var(--base-separation-screen) * 2);
    width: calc(var(--base-separation-screen) * 2);
    margin: var(--base-separation-screen);
}

footer p {
    margin: var(--base-separation-screen);
}

#scrollToTopImg {
    bottom: calc(var(--base-separation-screen) * 2);
    right: calc(var(--base-separation-screen) * 2);
}