* {
    box-sizing: border-box;
}


body {
    font-family: 'Montserrat', sans-serif;
    background-color: #111;
    color: #d2d2d2;
    scroll-behavior: smooth;
}

div, ul, nav, header, footer, a, li, label, body {
    margin: 0;
    padding: 0;
}

/* ------------- HEADER SECTION ------------- */
.header__wrapper {
    container-type: inline-size;
    container-name: header;
}

header {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)) ,url(../images/catalog/bg_header_services.jpeg);
    background-size: cover;
    width: 100%;
    min-height: 25vh;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

header h2 {
    margin: 0;
    padding: 0;
    text-align: center;
}

/* ------------- HEADER QUERIES ------------- */
@container header (min-width: 600px) {
    header {
        min-height: 30vh;
        background-position: center;
    }
}
/* ------------- HEADER ENDS ------------- */

/* ------------- CATALOG SECTION ------------- */
.catalog__wrapper {
    container-type: inline-size;
    container-name: catalog;
}

.catalog__container {
    width: 100%;
    min-height: 120vh;
    background-color: #111111;
    background-image: url("data:image/svg+xml,%3Csvg width='76' height='18' viewBox='0 0 76 18' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M32 18c-2.43-1.824-4-4.73-4-8 0-4.418-3.582-8-8-8H0V0h20c5.523 0 10 4.477 10 10 0 4.418 3.582 8 8 8h20c4.418 0 8-3.582 8-8 0-5.523 4.477-10 10-10v2c-4.418 0-8 3.582-8 8 0 3.27-1.57 6.176-4 8H32zM64 0c-1.67 1.256-3.748 2-6 2H38c-2.252 0-4.33-.744-6-2h32z' fill='%23222222' fill-opacity='0.4' fill-rule='evenodd'/%3E%3C/svg%3E");
    display: flex;
    flex-direction: column;
    justify-content: top;
    align-items: center;
}

.catalog__img-container {
    padding: 0;
    margin: 0;
    background-image: url(../images/catalog/catalog-overlay.jpeg);
    background-size: cover;
    background-position: center;
    width: 30%;
    height: 30vh;
    clip-path: circle(30% at 50% 50%);
}

.catalog__content-container {
    width: 90%;
    min-height: 60vh;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 40px repeat(2, 150px) 40px;
    gap: 14px 30px;
    grid-template-areas: 
    "title title"
    "li li2"
    "li3 li4"
    "btn btn";
}

.catalog__grid-item {
    border-radius: 16px;
    background-color: #2229;
    padding: 16px;
}

.catalog__content-title {
    grid-area: title;
    padding: 0;
    margin: 0;
    text-align: center;
    font-size: 1.2rem;
}

.catalog__grid-item:first-child  {
    grid-area: li;
}

.catalog__grid-item:nth-child(2) {
    grid-area: li2;
}

.catalog__grid-item:nth-child(3) {
    grid-area: li3;
}

.catalog__grid-item:nth-child(4) {
    grid-area: li4;
}

.catalog__grid-item:nth-child(5) {
    justify-content: center;
    align-items: center;
}

.catalog__grid-item p {
    margin: 0;
    padding: 2px;
    margin-top: 7px;
    font-size: 0.7rem;
    text-wrap: pretty;
}

.catalog__grid-icon {
    background-color: #d1122e;
    border-radius: 8px;
    background-size: cover;
    width: 36%;
    min-height: 6vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.catalog__grid-icon img {
    width: 88%;
    min-height: 6vh;
}

.btn--grid {
    text-align: center;
    grid-area: btn;
    background-color: #d1122e;
    color: #fff;
    padding: 10px;
    font-size: 0.7rem;
    width: 40%;
    height: auto;
    border-radius: 16px;
    text-decoration: none;
    margin-left: 100px;
}

.btn--grid:hover {
    background-color: #fff;
    color: #d1122e;
}

.catalog_file {
    width: 100%;
    min-height: 80vh;
    display: flex;
    background-color: #111111;
    background-image: url("data:image/svg+xml,%3Csvg width='76' height='18' viewBox='0 0 76 18' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M32 18c-2.43-1.824-4-4.73-4-8 0-4.418-3.582-8-8-8H0V0h20c5.523 0 10 4.477 10 10 0 4.418 3.582 8 8 8h20c4.418 0 8-3.582 8-8 0-5.523 4.477-10 10-10v2c-4.418 0-8 3.582-8 8 0 3.27-1.57 6.176-4 8H32zM64 0c-1.67 1.256-3.748 2-6 2H38c-2.252 0-4.33-.744-6-2h32z' fill='%23222222' fill-opacity='0.4' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.catalog_file iframe {
    min-height: 100vh;
    margin: auto;
}

/* ------------- CATALOG QUERIES ------------- */
@container catalog (min-width: 600px) {
    .catalog__container {
        flex-direction: row;
        padding: 20px;
        min-height: auto;
    }

    .catalog__content-container {
        grid-template-rows: 40px repeat(2, 180px);
        gap: 26px;
        padding: 10px;
    }

    .catalog__img-container {
        width: 100%;
        height: 100vh;
        clip-path: circle(30% at 50% 50%);
    }

    .catalog__content-title {
        padding-top: 10px;
        text-align: center;
        font-size: 2rem;
    }

    .catalog__grid-icon {
        width: 19%;
        min-height: 7vh;
    }

    .catalog__grid-icon img {
        width: 75%;
        min-height: 1vh;
    }

    .catalog__grid-item p {
        padding: 2px;
        margin-top: 7px;
        font-size: 1.1rem;
    }

    .btn--grid {
        display: block;
        padding: 15px;
        font-size: 1.1rem;
        width: 35%;
        margin: 20px;
        align-self: center;
        justify-self: center;
    }
}
/* ------------- CATALOG ENDS ------------- */