/*
 Theme Name:     Calafate Child
 Theme URI:      http://heythemers.com/themes/calafate/
 Description:    A basic child theme for the Calafate theme.
 Author:         Hey Themers
 Author URI:     http://heythemers.com
 Template:       calafate
 Version:        1.0
*/

/* --------------------------------------
-----   Theme customization starts here   -----
------------------------------------------*/


/* Глобальные настройки */

#site-header.sticky {
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    background: #ffffffbf !important;
    box-shadow: none;
    padding: 10px 0;
}

.wrapper {
    max-width: 1820px;
}
.font-montserrat {
    font-family: 'Montserrat', sans-serif;
}
.font-open-sans {
    font-family: 'Open Sans', sans-serif;
}





.page-tittle_h2 {
    font-weight: 500;
}




/* Блок цитаты председателя */

.section-block_people {
    padding: 60px 0;

}

.section-block_people-wrapper {
    margin: 0 auto;
    padding: 40px;
    background-color: #f6f6f6;
    border-radius: 33px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.section-block_people-image {
    flex: 0 0 40%;
    max-width: 500px;
}

.section-block_people-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.section-block_people-text {
    flex: 1;
}


.section-block_people-text h3 {
    line-height: 1.33;
    font-weight: 600;
    font-size: 35px;
}

.section-block_people-text p {
    font-size: 22px;
    line-height: 1.33;
    margin: 0 0 15px 0;
}

.section-block_people-signature {
    margin-top: 50px;
}

.section-block_people-signature p {
    color: #777;
    font-size: 20px;
    margin: 0px;
}

.signature-org {

}

.signature-chairman {

}

@media (max-width: 768px) {
    .section-block_people-wrapper {
        flex-direction: column;
        gap: 30px;
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    .section-block_people-image {
        flex: 0 0 auto;
        max-width: 240px;
        margin: 0 auto;
    }
    
    .section-block_people-text h3,
    .section-block_people-text p,
    .section-block_people-signature{
        text-align: center;
    }
    
}


.section-block_card {
    padding: 0 10px 0 0;
}

.section-block_card .text-numbers {
    font-size: 74px;
    font-weight: 700;
    line-height: 1.3;
}

.section-block_card .text-numbers img {
    font-size: 60px;
}

.section-block_card h3 {
    line-height: 1.3;
    margin: 0 0 10px;
}

.section-block_card p {
    line-height: 1.33;
    color: #777;
}


/* Верхний контейнер с двумя блоками */
.promo-top-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.promo-image-block {
    border-radius: 30px;
    overflow: hidden;
    height: 100%;
}

.promo-image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.promo-dark-block {
    background-color: #1a1a1a;
    color: #ffffff;
    border-radius: 30px;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.promo-icon,
.feature-icon {
    margin-bottom: 24px;
    width: 70px;
}

.promo-title {
    font-weight: 700;
    margin: 0 0 20px 0;
}

.promo-description {
    margin: 0;
    opacity: 0.9;
}

/* Контейнер с тремя фичами */
.features-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-item {
    text-align: left;
}

.feature-title {
    font-weight: 700;
    margin: 0 0 16px 0;
}


/* Адаптивность */
@media (max-width: 968px) {
    .promo-top-container {
        grid-template-columns: 1fr;
    }
    
    .features-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .promo-image-block {
        max-height: 400px;
    }
}

@media (max-width: 640px) {
    .promo-dark-block {
        padding: 30px 24px;
    }
    
    
}

