/* Fonts
-------------------------------- */
/* Playfair Display */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&display=swap');
/* Lato */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400&display=swap');


/* General
-------------------------------- */
html, body {
    overflow-x: hidden;
}

h1,
h2,
h3 {
    display: inline;
    color: #0053A2;
    font-family: 'Playfair Display', serif;
    text-decoration: underline 3px #0053A2;
    text-underline-offset: 18px;

    /* line-height: 60px !important; */
}

h4 {
    color: #0053A2;
    font-family: 'Lato', sans-serif;
    font-size: 1.3rem !important;
    display: inline-block;
}

p {
    /* margin-top: 2.5rem !important; */
    font-family: 'Lato', sans-serif;
    font-weight: 300;
}

ul {
    list-style: none; 
}
  
ul li::before {
    content: "\2022";  
    color: #0053A2; 
    font-weight: bold; 
    display: inline-block; 
    width: 1em; 
    margin-left: -1em; 
}

/* Bootstrap
-------------------------------- */
.container-fluid {
    padding: 0 !important;
}

/* Buttons
-------------------------------- */
.btn-primary {
    background-color: #0053A2 !important;
    border: none !important;
    font-weight: 200 !important;
}

.btn-primary:hover {
    background-color: black !important;
    border: none !important;
}

.download {
    position: absolute;
    bottom: 15px;
    right: 15px;
}

.download svg {
    margin-top: -5px;
}

/* Buttons
-------------------------------- */
.header {
    position: relative;
}

.logo svg {
    fill: #fff;
    width: 100px;
    height: auto;
    position: absolute;
    top: 50px;
    right: 0;
}

.wave svg {
    width: calc(100% + 1.3px);
    height: 352px;
}

/* Cards
-------------------------------- */
.card {
    overflow: hidden;
}

.card-img-overlay {
    background-color: rgba(0, 0, 0, 0.1);
    
    display: flex;
    justify-content: center;
    align-items: center;
}

.card h2 {
    color: white;
    text-decoration: none;
}

.info-cards {
    height: 100%;
}

/* Tischmesse Cards */
.tischmesse-card img {
    transition: transform 0.3s ease;
}

.tischmesse-card:hover img {
    transform: scale(1.1);
}

/* Bilder-Cards */
.bilder-card .card-img-overlay {
    background-color: transparent;
}

.bilder-card {
    border: transparent !important;
}

/* info-cards */
.info-cards {
    border-radius: 0 !important;
    border: none !important;
    box-shadow: 0px 7px 14px 0px rgba(63, 63, 63, 0.05), 0px 26px 26px 0px rgba(63, 63, 63, 0.04), 0px 59px 35px 0px rgba(63, 63, 63, 0.03), 0px 105px 42px 0px rgba(63, 63, 63, 0.01), 0px 163px 46px 0px rgba(63, 63, 63, 0.00);

}

.info-cards .card-body {
    border-bottom: 4px solid #0053A2;
}


/* Margin
-------------------------------- */

.mt {
    margin-top: 6rem !important;
}

.mt-sub {
    margin-top: 4rem !important;
}


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

footer {
    background-color: #0053A2;
    height: 150px;
}

footer .container,
footer .row {
    height: 100%;
}

footer p,
footer a {
    margin: 0;
    color: white;
}

a.icon {
    text-decoration: none;
}

.bi {
    fill: white;
}


/*  @media, media-queries
---------------------------------------------------------------------------------------------------------------------------------------- */

/*  @media: Breakpoint «Medium (md)»
---------------------------------------------------------------------------------------------- */
@media (max-width: 991.98px) {
   /* Wave */
    .wave svg {
        height: 25vh;
    }

    .logo svg {
        width: 70px;
        top: 40px;
    }
}


/*  @media: Breakpoint «Medium (md)»
---------------------------------------------------------------------------------------------- */
@media (max-width: 767.98px) {
    .mb-sm {
        margin-bottom: 24px;
    }

    footer .row,
    footer .col-md-4 {
        text-align: center !important;
    }
}


/*  @media: Breakpoint «Medium (sm)»---------------------------------------------------------------------------------------------- */

@media (max-width: 575.98px) {
    h1, h2 {
        font-size: 1.45rem !important;
    }
    h3 {
        font-size: 1.25rem !important;
    }
    
    .logo svg {
        width: 50px;
        top: 20px;
        right: 15px;
    }

    .wave svg {
        height: 115px;
    }

    .mt {
        margin-top: 4rem !important;
    }
}