@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap');
@import url("https://fonts.googleapis.com/icon?family=Material+Icons");
@import url("https://use.typekit.net/tln4pjt.css");

:root {
    --black: #000000;
    --blue: #0994db;
    --red: #e3000f;
    --gray: #dddddd
}

* {
    padding: 0;
    margin: 0;
    font-family: 'Akagi Pro', sans-serif;
}

body {
    background-color: #f4f4f4;
    color: var(--black);
    font-size: 16px;
}

#wrapper {
    background-color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    max-width: 1530px;
    margin: 0 auto;
    box-sizing: border-box;
}

#container {
    width: 100%;
    float: left;
    padding: 0 7em;
    box-sizing: border-box;
}

header {
    width: 100%;
    float: left;
    padding: 30px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

header a.logo {
    width: 255px;
    float: left;
}

header a.logo img {
    width: 100%;
}

header .mobileLang {
    display: none;
}

header #mobileMenuButton {
    display: none;
    float: right;
    background-image: url(../img/menu.svg);
    background-size: contain;
    width: 30px;
    height: 30px;
}

header div.right div.topNav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--gray);
    padding-bottom: 1em;
}

header div.right div.topNav a {
    font-size: 1em;
    text-decoration: none;
    font-weight: 400;
    float: left;
    margin-left: 10px;
    color: var(--black);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

header div.right div.topNav span {
    font-size: 1em;
    text-decoration: none;
    font-weight: 400;
    float: left;
    margin-left: 10px;
    color: var(--black);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
}

header div.right div.topNav span.lang:before {
    content: '\e80b';
    font-family: "Material Icons";
    margin-right: 5px;
}


header div.right div.topNav span>.dropdown {
    position: absolute;
    z-index: 3;
    display: none;
    top: 10px;
    right: 0;
}

header div.right div.topNav span:hover .dropdown {
    display: block
}

header div.right div.topNav span>.dropdown>ul {
    margin-top: 20px;
    background-color: #fff;
    float: left;
    border: 1px solid #ddd;
    border-bottom: 2px solid var(--blue);
    padding: 0 1em;
    min-width: 200px;
}

header div.right div.topNav span>.dropdown>ul>li {
    float: left;
    list-style: none;
    font-size: 1em;
    position: relative;
    padding: 1.2em 0;
    border-bottom: 1px solid var(--gray);
    width: 100%;
}

header div.right div.topNav span>.dropdown>ul>li:last-child {
    border-bottom: 0;
}

header div.right div.topNav span>.dropdown>ul>li>a {
    text-decoration: none;
    color: var(--black);
    font-weight: 300;
}

header div.right div.topNav a.contact:before {
    content: '\e0b0';
    font-family: "Material Icons";
    margin-right: 5px;
}

header div.right nav>li {
    float: left;
    list-style: none;
    margin-left: 1.5em;
    font-size: 1.2em;
    position: relative;
}

header div.right nav>li>a {
    text-decoration: none;
    color: var(--black);
    font-weight: 300;
}

header div.right nav>li>.dropdown {
    position: absolute;
    z-index: 3;
    display: none;
}

header div.right nav>li:hover>.dropdown {
    display: block
}

header div.right nav>li>.dropdown>ul {
    margin-top: 20px;
    background-color: #fff;
    float: left;
    border: 1px solid #ddd;
    border-bottom: 2px solid var(--blue);
    padding: 0 1em;
}

header div.right nav>li>.dropdown>ul>li {
    float: left;
    list-style: none;
    font-size: 0.9em;
    position: relative;
    padding: 1.2em 0;
    border-bottom: 1px solid var(--gray);
}

header div.right nav>li>.dropdown>ul>li:last-child {
    border-bottom: 0;
}

header div.right nav>li>.dropdown>ul>li>a {
    text-decoration: none;
    color: var(--black);
    font-weight: 300;
}


section#slider {
    width: 100%;
    float: left;
    position: relative;
}

section#slider div.item {
    width: 100%;
    float: left;
    height: 700px;
    position: relative;
    background-size: cover;
    background-position: center;
}

section#slider div.arrow {
    position: absolute;
    bottom: 1em;
    left: 1em;
    z-index: 1;
}

section#slider div.arrow span {
    background-color: #fff;
    float: left;
    font-size: 2em;
    line-height: 2em;
    padding: 0 .5em;
    margin-right: .2em;
}

section#slider div.arrow span.prev:before {
    content: '\e5cb';
    font-family: "Material Icons";
}

section#slider div.arrow span.next:before {
    content: '\e5cc';
    font-family: "Material Icons";
}

section#slider div.item div.content {
    padding: 2em;
    position: absolute;
    bottom: 1em;
    right: 1em;
    background-color: #fff;
    max-width: 500px;
}

section#slider div.item div.content h3 {
    float: left;
    width: 100%;
    font-size: 2em;
    font-weight: 300;
    margin-bottom: 0.7em;
}

section#slider div.item div.content p.text {
    float: left;
    width: 100%;
    font-size: 1.2em;
    font-weight: 300;
    margin-bottom: 1.5em;
}

section#slider div.item div.content a.more {
    float: left;
    width: 100%;
    font-size: 1em;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    color: var(--black);
}

section#slider div.item div.content a.more:before {
    content: '\e5cc';
    font-family: "Material Icons";
    margin-right: 5px;
}

section#homeNews {
    float: left;
    width: 100%;
    padding: 3em 0;
}

section#homeNews>p.title {
    font-size: 3em;
    font-weight: 500;
    border-bottom: 2px solid var(--gray);
    padding-bottom: 1em;
    margin-bottom: 1em;
}

section#homeNews>.row {
    width: 100%;
    float: left;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 3em;
    grid-row-gap: 3em;
}

section#homeNews>.row>.box {
    width: 100%;
    float: left;
}

section#homeNews>.row>.box>h3 {
    font-size: 2em;
    line-height: 1.3em;
    height: 2.6em;
    font-weight: 300;
    color: var(--black);
    margin-bottom: 1em;
}

section#homeNews>.row>.box>p {
    float: left;
    width: 100%;
    font-size: 1.2em;
    line-height: 1.5em;
    font-weight: 300;
    margin-bottom: 1.5em;
}

section#homeNews>.row>.box>a {
    float: left;
    width: 100%;
    font-size: 1em;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    color: var(--black);
}

section#homeNews>.row>.box>a:before {
    content: '\e5cc';
    font-family: "Material Icons";
    margin-right: 5px;
}

section#homeTrailer {
    float: left;
    width: 100%;
    padding: 3em 0;
}

section#homeTrailer>p.title {
    font-size: 3em;
    font-weight: 500;
    border-bottom: 2px solid var(--gray);
    padding-bottom: 1em;
    margin-bottom: 1em;
}

section#homeTrailer>.row {
    width: 100%;
    float: left;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 3em;
    grid-row-gap: 3em;
}

section#homeTrailer>.row>.box {
    width: 100%;
    float: left;
}

section#homeTrailer>.row>.box>.image {
    width: 100%;
    float: left;
    overflow: hidden;
    margin-bottom: 1em;
}

section#homeTrailer>.row>.box>.image>img {
    width: 100%;
}

section#homeTrailer>.row>.box>h3 {
    font-size: 2em;
    font-weight: 300;
    color: var(--black);
    margin-bottom: 1em;
}

section#homeTrailer>.row>.box>p {
    float: left;
    width: 100%;
    font-size: 1.2em;
    line-height: 1.5em;
    font-weight: 300;
    margin-bottom: 1.5em;
}

section#homeTrailer>.row>.box>a {
    float: left;
    width: 100%;
    font-size: 1em;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    color: var(--black);
}

section#homeTrailer>.row>.box>a:before {
    content: '\e5cc';
    font-family: "Material Icons";
    margin-right: 5px;
}

section#homeBigImage {
    width: 100%;
    height: 500px;
    float: left;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}


section#homeBigImage>.content {
    width: 40%;
    height: calc(100% - 2em);
    padding: 2em;
    position: absolute;
    bottom: 1em;
    right: 1em;
    background-color: rgba(255, 255, 255, .9);
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

section#homeBigImage>.content h3 {
    float: left;
    width: 100%;
    font-size: 3em;
    font-weight: 300;
    margin-bottom: 1em;
}

section#homeBigImage>.content p.text {
    float: left;
    width: 100%;
    font-size: 1.2em;
    line-height: 1.8em;
    font-weight: 300;
    margin-bottom: 2em;
}

section#homeBigImage>.content a.more {
    float: left;
    width: 100%;
    font-size: 1em;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    color: var(--black);
}

section#homeBigImage>.content a.more:before {
    content: '\e5cc';
    font-family: "Material Icons";
    margin-right: 5px;
}


section#homeServices {
    float: left;
    width: 100%;
    padding: 3em 0;
}

section#homeServices>p.title {
    font-size: 3em;
    font-weight: 500;
    border-bottom: 2px solid var(--gray);
    padding-bottom: 1em;
    margin-bottom: 1em;
}

section#homeServices>.row {
    width: 100%;
    float: left;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 3em;
    grid-row-gap: 3em;
}

section#homeServices>.row>.box {
    width: 100%;
    float: left;
}

section#homeServices>.row>.box>.image {
    width: 100%;
    float: left;
    overflow: hidden;
    margin-bottom: 1em;
}

section#homeServices>.row>.box>.image>img {
    width: 100%;
}

section#homeServices>.row>.box>h3 {
    font-size: 2em;
    font-weight: 300;
    color: var(--black);
    margin-bottom: 1em;
}

section#homeServices>.row>.box>p {
    float: left;
    width: 100%;
    font-size: 1.2em;
    line-height: 1.5em;
    font-weight: 300;
    margin-bottom: 1.5em;
}

section#homeServices>.row>.box>a {
    float: left;
    width: 100%;
    font-size: 1em;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    color: var(--black);
}

section#homeServices>.row>.box>a:before {
    content: '\e5cc';
    font-family: "Material Icons";
    margin-right: 5px;
}

#page404 {
    width: 100%;
    float: left;
    border-top: 3px solid var(--black);
    padding: 3em 0;
}

#page404>.title {
    float: left;
    width: 100%;
    text-align: center;
    font-size: 3em;
    font-weight: 500;
    padding-bottom: 1em;
}

#page404>.text {
    float: left;
    width: 100%;
    text-align: center;
    font-size: 1.5em;
    font-weight: 300;
}

div#pageBanner {
    width: 100%;
    height: 300px;
    float: left;
    background-size: cover;
    background-position: center;
}

div#pageCorporate {
    width: 100%;
    float: left;
    padding: 2em 0;
}

div#pageCorporate h1 {
    width: 100%;
    float: left;
    font-size: 3em;
    font-weight: 500;
    border-bottom: 2px solid var(--gray);
    padding-bottom: 1em;
    margin-bottom: 1em;
}

div#pageCorporate .text {
    float: left;
    width: 100%;
    font-size: 1.2em;
    font-weight: 300;
    margin-bottom: 1.5em;
    line-height: 2em;
}

div#pageCorporate .text li {
    list-style-position: inside;
}

div#pageCorporate .text p,
div#pageCorporate .text ul {
    float: left;
    width: 100%;
    margin-bottom: 1em;
}

div#pageCorporate .text table {
    width: 100%;
    float: left;
}

div#pageCorporate .text table tr:nth-child(2n) {
    background-color: #efefef;
}

div#pageCorporate .text table td {
    width: 50%;
    padding: 10px;
    box-sizing: border-box;
}

div#pageCorporate .content p,
div#pageCorporate .content a {
    width: 100%;
    float: left;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
    color: #000;
    text-decoration: none;
}

div#pageCorporate .content a:last-child{
    border: 0;
}

footer {
    float: left;
    width: 100%;
    padding: 3em 0;
    border-top: 4px solid var(--black);
}

footer>.row {
    width: 100%;
    float: left;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 3em;
    grid-row-gap: 3em;
}

footer>.row>.box {
    width: 100%;
    float: left;
}

footer>.row>.box>p.title {
    font-size: 2em;
    font-weight: 300;
    color: var(--black);
    margin-bottom: 1em;
}

footer>.row>.box>a {
    float: left;
    width: 100%;
    font-size: 1.2em;
    font-weight: 300;
    margin-bottom: 1.5em;
    text-decoration: none;
    color: var(--black);
}

footer>.row>.box>.social>a {
    float: left;
    width: 2em;
    height: 2em;
    margin-right: 7px;
    text-decoration: none;
    color: var(--black);
    background-color: var(--gray);
    background-image: url(../img/facebook.svg);
    background-size: 1em;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
}

footer>.row>.box>.social>a.linkedin {
    background-image: url(../img/linkedin.svg);
}

footer>.row>.box>.social>a.twitter {
    background-image: url(../img/twitter.svg);
}

footer>.row>.box>.social>a.instagram {
    background-image: url(../img/instagram.svg);
}

footer>.wrapper>.bottom>.ueb {
    background-image: url(../img/ueb.svg);
    background-size: cover;
    background-repeat: no-repeat;
    float: right;
    height: 25px;
    width: 54px;
}

footer>.copyright {
    width: 100%;
    float: left;
    padding-top: 2em;
    margin-top: 2em;
    border-top: 2px solid var(--gray);
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

footer>.copyright>p {
    float: left;
    font-size: 1.2em;
    font-weight: 300;
    text-decoration: none;
    color: var(--black);
}

footer>.copyright>.uebn {
    background-image: url(../img/ueb.svg);
    background-size: cover;
    background-repeat: no-repeat;
    float: right;
    height: 25px;
    width: 54px;
}

@media screen and (max-width: 1000px) {
    #wrapper {
        width: 100%;
        max-width: 100%;
    }

    #container {
        padding: 0 20px;
    }

    header a.logo {
        width: 150px;
    }

    header div.right {
        position: fixed;
        top: 90px;
        background-color: #0d7cc7;
        z-index: 5000;
        width: calc(100% - 40px);
        left: 20px;
        box-sizing: border-box;
        padding: 20px;
        display: none;
    }

    header div.right nav>li {
        width: 100%;
        margin: 0 0 20px 0;
    }

    header div.right nav>li:last-child {
        margin-bottom: 0;
    }

    header div.right a,
    header div.right span {
        color: #fff !important;
    }

    header div.right div.topNav {
        justify-content: space-between;
    }

    header div.right div.topNav span {
        display: none;
    }

    header div.mobileLang {
        display: block;
        float: left;
    }

    header div.mobileLang ul {
        list-style: none;
    }

    header div.mobileLang ul li {
        float: left;
    }

    header div.mobileLang ul li a {
        margin: 0 !important;
        margin: 0 10px 0 0 !important;
        background-color: #fff;
        color: #000 !important;
        padding: 10px 15px;
    }

    header #mobileMenuButton {
        display: block;
    }

    section#slider div.arrow {
        display: none;
    }

    section#homeNews>.row,
    section#homeTrailer>.row,
    section#homeServices>.row,
    footer>.row {
        grid-template-columns: repeat(1, 1fr);
    }
}