@font-face { font-family: 'Dubai-light';
    src: url('font/dubailight.ttf') format('truetype');}

@font-face { font-family: 'Dubai-light';
    src: url('font/dubailight.eot') format('embedded-opentype');}

@font-face { font-family: 'Dubai-bold';
    src: url('font/dubaibold.ttf') format('truetype');}

@font-face { font-family: 'Dubai-bold';
    src: url('font/dubaibold.eot') format('embedded-opentype');}

@font-face { font-family: 'Dubai-medium';
    src: url('font/dubaimedium.ttf') format('truetype');}

@font-face { font-family: 'Dubai-medium';
    src: url('font/dubaimedium.eot') format('embedded-opentype');}

@font-face { font-family: 'FaithAndGlory';
    src: url('font/faithandglory.ttf') format('truetype');}

@font-face { font-family: 'FaithAndGlory';
    src: url('font/faithandglory.otf') format('opentype');}

@font-face { font-family: 'FaithAndGlory';
    src: url('font/faithandglory.eot') format('embedded-opentype');}

@font-face { font-family: 'Oswald';
    src: url('font/oswald.ttf') format('truetype');}

@font-face { font-family: 'Poppins-ExtraLight';
    src: url('font/Poppins-ExtraLight.ttf') format('truetype');}

@font-face { font-family: 'Poppins-Light';
    src: url('font/Poppins-Light.ttf') format('truetype');}

@font-face { font-family: 'Poppins-Thin';
    src: url('font/Poppins-Thin.ttf') format('truetype');}

@font-face { font-family: 'Poppins-Medium';
    src: url('font/Poppins-Medium.ttf') format('truetype');}

@font-face { font-family: 'Poppins-Bold';
    src: url('font/Poppins-Bold.ttf') format('truetype');}

@font-face { font-family: 'MBLogo';
    src: url('font/Mblogonew-Regular.ttf') format('truetype');}

:root {
  --color1: #000000;
  --color2: #ffffff;
}
/* var(--color1) */
/* var(--color2) */


*
{
    margin: 0;
    padding: 0;
    font-family: 'Poppins-Light', sans-serif;
    box-sizing: border-box;
    color: rgb(111, 111, 111);
    scroll-behavior: smooth;
}

body
{
    background: white;
}

html {
    scroll-behavior: smooth;
  }

/* --------------------------------------- Header 700px + --------------------------------------- */
/* --------------------------------------- Header 700px + --------------------------------------- */

#header_mobile
{
    display: none;
}

header
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.6s;
    padding: 40px 100px;
    z-index: 10000;
}
header.sticky
{
    padding: 5px 100px;
    background: var(--color2);

}
header .logo 
{
    position: relative;
    font-weight: 700;
    color: var(--color2);
    text-decoration: none;
    font-size: 2em;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.6s;
    scale: 2;
}

header.sticky .logo 
{
    color: var(--color1);
    scale: 1;
}

img.logo
{
    height: 40px;
    margin-left: 10px;
}

header ul
{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
header ul li 
{
    position: relative;
    list-style: none;
}
header ul li a 
{
    position: relative;
    margin: 0 15px;
    text-decoration: none;
    color: var(--color2);
    letter-spacing: 2px;
    transition: 0.6s;
    font-size: 1.2em;
}
header.sticky ul li a 
{
    color: var(--color1);
}

.banner
{
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: -1;
    top: 0;
}

.banner img {
    object-fit: cover;
    height: 100vh;
    width: 100vw;
    background-position: 50% 50%;
}

/* --------------------------------------- Header 700px - 900px --------------------------------------- */
/* --------------------------------------- Header 700px - 900px --------------------------------------- */

@media only screen and (max-width: 900px) {
    
    header ul li a 
    {
        font-size: 1.1em;
        margin: 0 10px;
    }

    header
    {
        padding: 30px 60px;
    }

    header.sticky 
    {
        padding: 5px 60px;
    }


}

/* --------------------------------------- Header 700px - --------------------------------------- */
/* --------------------------------------- Header 700px - --------------------------------------- */

@media only screen and (max-width: 700px) {
    #header_desktop{
        display: none;
    }

    #header_mobile{
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        transition: 0.6s;
        padding: 25px 40px;
        z-index: 10000;
        height: 55px;
        background-color: rgba(255, 255, 255, 0);
        height: fit-content;
        transition: 0.6s;
    }

    #header_mobile.sticky{
        padding: 10px 0;
        background-color: var(--color2);
        transition: 0.6s;
    }

    p.logo 
    {
        font-weight: 700;
        color: var(--color2);
        text-decoration: none;
        font-size: 2.7em;
        text-transform: uppercase;
        letter-spacing: 2px;
        transition: 0.6s;
        margin-left: 0;
        width: fit-content;
        scale: 1.5;
    }

    #header_mobile.sticky p.logo{
        color: var(--color1);
        margin-left: 23px;
        margin-bottom: 3px;
        transition: 0.6s;
        scale: 1;
    }

    #header_mobile a {
        display: block;
        width: 100%;
        text-align: center;
        text-decoration: none;
        color: var(--color2);
        letter-spacing: 2px;
        transition: 0.6s;
        font-size: 1.2em;
        margin: 15px 0 15px 0;
    }

    #header_mobile.sticky a {
        color: var(--color1);
        transition: 0.6s;
    }    

    /* Hamburger Menu */
    #menuicon {
        position: fixed;
        right: 38px;
        top: 30px;
        cursor: pointer;
        margin-top: 3px;
        transition: 0.6s;
    }

    #header_mobile.sticky #menuicon{
        right: 25px;
    }

    #header_mobile.sticky #menuicon {
        top: 14px;
    }
    .bar1, .bar2, .bar3 {
        width: 25px;
        height: 3px;
        background-color: var(--color2);
        margin: 6px 0;
        transition: 0.6s;
    }
    #header_mobile.sticky .bar1, #header_mobile.sticky .bar2, #header_mobile.sticky .bar3{
        background-color: var(--color1);
    }
    
        /* Rotate first bar */
    .change .bar1 {
        -webkit-transform: rotate(-45deg) translate(-7px, 6px);
        transform: rotate(-45deg) translate(-7px, 6px);
    }
    
        /* Fade out the second bar */
    .change .bar2 {
        opacity: 0;
    }
    
        /* Rotate last bar */
    .change .bar3 {
        -webkit-transform: rotate(45deg) translate(-6px, -6px);
        transform: rotate(45deg) translate(-6px, -6px);
    }

    /* Toggle items when click the hamburger */
    #header_mobile_items {
        display: none;
        transition: 0.6s;
    }

    .change + #header_mobile_items {
        display: block;
        transition: 0.6s;
        margin-top: 12px;
    }

    hr#header_blackline {
        display: none;
        height: 1px;
        border: 0;
        border-top: 1px solid var(--color1);
        margin: 0;
        padding: 0;
        transition: 0.6s;
    }

    #header_mobile.sticky hr#header_blackline {
        display: block;
    }

}

/* --------------------------------------- Content --------------------------------------- */
/* --------------------------------------- Content --------------------------------------- */


.content {
    background-color: white;
    margin: 0 auto;
    width: 100%;
    padding: 50px 0;
}

#content {
    background-color: white;
    margin: 0 auto;
    width: 100%;
    padding: 50px 0;
}

.content p {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

#content p {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

.content h1 {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    font-size: 3em;
    text-align: center;
}

.content h2 {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    font-size: 2em;
    text-align: center;
}

.content h3 {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    font-size: 1.5em;
    text-align: left;
}

.content hr {
    border: 0; 
    height: 1px;
    width: 90%; 
    max-width: 1100px;
    margin: 0 auto;
    margin-top: 45px;
    margin-bottom: 40px;
    background-image: -webkit-linear-gradient(left, white, grey, white);
    background-image: -moz-linear-gradient(left, white, grey, white);
    background-image: -ms-linear-gradient(left, white, grey, white);
    background-image: -o-linear-gradient(left, white, grey, white);
}

.cwrapper {
    height: 100%;
}

.spacer {
    width: 100%;
    height: 150px;
    background-color: white;
    opacity: 0.4;
}

/* --------------------------------------- Contact Form --------------------------------------- */
/* --------------------------------------- Contact Form --------------------------------------- */

div.content#contactform {
    background-color: #ffffffa3; 
    width: 700px; 
    border-radius: 7px;
}

form.contact {
    width: 500px;
    margin: 0 auto;
}

form.contact input {
    background-color: #ffffffcc;
    width: 100%;
    margin: 0 auto;
    padding: 12px 20px;
    margin: 8px 0;
    box-sizing: border-box;
    border: none;
    border-radius: 7px;
    outline: none;
}

form.contact textarea {
    background-color: #ffffffcc;
    width: 100%;
    height: 100px;
    margin: 0 auto;
    padding: 12px 20px;
    margin: 8px 0;
    box-sizing: border-box;
    border-radius: 7px;
    border: none;
}

form.contact button {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    box-sizing: border-box;
    border-radius: 7px;
    border: none;
    background-color: white;
    opacity: 70%;
}

@media only screen and (max-width: 900px) {
    div.content#contactform {
        width: 100%; 
        border-radius: 0;
    }

    form.contact {
        width: 90%;
        max-width: 450px;
        margin: 0 auto;
    }

}



/* --------------------------------------- Table --------------------------------------- */
/* --------------------------------------- Table --------------------------------------- */


.table_text_desktop {
    width: 90%;
    margin: 0 auto;
    max-width: 1100px;
    display: block;
}

.table_text_desktop p {
    text-align: center;
}

.table_text_desktop h3 {
    text-align: center;
}

.table_mobile {
    display: none;
}

.table_mobile p {
    text-align: center;
}

.table_mobile h3 {
    text-align: center;
}

@media only screen and (max-width: 1000px) {
    .table_text_desktop td {
      display: block;
    }
}


/* --------------------------------------- Footer --------------------------------------- */
/* --------------------------------------- Footer --------------------------------------- */


#footer {
    position: fixed;
    width: 100%;
    height: 40px;
    background-color: #eee;
    bottom: 0;
    opacity: 0;
    transition: 0.6s;  
    box-shadow:  0 0 10px rgb(154, 154, 154);
    z-index: 5;
}

#footer.sticky {
    opacity: 1;
    transition: 0.6s;
}

#countup {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
}

/* --------------------------------------- Gallery --------------------------------------- */
/* --------------------------------------- Gallery --------------------------------------- */


.gallery {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.gallery .gallery_column {
    display: flex;
    flex: column;
    gap: 10px;
}

.gallery .gallery_column .gallery_images img {
    width: 100%;
    border-radius: 5px;
    object-fit: cover;
}

@media only screen and (max-width: 700px) {
    .gallery {
      flex-direction: column;
    }
}

/* --------------------------------------- Topics --------------------------------------- */
/* --------------------------------------- Topics --------------------------------------- */




.topics {
    max-width: 1000px;
    width: 100%;
    margin: auto;
    margin-top: 20px;
    padding-bottom: 100px;
    float: none;
    min-height: 500px;

    }  

.topicsbox {
    width: 300px;
    height: 260px;
    background-color: #e7e7e7;
    /* box-shadow: 6px 6px 20px rgb(231, 231, 231); */
    margin: 15px;
    float: left;
    overflow: hidden;
    }

.topicsbackground {
    background-color: #ebeaea;
    margin-top: -15px;
    height: 100%;
    z-index: 3;
    position: relative;
}

.topicsbox img {
    width: 300px;
    height: 169px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    }

.topicsbox img:hover {
    filter: grayscale(0.6);
    transition: 0.5s;
    transform: scale(1.1);
    transition-timing-function: ease;
    }

p#topicsbox_country {
    color: rgb(77, 77, 77);
    font-size: 0.9em;
    line-height: 19px;
    text-align: left;
    max-width: 270px;
    z-index: 99;
    margin-top: 8px;
    padding-top: 15px;
    }

p#topicsbox_heading {
    color: rgb(77, 77, 77);
    font-size: 1.4em;
    line-height: 50px;
    text-align: left;
    max-width: 270px;
    z-index: 99;
    }

@media(max-width: 989px) /* 2 Spalte */{
    .topics {max-width: 660px;}
}

@media(max-width: 659px) /* 1 Spalte */{
    .topics {max-width: 330px;}
    .box_S {float: none; margin: auto; margin-bottom: 20px;}
}

p.bannerindex {
    color: white; 
    text-align: center; 
    font-style: italic;
    font-size: 1.3em;
    font-family: 'Poppins-extralight'; 
    margin: 0 auto; 
    width: 90%; 
    max-width: 1100px; 
    margin: 0 auto; 
    padding: 0;
    letter-spacing: 0.03em;
}

@media(max-width: 900px) {
    p.bannerindex {
        font-size: 1.1em;
    }
}

@media(max-width: 700px) {
    p.bannerindex {
        font-size: 0.9em;
    }
}