/* Первый инфоблок (обложка или же первое,что видит пользователь) */
.infoblock-1 {
    width: 100%;
    min-height: 75vh;
    margin: 0 auto;
    background: #ffffff;
    display: flex;
    align-items: center;
    font-family: 'MuseoSansCyrl-100';
    position: relative;
    overflow: hidden;
    background-image: url('../images/background_infoblock1.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-clip: border-box;
    background-attachment: local;
}

.infoblock-1__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 100px;
    height: 100%;
}

.infoblock-1__left {
    flex: 1.1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 370px;
    max-width: 650px;
}

.infoblock-1__title {
    font-size: 60px;
    font-weight: 600;
    line-height: 0.9;
    margin: 0 0 30px 0;
}

.infoblock-1__desc {
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 10px;
}

.infoblock-1__subtitle {
    font-size: 17px;
    font-weight: 500;
    color: #808080;
}

.infoblock-1__right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.infoblock-1__img-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.infoblock-1__img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}


@media (max-width: 1350px) {
    .infoblock-1__container {
        padding: 80px;
    }
    
    .infoblock-1__title {
        font-size: 50px;
        margin-bottom: 25px;
    }
    
    .infoblock-1__desc {
        font-size: 22px;
    }
    
    .infoblock-1__subtitle {
        font-size: 16px;
    }
}


@media (max-width: 1024px) {
    .infoblock-1__container {
        padding: 60px;
    }
    
    .infoblock-1__title {
        font-size: 42px;
        margin-bottom: 20px;
    }
    
    .infoblock-1__desc {
        font-size: 20px;
    }
    
    .infoblock-1__subtitle {
        font-size: 15px;
    }
}


@media (max-width: 768px) {
    .infoblock-1 {
        min-height: 65vh;
        padding-top: 80px;
        box-sizing: border-box;
    }
    
    .infoblock-1__container {
        padding: 40px;
        flex-direction: column;
        align-items: center;
    }
    
    .infoblock-1__left {
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .infoblock-1__right {
        width: 100%;
        justify-content: center;
    }
    
    .infoblock-1__img-wrap {
        width: 80%;
        max-width: 400px;
    }
    
    .infoblock-1__title {
        font-size: 36px;
    }
    
    .infoblock-1__desc {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .infoblock-1 {
        padding-top: 60px;
        min-height: 70vh;
    }
    
    .infoblock-1__container {
        padding: 25px 15px;
        text-align: center;
    }
    
    .infoblock-1__left {
        padding: 0 10px;
        box-sizing: border-box;
    }
    
    .infoblock-1__title {
        font-size: 28px;
        margin-bottom: 15px;
        line-height: 1.2;
        word-break: break-word;
    }
    
    .infoblock-1__desc {
        font-size: 16px;
        margin-bottom: 8px;
        line-height: 1.4;
    }
    
    .infoblock-1__subtitle {
        font-size: 14px;
        line-height: 1.4;
    }
    
    .infoblock-1__img-wrap {
        width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
    }
    
    @media (max-width: 360px) {
        .infoblock-1__title {
            font-size: 24px;
        }
        
        .infoblock-1__desc {
            font-size: 15px;
        }
        
        .infoblock-1__subtitle {
            font-size: 13px;
        }
    }
}