@import url("font.css");
@import url("scheme.css");
@import url("fontawesome.css");
@import url("solid.fontawesome.css");
@import url("brands.fontawesome.css");

@import url("menu.css");
@import url("footer.css");
@import url("search.css");
@import url("effects.css");
@import url("checkbox.css");
@import url("modal.css");

* {
    position: relative;
    outline: none;
    box-sizing: border-box;
    transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

p, h1, h2, h3, li, td {
    cursor: default;
}

h1, h2, h3, b {
    font-weight: 600;
}

a, button, a > i, button > i {
    cursor: pointer;
}

.no-scroll {
    overflow: hidden!important;
}

html, body {
    width: 100vw;
    height: 100vh;
    margin: 0;
}

body {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding: 30px 0 0 0;
    overflow-x: hidden;
}

body > * {
    width: 1800px;
    margin: 20px;
}

.banner {
    height: 500px;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: inline-flex;
    border-radius: 20px;
    width: 100%;
    overflow: hidden;
    padding: 50px 50px;
}

.banner:before {
    content: " ";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.5);
}

.banner > div {
    width: 50%;
    height: auto;
}

.banner > div > * {
    color: var(--color-white);
}

.callendar {
    width: 360px;
    border-radius: 20px;
    height: 500px;
    background-color: var(--color-white-alter);
    display: inline-flex;
    flex-direction: column;
    flex-wrap: wrap;
    background-color: var(--color-gold-dark);
    background: linear-gradient(180deg, var(--color-gold-light) 0%, var(--color-gold-dark) 100%);
}

.callendar > * {
    width: 100%;
    overflow: hidden;
}

.callendar > div > h3 {
    text-align: center;
    font-weight: 600;
}

.callendar > div > div {
    width: 100%;
    padding: 10px 20px;
    display: flex;  
    flex-direction: column;
    flex-wrap: wrap;
    overflow-x: auto;
}

.callendar > div > div > p {
    width: 100%;
    text-align: center;
    font-style: italic;
    font-weight: 500;
}

.callendar > div > div > a {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    color: var(--color-text);
    margin-bottom: 20px;
    text-decoration: none;
    border-bottom: 1px solid var(--color-gold-dark);
    padding-bottom: 20px;
}

.callendar > div > div > a > span {
    display: inline-flex;
    width: 100%;
}

.callendar > div > div > a > span:nth-child(1) {
    width: auto;
    font-size: 14px;
    font-weight: 600;
}

.callendar > div > div > a > span:nth-child(2) {
    width: auto;
    font-size: 14px;
    margin-left: 20px;
}

.callendar > div > div > a > span:nth-child(3) {
    width: 100%;
    padding-top: 5px;
    font-weight: 600;
}

.callendar > div > div > a:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

.callendar > div > div > a:hover > span:nth-child(3) {
    text-decoration: underline;
}

.articles {
    width: 1800px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 40px;
}

.articles > .article {
    display: inline-flex;
    flex-direction: column;
    flex-wrap: wrap;
    width: calc(calc(100% - 120px) / 4);
    height: auto;
    border-radius: 20px;
    border-bottom-right-radius: 5px;
    overflow: hidden;
    /* background-color: var(--color-special); */
    padding: 10px;
    text-decoration: none;
    cursor: default;
    /*
    -webkit-box-shadow: 5px 5px 25px 0px rgba(211,211,211,1);
    -moz-box-shadow: 5px 5px 25px 0px rgba(211,211,211,1);
    box-shadow: 5px 5px 25px 0px rgba(211,211,211,1);
    */
    border: 1px solid var(--color-border-alter);
}

.articles > .article > b {
    color: var(--color-border);
    font-size: 14px;
    position: absolute;
    left: 10px;
    bottom: 20px;
}

.articles > .article > img {
    width: 100%;
    height: 150px;
    overflow: hidden;
    object-fit: cover;
    object-position: top center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    margin-bottom: 10px;
    cursor: default;
}

.articles > .article > h3, .articles > .article > p {
    color: var(--color-text);
    margin: 0;
    padding: 0;
    margin-bottom: 10px;
}

.articles > .article > h3 {
    font-size: 18px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.articles > .article > p {
    font-size: 14px;
    height: 90px;
    overflow: hidden;
    background: -webkit-linear-gradient(var(--color-text), 90%, var(--color-text-alter));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.articles > .article > font {
    color: var(--color-white);
    font-weight: 600;
    margin-left: auto;
    background-color: var(--color-main);
    margin-bottom: 0;
    padding: 8px 10px 8px 16px;
    border-radius: 5px;
    margin-top: auto;
    cursor: pointer;
}

.articles > .article > font > i {
    margin-left: 10px;
    cursor: pointer;
}

.articles > .article:hover > font {
    background-color: var(--color-main-alter);
    text-decoration: underline;
}

.eapps-instagram-feed-content {
    overflow: hidden;
}

@media screen and (max-width: 1850px) {
    body > *, .articles {
        width: 1400px;
    }
}

@media screen and (max-height: 1000px) {
    .callendar {
        height: 400px;
    }
}

@media screen and (max-width: 1450px) {
    body > *, .articles {
        width: 100%;
    }

    .callendar {
        width: 24%;
    }

    .articles {
        gap: 20px;
        justify-content: center;
    }
}

@media screen and (max-width: 1350px) {
    .callendar {
        width: 20%;
        margin-left: auto;
    }
}

@media screen and (max-width: 1200px) {
    .articles > .article > font {
        font-size: 14px;
    }
}

@media screen and (max-width: 1100px) {
    .callendar {
        height: 300px;
        width: 24%;
    }

    .articles > .article {
        width: calc(calc(100% - 120px) / 3);
    }

    .articles > .article:nth-child(4) {
        display: none;
    }
}

@media screen and (max-width: 1100px) {
    .banner, .callendar {
        border-radius: 0;
    }

    .articles > .article {
        border: none;
    }
}

@media screen and (max-width: 1000px) {
    .callendar, .articles > .article {
        width: 100%;
        margin: 0;
    }

    body > * {
        margin: 0;
    }

    body {
        padding: 50px 0 0 0;
    }

    .callendar {
        height: auto;
        background: white;
        background-color: white;
    }

    .banner > div {
        width: 100%;
    }

    .callendar, .articles > .article {
        margin-bottom: 40px;
    }

    .articles {
        padding: 0 10px;
    }

    .articles > .article > p {
        color: black;
        background: none;
        -webkit-text-fill-color: black;
    }
}