.page__company {
	margin-top: 140px;
}

.company__container {
}

.company__container p {
    font-size: 20x;
    line-height: 150%;
    margin-bottom: 30px;
    text-align: justify;
}
.company__card {
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    padding: 50px 50px;
    box-shadow: var(--shadow);
    transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    border: 1px solid rgba(8, 108, 167, .1);
    gap: 40px;
    display: flex;
    align-items: center;
}
.company__card:hover {
    box-shadow: 0 13px 19px rgba(0,0,0,0.27);
}


.slider-text {
    display: none;
}
.company__title {
    font-size: 40px;
    margin-bottom: 20px;
    color: #E76828;
}
.company__text img {
    margin-bottom: 40px;
    width: 600px;
    box-shadow: 0 13px 19px rgba(0,0,0,0.17);
	transition: all 0.5s ease;
	border-radius: 10px;
}
.history__title {
	margin-top: 40px;
}
/* Планшеты (до 1024px) */
@media (max-width: 1200px) {
	.page__company {
	margin-top: 100px;
}
	.company__card {
		display: block;
	}
	.company__img {
		text-align: center;
	}
    .company__container {
        margin-top: 60px;
    }
    .company__container p {
        font-size: 22px;
    }
    .company__text img {
        width: 100%; /* Картинка тянется по ширине */
        max-width: 500px;
    }
}

/* Смартфоны (до 768px) */
@media (max-width: 768px) {
    .company__container {
        margin-top: 40px;
    }
    .company__title {
        font-size: 32px;
        text-align: center;
    }
    .company__container p {
        font-size: 18px;
        text-align: left; /* Justify плохо смотрится на узких экранах */
        line-height: 140%;
    }
    .company__text img {
        width: 100%;
        margin-bottom: 20px;
    }
    /* Если нужно показать текст слайдера на мобилках */
    .slider-text {
        display: block;
    }
}

/* Маленькие телефоны (до 480px) */
@media (max-width: 480px) {
    .company__title {
        font-size: 26px;
    }
    .company__container p {
        font-size: 16px;
    }
}
.construct__card {
	margin-bottom: 40px;
}