/* HEADER-WRAPPER & BURGER MENU */
.header-container, .hamburger-button {
    display: none;
}

/* WELCOME BLOCK */
.welcome-block, .pages_welcome-block {
    height: 500px;
    width: 100%;

    color: var(--white-font-color);
    text-transform: uppercase;

    position: relative;

    overflow: hidden;

    background-color: black;
} 
.blank_plug {
    height: 60px;
    width: 100%;  
}

.pages_welcome-block .blank_plug {
    display: none;
}

.welcome-image {
    height: 440px;
}

.pages_welcome-image {
    height: inherit;
}

.welcome-block img, .pages_welcome-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pages_welcome-image img {
    object-position: 50% 30%;
}

.welcome-wrapper, .pages_welcome-wrapper {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);

    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;

    width: 100%;
}

.mainTitle, .pages_mainTitle {
    font-size: 35px;
    opacity: 80%;
}
.library {
    font-size: 55px;
    opacity: 80%;
}

/* CATEGORY CONTENT */
.content-wrapper {
    width: 100%;

    margin: 0 auto;
    padding: 22px 22px 44px 22px;
}

.categories-block {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;

    padding-top: 22px;
    width: 100%;

    margin: 0 auto;
}

/* CATEGORY-ITEM */
.category-item {
    display: flex;

    padding: 24px 48px;
    border-radius: 10px;
    background-color: var(--white-font-color);
}

.category-logo {
    min-width: 70px;
    max-width: 140px;
    min-height: 70px;
    max-height: 140px;
}
.category-logo img {
    width: 100%;
}

.category-content {
    width: 100%;
    height: 100%;
    padding-left: 20px;
    
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.category-content-header {
    display: flex;
    flex-direction: column;
}

a.category-link {
    text-transform: uppercase;
    color: var(--black-font-color);
    font-size: 22px;
    overflow-wrap: anywhere;
}

.category-description {
    color: var(--span-font-color);
}

/* CATEGORY-CONTENT-ARTICLES */
.category-content-articles {
    height: 100%;
    padding: 10px 0;
}

a.category-article-link {
    font-size: 15px;
    width: 100%;
    display: inline-block;

    padding-bottom: 10px;
}

/* MEDIA QUERIES */
@media screen and (max-width: 650px) {
    span.welcome-span {
        font-size: 30px;
    }
    .category-item {
        padding: 24px;
    }
}

@media screen and (max-width: 926px) {
    .welcome-block, .pages_welcome-block {
        height: 310px;
    }
    .pages_welcome-image img {
        object-position: 50% 20%;
    }
    .welcome-image {
        height: 250px;
    }
    .welcome-title {
        font-size: 36px;
     }
     .mainTitle {
        font-size: 25px;
    }
    .library {
        font-size: 40px;
    }
    .welcome-wrapper {
        top: 40%;
    }
    .pages_welcome-wrapper {
        top: 50%;
    }
    .categories-block {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 20px;
    }
}

@media screen and (min-width: 927px) {
    span.welcome-span {
        font-size: 42px;
    }
    .categories-block {
        max-width: 884px;
    }
}

@media screen and (min-width: 1024px) {
    .categories-block {
        max-width: 980px;
    }
}

@media screen and (min-width: 1180px) {
    .categories-block {
        max-width: 1060px;
    }
}

@media screen and (min-width: 1320px) {
    .categories-block {
        max-width: 1320px;
    }
}