/* VARIABLES */

:root {
    --blue: #405375;
    --grey: #7b7b7d;
}
/* Almaria Regular */
@font-face {
    font-family: 'Almarai';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/Almarai-Regular.ttf') format('truetype');
}
/* Almarai-Light */
@font-face {
    font-family: 'Almarai';
    font-style: light;
    font-weight: 300;
    src: url('../fonts/Almarai-Light.ttf') format('truetype');
}
/* Almarai-ExtraBold.ttf */
@font-face {
    font-family: 'Almarai';
    src: url('../fonts/Almarai-ExtraBold.ttf');
    font-weight: 900;
    font-style: normal;
}
/* Almarai-Bold */
@font-face {
    font-family: 'Almarai';
    src: url('../fonts/Almarai-Bold.ttf');
    font-weight: bold;
    font-style: normal;
}

/* GENERAL */
html {
    font-family: 'Almarai', sans-serif;
    font-weight: 300;
}
body {
    font-family: 'Almarai', sans-serif;
    font-size: 62.5%;
    color: #405375;
    background-image: url(../img/graphy-dark_mtg.png);
    overflow-x: hidden;
}

section {
    position: relative;
    padding: 5rem 0;
}

strong {
    font-weight: 600;
}

.text_center {
    text-align: center;
    /* min-width: 400px; */
    margin: 0 auto;
    /* max-width: 600px; */
}

.text_left {
    text-align: left;
    /* min-width: 400px; */
    margin: 0 auto;
    /* max-width: 500px; */
}

.b_space2 {
    margin-bottom: 2rem;
}

.b_space5 {
    margin-bottom: 5rem;
}

.b_space7 {
    margin-bottom: 7rem;
}

.b_space15 {
    margin-bottom: 15rem;
}

h1 {
    font-size: 4.5rem;
    text-transform: uppercase;
    color: #fff;
    font-weight: 300;
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.4);
    text-align: center;
    position: absolute;
    display: block;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -20%);
    transform: translate(-50%, -20%);
    z-index: 2;
    width: 80%;
    line-height: 1.2;
}

h2 {
    font-size: 4rem;
    font-weight: 300;
    text-transform: uppercase;
    padding: 0 2rem;
    letter-spacing: 1px;
}

h3 {
    font-size: 2.2rem;
    font-weight: 600;
}

h4 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

p {
    font-size: 2.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

ul {
    list-style-type: none;
    line-height: 1.6;
}

li {
    font-size: 2.2rem;
}

a {
    font-size: 2.2rem;
    text-decoration: none;
    font-weight: 500;
    color: #405375;
}

#contact_7,
p b {
    font-weight: 500;
}

.wrapper {
    position: relative;
    overflow: hidden;
    margin-bottom: 4rem;
}

.centered {
    display: block;
    position: relative;
    margin: 0 auto 5rem auto;
    width: 70%;
    max-width: 1200px;
}

.h_wrapper {
    margin: 0 0 15rem 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.h_wrapper .line_1,
.h_wrapper .line_2 {
    border-bottom: 1px solid #405375;
    width: 20px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

/* HEADER CSS */

header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 11rem;
    /* height: 16rem; */
    z-index: 9;
    background-color: #fff;
    -webkit-box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.3);
    -webkit-transition: 0.5s;
    transition: 0.5s;
    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: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

header > a {
    /* width: 35rem; */
    width: 25rem;
    /* margin-bottom: 1rem; */

    -webkit-transition: 0.3s ease;

    transition: 0.3s ease;

    margin-top: 1.5rem;
}

header img {
    width: 100%;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

header.active {
    height: 11rem;
}
header.active .logo {
    margin-top: 0;
}

.desktop_menu.active > a {
    display: inline-block;
    width: 25rem;
    margin-bottom: 0rem;
    margin-top: 1.5rem;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

nav ul {
    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-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 100rem;
}

nav ul li {
    text-transform: uppercase;
    display: inline-block;
}

nav ul li a {
    font-size: 1.6rem;
    padding: 1rem;
    color: #7b7b7d;
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

nav ul li a::after {
    display: block;
    content: attr(title);
    visibility: hidden;
    overflow: hidden;
    height: 0px;
}

.two_columns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.two_columns .col1 {
    padding-right: 4rem;
}

.two_columns .col2 {
    padding-left: 4rem;
}

.logo {
    /* margin-top: 2rem; */
    margin-top: 0;
}

.elogo {
    position: absolute;
    background-image: url('../img/L_Etzel_E_l.svg');
    background-size: cover;
    background-position: left;
    width: 30rem;
    height: 30rem;
}

/* MAIN CSS */

/* SECTIONS CSS */

#home_1 {
    height: 100vh;
    padding: 0;
}

#engineer_2 {
    padding-top: 14rem;
}

#engineer_2 .e_1 {
    bottom: -5rem;
    right: 0;
}

#engineer_2 ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -ms-flex-line-pack: start;
    align-content: flex-start;
    padding: 5rem 0;
}

#engineer_2 .featurelist li {
    text-align: center;
    padding: 0 2rem;
    font-weight: 600;
    width: 20%;
}
#engineer_2 ul.featurelist2 {
    padding-left: 2.5rem;
    position: relative;
    padding-top: 2rem;
}
.featurelist2 li::before {
    content: '–';
    position: absolute;
    left: 0;
}

#services_3 .banderole {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

#services_3 .banderole .band_img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: calc(100% / 5);
    height: 16vw;
    overflow: hidden;
    background-size: cover;
}

#services_3 .banderole .band_img1 {
    background-image: url('../img/105.png');
}

#services_3 .banderole .band_img2 {
    background-image: url('../img/59.jpg');
}

#services_3 .banderole .band_img3 {
    background-image: url('../img/52.png');
}

#services_3 .banderole .band_img4 {
    background-image: url('../img/53.jpg');
}

#services_3 .banderole .band_img5 {
    background-image: url('../img/51.jpg');
}

#team_4 img {
    /* max-width: 45rem; */
    width: 100%;
}

#team_4 .e_2 {
    bottom: -21.5rem;
    left: 0;
    background-image: url('../img/L_Etzel_E_r.svg');
    background-position: right;
}

#references_5 .centered.tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.centered.tabs {
    width: 80%;
}

.reference-cat {
    font-size: 1.8rem;
    cursor: pointer;
    text-align: center;
    padding: 0 2rem;
    font-weight: 500;
}

.reference-cat::after {
    display: block;
    content: attr(title);
    visibility: hidden;
    overflow: hidden;
    height: 0px;
}

.references-slider-container {
    height: 67vh;
    overflow: hidden;
    color: #fff;
    text-align: center;
}

.ref-control-box {
    position: absolute;
    background-color: rgba(64, 83, 83, 0.6);
    color: #fff;
    height: 150px;
    width: 100%;
    bottom: 0;
    z-index: 2;
}

.swiper-centered {
    max-height: 70vh;
    width: 80%;
    max-width: 900px;
}

.ref-slider.active {
}

.ref-slider {
    /* min-height:600px; */
}

.caption {
    position: absolute;
    padding: 2rem 10rem;
    width: 100%;
}

.caption h3 {
    font-size: 1.8rem;
}

.caption .desc {
    display: block;
    font-size: 1.8rem;
    line-height: 1.6;
}

.ref-slide-button-prev,
.ref-slide-button-next {
    position: absolute;
    background-repeat: no-repeat;
    background-position: center;
    width: 3rem;
    height: 5rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
}

.ref-slide-button-prev {
    background-image: url('../img/left_arrow.svg');
    left: 5rem;
}

.ref-slide-button-next {
    background-image: url('../img/right_arrow.svg');
    right: 5rem;
}

.ref-arrow {
    background-position: center;
    background-size: contain;
}

/* SLIDE IMAGES */

.reference-slide {
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 100%;
    height: 100%;
    background-color: rgba(64, 83, 83, 0.2);
}

/* REFERENCE SLIDES */

.ref-slider-1 .ref-slide-1 {
    background-image: url('../img/f01.jpg');
}

.ref-slider-1 .ref-slide-2 {
    background-image: url('../img/f02.jpg');
}

.ref-slider-1 .ref-slide-3 {
    background-image: url('../img/f04.jpg');
}

.ref-slider-1 .ref-slide-4 {
    background-image: url('../img/f04.jpg');
}
.ref-slider-1 .ref-slide-5 {
    background-image: url('../img/f05.jpg');
}

.ref-slider-2 .ref-slide-1 {
    background-image: url('../img/m01.jpg');
}

.ref-slider-2 .ref-slide-2 {
    background-image: url('../img/m02.jpg');
}

.ref-slider-2 .ref-slide-3 {
    background-image: url('../img/m03.jpg');
}

.ref-slider-2 .ref-slide-4 {
    background-image: url('../img/m04.jpg');
}

.ref-slider-2 .ref-slide-5 {
    background-image: url('../img/m05.jpg');
}

.ref-slider-3 .ref-slide-1 {
    background-image: url('../img/w01.jpg');
}

.ref-slider-3 .ref-slide-2 {
    background-image: url('../img/w02.jpg');
}

.ref-slider-3 .ref-slide-3 {
    background-image: url('../img/w03.jpg');
}

.ref-slider-3 .ref-slide-4 {
    background-image: url('../img/w08.jpg');
}

.ref-slider-3 .ref-slide-5 {
    background-image: url('../img/w09.jpg');
}

.ref-slider-3 .ref-slide-6 {
    background-image: url('../img/w06.jpg');
}
.ref-slider-3 .ref-slide-7 {
    background-image: url('../img/w07.jpg');
}

.ref-slider-4 .ref-slide-1 {
    background-image: url('../img/k01.jpg');
}

.ref-slider-4 .ref-slide-2 {
    background-image: url('../img/k02.jpg');
}
.ref-slider-4 .ref-slide-3 {
    background-image: url('../img/k03.jpg');
}
.ref-slider-4 .ref-slide-4 {
    background-image: url('../img/k04.jpg');
}
.ref-slider-4 .ref-slide-5 {
    background-image: url('../img/k05.jpg');
}

.ref-slider-5 .ref-slide-1 {
    background-image: url('../img/g01.jpg');
}

.ref-slider-5 .ref-slide-2 {
    background-image: url('../img/g02.jpg');
}

.ref-slider-5 .ref-slide-3 {
    background-image: url('../img/g03.jpg');
}
.ref-slider-5 .ref-slide-4 {
    background-image: url('../img/g04.jpg');
}
.ref-slider-5 .ref-slide-5 {
    background-image: url('../img/g05.jpg');
}
.ref-slider-5 .ref-slide-6 {
    background-image: url('../img/g062.png');
}
.ref-slider-5 .ref-slide-7 {
    background-image: url('../img/g07.jpg');
}

.ref-slider-6 .ref-slide-1 {
    background-image: url('../img/v01.jpg');
}

.ref-slider-6 .ref-slide-2 {
    background-image: url('../img/v02.jpg');
}

.ref-slider-6 .ref-slide-3 {
    background-image: url('../img/v03.jpg');
}

.ref-slider-6 .ref-slide-4 {
    background-image: url('../img/v04.jpg');
}

.ref-slider-6 .ref-slide-5 {
    background-image: url('../img/v06.jpg');
}
.ref-slider-6 .ref-slide-6 {
    background-image: url('../img/v07.jpg');
}

#jobs_6 .job_list li::before {
    content: '–';
    position: absolute;
    left: 0;
}

.job_list {
    position: relative;
    padding-left: 2.5rem;
}

#jobs_6 .e_3 {
    top: -6.7rem;
    right: 0;
}

#jobs_6 .e_4 {
    bottom: 21.5rem;
    left: 0;
    background-image: url('../img/L_Etzel_E_r.svg');
    background-position: right;
    width: 39rem;
}

#contact_7 .google-container {
    text-align: center;
}

/*#contact_7 .googlemap {
    border: 0.5rem solid #fff;
    -webkit-box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.3);
            box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.3);
    width: 70rem;
    height: 45rem;
} */

#contact_7 .e_5 {
    top: 86rem;
    right: 0;
}

#privacy_block {
    padding-top: 28rem;
}

#privacy_block .centered {
    max-width: 800px;
    width: 85%;
}

#privacy_block .h_wrapper {
    margin-bottom: 8rem;
}

#privacy_block .privacy_h1 {
    font-size: 4rem;
    font-weight: 100;
    text-transform: uppercase;
    padding: 0 2rem;
    letter-spacing: 1px;
    text-shadow: none;
    color: #405375;
    position: relative;
    text-align: left;
    -webkit-transform: none;
    transform: none;
    width: auto;
    display: inline-block;
    top: 0;
    left: 0;
}

#privacy_block h2 {
    font-size: 2.2rem;
    font-weight: 100;
    padding: 0;
    display: block;
    text-transform: none;
}

#privacy_block h3 {
    font-size: 2.2rem;
    padding: 2rem 0;
    display: block;
    text-transform: none;
}

/* SLIDER */

.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
    cursor: pointer;
    bottom: 2rem;
    left: 0;
    width: 100%;
    position: absolute;
    text-align: center;
    -webkit-transition: 300ms opacity;
    transition: 300ms opacity;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    z-index: 8;
}

.swiper-container-horizontal
    > .swiper-pagination-bullets
    .swiper-pagination-bullet {
    margin: 0 0.5rem;
    width: 2.2rem;
    height: 2.2rem;
    display: inline-block;
    border-radius: 100%;
    opacity: 1;
    background: transparent;
    border: 3px solid #fff;
    position: relative;
}

.swiper-pagination-bullet::after {
    content: '';
    width: 0%;
    height: 2px;
    z-index: 8;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: inline-block;
    background: #fff;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

.swiper-pagination-bullet-active::after {
    width: 160%;
}

.swiper-pagination-bullet::before {
    content: '';
    width: 2px;
    height: 0%;
    z-index: 8;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: inline-block;
    background: #fff;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

.swiper-pagination-bullet-active::before {
    height: 160%;
}

.landing-slider-container {
    height: 100%;
    overflow: hidden;
}

.landing-slider-wrapper {
    width: 100%;
}

.landing-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.slide-1 {
    background-image: url('../img/g06.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.slide-2 {
    background-image: url('../img/g05.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* FOOTER CSS */

footer p {
    font-size: 1.6rem;
    color: #7b7b7d;
    margin: 0;
}

footer .centered {
    margin-bottom: 2rem;
}

footer a {
    font-size: 1.6rem;
    color: #7b7b7d;
}

.footer_menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.footer_menu a:first-child {
    padding-right: 1rem;
}

.footer_menu a:last-child {
    padding-left: 1rem;
}

.copys {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.copys p {
}

#privacy_block h2 {
    margin-top: 4rem;
}

#privacy_block ul,
#privacy_block ol {
    margin-bottom: 2rem;
}

.accordion {
    display: flex;
    flex-direction: column;
}

.accordion_title {
    cursor: pointer;
}

.hiddentext {
    display: none;
}

.bottom_arrow {
    margin-top: 1rem;
    align-self: center;
    width: 2rem;
    height: 4rem;
    background-image: url(../img/accordion_cross.svg);
    background-repeat: no-repeat;
    background-position: center;
    top: 50%;
    cursor: pointer;
}

.bottom_arrow.open {
    background-image: url(../img/accordion_stroke.svg);
}
