/* @group Frontpage
------------------------------------ */




.overview {
    background-color: var(--main-tang);
    height: 90rem;
    padding: 2rem 0;
}

.overview .col-12-12,
.overview .row {
    height: 100%;
}

.overview__content__wrapper {
    position: relative;
    height: 100%;
}

.overview__img--main {
    height: 100%;
    width: 100%;
    position: relative;
}

.overview__img--main:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--main-black);
    opacity: .2;
}

.overview__img--main:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../../img/layout/home/overviewback.svg);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}

.overview__content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0 2rem;
    z-index: 2;
}

.overview__content__seal {
    width: 15rem;
    height: 15rem;
    position: relative;
    left: -3rem;
}

.overview__content__seal img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
}

.overview__content h3 {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1.4rem;
    line-height: 2rem;
    color: var(--main-white);
    letter-spacing: 0.04em;
    margin-bottom: 0.2rem;
}

.overview__content h2 {
    font-weight: 700;
    font-size: 3.6rem;
    line-height: 4.2rem;
    text-transform: uppercase;
    color: var(--main-white);
    margin-bottom: 1.76rem;
}

.overview__content p {
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 2.4rem;
    color: var(--main-white);
    margin-bottom: 2rem;
}

.overview__content .bttn {
    color: var(--main-blue);
}

.overview__content__seal.desktop {
    display: none;
}

@media only screen and (min-width : 961px) {
    .overview {
        background-color: var(--main-blue);
        padding-top: 6.5rem;
        padding-bottom: 10rem;
        height: auto;
    }

    .overview__content__wrapper {
        border: 2rem solid var(--main-tang);
        height: 120rem;
    }

    .overview__content {
        margin-top: 10rem;
        padding-left: 10rem;
        width: 66.66666%;
    }

    .overview__content__seal.desktop {
        display: block;
        position: absolute;
        width: 30rem;
        height: 30rem;
        top: 0;
        right: 0;
        left: auto;
    }

    .overview__content h2 {
        font-size: 7.5rem;
        line-height: 7.5rem;
        letter-spacing: 0.01em;
    }

    .overview__content p {
        font-size: 2.2em;
        line-height: 2.8rem;
        max-width: 55rem;
        margin-bottom: 4.5rem;
    }

}

@media only screen and (min-width : 961px) and (max-width : 1440px) {}

@media only screen and (min-width : 0) and (max-width : 960px) {}

/* @end */

/* Animations */

.overview__content h3,
.overview__content h2,
.overview__content p,
.overview__content a {
    opacity: 0;
}

.overview.animateActive .overview__content h3,
.overview.animateActive .overview__content h2,
.overview.animateActive .overview__content p,
.overview.animateActive .overview__content a {
    animation: fadeDown 1.2s forwards;
}

.overview.animateActive .overview__content h2 {
    animation-delay: .4s;
}

.overview.animateActive .overview__content p {
    animation-delay: .8s;
}

.overview.animateActive .overview__content a {
    animation-delay: 1.2s;
}