/* Стили для верстки по блокам */

a {
    text-decoration: none;
    color: #000000;
}

a:hover,
a:active {
    text-decoration: none;
}

.kontur-banner {
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
}

.kontur-banner__image {
    width: 100%;
    height: 332px;
    overflow: hidden;
}

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

.kontur-banner__yellow-block {
    width: 100%;
    height: 130px;
    background-color: #F0AB00;
    display: flex;
    align-items: center;
    padding: 32px 103px;
    box-sizing: border-box;
}

.kontur-banner__text {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #000000;
    text-align: justify;
}

@media (max-width: 1200px) {
    .kontur-banner {
        width: 100%;
    }
    
    .kontur-banner__image {
        height: auto;
        min-height: 332px;
    }
    
    .kontur-banner__image img {
        height: auto;
        min-height: 332px;
    }
    
    .kontur-banner__yellow-block {
        padding: 32px 30px;
        height: auto;
        min-height: 130px;
    }
    
    .kontur-banner__text {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .kontur-banner__yellow-block {
        padding: 32px 20px;
    }
    
    .kontur-banner__text {
        font-size: 14px;
        line-height: 1.5;
    }
}

/* Products Section */
.products-section {
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
    padding: 30px 100px;
    box-sizing: border-box;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.product-block {
    width: 244px;
    height: 426px;
    border: 1px solid #EEF0EE;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.product-image-wrapper {
    width: 100%;
    height: 151px;
    overflow: hidden;
    background-color: #f5f5f5;
    margin: 0 auto;
    flex-shrink: 0;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.product-text {
    margin: 0;
    padding: 10px;
    font-size: 14px;
    line-height: 1.6;
    color: #000000;
    text-align: justify;
    box-sizing: border-box;
    flex: 1;
    overflow: hidden;
}

@media (max-width: 1200px) {
    .products-section {
        width: 100%;
        padding: 30px 100px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        justify-items: center;
    }
    
    .product-block {
        width: 244px;
        height: 426px;
    }
    
    .product-image-wrapper {
        width: 225px;
        height: 231px;
    }
}

@media (max-width: 768px) {
    .products-section {
        padding: 20px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        justify-items: center;
    }
    
    .product-block {
        width: 244px;
        height: 426px;
    }
    
    .product-image-wrapper {
        width: 225px;
        height: 231px;
    }
}

/* Company Info Section */
.company-info-section {
    width: 1200px;
    max-width: 100%;
    height: 492px;
    margin: 0 auto;
    background-color: #EEF0EE;
    padding: 40px 100px;
    box-sizing: border-box;
}

.company-info-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.company-info-item {
    display: flex;
    flex-direction: row;
    gap: 15px;
    flex: 1;
    align-items: flex-start;
}

.company-info-line {
    width: 2px;
    background-color: #F0AB00;
    flex-shrink: 0;
}

.company-info-item:nth-child(1) .company-info-line {
    height: 80px;
}

.company-info-item:nth-child(2) .company-info-line {
    height: 120px;
}

.company-info-item:nth-child(3) .company-info-line {
    height: 55px;
}

.company-info-item:nth-child(4) .company-info-line {
    height: 80px;
}

.company-info-text {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #000000;
    text-align: justify;
    flex: 1;
    height: 100%;
    display: flex;
    align-items: baseline;
}

@media (max-width: 1200px) {
    .company-info-section {
        width: 100%;
        height: auto;
        min-height: 492px;
        padding: 40px 30px;
    }
    
    .company-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .company-info-section {
        padding: 30px 20px;
    }
    
    .company-info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Technology Section */
.technology-section {
    width: 994px;
    max-width: 100%;
    height: 268px;
    margin: 46px auto 0;
    border: 2px solid #EEF0EE;
    box-sizing: border-box;
}

.technology-content {
    display: flex;
    height: 100%;
    align-items: center;
    gap: 57px;
}

.technology-image-wrapper {
    width: 311px;
    height: 230px;
    margin: 19px 0 19px 19px;
    flex-shrink: 0;
    overflow: hidden;
}

.technology-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.technology-text-wrapper {
    flex: 1;
    padding: 0 20px 0 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.technology-title {
    margin: 0 0 15px 0;
    font-size: 20px;
    font-weight: bold;
    color: #000000;
}

.technology-subtitle {
    margin: 0;
    font-size: 15px;
    font-weight: bold;
    color: #000000;
}

.technology-description {
    margin: 0 0 15px 0;
    font-size: 14px;
    line-height: 1.6;
    color: #000000;
}

.technology-button {
    width: 200px;
    height: 60px;
    background-color: #F0AB00;
    color: #FFFFFF;
    border: none;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    padding: 0;
    margin: 0;
}

.technology-button:hover {
    background-color: #E09A00;
}

/* Technology Section 2 */
.technology-section-2 {
    width: 994px;
    max-width: 100%;
    height: 220px;
    margin: 0 auto;
    border: 2px solid #EEF0EE;
    box-sizing: border-box;
}

.technology-content-2 {
    display: flex;
    height: 100%;
    align-items: center;
    gap: 49px;
}

.technology-image-wrapper-2 {
    width: 340px;
    height: 184px;
    flex-shrink: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 0 18px;
}

.technology-image-wrapper-2 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.technology-text-wrapper-2 {
    width: 530px;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.technology-text-wrapper-2 .technology-subtitle {
    margin: 0;
}

.technology-text-wrapper-2 .technology-button {
    margin: 0;
}

@media (max-width: 994px) {
    .technology-section-2 {
        width: 100%;
        height: auto;
        min-height: 220px;
    }
    
    .technology-content-2 {
        flex-direction: column;
        padding: 20px;
    }
    
    .technology-image-wrapper-2 {
        width: 100%;
        max-width: 340px;
        height: auto;
        margin: 0 0 20px 0;
    }
    
    .technology-text-wrapper-2 {
        width: 100%;
        max-width: 530px;
    }
}

@media (max-width: 768px) {
    .technology-section-2 {
        margin: 30px auto 0;
    }
    
    .technology-image-wrapper-2 {
        max-width: 100%;
    }
    
    .technology-text-wrapper-2 {
        max-width: 100%;
    }
}

@media (max-width: 994px) {
    .technology-section {
        width: 100%;
        height: auto;
        min-height: 268px;
        margin: 46px auto 0;
    }
    
    .technology-content {
        flex-direction: column;
        padding: 20px;
    }
    
    .technology-image-wrapper {
        width: 100%;
        max-width: 311px;
        height: auto;
        margin: 0 0 20px 0;
    }
    
    .technology-text-wrapper {
        padding: 0;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .technology-section {
        margin: 30px auto 0;
    }
    
    .technology-button {
        width: 100%;
        max-width: 200px;
    }
}

/* Advantages Banner Section */
.advantages-banner {
    width: 1200px;
    max-width: 100%;
    height: 115px;
    background-color: #F0AB00;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 65px auto 0;
    box-sizing: border-box;
}

.advantages-banner__text {
    margin: 0;
    font-size: 15px;
    font-weight: bold;
    line-height: 1.6;
    color: #000000;
    text-align: center;
    padding: 30px 146px;
    box-sizing: border-box;
}

@media (max-width: 1200px) {
    .advantages-banner {
        width: 100%;
        margin: 65px auto 0;
    }
    
    .advantages-banner__text {
        padding: 30px 50px;
    }
}

@media (max-width: 768px) {
    .advantages-banner {
        height: auto;
        min-height: 115px;
        padding: 0;
        margin: 30px auto 0;
    }
    
    .advantages-banner__text {
        font-size: 14px;
        padding: 20px;
    }
}

/* Safety Section */
.safety-section {
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 15px;
}

.safety-icon-wrapper {
    width: 74px;
    height: 74px;
    flex-shrink: 0;
    margin-left: 102px;
    margin-top: 17px;
    margin-bottom: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.safety-icon-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.safety-text {
    margin: 0;
    font-size: 15px;
    font-weight: bold;
    color: #000000;
}

@media (max-width: 1200px) {
    .safety-section {
        width: 100%;
    }
    
    .safety-icon-wrapper {
        margin-left: 30px;
    }
}

@media (max-width: 768px) {
    .safety-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-left: 20px;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    
    .safety-text {
        font-size: 14px;
    }
}

/* Safety Features Section */
.safety-features-section {
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.safety-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 488px);
    gap: 23px;
    justify-content: center;
}

.safety-feature-item {
    width: 488px;
    height: 135px;
    background-color: #EEF0EE;
    display: flex;
    align-items: center;
    gap: 31px;
    padding: 0;
    box-sizing: border-box;
}

.safety-feature-item--wide {
    grid-column: 1 / -1;
    width: 996px;
    justify-self: center;
}

.safety-feature-icon {
    width: 32px;
    height: 32px;
    border: 2px solid #F0AB00;
    flex-shrink: 0;
    margin-left: 20px;
    box-sizing: border-box;
}

.safety-feature-text {
    margin: 0;
    font-size: 14px;
    line-height: 167%;
    color: #000000;
    padding-right: 27px;
    flex: 1;
}

@media (max-width: 1200px) {
    .safety-features-section {
        width: 100%;
        padding: 0 20px;
    }
    
    .safety-features-grid {
        grid-template-columns: 1fr;
        gap: 23px;
    }
    
    .safety-feature-item {
        width: 100%;
        max-width: 488px;
        margin: 0 auto;
    }
    
    .safety-feature-item--wide {
        width: 100%;
        max-width: 996px;
    }
}

@media (max-width: 768px) {
    .safety-features-section {
        padding: 0 15px;
    }
    
    .safety-features-grid {
        gap: 15px;
    }
    
    .safety-feature-item {
        height: auto;
        min-height: 135px;
        padding: 15px 0;
    }
    
    .safety-feature-icon {
        margin-left: 15px;
    }
    
    .safety-feature-text {
        font-size: 14px;
        padding-right: 15px;
    }
}

/* Features Section */
.features-section {
    width: 996px;
    max-width: 100%;
    margin: 0 auto;
    padding: 42px 0 64px 0;
    box-sizing: border-box;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 23px 0px;
    justify-content: space-between;
}

.feature-item {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.feature-item--50 {
    width: 50%;
}

.feature-item--33 {
    width: 33%;
}

.feature-header {
    display: flex;
    align-items: center;
    margin-bottom: 13px;
}

.feature-image-wrapper {
    width: 74px;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.feature-title {
    margin: 0;
    margin-left: 24px;
    font-size: 15px;
    font-weight: bold;
    color: #000000;
}

.feature-text {
    margin: 0;
    padding: 0;
    font-size: 12px;
    color: #000000;
    text-align: left;
    box-sizing: border-box;
    line-height: 167%;
}
.feature-text-padding {
    padding: 0 0 0 20px;
}

@media (max-width: 1200px) {
    .features-section {
        width: 100%;
        padding: 42px 20px 64px;
    }
    
    .features-grid {
        gap: 23px 0;
    }
    
    .feature-item--50,
    .feature-item--33 {
        width: 33%;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 30px 15px 40px;
    }
    
    .features-grid {
        gap: 15px 0;
    }
    
    .feature-image-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .feature-title {
        font-size: 14px;
        margin-left: 20px;
    }
    
    .feature-text {
        font-size: 11px;
        padding: 0 15px;
        text-align: left;
    }
}

@media (max-width: 660px) {
    .features-grid {
        flex-flow: column;
    }
    .feature-item--50,
    .feature-item--33 {
        width: 100%;
    }
    .product-block {
        width: 100%;
        height: 426px;
    }
    .product-image-wrapper {
        width: 100%;
    }
    .kontur-banner__image img{
        object-fit: contain;
        min-height: auto;
    }
    .kontur-banner__image {
        min-height: auto;
    }
}

/* Series Intro Block */
.series-intro-block {
    width: 1200px;
    max-width: 100%;
    height: 157px;
    background-color: #F0AB00;
    padding: 30px 102px;
    box-sizing: border-box;
    margin: 0 auto;
}

.series-intro-text {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #000000;
    text-align: justify;
}

.series-title {
    width: 1200px;
    max-width: 100%;
    margin: 30px auto 30px;
    padding: 0 102px;
    font-size: 15px;
    font-weight: normal;
    line-height: 1.6;
    color: #000000;
    background-color: #FFFFFF;
    box-sizing: border-box;
}

.series-item {
    width: 996px;
    max-width: 100%;
    height: 350px;
    margin: 0 auto 22px;
    display: flex;
    align-items: flex-start;
    border: 2px solid #EEF0EE;
    box-sizing: border-box;
}

.series-item-image {
    width: 465px;
    height: 288px;
    margin: 30px 23px;
    flex-shrink: 0;
    overflow: hidden;
}

.series-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.series-item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-top: 30px;
    padding-bottom: 30px;
    max-width: 405px;
    margin-left: 17px;
}

.series-item-title {
    margin: 0 0 15px 0;
    font-size: 24px;
    font-weight: bold;
    color: #000000;
    line-height: 1.4;
}

.series-item-text {
    margin: 0;
    font-size: 15px;
    font-weight: normal;
    color: #000000;
    line-height: 1.6;
}

/* Technology Features Section */
.technology-features-section {
    width: 996px;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.technology-features-title {
    width: 588px;
    margin: 0 0 20px 0;
    font-size: 15px;
    font-weight: bold;
    color: #000000;
    line-height: 1.6;
}

.technology-features-content {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 30px;
}

.technology-features-text {
    width: 588px;
    flex-shrink: 0;
}

.technology-features-paragraph {
    margin: 0 0 15px 0;
    font-size: 15px;
    font-weight: normal;
    color: #000000;
    line-height: 1.6;
}

.technology-features-paragraph:last-child {
    margin-bottom: 0;
}

.technology-features-images {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-left: auto;
}

.technology-features-image {
    width: 366px;
    height: 270px;
    object-fit: contain;
    display: block;
}

.technology-features-bottom-text {
    margin: 0;
    font-size: 15px;
    font-weight: normal;
    color: #000000;
    line-height: 1.6;
}
@media (max-width: 768px) {
    .series-intro-block{
        height: auto;
        padding: 30px 20px;
    }
    .series-title{
        padding: 0px 20px;
    }
    .series-item{
        flex-flow: column;
        height: auto;
        align-items: center;
    }
    .series-item-image{
        height: auto;
        width: 100%;
        margin: 0;
        padding: 0 20px;
    }
    .series-item-content{
        padding-top: 0;
        padding-bottom: 10px;
        margin: 0;
        max-width: 100%;
        padding: 20px;
    }
    .technology-features-title,
    .technology-features-text{
        width: 100%;
    }
    .technology-features-content{
        width: 100%;
        flex-flow: column;
        margin: 0 auto;
    }
    .technology-features-images{
        margin: 0 auto;
        gap: 20px;
    }
}