/* GLOBAL CSS SETTINGS ------------------------------------ */
* {
    margin: 0;
    padding: 0;
    outline: 0;
    border: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html,
body {
    height: 100%;
}

body {
    overflow-x: hidden;
    max-width: 1920px;
    margin: 0 auto;    
    /* padding-bottom: 1000px; */
    opacity: 0;
}

a,
a:visited,
a:hover,
a:active,
a:focus {
    text-decoration: none !important
}

.hvc {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.p-rel {
    position: relative;
}

.container {
    max-width: 1430px;
    padding: 0 15px;
    margin: 0 auto;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

:root {
    --gray: rgb(48, 44, 45);
    --yellow: rgb(224, 161, 79);
}

.flexi {
    display: flex;
    flex-wrap: wrap;
}

/* SPEC */

header {
    background-color: var(--gray);
    padding: 30px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 2px 5px 1px #000000;
    z-index: 99999;
}

.header-container {
    align-items: center;
    justify-content: space-between;
}

header nav a {
    display: block;
    color: #fff;
    padding: 5px 10px;
    transition: 0.3s;
    cursor: pointer;
    text-transform: uppercase;
    font-family: "Comfortaa", sans-serif;
    font-size: 14px;
}

header nav a:hover {
    color: var(--yellow);
}

.lang-select {
    position: relative;
    border: 1px solid var(--yellow);
    border-radius: 12px;
    padding: 15px 10px;
    width: 67px;
    color: #fff;
    cursor: pointer;
    text-transform: uppercase;
}

.lang-select::before {
    content: '';
    position: absolute;
    top: 46%;
    right: 10px;
    transform: translateY(-50%) rotate(45deg);
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    width: 8px;
    height: 8px;
    transition: 0.3s;
}

.lang-list {
    position: absolute;
    top: 100%;
    right: -1px;
    width: calc(100% + 2px);
    display: none;
    border-radius:0 0 12px 12px;
    overflow: hidden;
    border: 1px solid rgb(224, 161, 79)
}

.lang-select.active .lang-list {
    display: block;    
}

.lang-select.active {
    border-radius: 12px 12px 0 0;
}

.lang-select.active::before {
    transform: translateY(-50%) rotate(-135deg);
    top: 56%;
}

.lang-list a {
    background-color: var(--gray);
    padding: 10px 15px;
    display: block;
    color: #fff;
    border-bottom: 1px solid #f1f1f153
}

.lang-list a:hover {
    background-color: #404040;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 30%;
    overflow: hidden;
}

.short-intro {
    margin-left: 35%;
    width: 44%;
    background-color: var(--gray);
    color: #fff;
    padding: 35px 22px;
    margin-top: -195px;
    margin-bottom: 37px;
    min-width: min-content;
    overflow: hidden;
}

.short-intro h1 {
    text-transform: uppercase;
    font-size: 58px;
    margin-bottom: 84px;
    line-height: 1.1;
    position: relative;   
}

.animation-element {
    left: -150px;
    transition: 0.7s;
    position: relative;
}

.animation-element.animated {
    left: 0 !important;
}

.short-intro h2 {
    margin-bottom: 50px;
    padding-left: 23%;
    position: relative;
    font-weight: normal;
    font-size: 18px;
    line-height: 1.5;
    color: #a8a8a8
}

.short-intro h2::before {
    content: '';
    position: absolute;
    left: 12px;
    width: 18%;
    height: 3px;
    top: 10px;
    background-color: var(--yellow);
}

.short-intro .more {
    text-align: right;
}

.uni-btn {
    display: inline-block;
    vertical-align: middle;
    background-color: var(--yellow);
    color: #fff;
    padding: 17px 36px;
    transition: 0.5s;
}

.uni-btn:hover {
    background-color: #2b4ee8;
}

.services {
    position: relative;
    background-color: var(--gray);
    padding-bottom: 40px;
}

.small-container {
    max-width: 918px;
    margin: 0 auto;
}

.services h2 {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-459px);
}

.uni-title {
    color: #000;
    text-shadow: 1px 1px 3px #000;
    font-size: 54px;
    text-transform: uppercase;
    font-weight: normal;
}

.services-list {
    justify-content: space-between;
    margin-top: -225px;
}

.services-list-item {
    background-color: #fff;
    width: calc(33.33% - 30px);
    padding: 30px 10px 15px;
}

.services-list-item-title {
    font-size: 30px;
    margin-bottom: 26px;
    text-align: center;
}

.services-list-item-inner-list {
    list-style: disc !important;
    padding-left: 17px;

}

.services-list-item-inner-list li {
    margin-bottom: 34px;
    line-height: 1.5;
}

.services-offers {
    text-align: center;
    margin-top: 50px;
    color: #fff;
    line-height: 1.5;
}

.services-offer-highlighted {
    font-weight: bold;
}

.services-offer-light {
    font-weight: lighter;
    letter-spacing: 2px;
}

.automotive {
    background-image: url('/img/automotive_bg.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 20px 0 100px;
}

.automotive::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff9e;
}

.automotive .small-container {
    position: relative;
}

.automotive .uni-title {
    margin-bottom: 46px;
}

.automotive-list {
    list-style: disc;
    padding-left: 30px;
}

.automotive-list li {
    margin-bottom: 20px;
    line-height: 1.5;
    font-size: 18px;
}

.terminal {
    color: #fff;
    background-image: url('/img/terminal_bg.jpg');
    min-height: 100vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
    padding-top: 138px;
    padding-bottom: 40px;
}

.terminal-container {
    /*  */
}

.terminal-list {
    list-style: disc;
    padding-left: 30px;
    padding-right: 542px;
}

.terminal .uni-title {
    color: #fff;
    text-shadow: none;
    margin-bottom: 54px;
    font-size: 58px;
}

.terminal-list li {
    margin-bottom: 20px;
    line-height: 1.5;
    font-size: 18px;
}

.terminal-year {
    font-weight: bold;
    font-size: 64px;
    margin-bottom: 8px;
}

.terminal-sign {
    width: 120px;
}

.terminal-sign-name {
    font-weight: bold;
    font-size: 22px;
    margin-bottom: 20px;
}

.terminal-year-after {
    padding-bottom: 60px;
    position: relative;
}

.terminal-year-after::before {
    position: absolute;
    content: '';
    width: 60px;
    height: 1px;
    background-color: #fff;
    bottom: 0;
    left: 0;
}

.contact {
    position: relative;
    padding: 20px 0;
    overflow: hidden;
}

.contact .small-container {
    max-width: 822px;
}

.contact-bg {
    background-image: url('/img/contact_bg.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: -5px;
    left: -5px;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    filter: blur(3px);
}

.contact-inner {
    position: relative;
    margin: 0 auto;
    background-color: var(--gray);
    padding: 70px 50px;
    text-align: center;
}

.contact .uni-btn {
    padding: 17px 60px;
}

.map {
    position: relative;
    text-align: center;
    overflow: hidden;
    text-transform: uppercase;
}

.map-infos {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 8px;
    background-color: #00000042;
    color: #fff
}

.gps-title {
    text-decoration: underline;
    margin-bottom: 4px;
}

.gps-info {
    display: flex;
    justify-content: space-between;
    text-transform: uppercase;
}

footer {
    border-top: 3px solid var(--yellow);
    padding: 35px 0;
    background-color: var(--gray);
    color: #fff
}

footer a:hover {
    color: rgb(224, 161, 79);
}

.footer-container {
    align-items: center;
}

.footer-container>div {
    width: 33.33%;
}

.footer-container>div>* {
    margin-bottom: 22px;
}

.footer-container>div:nth-child(1) {
    text-align: left;
}

.footer-container>div:nth-child(2) {
    text-align: center;
    font-size: 14px;
}

.footer-container>div:nth-child(2) img {
    max-width: 70px;
    margin: 0 auto 8px;
}

.footer-container>div:nth-child(3) {
    text-align: right;
}

.footer-container a {
    color: #fff;
}

.footer-container>div:nth-child(2)>* {
    margin-bottom: 5px;
}

/*  INTRODUCTION START  */

.introduction-banner {
    position: relative;
}

.introduction-banner .container {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 1430px;
    transform: translateX(-50%);
}

.introduction-title {
    background-color: var(--gray);
    width: 960px;
    color: #fff;
    padding: 13px 41px;
    font-size: 54px;
    font-weight: bold;
}

.introduction-main {
    background-color: var(--gray);
    padding-bottom: 60px;
}

.introduction-main .small-container {
    max-width: 720px;
}

.introduction-list {
    list-style: disc !important;
    line-height: 1.5;
    padding-left: 40px;
    margin-bottom: 30px;
}

.pdfs {
    justify-content: space-between;
    padding-top: 40px;
    margin-bottom: 40px;
}

.pdfs img {
    width: 70px
}

.pdfs>a {
    text-align: center;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
}

.introduction-text {
    line-height: 1.5;
    color: #fff;
    text-align: justify;
}

.introduction-text p {
    margin-bottom: 30px;
}

.introduction-text p.text-title {
    font-weight: bold;
    margin-top: 50px;
}

/*  INTRODUCTION END  */

/*  COLLEAGUES START  */
.colleagues {
    background-color: var(--gray);
    padding: 97px 0;
}

.colleagues .small-container {
    max-width: 720px;
}

.square-title {
    background-color: #fff;
    color: var(--gray);
    position: relative;
    padding: 30px;
    text-align: center;
    text-transform: uppercase;
    font-size: 48px;
}

.square-title::before {
    content: '';
    position: absolute;
    left: 100%;
    top: 16px;
    height: 100%;
    border-top: 4px solid #fff;
    border-right: 4px solid #fff;
    width: 16px;
}

.square-title::after {
    content: '';
    position: absolute;
    left: 16px;
    bottom: -20px;
    width: 100%;
    border-bottom: 4px solid #fff;
    border-left: 4px solid #fff;
    height: 16px;
}

.yellow-divider {
    background-color: var(--yellow);
    width: 100px;
    height: 3px;
    margin: 80px 0;
}

.members {
    justify-content: center;
}

.member-item {
    text-align: center;
    color: #fff;
    margin-bottom: 50px;
    padding: 0 15px;
    width: 33.33%;
}

.member-name,
.member-contact,
.member-job {
    margin-bottom: 4px
}

.member-img {
    margin: 0 auto 24px;
}

.member-contact {
    margin-top: 30px
}

.member-infos {
    /* min-height: 85px; */
}

.mb-30 {
    margin-bottom: 24px;
}

.member-item .uni-btn {
    padding: 11px 46px;
}

.colleagues-contact {
    padding: 110px;
    text-align: center;
    background-color: #fff;
}

.colleagues-contact .uni-btn {
    padding: 17px 59px;
}

/*  COLLEAGUES END  */

/*  DOWNLOADS START */

.downloads {
    background-color: var(--gray);
    padding: 97px 0;
}

.highlighted {
    color: var(--yellow)
}

.highlighted-title {
    position: relative;
    text-align: center;
    margin-top: 100px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 70px;
}

.highlighted-title::before {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--yellow);
    content: '';
}

.imglist {
    justify-content: center;
}

.imglist a {
    width: 200px;
    height: 200px;
    position: relative;
    overflow: hidden;
    display: block;
    margin: 5px
}

.imglist a img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    min-height: 100%;
    max-width: unset;
}

.o-video {
    width: 100%;
    height: 0;
    position: relative;
    padding-top: 56.25%;
    margin-bottom: 15px;
    /* 9 / 16 * 100 */
}

.o-video>iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border: 0;
}


/*  DOWNLOADS END */

/* CONTACT START */

.directions {
    padding: 40px 0;
    margin: 0 auto
}

.contact-infos {
    line-height: 1.5;
    color: #fff
}

.contact-infos a {
    color: #fff
}

/* CONTACT END */


/*  RESZPONZÍV VERZIÓK  */

@media(max-width: 1599px) {

    #header img {
        max-width: 200px;
    }

    #header nav a {
        padding: 5px 7px;
        font-size: 12px;
    }

    .short-intro h1 {
        font-size: 44px;
        margin-bottom: 40px;
    }

    .short-intro h2 {
        margin-bottom: 30px;
    }

    .uni-title {
        font-size: 40px;
    }

    .services-list {
        margin-top: -170px;
    }

    .services-list-item-title {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .services-list-item-inner-list li {
        margin-bottom: 26px;
    }

    .services-offers {
        margin-top: 30px;
    }

    .services {
        padding-bottom: 30px;
    }

    .automotive-list li {
        font-size: 17px;
    }

    .automotive {
        padding: 20px 0 60px;
    }

    .terminal {
        padding-top: 100px;
    }

    .terminal .uni-title {
        margin-bottom: 40px;
        font-size: 44px;
    }

    .terminal-year-after {
        padding-bottom: 45px;
    }

    .terminal-sign-name {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .contact-inner {
        padding: 55px 40px;
    }

    footer {
        padding: 35px 0;
    }

}

@media(max-width: 1199px) {
    #header {
        padding: 24px 0;
    }

    #header img {
        max-width: 160px;
    }

    #header nav a {
        font-size: 11px;
        padding: 5px 4px;
    }

    .short-intro {
        margin-left: 25%;
        width: 55%;
        padding: 26px 16px;
        margin-top: -130px;
        margin-bottom: 30px;
    }

    .short-intro h1 {
        font-size: 38px;
        margin-bottom: 32px;
    }

    .terminal {
        padding-top: 70px;
    }

    .terminal .uni-title {
        margin-bottom: 20px;
        font-size: 38px;
    }

    .uni-title {
        font-size: 38px;
    }

    footer {
        padding: 28px 0;
    }
}

@media(max-width: 991px) {
    #header img {
        max-width: 100px;
    }

    #header nav a {
       /*  padding: 5px 3px;
        font-size: 12px; */
        font-size: 10px;
    }

    .lang-select {
       /*  border-radius: 10px;
        padding: 5px;
        width: 50px;
        font-size: 13px; */
    }

    .short-intro {
        margin-left: 15%;
        width: 75%;
        padding: 20px 12px;
        margin-top: -85px;
    }

    .short-intro h1 {
        font-size: 28px;
        margin-bottom: 26px;
    }

    .small-container,
    .contact .small-container {
        max-width: calc(100% - 30px);
    }

    .uni-title {
        font-size: 28px;
    }

    .services-list {
        margin-top: -100px;
    }

    .services h2 {
        left: 15px;
        transform: none;
    }

    .services-list-item {
        padding: 15px 10px;
    }

    .services-list-item-title {
        font-size: 22px;
        margin-bottom: 16px;
    }

    .automotive {
        padding: 20px 0 30px;
    }

    .automotive .uni-title {
        margin-bottom: 30px;
    }

    .terminal {
        padding-top: 45px;
    }

    .terminal-list {
        padding-right: 200px;
    }

    .terminal .uni-title {
        font-size: 28px;
    }

    footer {
        padding: 18px 0;
    }

    .introduction-title {width: 100%;}

    .header-logo-link {
        width: 100%;
    }

    .header-logo-link img {
        margin: 0 auto 8px
    }
}

.mobile-header,
.established-mobile {
    display: none
}

@media(max-width: 767px) {

    #header,
    .established-desktop {
        display: none;
    }

    .established-mobile {
        display: block;
        margin-top: 30px;
    }

    .established-mobile>div {
        margin-bottom: 5px;
    }

    .mobile-header {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background-color: var(--gray);
        padding: 15px;
        box-shadow: 0 2px 5px 1px #000000;
        z-index: 9;
    }

    .mobile-header img {
        max-width: 150px;
        margin: 0 auto;
    }

    #mobile-menu-toggler {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 30px;
        height: 20px;
        right: 15px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }

    #mobile-menu-toggler span {
        width: 100%;
        height: 2px;
        background-color: #fff;
    }

    .video-wrapper {
        display: none;
    }

    .short-intro {
        width: calc(100% + 30px);
        padding: 20px 15px;
        margin: 0 -15px;
    }

    .short-intro h2 {
        margin-bottom: 30px;
        padding-left: 0;
        font-size: 16px;
    }

    .short-intro h1 {
        margin-bottom: 50px;
    }

    .short-intro h2::before {
        left: 0px;
        top: -30px;
    }

    .services-list {
        margin-top: 30px;
        flex-wrap: wrap;
    }

    .services-list-item {
        width: 100%;
        margin-bottom: 20px;
    }

    .services h2 {
        left: 50%;
        transform: translateX(-50%);
        white-space: nowrap;
    }

    .terminal .uni-title,
    .short-intro h1,
    .services h2,
    .uni-title {
        font-size: 24px;
    }

    .terminal-list {
        padding-right: 0;
    }

    .terminal-year {
        font-size: 48px;
    }

    .terminal-year-after {
        padding-bottom: 20px;
    }

    .contact {
        padding: 0;
    }

    .contact-inner.small-container {
        max-width: 100%;
    }

    .contact-inner {
        padding: 30px 15px;
    }

    .footer-container {
        flex-wrap: wrap;
    }

    .footer-container>div {
        width: 100%;
        text-align: center !important;
    }

    .footer-container>div:nth-child(2) img {
        margin: 20px auto 30px
    }

    .member-item {
        width: 50%
    }
}

@media(max-width: 450px) {
    .member-item {
        width: 100%
    }
}

@media(max-width: 1599px) {
    .introduction-banner .container {
        left: 0;
        transform: none;
    }

    .introduction-banner .container {
        max-width: 100%;
    }
}

@media(max-width: 767px) {
    .introduction-title {
        width: 100%;
        text-align: center;
        padding: 8px 41px;
    }

    .introduction-banner .container {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .pdfs {
        flex-wrap: wrap;
        margin-bottom: 0;
        padding-top: 20px;
    }

    .pdfs>a {
        width: 100%;
        text-align: center;
        margin-top: 40px;
        margin-bottom: 20px;
    }

    .pdfs img {
        margin: 0 auto;
    }

    .introduction-text {
        padding: 0 15px
    }

    .introduction-text p.text-title {
        margin-top: 30px;
    }

    .introduction-text p {
        margin-bottom: 12px;
    }

    .introduction-main {
        padding-bottom: 30px;
    }
}



@media(max-width: 1599px) {

    .colleagues,
    .downloads {
        padding: 75px 0;
    }

    .square-title {
        padding: 24px;
        font-size: 40px;
    }

    .yellow-divider {
        width: 80px;
        margin: 60px 0;
    }

    .member-contact {
        margin-top: 60px;
    }

    .colleagues-contact {
        padding: 85px;
    }

    .highlighted-title {
        margin-top: 80px;
        margin-bottom: 60px;
    }

    .highlighted-title::before {
        width: 80px;
    }
}

@media(max-width: 1199px) {

    .colleagues,
    .downloads {
        padding: 60px 0;
    }

    .square-title {
        padding: 18px;
        font-size: 32px;
    }

    .yellow-divider {
        width: 70px;
        margin: 45px 0;
    }

    .member-contact {
        margin-top: 48px;
    }

    .colleagues-contact {
        padding: 60px;
    }

    .highlighted-title {
        margin-top: 70px;
        margin-bottom: 50px;
    }

    .highlighted-title::before {
        width: 64px;
    }
}

@media(max-width: 991px) {

    .colleagues,
    .downloads {
        padding: 45px 0;
    }

    .square-title {
        padding: 16px;
        font-size: 26px;
    }

    .yellow-divider {
        width: 70px;
        margin: 30px 0;
    }

    .member-contact {
        margin-top: 38px;
    }

    .colleagues-contact {
        padding: 45px;
    }

    .highlighted-title {
        margin-top: 60px;
    }
}

#mobile-closer {
    display: none
}

@media(max-width: 767px) {

    .colleagues,
    .downloads {
        padding-bottom: 30px;
    }

    .square-title::before,
    .square-title::after {
        display: none
    }

    .colleagues .small-container {
        max-width: 100%;
        padding: 0 15px
    }

    .member-contact {
        margin-top: 15px;
    }

    .highlighted-title {
        margin-top: 50px;
    }

    .imglist a {
        width: 60px;
        height: 60px;
    }

    .imglist a img {
        transform: translate(-50%, -50%) scale(0.2);
    }

    .directions {
        padding: 30px 0;
    }

    #header {
        display: block;
        top: 0;
        left: 100%;
        width: 100%;
        height: 100%;
        background-color: #fff;
        z-index: 9999;
        transition: 0.3s;
    }

    #header.active {
        left: 0;
    }

    .header-container {
        flex-direction: column-reverse;
    }

    .header-logo-link {
        display: none
    }

    .lang-select {
        background-color: var(--gray);
    }

    header nav ul {
        flex-direction: column;
    }

    header nav a {
        color: var(--gray)
    }

    .header-container,
    .header-container nav,
    .header-container ul,
    .header-container li {
        width: 100%;
    }

    #header nav a {
        padding: 15px 3px;
        font-size: 15px;
    }

    .lang-select {
        padding: 12px;
        width: 73px;
        margin-bottom: 30px;
    }

    #mobile-closer {
        display: block;
        width: 30px;
        height: 30px;
        position: absolute;
        top: 24px;
        right: 15px;
    }

    #mobile-closer::before,
    #mobile-closer::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(45deg);
        width: 20px;
        height: 2px;
        background-color: var(--gray);
    }

    #mobile-closer::after {
        transform: translate(-50%, -50%) rotate(-45deg);
    }

    .lang-list {
        width: calc(100% + 2px) !important;
    }

    .lang-list a {
    }

    .lang-list li:last-child a {
        border: 0
    }

    .gps-info {
        flex-direction: column;
    }

    .gps-info > div {
        padding: 4px
    }

}

/**/