.about-us {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4em;
}

.about-us h2 {
    font-size : 3.2em;
    margin-bottom: .5em;
}

.about-us p {
    margin-bottom : 1.2em;
}

.about-us a {
    background-color: var(--Orange);
    color: white;
    border-radius: 5px;
}

/* Parallax */

.parallax {
    position: relative;
    height: 65vh;
    background-image: url(../assets/img/parallax.webp);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    color: white;
}

.parallax .screen-black {
    padding-left: 1em;
    padding-right: 1em;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.parallax .screen-black h2 {
    font-size: 3.2em;
    margin-bottom: .5em;
}

.parallax .screen-black p {
    font-size: 2.2em;
    text-align: center;
}

/* Table of value´s */

.table h2,
.list-mainchance h2 {
    font-size : 3.2em;
    margin-bottom: 1em;
    text-align: center;
}

.table-content {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.header-table {
    color: white;
}

.header-table,
.data-table {
    font-size: 1.4rem;
    padding: .625em;
    text-align: center;
}

.orange {
    background-color: var(--Orange);
}

.blue {
    background: var(--Blue);
}

.gray {
    background-color: rgb(206, 206, 206);
}

/* List */

.list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4em;
}

.list-content h3 {
    font-size: 2.2em;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

ul li {
    margin-bottom: .625em;
}

/*footer*/

.footer {
    width: 100%;
}

.footer .footer-header {
    background-color: #385564;
    padding: 1em;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.footer .footer-main {
    background-color : var(--Blue);
    padding: 1em;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2em;
}

.footer .footer-main a {
    display: block;
    font-size: 1.6em;
    color: white;
    margin-bottom: .625em;
}

.footer .footer-main a:hover {
    color: gray;
}

.footer .footer-main h3 {
    font-size: 2.2em;
    margin-bottom: 1em;
}