:root {
    --font-bold: 700;
    --font-regular: 400;
    --font-light: 100;
    --main-blue: #1a73e8;
}

* {
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    box-sizing: border-box;
    font-weight: var(--font-light);
    font-size: 16px;
    background: #f8f9fb;
}

h1, h2, h3 {
    font-weight: var(--font-bold);
    letter-spacing: -0.2px;
}

p {
    font-size: 1rem;
}

a {
    text-decoration: none;
}

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

.text-left {
    text-align: left;
}

.m-0 {
    margin: 0;
}

.mt-0 {
    margin-top: 0;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-4 {
    margin-top: 4rem;
}

.mr-0 {
    margin-right: 0;
}

.mr-1 {
    margin-right: 1rem;
}

.mr-2 {
    margin-right: 2rem;
}

.mr-3 {
    margin-right: 3rem;
}

.mr-4 {
    margin-right: 4rem;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-2 {
    margin-bottom: 2rem;
}

.img-responsive {
    max-width: 100%;
    height: auto;
}

.container {
    display: block;
    flex-wrap: wrap;
}

.col {
    flex: 1;
}

.d-flex {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
}

.justify-content-between {
    justify-content: space-between;
}


.md-justify-content-end {
    justify-content: unset;
}

.sm-justify-content-center {
    justify-content: center;
}

.align-items-center {
    align-items: center;
}

.align-self-center {
    align-self: center;
}

/* Navbar */
.skip-link {
    position: absolute;
    top: -200px;
    left: 20px;
    background: white;
    border: 1px solid #262c37;
    color: #262c37;
    text-decoration: none;
    padding: 10px;
    display: inline-block;
}

.skip-link:focus {
    top: 20px;
}

.header-wrapper {
    background: var(--main-blue);
    box-shadow: 0 -5px 12px rgb(0, 0, 0);
}

.logo {
    height: 55px;
    width: 200px;
    background-image: url('../images/logo_back.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

header {
    padding: 1em;
    color: #fff;
    max-width: 1368px;
    margin: 0 auto;
}

header a {
    color: inherit;
}

header h1 {
    font-weight: bold;
    font-size: 1.5em;
    margin: 0;
}

#toggle {
    width: 40px;
    height: 40px;
    cursor: pointer;
    position: absolute;
    right: 1em;
    top: 23.5px;
    padding: 8px;
    border: 2px solid #fff;
    border-radius: 5px;
    font-size: 1em;
    background: transparent;
    color: #fff;
    display: none;
}

#toggle:focus, #toggle:hover {
    background: #fff;
    color: #000;
}

#toggle #menu-text {
    position: absolute;
    clip: rect(1px, 1px, 1px, 1px);
    padding: 0;
    border: 0;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

#toggle[aria-expanded=false] .close-icon {
    display: none;
}

#toggle[aria-expanded=true] .burger-icon {
    display: none;
}

nav {
    padding: 0;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
}

nav a {
    display: block;
    padding: 10px;
    position: relative;
}

nav li a:before {
    content: ' ';
    position: absolute;
    width: 0;
    height: 2px;
    background: #fff;
    bottom: 0px;
    left: 0px;
    transition: width 300ms;
}

nav li:hover a:before {
    width: 100%;
}

.js nav ul {
    display: none;
}

.js #toggle {
    display: block;
}

nav ul.is-active {
    display: block;
}

#menu {
    list-style: none;
    padding-left: 0;
    margin: 0;
    margin-top: 20px;
    border-top: 1px solid;
}

header .etpa-wrapper a {
    display: flex;
    align-items: center;
    margin: 5px;
}

header .etpa {
    max-width: 80%;
    height: auto;
    max-height: 100px;
}

/* END navbar */

.main {
    padding: 20px;
}

.main .container,
.main section {
    max-width: 1368px;
    margin-left: auto;
    margin-right: auto;
}

.title {
    font-size: 2.5rem;
    position: relative;
}

.title:before {
    content: ' ';
    position: absolute;
    width: 50px;
    height: 2px;
    bottom: 0;
    background: #000;
}

.full-width {
    max-width: unset !important;
    margin-left: -20px !important;
    margin-right: -20px !important;
}

.hero {
    background: url(../images/big-bg.webp);
    background-size: cover;
    background-position: center;
    background-color: rgba(0, 0, 0, 0.75);
    color: #f5f5f5;
    margin-top: -20px;
    min-height: 650px;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero--backdrop {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1;
}

.hero--body {
    height: 100%;
    max-width: 600px;
    position: relative;
    z-index: 2;
    padding: 20px;
}

.hero--body--title {
    font-size: 2.8rem;
    margin: 0;
}

.hero--body--text {
    font-size: 1.1rem;
    margin: 0;
}

/* Card */
.card--container .col {
    max-width: 320px;
    margin: 0 auto;
}

.card {
    width: 100%;
    max-width: 320px;
    padding: 30px 20px;
    border-radius: 5px;
    box-shadow: 0 3px 8px #e2e8ed;
    background: #fff;
    margin: auto;
    margin-bottom: 2rem;
}

.card--body--icon--wrapper {
    width: 80px;
    height: 80px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: linear-gradient(65deg,#002bff 0%,#0098ff 100%);
    color: #f5f5f5;
    font-size: 2rem;
}

.card--body--title {
    font-size: 1.8rem;
    margin: 1rem 0;
}

/* END Card*/

/* Contact */
.contact--wrapper {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

label {
    font-size: 20px;
    margin-bottom: 0.5rem;
    display: block;
}

.form--group {
    margin-bottom: 1rem;
}

.form--item {
    width: 100%;
    height: 40px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    padding: 9px 20px;
    font-size: 1rem;
    line-height: 40px;
    outline: 0;
}

textarea.form--item {
    padding: 20px;
    height: unset;
    min-height: 140px;
    line-height: 20px;
    resize: vertical;    
}

.btn--primary {
    width: 100%;
    height: 40px;
    font-size: 1rem;
    font-weight: var(--font-regular);
    background-color: var(--main-blue);
    color: #fff;
    text-align: center;
    border-radius: 10px;
    border: 1px solid var(--main-blue);
}
/* END Contact */

/* Footer */
footer {
    background: #262c37;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 20px;
}

footer p {
    color: #fff;
}

footer .etpa-wrapper a {
    display: flex;
    align-items: center;
    justify-content: center;
}

footer .etpa {
    max-width: 80%;
    height: auto;
    max-height: 100px;
}
/* END Footer */

img .etpa{
    height: auto;
    max-width: 100%;
}

.etpa_2{
    height: auto;
    max-width: 100%;
}

@media (min-width: 992px) {
    .container {
        display: flex;
    }

    .sm-justify-content-center {
        justify-content: unset;
    }

    .md-justify-content-end {
        justify-content: flex-end;
    }

    .md-mr-2 {
        margin-right: 2rem;
    }

    .card--container .col {
        margin: unset;
    }

    .card {
        margin-right: 2rem;
    }
}

@media (min-width: 700px) {
    .js nav ul {
        display: block;
    }

    .js #toggle {
        display: none;
    }

    #toggle {
        display: none;
    }

    nav li {
        display: inline-block;
        margin-right: 1em;
    }

    nav li:last-child {
        margin-right: 0;
    }

    header {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    #menu {
        border-top: 0;
        margin-top: 0;
    }

    .hero--body {
        padding: 0;
    }
    
    .hero--body--title {
        font-size: 4rem;
    }
    
    .hero--body--text {
        font-size: 1.2rem;
    }
    
}

