@charset "utf-8";
/* Standard */

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    color: #2f3d4d;
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.5;
}

body:before {
    background: url(../images/background-tertiary.png) no-repeat 50%/cover #edf5fa;
    display: block;
    position: absolute;
    top: 6%;
    content: "";
    width: 100%;
    height: 25vw;
}


#wrapper {
    position: relative;
    max-width: 69.375rem;
    margin: 6rem auto;
    border: none;
    background-color: #fff;
    overflow: hidden;
    padding: 4rem;
}

p {
    margin: 0 0 1.312rem;
}

li span {
    color: #0A3679;
    text-decoration: underline;
}



h1 {
    max-width: 80%;
    margin-bottom: 2.55rem;
    font-size: 3.375rem;
}

h1,
h2 {
    font-weight: 500;
    line-height: 1.3;
}




img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style-type: none;
    padding-left: unset;
    margin-left: 1.5rem;
    text-align: left;
}

li {
    position: relative;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}


li::before {
    color: #22a652;
    font-family: "Font Awesome 5 Free";
    font-size: 0.75em;
    width: 1.5rem;
    line-height: 2;
    content: "\f067";
    font-weight: 900;
    position: absolute;
    left: -1.5rem;
}

header {
    position: relative;
    padding: 1.187rem;
}

menu {
    max-width: 69.375rem;
    margin: 0 auto;
}

menu a {
    width: 8.125rem;
    display: block;
    margin: 1rem 0;
}


aside {
    margin: 0;
}

aside li {
    position: absolute;
    display: none;
    width: 100%;
    left: 0;
    top: 0;
}

aside li:first-child {
    position: relative;
    display: block;
    float: left;
}

aside img {
    display: block;
    height: auto;
    float: left;
    width: 100%;
    border: 0;
}

footer a:link,
a:active,
a:visited {}

.clearfix:after {
    content: ".";
    clear: both;
    display: block;
    visibility: hidden;
    height: 0;
}

.langs {
    list-style: none;
    position: absolute;
    width: 3.75rem;
    right: 1.187rem;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    padding: 0;
    margin: 0 0 .312rem
}

.langs li {
    display: inline;
    width: 1.5rem;
    cursor: pointer;
}

.langs li:before {
    display: none;
}

.language {
    padding: 0 0;
    top: 0;
    left: 0;
    display: none;
    opacity: 0;
    transition: 0.3s ease-in-out;
}

.active {
    display: block;
    opacity: 1;
}

/**** Slider layout *****/

#slider {
    position: relative;
    list-style: none;
    overflow: hidden;
    width: 100%;
    padding: 0;
    margin: 0;
}

#slider img {
    display: block;
    height: auto;
    float: left;
    width: 100%;
    border: 0;
}


#slider li {
    display: block;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0;
    animation: imageAnimation 15s linear infinite 0s;

}

#slider li:nth-child(1) {
    position: relative;
    z-index: 1;
}

#slider li:nth-child(2) {
    animation-delay: 5s;
    z-index: 0;
}

#slider li:nth-child(3) {
    animation-delay: 10s;
    z-index: 0;
}

@keyframes imageAnimation {
    0% {
        animation-timing-function: ease-in;
        opacity: 0;
    }

    1.5% {
        animation-timing-function: ease-out;
        opacity: 1;
    }

    33% {
        opacity: 1;
    }

    36% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

/****** End Slider********/


section {
    display: block;
    margin: 0 0 3rem;
}

section p {
    max-width: 75%;
    float: left;
    margin: .75rem 0;
    font-size: 1rem;
    font-weight: 500;
}

section > a {
    max-width: 25%;
    float: right;
    font-weight: 500;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    padding: 0.53125rem 2rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.0625rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    background-color: #22a652;
    color: #fff;
    text-decoration: none;
    width: 13.937rem;
}

section > a:hover {
    background-color: #1b8642;
}

section p span {
    margin-left: .5rem;
    margin-right: .5rem;
}


hr {
    border: 0;
    border-top: thin solid rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

h2 {
    font-size: 2.25rem;
    margin: 0 0 1rem;
}

p a {
    color: inherit;
    text-decoration: none;
    font-weight: bold;
}

@media only screen and (max-width:1109px) {
    body:before {
        display: none;
    }

    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 0;
        font-size: 1rem
    }

    p {
        text-align: left;
    }

    header {
        padding: .625rem;
    }

    nav {
        margin: 0;
        padding: 0;
    }

    .langs {
        position: static;
        margin: 0 auto
    }

    .language {
        padding: 0 .625rem;
    }

    h1 {
        font-size: 1.5rem;
        margin: .625rem 0;
        width: auto;
    }

    section p {
        margin: 0;
        float: none;
        width: auto;
    }

    section > a {
        display: block;
        margin: 10px auto;
        width: 100%;
        float: none;
        max-width: 215px;
    }
    
    section{
        margin: 0;
    }
    
    p{
        margin: 0 0 15px;
    }
    
    hr{
        margin: .625rem 0;
    }
    
    h2{
        font-size: 1rem;
        margin: 0 0 .625rem;
    }
}
