@import url('https://fonts.googleapis.com/css2?family=Handlee&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dosis&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.8.3/font/bootstrap-icons.css");
* {
    box-sizing: border-box;
}
a {
    text-decoration: none;
}
html {
    height: 100%;
}
body {
    margin: 0px;
    font-family: 'Dosis', sans-serif;
    min-width: 300px;
}
.main-container {
    max-width: 2500px;
    margin: auto;
}
.main-menu {
    width: 100%;
    padding: 10px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
    position: fixed;
    top: 0px;
    left: 0px;
    background-color: white;
}
#logo {
    font-family: 'Handlee', cursive;
    font-size: 35px;
    color: black;
    text-decoration: none;
}
#hamburger-container {
    height: 25px;
    width: 0px;
    display: flex!important;
    flex-wrap: wrap;
    align-content: space-between;
}
.hamburger-line {
    display: block;
    height: 4px;
    width: 100%;
    border-radius: 4px;
    background-color: black;
    position: relative;
}
.main-menu ul {
    display: none;
    padding: 0px;
    margin: 0px;
    list-style-type: none;
    background-color: white;
}
.main-menu > ul {
    position: fixed;
    top: 97px;
    left: 0px;
    z-index: 999;
    padding: 20px 0px;
    width: 100%;
    height: 100%;
    background-color: rgb(248, 248, 248);
    overflow-y: scroll;
}
.main-menu ul li a {
    display: inline-block;
    width: 100%;
    padding: 10px 20px;
    text-decoration: none;
    color: black;
    display: flex;
    justify-content: space-between;
	font-size: 16px;
}
.social-menu {
    background-color:rgb(153, 187, 91);
    padding: 5px 20px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 67px;
    left: 0px;
    width: 100%;
    z-index: 999;
    text-transform: uppercase;
}
.social-menu a {
    text-decoration: none;
    color: white;
}
#language-container a{
    margin-right: 10px;
}
#social-container a{
    margin-left: 10px;
    font-size: 20px;
}
.banner {
    margin-top: 97px;
    height: 200px;
    position: relative;
    overflow: hidden;
    padding: 20px;
}
#home-banner {
    height: calc(100vh - 97px); 
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner::before {
   content: '';
   position: absolute;
   top: 0px;
   left: 0px;
   height: 100%;
   width: 100%;
   background-color:rgba(0, 0, 0,0.1);
   z-index: 2;
}
.banner > img {
    height: 122%;
    width: 102%;
    object-fit: cover;
    position: absolute;
    left: 50%;
    top: 45%;
    transform: translate(-50%,-50%);
    z-index: 1;
}
.banner-title-container {
    position: absolute;
    z-index: 5;
    width: 90%;
    left: 5%;
    bottom: 40px;
}
.last-chance-container {
    background-color: red;
    padding: 5px;
    color: white; 
    margin-top: 5px;
    margin-bottom: 10px;
}
.banner-title {
    background-color: rgba(255,255,255,1);
    padding: 20px;
}
.banner-title h1 {
    margin: 0px;
    font-size: 24px;
    color: rgb(107, 107, 107);
}
.banner-title h2 {
    margin: 0px;
    font-size: 20px;
    color: rgb(153, 187, 91);
}
.banner-button-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.banner-button-container button {
    padding: 0px;
    border: none;
    background-color: rgba(255,255,255,1);
    color: white;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: 11px;
}
.banner-button-container button:hover {
    cursor: pointer;
}
.banner-button-container button:first-child{
    margin-bottom: 5px;
}
.banner-button-container button span {
    display: inline-block;
    padding: 10px;
    color: rgb(107, 107, 107);
}
.banner-button-container button span:nth-child(2) {
    color: white;
    background-color: rgb(153, 187, 91);
}
section {
    padding: 20px 20px;
    clear: both;
}
section h1 {
    font-size: 28px;
}
section h2 {
    color: rgb(153, 187, 91);
}
.flex-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.publication-text {
    width: 100%;
}
.publication-text p:first-child {
    margin-top: 0px;
}
.publication-buy-options {
    width: 100%;
    text-align: center;
}
.publication-buy-options img {
    width: 100%;
}
.publication-buy-options ul {
    list-style-type: none;
    margin: 10px 0px;
    padding: 0px;
    color:rgb(107, 107, 107);
}
.publication-buy-options button {
    width: 100%;
    padding: 10px;
    border: none;
}
.publication-buy-options button:hover {
    cursor: pointer;
}
.available {
    background-color: #eab950;
    color: white;
}
.not-available {
    background-color: rgb(226, 226, 226);
}
.flex-spotlight-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.spotlight-element {
    width: 100%;
    background-color:rgb(246, 246, 246);
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
}
.spotlight-element:last-child {
    margin-bottom: 0px;
}
.spotlight-element .fas {
    font-size: 30px;
    color: rgb(107, 107, 107);
}
.spotlight-element h3 {
    color: rgb(153, 187, 91);
    text-transform: uppercase;
}
.portfolio-container img {
    width: 100%;
    margin-bottom: 20px;
}
.portfolio-container img:last-child {
    margin-bottom: 0px;
}

/* Contactform */

#contact-form-container {
    width: 100%;
}
#contact-information-container {
    width: 100%;
}
#contact-information-container ul {
    list-style-type: none;
    margin: 0px;
    padding: 0px;
}
#contact-information-container ul li {
    margin: 5px 0px;
    position: relative;
}
#contact-information-container ul li span{
    position: absolute;
    left: 30px;
}
form ul {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
}
form input, textarea {
    width: 100%;
    border: 1px solid grey;
    padding: 5px;
    margin-bottom: 10px;
}
input[type='submit']{
    border: none;
    background-color:rgb(153, 187, 91);
    color: white;
    padding: 10px;
}
input[type='submit']:hover{
    cursor: pointer;
    background-color: #eab950;
}
#contact-error {
    color: red;
}
#contact-message {
    color: green;
}
footer {
    padding: 20px;
    background-color:white;
    color: rgb(44, 44, 44);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    clear: both;
    border-top: 2px solid rgba(242,242,242,1);
}
footer ul {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
    width: 100%;
    text-align: center;
}
@media only screen and (min-width: 350px) {
    .banner-title-container button {
        font-size: 12px;
    }
}
@media only screen and (min-width: 450px) {
    .banner-title-container {
        width: auto;
    }
    .banner-title h1 {
        font-size: 28px;
    }
    .banner-title h2 {
        font-size: 23px;
    }
    .banner-title-container button {
        width: auto;
        font-size: 12px;
    }
    .banner-button-container {
        justify-content: flex-end;
    }
    .banner-button-container button:first-child{
        margin-bottom: 0px;
    }    
    .banner-button-container button:last-child {
        margin-left: 5px!important;
    }
}
@media only screen and (min-width: 500px) {
    .main-menu, .social-menu, .banner, section, footer {
        padding-left: 50px;
        padding-right: 50px;
    }
    .banner-title h1 {
        font-size: 32px;
    }
    .banner-title h2 {
        font-size: 25px;
    }
    #contact-form-container {
        width: 45%;
    }
    #contact-information-container {
        width: 45%;
    }
    form input {
        width: auto;
        min-width: 200px;
    }
    textarea {
        height: 200px;
    }
    input[type='submit']{
        width: auto!important;
        min-width: auto;
    }
    input[type='submit']:hover{
        cursor: pointer;
        background-color: #eab950;
    } 
}

@media only screen and (min-width: 650px) {
    .spotlight-element {
        width: 46%;
    }
    .spotlight-element:nth-last-child(1),.spotlight-element:nth-last-child(2) {
        margin-bottom: 0px;
    }
    .banner-title-container {
        bottom: 60px;
    }
}

@media only screen and (min-width: 800px) {
    #home-banner {
        justify-content: flex-start;
    }
    .banner-title h1 {
        font-size: 37px;
    }
    .banner-title h2 {
        font-size: 30px;
    } 
    footer ul {
        width: auto;
        text-align: left;
    }
}
@media only screen and (min-width: 1200px) {
    .main-menu, .social-menu, .banner, section, footer {
        padding-left: 100px;
        padding-right: 100px;
    }
    .banner-title-container {
        left: 100px;
    }
    #hamburger-container {
        display: none!important;
    }
    .main-menu ul {
        position: static;
        width: auto;
        display: flex!important;
        justify-content: flex-end;
        padding: 0px;
        background-color: transparent;
        overflow: hidden;
    }
    .main-menu ul li {
        margin-left: 20px;
    }
    .main-menu ul li a {
        padding: 0px;
        width: auto;
        text-align: right;
    }
    .banner-title h1 {
        font-size: 40px;
    }
    .banner-title h2 {
        font-size: 33px;
    }  
    .publication-text {
        width: 79%;
    }
    .publication-buy-options {
        width: 19%;
    }
}
@media only screen and (min-width: 1300px) {
    .main-menu, .social-menu, .banner, section, footer {
        padding-left: 200px;
        padding-right: 200px;
    }
    .banner-title-container {
        left: 200px;
    }
    .banner-title h1 {
        font-size: 45px;
    }
    .banner-title h2 {
        font-size: 38px;
    } 
    .spotlight-element {
        width: 24%;
        max-width: 300px;
    }
    .spotlight-element:nth-last-child(3),.spotlight-element:nth-last-child(4) {
        margin-bottom: 0px;
    }
}
@media only screen and (min-width: 1900px) {
    .main-menu, .social-menu, .banner, section, footer {
        padding-left: 300px;
        padding-right: 300px;
    }
    .banner-title-container {
        left: 300px;
        bottom: 100px;
    }
    .banner-title h1 {
        font-size: 49px;
    }
    .banner-title h2 {
        font-size: 42px;
    } 
}