
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Heavy.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  padding: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  font-family: 'Gilroy', sans-serif;
  line-height: 1.56;
  background: #1A1A1A;
}
.container {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
}
a {
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease-in-out;
}
ul {
  list-style-type: none;
}
ul, h1, h2, h3, h4, p {
  margin: 0;
  padding: 0;
  margin-block-start: 0;
  margin-block-end: 0;
}
h1, h2, h3, h4 {
  font-family: 'Gilroy', sans-serif;
  font-weight: 800;
}
input, select, textarea {
  outline:none;
}
img {
  max-width: 100%;
}
.orange {
  background: #EE7D22;
}
.gray {
  background: #494949;
}
.dark-gray {
  border: 1px solid #EE7D22;
  background: #1a1a1a;
}

.block-to-animate {
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.block-to-animate.animate-fadeIn {
  opacity: 1;
}

.btn {
  display: block;
  max-width: fit-content;
  padding: 10px 80px;
  font-family: "Inter", sans-serif;
  font-size: 26px;
  font-weight: 400;
  background: #EE7D22;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}
.btn:hover {
  background: rgba(101, 101, 101, 0.85);
}
.title__block {
  font-size: 42px;
  line-height: 1.32;
}

.mobile {
  display: none;
}

.header {
  padding: 16px 0 20px;
  background: rgba(26, 26, 26, 0.65);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.header.scrolled {
  background: rgba(26, 26, 26, 0.95);
  box-shadow: 0 2px 10px rgba(73, 73, 73, 0.5);
}
.header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo__link {
  display: block;
  margin-right: 10px;
}
.logo__link img {
  height: 56px;
}
.main-navigation .menu {
  display: flex;
  align-items: center;
  gap: 50px;
}
.main-navigation .menu .menu-item a:hover {
  color: #EE7D22;
}

.hero {
  background-position: top center;
  background-size: cover;
}
.hero__wrapper {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding-bottom: 114px;
}
.hero__title {
  font-size: 42px;
  font-weight: 400;
  font-family: "Inter", sans-serif;
  line-height: 1;
}
.hero__text {
  margin: 15px 0;
}
.about {
  padding: 70px 0;
}
.about__wrapper {
  text-align: center;
}
.about .title__block {
  margin-bottom: 24px;
  text-align: center;
}
.about video {
  max-width: 875px;
}

.design {
  padding: 100px 0;
  background-image: none !important;
}
.design__list {
  background-image: none !important;
  padding: 0 50px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 45px;
}
.design__item {
  max-width: 415px;
}
.design_text {
  margin: 20px 0 25px;
}

.work-video {
  padding: 120px 0;
}
.work-video__list {
  padding: 0 100px;
  display: flex;
  flex-direction: column;
  gap: 74px;
}
.work-video__item {
  display: flex;;
  gap: 62px;
  align-items: center;
  justify-content: space-between;
}
.work-video__item > div {
  width: 450px;
}
.work-video__item img {
  max-width: 470px;
  width: 100%;
}
.work-video__text {
  margin-top: 10px;
}

.slogan {
  padding: 100px 0;
  background-repeat: no-repeat;
  background-size: cover;
}
.slogan__wrapper {
  position: relative;
  height: 730px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 25px;
  z-index: 3;
}
.slogan__wrapper .title__block {
  font-weight: 300;
}
.slogan__wrapper .btn {
  padding: 10px 34px;
}
.slogan--video-bg {
  position: relative;
  overflow: hidden;
}

.slogan-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.slogan-content {
  position: relative;
  z-index: 1;
}


.built {
  margin: 70px 0;
  padding: 65px 0;
  background-repeat: no-repeat;
  background-position: center left;
}
.built .title__block {
  max-width: 800px;
  text-align: center;
  font-weight: 300;
  margin: 0 auto;
}
.built__list {
  margin-top: 100px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px 40px;
}
.built__item {
  max-width: 250px;
}
.built__item-title {
  margin: 12px 0 6px;
  font-size: 16px;
}
.built__item-text {
  font-size: 12px;
  line-height: 1.5;
}
.built__item-img {
  text-align: center;
}

.quality {
  padding: 114px 0;
  height: 450px;
  background-repeat: no-repeat;
  background-position: top center;
  text-align: center;
}
.quality .title__block {
  font-weight: 300;
  margin-bottom: 25px;
}
.quality .btn {
  padding: 14px 36px;
}

.factory {
  padding:  100px 0;
  text-align: center;
}
.factory video {
  max-width: 875px;
}
.factory .title__block {
  margin-bottom: 20px;
  font-weight: 300;
}

.advantages {
  padding: 75px 0 110px;
}
.advantages__wrapper {
  margin: 0 auto;
  max-width: 1040px;
  text-align: center;
}
.advantages .title__block {
  font-weight: 400;
}
.advantages__list {
  margin-top: 75px;
  display: flex;
}
.advantages__item {
  width: 346px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.21;
  font-weight: 500;
}
.advantages__item-text, .advantages__item-img {
  height: 158px;
}
.advantages__item-img {
  overflow: hidden;
}
.advantages__item-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.advantages__item-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 25px 20px;
}
.advantages__item h4 {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

.innovations {
  padding: 125px 0;
  text-align: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.innovations .title__block {
  margin-bottom: 20px;
  font-weight: 300;
}
.innovations .btn, .quality .btn {
  margin: 0 auto;
}

.find {
  height: 700px;
  padding: 95px 0;
  background: 
  linear-gradient(100.41deg, #000000 9.59%, rgba(7, 7, 7, 0.941285) 50.76%, rgba(22, 22, 22, 0.54) 66.98%, rgba(115, 115, 115, 0) 84.34%),
  url('../img/find-bg.svg') top right no-repeat;
}
.find .title__block {
  margin-bottom: 40px;
  font-weight: 300;
}
.find__text {
  max-width: 670px;
  font-size: 16px;
  font-weight: 300;
}
.find__text p {
  margin-bottom: 8px;
}

.challenges {
  padding: 100px 0 90px;
}
.challenges__block-list {
  display: flex;
  justify-content: center;
}
.challenges__block-item {
  max-width: 465px;
}
.challenges__block-item:first-child {
  padding-right: 40px;
  text-align: center;
}
.challenges__block-item:last-child {
  position: relative;
  padding-left: 40px;
  text-align: center;
}
.challenges__block-item:last-child::before {
  position: absolute;
  content: '';
  display: block;
  width: 1px;
  height: calc(85% - 44px);
  background: #313131;
  bottom: 20px;
  left: 0;
}
.challenges_title {
  margin-bottom: 20px;
  font-size: 32px;
  font-weight: 800;
  color: #EE7D22;
}
.challenges-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 42px 60px;
  border-top: 1px solid #313131;
  border-bottom: 1px solid #313131;
  
}
.challenges-list li {
  position: relative;
  padding-left: 48px;
  text-align: left;
}
.challenges-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: -4px;
  width: 32px;
  height: 26px;
  background-image: url('../img/marker1.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.challenges__block-item:last-child .challenges-list li::before {
  background-image: url('../img/marker2.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.imagine {
  height: 700px;
  padding-top: 310px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  text-align: center;
}
.imagine .title__block {
  margin-bottom: 32px;
  font-weight: 300;
}
.imagine .btn {
  padding: 14px 34px;
  margin: 0 auto;
}

.global {
  padding: 140px 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}
.global .title__block {
  margin-bottom: 25px;
  font-weight: 300;
}
.global__text {
  max-width: 760px;
}
.global__text > h4 {
  margin-bottom: 18px;
  font-size: 28px;
  font-weight: 300;
}
.global__text > h4 strong {
  font-weight: 800;
}
.global__text p {
  margin-bottom: 10px;
}

.news {
  padding: 70px 0;
}
.news .title__block {
  font-weight: 300;
}
.news_title_text {
  margin: 6px 0 22px;
  font-weight: 300;
  font-size: 28px;
}
.news__item-img {
  height: 500px;
  overflow: hidden;
  margin-bottom: 20px;
}
.news__item-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.news__list {
  margin-bottom: 35px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.news__item {
  max-width: calc(33% - 30px);
}
.news__item-text {
  font-size: 16px;
  line-height: 27px;
}
.news__item-text strong {
  font-weight: 800;
}
.news__end-text {
  font-size: 21px;
  font-weight: 800;
  color: #EE7D22;
  text-align: center;
}

.contact {
  background: url(../img/contact-bg.jpg) no-repeat top left;
}
.iti__country-list *, .iti__dial-code, .country-list * {
  color: #000;
}
.contact__wrapper {
  max-width: 35%;
  min-width: 350px;
  margin-left: auto;
}
.wpcf7-form {
  margin-top: 12px;
}
.wpcf7-form p, .wpcf7-form-control-wrap, input:not([type="radio"]), select, textarea {
  width: 100%;
}
input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]), textarea {
  padding: 15px 20px;
  background-color: #000;
  border-radius: 8px;
  color: #cecece;
  font-size: 16px;
  font-weight: 300;
  border: none;
}
textarea {
  height: 120px;
  resize: none;
}
.contact__wrapper .btn {
  max-width: 100%;
  padding: 13px;
  font-size: 16px;
  color: #fff;
  font-weight: 800;
  border: none;
  cursor: pointer;
}
.intl-tel-input, .iti--allow-dropdown {
  width: 100%;
}
.iti--allow-dropdown {
  margin: 10px 0;
}
.iti--allow-dropdown .wpcf7-telephone_input {
  padding-left: 50px !important;
}
.wpcf7 form br {
  display: none;
}
label .wpcf7-form-control-wrap {
  display: block;
  margin: 10px 0;
}
.wpcf7-list-item.first.last {
  margin: 0;
}
.wpcf7-list-item.first.last label {
  margin-bottom: 30px;
  height: 20px;
  display: flex;
  gap: 10px;
}

input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  position: relative;
  cursor: pointer;
  background: transparent;
}
input[type="radio"]:checked {
  background-color: #333;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 8.5L7 10.5L11 5.5' stroke='%23fff' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px;
}
.wpcf7 form .wpcf7-response-output {
  margin: 0;
}

.footer {
  padding: 20px 50px;
}
.footer__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}
.footer_adress_text {
  margin: 5px 0 0 10px;
}
.footer_adress_text p {
  margin-bottom: 20px;
}
.footer__item .menu {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer__item .menu a {
  font-size: 18px;
  font-family: "Inter", sans-serif;
  font-weight: 800;
  line-height: 1;
}
.footer__item .menu a:hover {
  color: #EE7D22;
}
.footer__item:last-child {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer__icons {
  padding: 20px 62px;
  display: block;
  width: 180px;
  height: 58px;
  border-radius: 8px;
  color: #fff;
  font-weight: 800;
  line-height: 1;
  transition: all 0.3s ease-in-out;
}
.footer__icons.facebook {
  background: url(../img/facebook-white-icon.svg), #EE7D22;
  background-repeat: no-repeat;
  background-position: left 23px center;
  background-size: 30px;
}
.footer__icons.linkedin {
  background: url(../img/linkedin-ico.svg), #EE7D22;
  background-repeat: no-repeat;
  background-position: left 23px center;
}
.footer__icons.youtube {
  background: url(../img/youtobe-ico.svg), #EE7D22;
  background-repeat: no-repeat;
  background-position: left 23px center;
}
.footer__icons.facebook:hover {
  background: url(../img/facebook-white-icon.svg), rgba(101, 101, 101, 0.85);
  background-repeat: no-repeat;
  background-position: left 23px center;
  background-size: 30px;
}
.footer__icons.linkedin:hover {
  background: url(../img/linkedin-ico.svg), rgba(101, 101, 101, 0.85);
  background-repeat: no-repeat;
  background-position: left 23px center;
}
.footer__icons.youtube:hover {
  background: url(../img/youtobe-ico.svg), rgba(101, 101, 101, 0.85);
  background-repeat: no-repeat;
  background-position: left 23px center;
}

.site-main {
  padding-top: 120px;
  min-height: 50vh;
}