:root {
    --bg-color:  rgba(0, 0, 0, 0.87);
    --primary-color: #2B2E32;
    font-family: 'poppins',Helvetica,Arial,sans-serif;
}

body{
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh
}

main{
    flex: 1;
}

/*HEADER START*/
header {
    display: flex;
    padding: 0.5em;
    min-height: 2em;
    max-height: 2em;
    font-size: 2rem;
    background: var(--bg-color);
}

@media only screen and (max-width: 1000px) {
    header {
        font-size: 1.7rem;
    }
}

header nav {
    height: 66.66666666666666%;
    margin-top: 0.5em;
    float: right;
}

.navItem {
    height: 100%;
    text-decoration: none;
    color: white;
}

.navItem:hover {
    text-decoration: underline;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    height: 100%;
}

nav li:not(:last-child) {
    margin-right: 1em;
}
nav li:last-child {
    margin-right: 3em;
}
nav li{
    display: inline-block;
}

.header-container {
    width: 100%;
}

.logo {
    float: left;
    height: 100%;
    background: white;
    padding: 3px;
}

.language-dropdown {
    position: relative;
    display: inline-block;
}

.flag-container {
    height: 25px;
    width: 100%;

}

.flag-container-dropdown {
    height: 30px;
    width: 100%;

}
.flag {
    height: 100%;
}

.dropdown-flag {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 1;
    margin-top: 0.15em;
}

.dropdown-button {
    padding: 10px;
    border: none;
    cursor: pointer;
}

.dropdown-button img {
    width: 20px;
    height: auto;
    margin-right: 5px;
}

.dropdown-content form {
    display: block;
    width: 100%;
    padding: 10px;
    border: none;
    background-color: inherit;
    text-align: left;
    cursor: pointer;
}

.dropdown-content form:hover {
    background-color: #f1f1f1;
}

.language-dropdown:hover .dropdown-content {
    display: block;
}
/*HEADER END*/

/*HOMEPAGE START*/
/*SLIDESHOW START*/
.slideshow-container {
    background: rgba(0, 0, 0, 0.75);
    width: auto;
    padding-left: 2em;
    padding-right: 2em;
    height: 600px;
    position: relative;
}

.slideshow-img{
    height: 600px;
    width: 100%;
    object-fit: contain;
}

.slide {
    width: 95%;
    position: absolute;
    display: block;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.prev, .next {
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -30px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    cursor: pointer;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.2);
    border: none;
    border-radius: 5px;
}

.prev { left: 10px; }
.next { right: 10px; }
/*SLIDESHOW END*/

/*INTRO PARAGRAPH START*/
.intro-paragraph-container{
    padding: 3em;
    color: rgba(0, 0, 0, 0.8);
}
.intro-paragraph-header{

}
.intro-paragraph {
    font-size: 1.3em;
}
/*INTRO PARAGRAPH END*/

/*BULLET POINT START*/
.bullet-points-container{
    display: flex;
    flex-wrap: wrap;
    background: rgba(0, 0, 0, 0.05);
    padding: 2em;
    justify-content: space-around;
}
.bullet-point{
    margin: 1em 1em 1em 1em;
    padding: 1em;
    width: 17em;
    position: relative;
}
.bullet-point-icon{
    width: 100%;
    text-align: center;
}
.bullet-point-text{
    font-size: 1.3em;
    text-align: center;
    text-decoration: underline;
}
.bullet-point-article-container{
    opacity: 0;
    transition: opacity 1s;
    width: 100%;
    height: 80%;
    top: -2em;
    left: -2em;
    position: absolute;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    margin: 1em 1em 1em 1em;
    padding: 2em;
    background: white;
}
.bullet-point-article-container:hover{
    opacity: 1;
}
/*BULLET POINT END*/
/*HOMEPAGE END*/

/*ABOUT US START*/
.aboutUs-paragraph{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.aboutUs-paragraph-text{
    font-size: 16px;
    margin-right: 3em;
    margin-left: 3em;
}

.aboutUs-image-container{
    align-self: center;
    margin-bottom: 2em;
}

.aboutUs-image{
    width: 600px;
    height: 400px;
    background: lightgrey;
}

.aboutUs-paragraph-header{
    text-align: center;
    font-size: 40px;
    text-decoration: underline;
}

@media only screen and (max-width: 1000px) {
    .aboutUs-paragraph {
    }
}
/*ABOUT US END*/

/*CONTACT START*/
.contact-flex-columns{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}
.contact-header{
    font-size: 4em;
    margin-left: 0.5em;
}
.contact-input{
    width: 45%;
    padding: 0 2em 2em 2em;
}
.contact-input p input{
    height: 2em;
    width: 80%;
    font-size: 2em;
}
.contact-input p textarea{
    font-size: 2em;
    width: 80%;
}
.contact-address{
    font-size: 1.7em;
    width: 45%;
    padding: 0 2em 2em 2em;
    min-width: 485px;
}
.contact-sub-header{
    margin-top: 0em;
    margin-bottom: 0em;
}
.contact-send-button{
    width: 6em;
    font-size: 2em;
}
.address-paragraph{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.google-maps {
    border:0;
    margin-right: 5em
}

@media only screen and (max-width: 1450px) {
    .address-paragraph {
        flex-direction: column;
    }
    .google-maps {
        border:0;
        margin-right: 2em
    }
}
/*CONTACT END*/

/*FOOTER END*/
footer {
    display: flex;
    padding: 0.5em;
    min-height: 2em;
    max-height: 2em;
    font-size: 1rem;
    background: darkgrey;
}

.footer-container{
    width: 100%;
}

/*FOOTER END*/

.flex-break{
    flex-basis: 100%
}