section.extensive__content {
    margin: 60px 0;
    color: var(--dark-blue-100);
}

section.extensive__content .container {
    display: flex;
    align-items: stretch;
    gap: 30px;
}

section.extensive__content-inverter .container {
    flex-direction: row-reverse;
}

section.extensive__content img.left__img {
    max-width: 370px;
    min-width: 370px;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
}

section.extensive__content h2 {
    font-weight: bold;
    font-size: 28px;
    text-transform: uppercase;
    font-style: italic;
}

section.extensive__content .extensive__content-stamps {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    flex-wrap: wrap;
}

section.extensive__content .extensive__content-stamps img {
    max-width: 100px;
    width: 100px;
    min-width: 100px;
    max-height: 100px;
    height: auto;
    object-fit: contain;
}

section.extensive__content .extensive__content-stamps .stamps__box-wrap {
    background: #FBF5F2;
    border-radius: 50%;
    overflow: hidden;
    padding: 25px;
    max-width: 100px;
    max-height: 100px;
    width: 100px;
    height: 100px;
    box-shadow: 0 0 10px #0000001f;
}

section.extensive__content .extensive__content-stamps .stamps__box-wrap img {
    max-width: 100%;
    width: 100%;
    min-width: 100%;
    max-height: 100%;
}

section.extensive__content .extensive__content-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
    border-radius: 30px;
    padding: 60px 40px;
    flex: 1;
    overflow: hidden;
}

section.extensive__content .extensive__content-content ul,
section.extensive__content .extensive__content-content ol {
    list-style: initial;
    list-style-position: inside;
    margin-bottom: 30px;
}

section.extensive__content .extensive__content-text p:not(:last-child) {
    margin-bottom: 30px;
}

section.extensive__content .extensive__content-button {
    display: table;
    padding: 10px 30px;
    color: #fff;
    background: var(--dark-blue-100);
    border-radius: 40px;
    width: fit-content;
}

section.extensive__content .extensive__content-button:hover {
    color: var(--light-blue-40);
}

/*LAYOUT TYPE B*/
section.extensive__content .extensive__content-img-title {
    min-width: 200px;
    max-width: 200px;
}

section.extensive__content .extensive__content-button-b {
    display: table;
    padding: 10px 30px;
    color: #fff;
    background: var(--light-blue-100);
    border-radius: 40px;
    width: fit-content;
}

section.extensive__content .extensive__content-button-b:hover {
    color: var(--light-blue-40);
}


/* Galeria */
section.extensive__content .extensive__content-gallery {
    max-width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
}

section.extensive__content .extensive__content-gallery_center {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

section.extensive__content .first_img_large .gallery_item:first-child {
    min-width: 100%;
    flex: 1;
}

section.extensive__content .blocks_img .gallery_item {
    min-width: 100%;
    flex: 1;
}


section.extensive__content .gallery_item {
    max-width: calc(50% - 8px);
}

section.extensive__content .extensive__content-gallery img {
    aspect-ratio: 1/1;
    min-width: 100%;
    width: 100%;
    min-height: auto;
    height: auto;
    object-fit: cover;
    border-radius: 16px;
}

@media all and (max-width:1170px) {
    section.extensive__content .container {
        max-width: 90%;   
    }        
}

@media all and (max-width: 768px) {
    section.extensive__content .container {
        flex-wrap: wrap;
        gap: 15px;
    }

    section.extensive__content img {
        min-width: 100%;        
    }

    section.extensive__content .extensive__content-content {
        padding: 30px;
    }

    section.extensive__content .extensive__content-gallery {
        min-width: 100%;
        flex: 1;
    }
}