/*
*
* Common classes
*
*/
:root {
    --color-primary1: #2F5597;
    --color-primary2: #2F7DD1;
    --color-secondary1: #000;
    --color-secondary2: #000;
    --color-bg-lite: #f8f8f8;
}

/*
*
* Common classes
*
*/

[hidden],
.hidden {
    display: none;
}

.alert-info,
.alert-success,
.alert-warning,
.alert-error {
    margin: 10px 0;
    padding: 10px;
    border-radius: 3px 3px 3px 3px;
}

.alert-info {
    color: #059;
    background-color: #BEF;
}

.alert-success {
    color: #270;
    background-color: #DFF2BF;
}

.alert-warning {
    color: #9F6000;
    background-color: #FEEFB3;
}

.alert-error {
    color: #D8000C;
    background-color: #FFBABA;
}


/*
*
* Header
*
*/

header .row {
    height: 7rem;
}


/*
* Navigation
*/

.header__logo {
    padding: 10px;
}

#menu {
    z-index: 2;
    position: relative;
}


/* Mobile */
@media (max-width: 64rem) {
    .navrow {
        position: relative;
    }
    .navigation {
        width: 100%;
        z-index: 10;
    }

    .navigation button {
        display: block;
        position: absolute;
        top: 13px;
        right: 2px;
        border: 0;
        height: 40px;
        width: 45px;
        background: none;
        color: var(--color-primary1);
        font-size: 0rem;
        padding: 5px;
        -webkit-transition: 0.2s 0.5s color ease-in-out;
        -o-transition: 0.2s 0.5s color ease-in-out;
        transition: 0.2s 0.5s color ease-in-out;
        z-index: 1;
    }

    .navigation button svg {
        display: block;
        pointer-events: none;
        stroke: currentcolor;
        vertical-align: middle;
        height: 32px;
        width: 32px;
        -webkit-transition: 0.2s 0.5s stroke ease-in-out;
        -o-transition: 0.2s 0.5s stroke ease-in-out;
        transition: 0.2s 0.5s stroke ease-in-out;
    }

    .navigation button::before {
        content: ' ';
        position: absolute;
        border-radius: 200vh;
        opacity: 0;
        left: calc(-130vmax + 50%);
        top: calc(-130vmax + 50%);
        width: 260vmax;
        height: 260vmax;
        background: var(--color-primary1);
        display: block;
        z-index: -1;
        -webkit-transform: scale3d(0, 0, 0);
        transform: scale3d(0, 0, 0);
        -webkit-transform-origin: 50% 50%;
        -ms-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
        -webkit-transition: 0.5s ease-in-out transform, 0.2s 0.4s ease-in-out opacity;
        -o-transition: 0.5s ease-in-out transform, 0.2s 0.4s ease-in-out opacity;
        transition: 0.5s ease-in-out transform, 0.2s 0.4s ease-in-out opacity;
    }

    .navigation button[aria\-expanded=true] {
        color: #fff;
    }

    .navigation button[aria\-expanded=true]::before {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
        -webkit-transition: 0.5s ease-in-out transform, 0.1s ease-in-out opacity;
        -o-transition: 0.5s ease-in-out transform, 0.1s ease-in-out opacity;
        transition: 0.5s ease-in-out transform, 0.1s ease-in-out opacity;
    }

    #menu {
        position: relative;
        pointer-events: none;
        list-style: none;
        height: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 0;
        margin: 0 60px;
        z-index: 2;
    }

    #menu:not([hidden]) {
        height: 100vh;
        pointer-events: all;
    }
    .menu__link {
        display: block;
        margin: 1.5rem 0;
        padding: 1rem;
        text-decoration: none;
        font-weight: bold;
        color: #fff;
        opacity: 0;
        -webkit-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        transform: translateY(-10px);
        transition: none;
    }
    #menu:not([hidden]) .menu__list:nth-child(1) a {
        -webkit-transition: 0.2s 0.5s ease-out opacity, 0.2s 0.5s ease-out transform;
        -o-transition: 0.2s 0.5s ease-out opacity, 0.2s 0.5s ease-out transform;
        transition: 0.2s 0.5s ease-out opacity, 0.2s 0.5s ease-out transform;
    }

    #menu:not([hidden]) .menu__list:nth-child(2) a {
        -webkit-transition: 0.2s 0.7s ease-out opacity, 0.2s 0.7s ease-out transform;
        -o-transition: 0.2s 0.7s ease-out opacity, 0.2s 0.7s ease-out transform;
        transition: 0.2s 0.7s ease-out opacity, 0.2s 0.7s ease-out transform;
    }

    #menu:not([hidden]) .menu__list:nth-child(3) a {
        -webkit-transition: 0.2s 0.9s ease-out opacity, 0.2s 0.9s ease-out transform;
        -o-transition: 0.2s 0.9s ease-out opacity, 0.2s 0.9s ease-out transform;
        transition: 0.2s 0.9s ease-out opacity, 0.2s 0.9s ease-out transform;
    }

    #menu:not([hidden]) .menu__list:nth-child(4) a {
        -webkit-transition: 0.2s 1.1s ease-out opacity, 0.2s 1.1s ease-out transform;
        -o-transition: 0.2s 1.1s ease-out opacity, 0.2s 1.1s ease-out transform;
        transition: 0.2s 1.1s ease-out opacity, 0.2s 1.1s ease-out transform;
    }

    #menu:not([hidden]) .menu__list:nth-child(5) a {
        -webkit-transition: 0.2s 1.3s ease-out opacity, 0.2s 1.3s ease-out transform;
        -o-transition: 0.2s 1.3s ease-out opacity, 0.2s 1.3s ease-out transform;
        transition: 0.2s 1.3s ease-out opacity, 0.2s 1.3s ease-out transform;
    }

    #menu:not([hidden]) .menu__list:nth-child(6) a {
        -webkit-transition: 0.2s 1.5s ease-out opacity, 0.2s 1.5s ease-out transform;
        -o-transition: 0.2s 1.5s ease-out opacity, 0.2s 1.5s ease-out transform;
        transition: 0.2s 1.5s ease-out opacity, 0.2s 1.5s ease-out transform;
    }

    #menu:not([hidden]) .menu__link {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
        transition: none;
    }




    .menu__sub {
        max-height: 0;
        margin: 0;
        list-style: none;
        padding: 0;
        box-sizing: border-box;
        overflow: hidden;
        transition: 1s all ease-in;
    }

    .menu__sub[aria\-expanded=true] {
        max-height: 1000px;
        overflow: auto;
        animation: hide-scroll 1.2s backwards;
    }
    @keyframes hide-scroll {
        from,to { overflow: hidden; }
    }

    .menu__sub .menu__list {
        max-width: 500px;
        margin: 0 auto;
    }
    .menu__sub .menu__link {
        padding: 20px 0;
    }

}

@media ( min-width: 64rem) {
    /* Desktop */
    .navigation button {
        display: none
    }
    #menu {
        width: auto;
        height: auto;
        padding: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        list-style: none;
        margin: 0;
    }
    .menu__list {
        position: relative;
        padding: 1rem;
    }
    .menu__link {
        pointer-events: all;
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
        font-weight: normal;
        color: var(--color-primary1);
        text-decoration: none;
        background: -o-linear-gradient(rgba(16, 125, 181, 0.15), rgba(16, 125, 181, 0.15));
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(16, 125, 181, 0.15)), to(rgba(16, 125, 181, 0.15)));
        background: linear-gradient(rgba(16, 125, 181, 0.15), rgba(16, 125, 181, 0.15));
        background-size: 0 100%;
        background-repeat: no-repeat;
        padding: 7px 15px;
        margin: -5px;
        border-radius: 2em;
        -webkit-transition: background .25s ease-out;
        -o-transition: background .25s ease-out;
        transition: background .25s ease-out;
    }
    .menu__link:hover,
    .menu__link:focus,
    .menu__link.active {
        background-size: 100% 100%;
    }

    .menu__sub {
        position: absolute;
        left: 0;
        top: 38px;
        height: 0;
        margin: 0;
        background: #fff;
        width: 400px;
        list-style: none;
        padding: 0;
        box-sizing: border-box;
        overflow: hidden;
    }
    .menu__list.dropdown:hover>.menu__sub,
    .menu__sub:hover {
        height: auto;
        padding: 25px 20px 0;
        overflow: auto;
    }

    .menu__sub .menu__list {
        display: block;
        margin: 0;
        padding: 0px 0;
    }

    .menu__sub .menu__link {
        display: block;
        margin: 0;
        padding: 10px 0;
    }

    .menu__sub .menu__link:hover {
        background-size: 0;
    }

}


/*
*
* Common elements
*
*/

.section {
    padding: 7.5rem 0;
}

.section img {
    max-width: 100%;
    height: auto;
}
.row.mb {
    margin-bottom: 5rem;
}

.titleBar {
    padding: 4rem;
    color: #fff;
    background: url('../img/header.jpg') no-repeat 100% #000;
}

.titleBar__title {
    font-size: 3rem;
    text-align: center;
    margin: 0;
}

.intro {
    padding: 5rem 0;
    background-color: var(--color-bg-lite);
}

.intro__title {
    font-size: 3rem;
}

.intro__text {
    font-size: 2rem;
}

.intro__text:last-child {
    margin: 0;
}

.overlay::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    opacity: .7;
}

.overlay-lite::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}


/*
*
* Page: Home
*
*/


/*
* Hero
*/

.hero {
    position: relative;
}


.hero__img {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    overflow: hidden;
}

.hero__text {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: center;
    max-width: 120rem;
    padding: 6rem 2rem 8rem;
    margin: 0 auto;
    color: #fff;
    text-align: left;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 1;
}

@media only screen and (min-width: 64em) {
    .hero__text {
        padding: 6rem 30% 8rem 2rem;
    }
}

.hero__text1 {
    font-weight: 400;
}

.hero__text2 {
    font-size: 3.2rem;
    line-height: 1.2;
    font-weight: 400;
    margin-bottom: 4rem;
}

.hero__button {
    width: 250px;
}


/*
* Pages
*/

.pages__item.pad {
    padding: 0 2rem;
}

.pages__item {
    margin-bottom: 4rem;
}

@media only screen and (min-width: 64em) {
    .pages__item {
        margin-bottom: 0;
    }
}

.pages__icon {
    display: block;
    min-height: 7.5rem;
    margin-bottom: 0rem;
    font-size: 5rem;
    color: var(--color-primary1);
    text-align: center;
}

.pages__title {
    font-size: 3rem;
    text-align: center;
    line-height: 1.2;
}
@media only screen and (min-width: 64em) {
.pages__title {
    min-height: 7.6rem;
}
}

.pages__text1{
    text-align: center;
}

.pages__link {
    color: #000;
    text-decoration: underline;
}

.pages__link:hover {
    color: #000;
    text-decoration: none;
}

.pages__text {
    min-height: auto;
    padding: 1.5rem 3rem 1.5rem 0;
}

@media only screen and (min-width: 64em) {
    .pages__text {
        min-height: 300px;
    }
}

.pages__button {
    margin: 0 auto;
}


/*
* Services
*/

.services {
    position: relative;
    height: auto;
    padding: 5rem 0 7rem;
    font-weight: 500;
    line-height: 1.8;
    overflow: hidden;
}

@media only screen and (min-width: 64em) {
    .services {
    }
}

.services__img {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    overflow: hidden;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

.services__text {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: center;
    max-width: 90rem;
    margin: 0 auto;
    color: var(--color-primary1);
    text-align: center;
    -webkit-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 2;
}

.services__text1 {
    font-size: 3rem;
}

.services__text2 {
    font-size: 2rem;
    text-align: justify;
}

.services__button {
    width: 250px;
    margin: 0 auto;
}


/*
* Articles
*/

.articles {
    background-color: var(--color-bg-lite);
}
.articles__imgcont {
    display: block;
    overflow: hidden;
}

.articles__img {
    display: block;
    width: 100%;
    height: auto;
    filter: brightness(1);
    transition: all 0.5s ease;
}
.articles__imgcont >.articles__img:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.articles__header {
    text-align: center;
    margin-bottom: 5rem;
}
.articles__header--title {
    text-align: center;
}
.articles__item {
    margin-bottom: 5rem;
    padding: 0;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    background-color: #fff;
}

.articles__text {
    padding: 1rem 2rem 2rem 2rem;
    background-color: #fff;
    color: #000;
}

.articles__text--title {
    font-size: 2.5rem;
}

.articles__link {
    color: inherit;
    text-decoration: underline;
}

.articles__link:hover {
    color: #000;
    text-decoration: none;
}

.articles__text--desc {
    margin: 0;
}


/*
* Services
*/

.cta {
    position: relative;
    padding: 12rem 0;
}

.cta__img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    overflow: hidden;
}

.cta__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    max-width: 90rem;
    margin: 0 auto;
    color: var(--color-primary1);
    text-align: center;
    -webkit-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 2;
    text-align: center;
}

.cta__text1 {
    font-size: 3rem;
    text-align: center;
}

.cta__text2 {
    font-size: 2rem;
}

.cta__button {
    width: 250px;
    margin: 0 auto;
}


/*
* img row (subfooter)
*/

.image-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
}

.image-row__img-cont {
    
}

.image-row__img {
    width: 100%;
    height: auto;
    display: block;
}


/*
*
* About
*
*/


/*
* Vision
*/

.vision {}

.vision__text {
    text-align: center;
}

.vision__text--title {}

.vision__text--desc {}


/*
* content1
*/

.content1 {
    padding: 0 0 7rem 0;
}

.content1__text {
    padding: 3rem 2em 0 2em;
}

@media (min-width: 64rem) {
    .content1__text {
        padding: 3rem 2em 0 2em;
        max-width: 600px;
    }
}



/*
* Features
*/

.features {}

.features--dark {
    background-color: var(--color-primary1);
    color: #fff;
}

.feature__icon {
    display: block;
    float: left;
    width: 4rem;
    margin-right: 0;
    font-size: 4rem;
    color: #fff;
}


.feature__text {
    display: block;
    padding: 0 2rem;
    margin-left: 4rem;
}


.feature__title {
    font-size: 3.2rem;
}

.feature__desc {}


/*
* textblock
*/

.textblock h2 {
    margin-top: 2rem;
    font-size: 3.0rem;
    line-height: 1.2;
}

.textblock__text {
    padding-right: 0em;
}
@media (min-width: 64rem) {
    .textblock__text {
        padding-right: 3em;
    }
}

.textblock__img {}


/*
*
* Articles
*
*/

.load-more {
    text-align: center;
}

.load-more__button {}


/*
* Projects
*/

.projects {
    padding: 5rem 0;
}

.projects--dark {
    background-color: var(--color-bg-lite);
}

.projects__text {
    display: block;
}
.projects__title {
    font-size: 3.4rem;
}

.projects__title2 {
    font-size: 2.4rem;
}

.projects__img {
    width: 100%;
    height: auto;
    margin-bottom: 2.5rem;
}


/*
*
* Contact
*
*/

.contact-form {}

.contact-form label {
    cursor: pointer;
    user-select: none;
}

.contact-form a {
    color: #000;
}
.contact-form__textarea {
    height: 12rem;
}
#contact_website {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}


/*
*
* Footer
*
*/


/*
* Newsletter
*/

.newsletter {
    position: relative;
    padding: 7rem 0;
    background-color: var(--color-primary1);
    color: #fff;
}

.newsletter__title {
    font-size: 3rem;
}

.newsletter__text2 {
    font-size: 2rem;
}
.newsletter-form__checkbox,
.newsletter-form__check-label {
    display: inline-block;
    cursor: pointer;
}

.newsletter-form__check-label {
    user-select: none;
}

/*
*
* Footer
*
*/

.footer {
    padding-bottom: 0;
    background-color: #242424;
    color: #bdbaba;
}

.footer__col {
    padding-right: 4rem;
}

.footer a {
    color: #bdbaba;
    text-decoration: none;
}

.footer a:hover {
    color: #fff;
}

.footer__logo {
    margin-bottom: 2rem;
}

.footer__list {}

.footer__li {
    padding: 0px 1em 1rem 1em;
    margin: 0 0 1rem 0;
    display: block;
    color: #bdbaba;
    line-height: 2.3rem;
    border-bottom: 1px solid #2e2e2e;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.footer__li:last-child {
    border-bottom: none;
}

.footer__icon {
    margin-right: 0.5em;
}

.footer__article {
    padding: 2rem 0 0 0;
    float: none;
    clear: both;
    overflow: hidden;
    border-bottom: 1px solid #2e2e2e
}

.footer__article:last-child {
    border-bottom: none;
}

.footer__article--imgcont {
    position: relative;
    float: left;
    width: 40%;
    margin: 0 2rem 2rem 0;
    height: 0;
    padding-top: 30%;
    overflow: hidden;
}

.footer__article--img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    width: 100%;
}

.footer__article--title a {}

.footer__copyright {
    margin: 3rem 0 0 0;
    padding: 3rem;
    background-color: #1a1a1a;
}

.footer__copyright__text {
    margin: 0;
    text-align: center;
}

.footer__copyright__text a {
    text-align: center;
}


/*
*
* 
*
*/


}

}