@font-face {
    font-family: alike;
    src: url(../fonts/Alike-Regular.ttf);
    font-weight: bold;
}

body {
    font-family: alike;
    background-repeat: no-repeat;
    background-color: #eae4dc;
    color: black;
    line-height: 1.3;
}

h1 {
    font-size: 45px;
}

footer {
    background-color: #f3efea;
    padding:60px !important;
    padding-left:80px !important;
}

.bgc-main {
    background-color: #eae4dc;
}

.bgc-1 {
    background-color: #eae4dc;
}

.site {
    min-width: 300px !important;
}

.header {
    height: 120px;
    /*background-color: #e0d7cb30;*/    
    position: fixed;
    z-index: 2000;
}

.header-blurrer {
    z-index: 1900;
    position: fixed;
    width: 100%;
    height: 120px;
    /*background-color: #e0d7cbc0;*/
    background-color: #ffffff80;
    backdrop-filter: blur(10px);
}

.welcome-box{
    padding: 10px; 
    margin: 0 auto; 
    border-radius: 20px;
    background-color: rgba(255,255,255,.1);;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,.08);
    margin-bottom: 100px;
}

.page {
    text-align: center;
    padding-top: 130px;
    min-height: calc(100vh - 200px);
}

.brand {
    padding-left: 45px;
    text-align: center;
    display: flex;
    flex-direction: row;
}

.brand h1 {
    font-size: 50px;
    display: inline;
    line-height: 1;
}

.brand h2 {
    display: inline;
    font-size: 14px;
    padding-bottom: 0px !important;
}

.brand-logo {
    padding-top: 25px;
    
}

.brand-text {
    display: flex;
    flex-direction: column;
    margin-top: 25px;
    margin-left: 10px;
}

.logo-img {
    width: 80px;
    border-radius: 50%;
}

.menu {
    font-size: 19px;
    cursor: pointer;
}

.menu-dropdown {
    padding: 5px;
    padding-top: 20px;
    padding-bottom: 0px;
    /*background-color: #eae4dcEA;*/
    /*background-color: #e0d7cbc0;*/
    background-color: #ffffff80;
    backdrop-filter: blur(10px);
    position: fixed;
    top: 120px;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    max-height: calc(100vh - 120px);
    overflow: auto;
    box-shadow: 0 10px 15px rgba(0,0,0,0.10), 0px 5px 5px rgba(0,0,0,0.15);
}
    .menu-dropdown.open {
        visibility: visible;
        opacity: 1;
        transition: opacity .25s ease-in-out;
    }

.menu-dropdown dt {
    padding-top: 10px;
    padding-bottom: 5px;
    font-size: 20px;
}

.menu-dropdown dd {
    line-height: 0.9;
    padding-left: 13px;
    font-size: large;
    cursor: pointer;
}

.menu-dropdown dd:hover {
    background-color: #ffffff50;
}

.menu-dropdown .bullet-point {
    margin-right: 10px;
}

.menu-arrow {
    margin: 5px;
    margin-top: 0px;
    font-size: larger;
    display: inline-block;
    transition: transform .25s ease-in-out;
    transform-origin: 7px 11px;
    transform: rotate(0deg);
  }

.menu-arrow.open {
  display: inline-block;
  transition: transform .25s ease-in-out;
  transform: rotate(-90deg);
}

.menu-elements{
  
}

a,
a:hover,
a:visited,
a:active {
    color: inherit;
    text-decoration: none;
}


.external-link {
    color: rgb(58, 58, 207) !important;
}


.language-buttons{
    display: flex;
    margin-left: 10px;
}

.language {
    margin-left: 20px;
    font-size: 19px;
    text-wrap:nowrap;
    cursor: pointer;
    padding-left: 5px;
}

.link-button{
    display: flex;
    background-color: #ffffff90;
    font-size: 25px;
    justify-content: center;
    align-items: center;
    justify-content: space-between;
    border-radius: 13px;
    width: 350px;
    height: 90px;
    cursor: pointer;
    padding: 13px;
}

.link-button span{
    width: 100%;
}

.img-button{
    padding:2px;
    width: 60px;
    min-width: 60px;
    height: 60px;
    color:white !important;
    background-color: #515151;
    border-radius: 12px;
}

.img-button svg{
    padding: 16%;
    width: 100%;
    height: 100%;
    fill:white !important;
}

.img-button-clickable:hover{
    transition: all .15s ease-in-out;  
    padding:0px;
}

.article {
    font-size: large;
    text-align:left;
    background-color: #f3efea;
    margin:70px;
    padding:60px;
}

.article-image-style1 {
    position: relative; 
    float:right; 
    margin-left:40px; 
    margin-bottom:20px;
    width:50%;
    max-height: 100%;
}

.article h2 {
    margin-bottom: 30px;
}

.link-button-container{
    display: flex;
    flex-flow:wrap;
    justify-content: center;
}

.menu-mobile{
    visibility: hidden;
    height: 0px;
}

.menu-buttons-mobile {
    visibility: hidden;
    height: 0px;
    overflow:hidden;
}

.header .row{   
    height: 120px;
}

@media (max-width: 992px) {
    .article {
        font-size: large;
        text-align:left;
        background-color: #f3efea;
        margin:20px;
        padding:20px;
    }

    .article-image-style1 {
        width:100%;
    }
    
    .brand {
        padding-left: 10px;
        padding-right: 0px;
    }

    h1 {
        font-size: 35px;   
    }

    .brand h1 {
        font-size: 30px;
    }
    
    .brand h2 {
        font-size: 12px;
    }
    
    .brand-text {
        display: flex;
        flex-direction: column;
        margin-top: 25px;
        margin-left: 0px;
        padding-left: 10px;
    }
    
    .logo-img {
        width: 60px;
        border-radius: 50%;        
    }

    .menu{
        visibility: hidden;
        height: 0px;
    }

    .menu-mobile{
        -webkit-overflow-scrolling: touch; /* smooth scrolling */
        overscroll-behavior: contain; /* prevent scroll chaining */
        font-size: 55px;
        width: 40px;
        position: fixed;
        right:40px;
        top:28px;
        visibility: visible;
        z-index: 1;     
    }

    .menu-dropdown{
        -webkit-overflow-scrolling: touch; /* smooth scrolling */
        overscroll-behavior: contain; /* prevent scroll chaining */
        position: fixed;
        right:-300px;
        width: 300px;
        transition: right 0.3s ease-in-out;
    }

    .menu-dropdown.open {
        width: 100%;
        right:0px;
        transition: right 0.3s ease-in-out;
    }

    .not-on-mobile {
        position: absolute;
        width: 0px;
        height: 0px;
        visibility: hidden;
    }

    .language-buttons {
        visibility: hidden;
        height: 0px;
        overflow: hidden;
        z-index: 0;
        position: fixed;
    }

    .youtube-button {
        visibility: hidden;
        height: 0px;
        overflow: hidden;
        z-index: 0;
        position:fixed;
    }

    .radio-button {
        visibility: hidden;
        height: 0px;
        overflow: hidden;
        z-index: 0;
        position:fixed;
    }

    .menu-buttons-mobile {
        display: flex;
        justify-content: space-between;
        visibility: visible;
        overflow: visible;        
        height: 50px;    
    }

    .language-mobile {
        background-color: white !important;
        padding: 10px;
        padding-top:15px;
        font-size:smaller;
        border-radius:10px;
        height:45px;
        text-wrap: nowrap;
    }

    .img-button-mobile{
        width: 50px;
        min-width: 50px;
        height: 50px;
        color:white !important;
        background-color: #515151;
        border-radius: 10px;
    }
    
    .img-button-mobile svg{
        padding: 16%;
        width: 100%;
        height: 100%;
        fill:white !important;
    }        
}

#home-items-container{
    position: absolute;
    width: 100%; 
    top:40%; 
    align-content: center; 
    display: flex; 
    justify-content:space-between; 
    flex-direction: column; 
    height: 25vw;
}

@media (max-width: 600px) {
    .brand-text {
        padding-left: 0px;
        width: 150px;
    }
}

@media (max-width: 1024px) {
    .welcome-box{
        visibility: hidden;
        height: 0px;
        margin: 0px;
    }
    #home-items-container{
        position: relative;
        display:block;         
        height: 300px;
    }
}

@media (min-width: 1024px) {
    .link-button-container{
        width: 100%;
    }
}


@media (min-width: 2000px) {

    .article {
        max-width: 1900px;
        margin-left:auto;
        margin-right:auto;
    }

    .article-image-style1 {
        width:auto;
    }
}