html {
  scroll-behavior: smooth;
}

/* Фикс для Safari */
@supports (-webkit-touch-callout: none) {
  html {
    -webkit-overflow-scrolling: touch;
  }
}


body {
	overflow-x:hidden;
	position:relative;
	margin: 0;
	padding:0;
	font-family: 'Titillium Web', Arial;
	font-weight:300;
	font-size: 13px;
	line-height: 20px;
	color: #666;
	background-color:#fff;
}


body {
  margin: 0;
  font-family: 'Titillium Web', Arial;
}




/*-----------------------------------------------------------------------------------*/
/*	HEADER
/*-----------------------------------------------------------------------------------*/
header {
	position:relative;
	height:80px;
	background-color:#fff;
}


/* __________ Logo __________ */
.logo {float:left;}
.logo img {
	width: 200px;
}
.logo {
	margin-top: 15px;
}



        .marquee {
            background: #c93c00;
            color: #ffffff;
            padding: 10px 0;
            overflow: hidden;
            font-family: 'Titillium Web', Arial;;
            font-weight: bold;
            font-size: 20px;
        }
        .marquee-content {
            display: inline-block;
            white-space: nowrap;
            animation: scroll 15s linear infinite;
        }
        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }



/* __________ Menu __________ */
.menu_block {
	position:fixed;
	z-index:9999;
	left:0;
	top:0;
	right:0;
	height:80px;
	width:100%;
  padding-left: 183px;
  padding-right: 183px;
	background-color:#fff;
	box-shadow:0 2px 3px rgba(0,0,0,0.1);
  font-family:  'Titillium Web', Arial;
}


.navmenu ul li {
	position:relative;
	display:inline-block;
}
.navmenu ul li a {
	display:block;
  text-decoration: none;
	margin:0 0 0 -3px;
	padding:30px 20px;
	text-transform:uppercase;
	font-weight:900;
	line-height:20px;
	font-size:13px;
	color:#666;
	transition: all 0.3s ease-in-out; 
	-webkit-transition: all 0.3s ease-in-out;
}
.navmenu li:hover a,
.navmenu li.active a {
	color:#333;
}

/* Sub menu */
.sub-menu ul {
	display: none;
	position: absolute;
	z-index: 9990;
	width: 180px;
	left: 50%;
	top: 100%;
	padding: 0;
	margin: 0 0 0 -90px;
}
.sub-menu.last ul {right:0; left:auto;}
.sub-menu ul:before {
	content:'';
	position:absolute;
	left:50%;
	top:-6px;
	margin-left:-5px;
	width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 6px solid #1c1c1c;
}

.sub-menu ul li  {
	margin:0;
	padding:0;
	width:100%;
	border-top: 0;
}
.sub-menu ul li a {
	position:relative;
	margin:0;
	padding: 15px 5px 14px 21px;
	font-weight:400;
	text-align:left;
	font-size:12px;
	color:#999 !important;
	background:#1c1c1c;
	border-bottom:1px solid #282828;
}
.sub-menu ul li:last-child a {border-bottom:0;}

.sub-menu ul li.active a, .sub-menu ul li a:hover {color:#fff !important; background:#161616;}


/* ==================== Десктопная версия ==================== */
.menu_block {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 0 50px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
}

.logo a {
    font-family: 'Titillium Web', Arial;
    font-size: 26px;
    font-weight: 900;
    color: #333;
    line-height: 80px;
    text-decoration: none;
}

.logo .b3 {
    font-weight: 400;
}

.navmenu ul {
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.navmenu ul li a {
    color: #666;
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    transition: color 0.3s;
    padding: 30px 15px;
}

.navmenu ul li a:hover,
.navmenu ul li.active a {
    color: #333;
}

.mobile-menu-toggle {
    display: none;
}

/* ==================== Планшетная версия (993px-1200px) ==================== */
@media (max-width: 1200px) {
    .menu_block {
        padding: 0 30px;
    }
    
    .navmenu ul li a {
        padding: 30px 10px;
        font-size: 12px;
    }
}

/* ==================== Мобильная версия (до 992px) ==================== */
@media (max-width: 992px) {
    .menu_block {
        padding: 0 20px;
    }

    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        width: 30px;
        height: 22px;
        cursor: pointer;
        z-index: 1001;
    }

    .burger-line {
        width: 100%;
        height: 3px;
        background: #333;
        border-radius: 2px;
        transition: all 0.3s;
    }

    .navmenu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #fff;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        padding: 20px 0;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    .navmenu.active {
        left: 0;
    }

    .navmenu ul {
        flex-direction: column;
        gap: 0;
    }

    .navmenu ul li {
        text-align: center;
        border-bottom: 1px solid #eee;
    }

    .navmenu ul li a {
        display: block;
        padding: 15px 20px;
        font-size: 16px;
    }

    /* Анимация бургера */
    .mobile-menu-toggle.active .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    .mobile-menu-toggle.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-toggle.active .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
}

/* ==================== Маленькие экраны (до 576px) ==================== */
@media (max-width: 576px) {
    .logo a {
        font-size: 22px;
        line-height: 80px;
    }
    
    .navmenu {
        top: 70px;
        height: calc(100vh - 70px);
    }
}







/* Общие стили */

/* Секция */
.about-section {
  background-color: #fff;
  padding: 150px;
  padding-top: 50px;
  padding-bottom: 30px;
}

/* Сетка */
.grid {
  display: grid;
  grid-template-columns: 258px 1fr; /* Фиксированная ширина + оставшееся пространство */
  gap: 24px; /* Отступ между колонками */
  align-items: center; /* Выравнивание по вертикали */
  justify-content: flex-start;
}

/* Заголовок */
.title {
  gap: 20px;
}

.title h1 {
  font-size: 55px;
  margin-bottom: 16px;
  font-size: 55px;
  color: #000;
  text-transform: uppercase;
  line-height: 1.2em;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-top: 0;
  font-family:  'Titillium Web', Arial;
}

.title p {
  color: #666;
  font-size: 15px;
}

/* Обёртка для изображения */
.image-wrapper {
  position: relative; /* Для absolute-текста внутри */
  width: 100%;
  height: 582px; /* Фиксированная высота (можно заменить на min-height) */
  overflow: hidden; /* Обрезка выходящего за границы контента */
  border-radius: 12px; /* Скругление углов */
  box-sizing: border-box;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Заполнение пространства без искажений */
}

/* Текст на изображении */
.image-text {
  position: absolute;
  top: 30px;
  left: 40px;
  right: 40px;
  color: #999;
  font-size: 50px;
  line-height: 1em;
  mix-blend-mode: difference;
}

/* Анимации для секции "Our mission" */
.about-section {
  --section-delay: 0.3s;
  overflow: hidden;
}

.title h1 {
  opacity: 0;
  transform: translateY(30px) rotateZ(-2deg);
  animation: titleReveal 0.8s cubic-bezier(0.23, 1, 0.32, 1) var(--section-delay) forwards;
}

.title p {
  opacity: 0;
  transform: translateX(-50px);
  animation: textSlide 0.6s ease-out calc(var(--section-delay) + 0.2s) forwards;
}

.image-wrapper {
  perspective: 1200px;
  opacity: 0;
  transform: translateY(50px) rotateX(15deg);
  animation: imageReveal 1s cubic-bezier(0.34, 1.56, 0.64, 1) calc(var(--section-delay) + 0.4s) forwards;
}

.image-text {
  opacity: 0;
  transform: translateY(40px);
  animation: textFloat 0.6s ease-out calc(var(--section-delay) + 0.8s) forwards;
}

@keyframes titleReveal {
  from {
    opacity: 0;
    transform: translateY(30px) rotateZ(-2deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotateZ(0);
  }
}

@keyframes textSlide {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes imageReveal {
  from {
    opacity: 0;
    transform: translateY(50px) rotateX(15deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}

@keyframes textFloat {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Дополнительные эффекты при наведении */
.image-wrapper:hover img {
  transform: scale(1.03);
  filter: brightness(1.05);
}

.image-wrapper img {
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.image-text {
  transition: transform 0.3s ease;
}

.image-wrapper:hover .image-text {
  transform: translateY(-5px);
}

/* Секция */
.about-section {
  padding: 50px 183px 30px;
  background-color: #fff;
}

/* Сетка (десктоп) */
.grid {
  display: grid;
  grid-template-columns: 258px 1fr;
  gap: 24px;
  align-items: center;
}

/* Секция */
.about-section {
  padding: 40px 80px 30px;
  background-color: #fff;
}

/* Контейнер изображения */
.image-wrapper {
  position: relative;
  width: 100%;
  height: 582px;
  overflow: hidden;
  border-radius: 12px;
}

/* Промежуточные адаптации (992px - 1200px) */
@media (min-width: 992px) and (max-width: 1200px) {
  .about-section {
    padding: 50px 50px 30px;
  }
  
  .grid {
    grid-template-columns: 200px 1fr;
    gap: 40px;
  }
  
  .title h1 {
    font-size: 48px;
  }
  
  .image-wrapper {
    height: 500px;
  }
  
  .image-text {
    font-size: 40px;
    left: 30px;
    top: 25px;
  }
}

/* Планшеты (768px - 991px) */
@media (max-width: 991px) {
  .about-section {
    padding: 50px 40px 30px;
  }
  
  .grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .image-wrapper {
    height: 400px;
    order: -1;
  }
  
  .title h1 {
    text-align: center;
    font-size: 42px;
  }
  
  .title p {
    text-align: center;
  }
  
  .image-text {
    font-size: 32px;
    left: 25px;
    top: 20px;
  }
}

/* Мобильные (до 767px) */
@media (max-width: 767px) {
  .about-section {
    padding: 20px 20px 30px;
  }
  
  .image-wrapper {
    height: 300px;
  }
  
  .title h1 {
    font-size: 32px;
  }
  
  .image-text {
    font-size: 24px;
    left: 15px;
    top: 15px;
    right: 15px;
  }
}











/* Базовые стили */
.creative-template {
  position: relative;
  background: #fff;
  padding: 80px 12px;
  margin: 0 auto;
  max-width: 1920px;
  overflow: hidden;
  z-index: 2;
}

.coming-soon-content {
  max-width: 860px;
  margin: 0 auto;
}

/* Типографика */
.coming-soon-content h6 {
  font: 16px/1.2 'Titillium Web', Arial;
  color: #464646;
  margin: 0 0 12px;
}

.coming-soon-content h1 {
  font: 600 48px/1.1 'Titillium Web', Arial;
  color: #C93C00;
  text-transform: uppercase;
  margin: 0 0 25px;
}

.coming-soon-content p {
  font: 300 30px/1.45 'Titillium Web', Arial;
  color: #292929;
  margin: 0;
  max-width: 900px;
  hyphens: auto;
}

/* Исправление ширины */
.coming-soon-content .col-md-9 {
  width: 100% !important;
  padding-right: 0;
}

/* Адаптация */
@media (max-width: 1200px) {
  .coming-soon-content {
    padding: 0 30px;
  }
  
  .coming-soon-content h1 {
    font-size: 42px;
  }
  
  .coming-soon-content p {
    font-size: 20px;
  }
}

@media (max-width: 992px) {
  .creative-template {
    padding: 60px 20px;
  }
  
  .coming-soon-content h1 {
    font-size: 34px;
    margin-bottom: 20px;
  }
  
  .coming-soon-content p {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .creative-template {
    padding: 50px 15px;
    min-height: auto;
  }
  
  .coming-soon-content h1 {
    font-size: 28px;
  }
  
  .coming-soon-content p {
    font-size: 22px;
    line-height: 1.5;
    word-break: break-word;
  }
}

@media (max-width: 480px) {
  .coming-soon-content h1 {
    font-size: 24px;
  }
  
  .coming-soon-content p {
    font-size: 17px;
    padding: 0 10px;
  }
}

/* Базовые анимации */
.section-animate {
  opacity: 0;
  transition: all 0.8s ease;
}

.section-animate.visible {
  opacity: 1;
}

/* Анимация для заголовка */
.coming-soon-content h1.section-animate {
  transform: translateY(30px);
}

.coming-soon-content h1.visible {
  transform: translateY(0);
}

/* Анимация для текста */
.coming-soon-content p.section-animate {
  transform: translateX(-50px);
  transition-delay: 0.3s;
}

.coming-soon-content p.visible {
  transform: translateX(0);
}

/* Анимация для подзаголовка */
.coming-soon-content h6.section-animate {
  opacity: 0;
  transition-delay: 0.1s;
}

.coming-soon-content h6.visible {
  opacity: 1;
}











.footer {
  font-family: acumin-pro, system-ui, sans-serif;
  margin: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  font-size: 14px;
  background-color: #353535;
  align-items: start;
  max-height: max-content;
  z-index: 1;
}

.footer {
  display: flex;
  flex-flow: row wrap;
  padding: 30px 90px 20px 90px;
  color: #fff;
  background-color: #353535;
  border-top: 1px solid #e5e5e5;
}

.footer > * {
  flex:  1 100%;
}

.footer__addr {
  margin-right: 1.25em;
  margin-bottom: 2em;
}

.footer__logo {
	font-family:  'Titillium Web', Arial;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 30px;
  color: #fff;
}

.footer__addr h2 {
  margin-top: 1.3em;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
}

.nav__title {
  font-weight: 500;
  font-size: 18px;
  color: #fff;
}

.footer address {
  font-style: normal;
  font-size: 16px;
  color: #cacaca;
}

.footer__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  max-width: max-content;
  background-color: rgba(255, 255, 255, 0.774);
  border-radius: 100px;
  color: #2f2f2f;
  line-height: 0;
  margin: 0.6em 0;
  font-size: 20px;
  padding: 0 1.3em;
}

.footer ul {
  list-style: none;
  padding-left: 0;
}

.footer li {
  line-height: 2.5em;
}

.footer a {
  text-decoration: none;
}

.footer__nav {
  display: flex;
	flex-flow: row wrap;
}

.footer__nav > * {
  flex: 1 50%;
  margin-right: 1.25em;
  z-index: 1;
}

.footer__nav {
  z-index: 1;
}

.nav__ul a {
  color: #ffffff;
  font-size: 16px;
}


.nav__ul--extra {
  column-count: 2;
  column-gap: 1.25em;
}

.legal {
  display: flex;
  flex-wrap: wrap;
  color: #999;
}
  
.legal__links {
  display: flex;
  align-items: center;
}

.background-image {
  position: absolute;
  bottom: 2px;
  right: -100px;
  opacity: 0.7;
  z-index: 200;
}

.background-image img {
  width: 500px;
  z-index: 2;
}

.heart {
  color: #ffffff;
}

@media screen and (min-width: 24.375em) {
  .legal .legal__links {
    margin-left: auto;
  }
}

@media screen and (min-width: 40.375em) {
  .footer__nav > * {
    flex: 1;
  }
  
  .nav__item--extra {
    flex-grow: 2;
  }
  
  .footer__addr {
    flex: 1 0px;
  }
  
  .footer__nav {
    flex: 2 0px;
  }
}

@media screen and (max-width: 768px) {
  .footer {
    padding: 15px 20px !important;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    /* ИЗМЕНЕНИЕ 3: Увеличен базовый шрифт */
    font-size: 14px;
    /* ИЗМЕНЕНИЕ 1: Добавлен фон */
    background: url(../images/background-image.svg) no-repeat right -30px bottom 20px/300px auto, #353535;
    position: relative;
    z-index: 1;
  }

  .footer__addr {
    grid-column: 1 / -1;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
  }

  .footer__logo {
    /* ИЗМЕНЕНИЕ 3: Увеличен размер + ИЗМЕНЕНИЕ 2: Убран отступ */
    font-size: 18px;
    margin-right: 10px;
    margin-bottom: 0;
  }

  .footer__addr h2 {
    display: none;
  }

  .footer address {
    display: flex;
    align-items: center;
    gap: 8px;
    /* ИЗМЕНЕНИЕ 3: Увеличен размер */
    font-size: 14px;
    margin: 0;
  }

  .footer__btn {
    height: 30px;
    padding: 0 14px;
    /* ИЗМЕНЕНИЕ 3: Увеличен размер */
    font-size: 14px;
    margin: 0;
  }

  .footer__nav {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0;
  }

  .nav__item {
    flex: 1 1 auto;
    margin: 0;
  }

  .nav__title {
    /* ИЗМЕНЕНИЕ 3: Увеличен размер */
    font-size: 14px;
    margin: 0 0 4px 0;
  }

  .nav__ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
  }

  .nav__ul li {
    line-height: 1.2;
  }

  .nav__ul a {
    /* ИЗМЕНЕНИЕ 3: Увеличен размер */
    font-size: 14px;
    white-space: nowrap;
  }

  .background-image {
    display: none;
  }

  .legal {
    grid-column: 1 / -1;
    /* ИЗМЕНЕНИЕ 3: Увеличен размер */
    font-size: 12px;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
}