

/* Start:/about/style.css?177010841812202*/
/* === Страница «О компании» — блоки в стиле Adanat === */
/* Картинка сбоку, текстовая карточка заезжает на неё */

.about-page {
  padding-bottom: 80px;
}

.about-block {
  margin-bottom: 80px;
}

.about-block:last-of-type {
  margin-bottom: 60px;
}

.about-block__inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  min-height: 480px;
}

/* === Текст слева, картинка справа === */
.about-block--text-left .about-block__inner {
  flex-direction: row;
}

.about-block--text-left .about-block__media {
  position: absolute;
  top: 0;
  right: 0;
  width: 65%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.about-block--text-left .about-block__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  width: 50%;
  padding: 40px 0;
}

.about-block--text-left .about-block__card {
  margin-right: -80px; /* Заезжает на картинку */
}

/* === Текст справа, картинка слева === */
.about-block--text-right .about-block__inner {
  flex-direction: row-reverse;
}

.about-block--text-right .about-block__media {
  position: absolute;
  top: 0;
  left: 0;
  width: 65%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.about-block--text-right .about-block__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 50%;
  margin-left: auto;
  padding: 40px 0;
}

.about-block--text-right .about-block__card {
  margin-left: -80px; /* Заезжает на картинку */
}

/* === Общие стили === */
.about-block__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.about-block__card {
  background: #fff;
  border-radius: 16px;
  padding: 48px 40px 40px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  max-width: 520px;
  width: 100%;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.about-block__title {
  font-family: var(--first-family, 'Open Sans', sans-serif);
  font-size: 28px;
  font-weight: 700;
  color: #30353B;
  margin: 0 0 16px 0;
}

.about-block__line {
  width: 60px;
  height: 4px;
  background: var(--Color-Green, #81A813);
  border-radius: 2px;
  margin-bottom: 24px;
  transition: width 0.4s ease;
}

.about-block__text {
  font-family: var(--first-family, 'Open Sans', sans-serif);
  font-size: 18px;
  line-height: 30px;
  color: var(--Color-Grey_Text, #636363);
  margin-bottom: 0;
}

.about-block__text p {
  margin: 0 0 1em 0;
}

.about-block__text p:last-child {
  margin-bottom: 0;
}

/* === Анимации === */

/* Hover эффекты */
.about-block:hover .about-block__img {
  transform: scale(1.03);
}

.about-block:hover .about-block__card {
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.16);
  transform: translateY(-4px);
}

.about-block:hover .about-block__line {
  width: 100px;
}

/* Анимации появления при скролле */
.about-block__media,
.about-block__card {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease, box-shadow 0.3s ease;
}

.about-block__media {
  transform: translateX(40px);
}

.about-block--text-right .about-block__media {
  transform: translateX(-40px);
}

.about-block__card {
  transform: translateX(-40px);
}

.about-block--text-right .about-block__card {
  transform: translateX(40px);
}

/* Состояние после появления в viewport */
.about-block.is-visible .about-block__media {
  opacity: 1;
  transform: translateX(0);
}

.about-block.is-visible .about-block__card {
  opacity: 1;
  transform: translateX(0);
}

/* Задержка для карточки */
.about-block.is-visible .about-block__card {
  transition-delay: 0.15s;
}

/* === Адаптив === */
@media (max-width: 1200px) {
  .about-block--text-left .about-block__card {
    margin-right: -60px;
  }
  .about-block--text-right .about-block__card {
    margin-left: -60px;
  }
}

@media (max-width: 992px) {
  .about-block__inner {
    min-height: 420px;
  }
  
  .about-block--text-left .about-block__media,
  .about-block--text-right .about-block__media {
    width: 60%;
  }
  
  .about-block--text-left .about-block__content,
  .about-block--text-right .about-block__content {
    width: 55%;
  }
  
  .about-block--text-left .about-block__card {
    margin-right: -40px;
  }
  
  .about-block--text-right .about-block__card {
    margin-left: -40px;
  }
  
  .about-block__card {
    padding: 32px 28px;
    max-width: 460px;
  }
  
  .about-block__title {
    font-size: 24px;
  }
  
  .about-block__text {
    font-size: 16px;
    line-height: 28px;
  }
}

@media (max-width: 768px) {
  .about-block {
    margin-bottom: 60px;
  }
  
  .about-block__inner {
    flex-direction: column !important;
    min-height: auto;
  }
  
  .about-block--text-left .about-block__media,
  .about-block--text-right .about-block__media {
    position: relative;
    width: 100%;
    height: 280px;
    border-radius: 16px 16px 0 0;
  }
  
  .about-block--text-left .about-block__content,
  .about-block--text-right .about-block__content {
    width: 100%;
    padding: 0;
    margin: 0;
    justify-content: center;
  }
  
  .about-block--text-left .about-block__card,
  .about-block--text-right .about-block__card {
    margin: -40px 16px 0;
    max-width: none;
  }
  
  .about-block__card {
    padding: 28px 24px;
  }
  
  /* Мобильные анимации — вертикальные */
  .about-block__media,
  .about-block--text-right .about-block__media {
    transform: translateY(-20px);
  }
  
  .about-block__card,
  .about-block--text-right .about-block__card {
    transform: translateY(20px);
  }
  
  .about-block.is-visible .about-block__media,
  .about-block.is-visible .about-block__card {
    transform: translateY(0);
  }
}

@media (max-width: 576px) {
  .about-block {
    margin-bottom: 48px;
  }
  
  .about-block--text-left .about-block__media,
  .about-block--text-right .about-block__media {
    height: 220px;
  }
  
  .about-block--text-left .about-block__card,
  .about-block--text-right .about-block__card {
    margin: -30px 12px 0;
  }
  
  .about-block__card {
    padding: 24px 20px;
  }
  
  .about-block__title {
    font-size: 20px;
  }
  
  .about-block__text {
    font-size: 15px;
    line-height: 26px;
  }
}

/* Отключение анимаций для пользователей с prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .about-block__media,
  .about-block__card,
  .about-block__img,
  .about-block__line {
    transition: none;
  }
  
  .about-block__media,
  .about-block__card {
    opacity: 1;
    transform: none;
  }
}

/* === Конец стилей блоков «О компании» === */

.company_banner{
  border-radius: 16px;
  background: #FFF;
}
.company_banner_content{
  padding: 100px 0 0 60px;
}
.company_banner_img img{
  border-radius: 239px 16px 16px 239px;
}
.company_banner_txt{
  color: var(--Color-Grey_Text, #636363);
  font-family: var(--first-family);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  max-width: 593px;
  width: 100%;
  margin-bottom: 40px;
}
.company_banner_title {
  margin-bottom: 20px;
}
.button_p{
  max-width: 239px;
  width: 100%;
  height: 56px;
}
.button{
  max-width: 239px;
  width: 100%;
  padding:17px 20px;
  border-radius: 4px;
  background: var(--Color-Green, #81A813);
  text-align: center;
  color: #FFF;
  font-family: var(--first-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}
.button:hover{
  background: var(--Color-Green_Hover, #69890F);
  color: #FFF;
  text-decoration: none;
}
.margin_blok{
  margin-bottom: 100px;
}

@media(max-width: 1200px){
  .company_banner_content {
    padding: 47px 0 0 50px;
  }
}
@media(max-width: 992px){
  .company_banner_img{
    display: flex;
    align-items: center;
    max-height: 390px;
    height:100%;
  }
}
@media(max-width: 768px){
  .company_banner_img{
    display: block;
    align-items: center;
    max-height: none;
  }
}

.year_creation{
  margin-bottom: 60px;
}
.year_creation_text h2 {
  max-width: 575px;
  width: 100%;
  margin-bottom: 24px;
}
.year_creation_text h2 span{
  color: #30353B !important;
}
.year_creation_text p{
  max-width: 938px;
  width: 100%;
  color: var(--Color-Grey_Text, #636363);
  font-family: var(--first-family);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}

.company_orage_block{
  padding: 30px 40px 40px 40px;
  border-radius: 16px;
  background: var(--Color-Orange, #F36D29);
}
.company_orage_block p span{
  color: #FFF;
  font-family: var(--second-family);
  font-size: 96px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  text-transform: uppercase;
}
.company_orage_block p{
  color: #FFF;
  font-family: var(--first-family);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
.orage_block_margin{
  margin-bottom: 155px;
}
.orage_block_nomargin{
  margin-bottom: 0;
}
@media(max-width: 992px){
  .orage_block_margin {
    margin-bottom: 40px;
  }
  .company_orage_block p span {
    font-size: 66px;
  }
  .company_orage_block{
    margin-bottom: 30px;
  }
}

.company_video_img img{
  border-radius: 16px;
}
.company_video{
  position: relative;
}
.button_video{
  position: absolute;
  width: 80px;
  height: 80px;
  background: #F36D29;
  border-radius: 100%;
  padding:24px;
  top:210px;
  left: 312px;
}
.company_info img{
  border-radius:  0 239px 239px 0;
}
.company_info p{
  color: var(--Color-Grey_Text, #636363);
  font-family: var(--first-family);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  max-height: 350px;
  height: 100%;
}
@media(max-width: 1290px){
  .button_video {
    top: 197px;
    left: 280px;
  }
}
@media(max-width: 1200px){
  .button_video {
    top: 166px;
    left: 226px;
  }
}
@media(max-width: 992px){
  .button_video {
    top: 210px;
    left: 312px;
  }
}
@media(max-width: 768px){
  .company_info p {
    max-height: none;
    margin-top: 20px;
  }
  .button_video {
    top: 149px;
    left: 219px;
  }
}
@media(max-width: 578px){
  .button_video {
    top: 85px;
    left: 138px;
  }
  .wrapper h2 {
    font-size: 20px;
  }
}

.company_advantages{
  color: var(--Color-Grey_Text, #636363);
  font-family: var(--first-family);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
.advantages_title_mini{
  color: #F36D29;
  font-family: var(--second-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 38px;
}
.advantages_title{
  margin-bottom: 16px;
}
.advantages_text{
  margin-bottom: 40px;
}
.advantages_blok_white{
  padding: 40px 40px 40px 40px;
  border-radius: 16px;
  background: var(--Color-White, #FFF);
}
.advantages_blok_white img{
  border-radius: 16px 80px 16px 16px;
  margin-bottom: 57px;
}
.advantages_blok_green{
  max-width: 525px;
  width: 100%;
  padding: 40px 40px 40px 40px;
  border-radius: 16px;
  background: var(--Color-Green, #81A813);
}
.advantages_blok_green img{
  border-radius: 16px 16px 100px 16px;
  margin-bottom: 27px;
}
.white_text{
  color: var(--Color-White, #FFF);
}
.company_quality_control{
  max-width: 863px;
  width: 100%;
}
.company_quality_control h2 span{
  color: var(--Color-Orange, #F36D29);
}
@media(max-width: 992px){
  .advantages_blok_green {
    max-width: none;
    margin-bottom: 60px;
  }
}
@media(max-width: 768px){
  .margin_blok {
    margin-bottom: 60px;
  }
  .year_creation{
    margin-bottom: 30px;
  }
  .advantages_title_mini{
    margin-bottom: 25px;
  }
  .advantages_text{
    margin-bottom: 30px;
  }
  .advantages_title {
    margin-bottom: 14px;
  }
  .advantages_blok_green {
    margin-bottom: 30px;
  }
}
@media(max-width: 578px){
  .advantages_blok_green {
    padding: 30px;
  }
  .advantages_blok_white{
    padding: 30px;
  }
  .wrapper{
    padding: 24px 0 60px!important;
  }
}
/* End */
/* /about/style.css?177010841812202 */
