* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7em;
}

a {
    color: #333;
    text-decoration: none;
}
h1, h2, h3 {
    padding-bottom: 20px;
}
p {
    margin: 10px;
}

.container {
    margin: auto;
    max-width: 1100px;
    overflow: auto;
    padding: 0 20px;
}

.txtPrimary {
    color: #d60000;
}
.lead {
    font-size: 20px;
}
.btn {
    display: inline-block;
    font-size: 18px;
    color: white;
    background-color: #333;
    padding: 13px 20px;
    border: none;
    cursor: pointer;
}
.btn:hover {
    background: #4c4c4c;
    color: #d60000;
}
.btnLight {
    background: #f4f4f4;
    color: #333;
}

.bgDark {
    background: #333;
    color: #fff;
}
.bgLight {
    background: #f4f4f4;
    color: #333;
    height: 40vh;
}
.bgPrimary {
    height: 40vh;
    background: #d60000;
    color: #333;
}

.clr {
    clear: both;
}

.lHeading {
    font-size: 40px;
}

/* padding  */
.py-1 {padding: 10px 0;}
.py-2 {padding: 20px 0;}
.py-3 {padding: 30px 0;}

#navbar {
    background-color: #333;
    color: #fff;
    overflow: auto;
}
#navbar a {
    color: white;
}
#navbar h1 {
    float: left;
    padding: 10px;
}
#navbar .logo{
    float: left;
    margin-top: 7px;
}
#navbar h1 a{
    float: left;
    margin: auto;
}
#navbar ul {
    list-style: none;
    float: right;
}
#navbar li {

    float: left;
}
#navbar ul li a {
    display: block;
    padding: 20px;
    text-align: center;
    margin: auto;
}
#navbar ul li a:hover,
#navbar ul li a.current {
    background: #4c4c4c;
    color: #d60000
}
#navbar img {
    height: 40px;
    margin: auto 10px;
}
#showcase {
    background: url('./src/III_IVv5.png') no-repeat center center/cover;
    height: 600px;
}
#showcase .showcase-content {
    color: #fff;
    text-align: center;
    padding-top: 170px;
}
#showcase .showcase-content h1 {
    font-size: 60px;
    line-height: 1.2em;
}
#showcase .showcase-content p {
    padding-bottom: 20px;
    line-height: 1.7em;
}

#homeInfo {
    height: 400px;

}
#homeInfo .infoImg {
    float: left;
    width: 50%;
    background: url('./src/Resin\ Look.png') no-repeat center center/cover;
    min-height: 100%;
}
#homeInfo .infoContent {
    float: right;
    width: 50%;
    height: 100%;
    text-align: center;
    padding: 50px 30px;
    overflow: hidden;
}
#homeInfo .infoContent p {
    padding-bottom: 30px;
    font-size: 20px;
}

.box {
    float: left;
    width: 33.3%;
    padding: 50px;
    text-align: center;
}
.box i {
    margin-bottom: 10px;
}

/* About Info */
#aboutInfo .infoRight {
    float: right;
    width: 50%;
    min-height: 100%;
}
#aboutInfo .infoRight img {
    width: 70%;
    display: block;
    margin: auto;
    border-radius: 50%;
}
#aboutInfo .infoLeft {
    float: left;
    width: 50%;
}

/* Testimonials  */
#testimonials {
    height: 600px;
    background: url('../img/test-bg.jpg') no-repeat center center/cover;
    padding-top: 100px;
}
#testimonials h2 {
    color: #fff;
    text-align: center;
    padding-bottom: 40px;
}
#testimonials .testimonial {
    padding: 20px;
    margin-bottom: 40px;
    border-radius: 5px;
    opacity: 90%;
}
#testimonials .testimonial img {
    width: 100px;
    float: left;
    margin-right: 20px;
    border-radius: 50%;
}

#contactForm .formGroup {
    margin-bottom: 20px;
}
#contactForm label {
    display: block;
    margin-bottom: 5px;
}
#contactForm input, #contactForm textarea {
    width: 100%;
    padding: 10px;
    border: 1px #ddd solid;

}
#contactForm textarea {
    height: 200px;
}
#contactForm input:focus, #contactForm textarea:focus {
    outline: none;
    border-color: #d60000;
}

#mainFooter {
    text-align: center;
    color: #fff;
    padding: 20px;
    background: #4c4c4c;
}

/* Landing Page */

#landing-page {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-wrap: nowrap;
    max-height: 100%;
    max-width: 100%;
    margin: auto;
}
#landing-logo img{
    display: flex;
    width: 80vw;
    margin: auto;
    margin-top: 5vh;
}
#language-logos {
    display: flex;
    justify-content: space-evenly;
    align-items: flex-end;
}
#language-logos a {
    display: block;
    text-decoration: none;
    text-align: center;
    margin: auto;
}
#language-logos li {
    list-style: none;
}
.btn-flag {
    padding: 30px;
    font-size: 0;
    opacity: 100;
    height: calc(20vw*0.7);
    width: 20vw;
    border: none;
    cursor: pointer;
}
#flag-en {
    background: url('/src/Flaggen/Englisch.png') no-repeat center center/cover;
}
#flag-jp {
    background: url('/src/Flaggen/Japanisch.png') no-repeat center center/cover;
}
#flag-de {
    background: url('/src/Flaggen/Deutsch.png') no-repeat center center/cover;
}
.btn-flag:hover {
    font-size: 0;
    color: white;
    background: #4c4c4c;
    opacity: 30%;
    border: none;
    cursor: pointer;
}