/*&:after {
  content: "";
  display: table;
  clear: both;}*/
body {
  font-family: "Youth", sans-serif;
  scroll-behavior: smooth;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  min-width: 320px;
  position: relative;
  background: #E8DDD2;
  max-width: 3000px;
  margin: auto;
  color: #2B3244;
}

header, section, footer {
  margin: auto;
}
figure img{
  height: auto;
}
a {
  text-decoration: none;
}
a:focus {
  outline: none !important;
}

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

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a, button {
  -moz-transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

figure {
  margin: 0;
}
figure img {
  width: auto;
  max-width: 100%;
  vertical-align: top;
}

ul {
  margin: 0;
  padding: 0;
}
ul li {
  list-style-type: none;
}

p, a {
  color: #2B3244;
  margin: 0;
}

input {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
}

.content-width {
  width: 1720px;
  margin: auto;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 30px;
}

input:invalid {
  box-shadow: none;
}

input, textarea, button {
  outline: none !important;
}

/*-----------------------------HOME------------------------------*/
body {
  position: relative;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}

.top-line {
  padding: 50px 0;
  background: #DC0000;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.is-sticky .top-line{
  padding: 25px 0;
}
.top-line .logo-wrap {
  text-align: center;
}
.top-line .logo-wrap a {
  display: inline-block;
  position: relative;
}
.top-line .logo-wrap a:after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: scale(0);
  opacity: 0;
/*  content: "";*/
  width: 200px;
  height: 200px;
  margin: -100px 0 0 -100px;
  background: url("../img/open-menu.png") no-repeat center;
  background-size: contain;
}
.top-line .logo-wrap a > img {
  width: auto;
}
.top-line .logo-wrap a .open-menu {
  display: none;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 10;
}
.top-line .logo-wrap a .open-menu img {
  width: 35px;
}
.top-line .logo-wrap a:hover:after {
  animation: showIn 1s linear;
}
/*.top-line .logo-wrap a:hover > img {
  opacity: 0;
}
.top-line .logo-wrap a:hover .open-menu {
  display: inline-block;
}*/

@keyframes showIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  15% {
    transform: scale(1);
    opacity: 1;
  }
  85% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0);
    opacity: 0;
  }
}
.menu-responsive {
  width: 100%;
  background: #1E1E1E;
  background-size: cover;
  padding: 0;
  overflow: hidden;
  margin: 0;
  vertical-align: top;
  position: absolute;
  height: 0;
  left: 0;
  top: 0;
  transition: all 0.05s linear;
}
.menu-responsive .wrap {
  padding: 200px 100px 20px;
}
.menu-responsive .close-menu {
  position: absolute;
  top: 50px;
  left: 50%;
  width: 40px;
  height: 40px;
}
.menu-responsive .close-menu img {
  transition: all 0.4s ease;
  width: 100%;
}
.menu-responsive .close-menu:hover img {
  transform: rotate(360deg);
}
.menu-responsive .fancybox-close-small {
  display: none;
}
.menu-responsive .wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.menu-responsive .wrap .text-wrap {
  width: 470px;
}
.menu-responsive .wrap h4 {
  font-style: normal;
  font-weight: 500;
  font-size: 30px;
  line-height: 36px;
  text-transform: uppercase;
  color: #E8DDD2;
  margin-bottom: 25px;
}
.menu-responsive .wrap p {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  color: rgba(232, 221, 210, 0.7);
  margin-bottom: 80px;
}
.menu-responsive .wrap .contact {
  margin-bottom: 50px;
}
.menu-responsive .wrap .contact li + li {
  margin-top: 50px;
}
.menu-responsive .wrap .contact li p {
  font-style: normal;
  font-weight: 400;
  font-size: 25px;
  line-height: 30px;
  color: #E8DDD2;
  margin: 0;
}
.menu-responsive .wrap .contact li p a {
  font-style: normal;
  font-weight: 400;
  font-size: 25px;
  line-height: 30px;
  color: #E8DDD2;
}
.menu-responsive .wrap .contact li p a:hover {
  color: #DC0000;
}
.menu-responsive .wrap .soc {
  margin-bottom: 80px;
  display: flex;
}
.menu-responsive .wrap .soc li + li {
  margin-left: 55px;
}
.menu-responsive .wrap .soc li {
  display: inline-block;
  margin-right: 20px;
}
.menu-responsive .wrap .soc li a {
  font-style: normal;
  font-weight: 400;
  font-size: 25px;
  line-height: 30px;
  color: #E8DDD2;
}
.menu-responsive .wrap .soc li a img {
  margin-left: 10px;
}
.menu-responsive .wrap .soc li a span {
  display: inline-block;
  position: relative;
  font-style: normal;
  font-weight: 400;
  font-size: 25px;
  line-height: 30px;
  color: #E8DDD2;
  margin-right: 6px;
}
.menu-responsive .wrap .soc li a span:after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  height: 1px;
  background: #fff;
  transition: all 0.4s ease;
}
.menu-responsive .wrap .soc li a:hover span:after {
  transform: scaleX(0);
}
.menu-responsive .wrap .mob-menu {
  width: calc(100% - 670px);
}
.menu-responsive .wrap .mob-menu li + li {
  margin-top: 50px;
}
.menu-responsive .wrap .mob-menu li a {
  display: block;
  border-bottom: 1px solid rgba(232, 221, 210, 0.5);
  font-style: normal;
  font-weight: 900;
  font-size: 100px;
  line-height: 120px;
  color: #E8DDD2;
  padding: 10px 0;
}
.menu-responsive .wrap .mob-menu li a:hover {
  border-color: rgba(220, 0, 0, 0.5);
  color: #DC0000;
}
.menu-responsive .wrap .btn-default a {
  width: 300px;
}

.is-menu .menu-responsive {
  height: 100%;
}

.btn-default {
  display: inline-block;
  cursor: pointer;
  background: #070404;
  border: 1px solid #070404;
  border-radius: 35px;
  height: 56px;
  line-height: 54px;
  text-align: center;
  padding: 0 25px;
  min-width: 250px;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  text-transform: uppercase;
  color: #E8DDD2;
}
.btn-default:hover {
  background: #fff;
  color: #070404;
}

.btn-border {
  border: 1px solid #E8DDD2;
  background: transparent;
}
.btn-border:hover {
  background: #E8DDD2;
  color: #070404;
}

.btn-white {
  background: #E8DDD2;
  border: 1px solid #E8DDD2;
  color: #DC0000;
}
.btn-white:hover {
  background: #1E1E1E;
  color: #fff;
}

.home-banner {
  background: #DC0000;
  padding: 150px 0 85px;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home-banner .content {
  width: 1185px;
}
.home-banner h1 {
  font-style: normal;
  font-weight: 900;
  font-size: 100px;
  line-height: 0.9;
  text-transform: uppercase;
  color: #E8DDD2;
  margin-bottom: 50px;
}
.home-banner p {
  font-style: normal;
  font-weight: 400;
  font-size: 25px;
  line-height: 30px;
  color: #E8DDD2;
  margin-bottom: 25px;
  max-width: 690px;
}
.home-banner p.top {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  text-transform: uppercase;
  color: #E8DDD2;
  margin-bottom: 25px;
}
.home-banner .btn-wrap {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
}
.home-banner .btn-wrap a + a {
  margin-left: 20px;
}

.soc-section {
  position: relative;
  z-index: 2;
  background: #E8DDD2;
  padding: 75px 0;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.soc-section p.top {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  text-transform: uppercase;
  color: #070404;
  margin-bottom: 25px;
}
.soc-section h2 {
  font-style: normal;
  font-weight: 700;
  font-size: 60px;
  line-height: 1;
  text-transform: uppercase;
  color: #070404;
  margin-bottom: 50px;
}
.soc-section .content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 50px;
}
.soc-section .item {
  border: 1px solid #070404;
}
.soc-section .item a {
  display: block;
  height: 100%;
  padding: 25px 50px 50px;
}
.soc-section .item a figure {
  text-align: center;
  height: 250px;
  margin-bottom: 20px;
}
.soc-section .item a h4 {
  font-style: normal;
  font-weight: 500;
  font-size: 30px;
  line-height: 36px;
  text-transform: uppercase;
  color: #070404;
  margin-bottom: 25px;
  transition: all 0.4s ease;
}
.soc-section .item a p {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  color: rgba(7, 4, 4, 0.7);
  transition: all 0.4s ease;
}
.soc-section .item:hover {
  border: 1px solid #FE0B0B;
}
.soc-section .item:hover h4, .soc-section .item:hover p {
  color: #FE0B0B;
}

.about {
  padding: 100px 0 100px;
  position: relative;
  z-index: 3;
  background: #070404;
}
.about .content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.about .form-wrap {
  width: 590px;
  padding: 50px;
  background: #DC0000;
  height: fit-content;
}
.about .form-wrap h3 {
  font-style: normal;
  font-weight: 500;
  font-size: 50px;
  line-height: 1.1;
  color: #E8DDD2;
  margin-bottom: 40px;
}
.about .text-wrap {
  width: calc(100% - 790px);
}
.about .text-wrap p {
  font-style: normal;
  font-weight: 400;
  font-size: 25px;
  line-height: 30px;
  color: #E8DDD2;
  margin-bottom: 25px;
}
.about .text-wrap p.top {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  text-transform: uppercase;
  color: #E8DDD2;
  margin-bottom: 25px;
}
.about .text-wrap h2 {
  font-style: normal;
  font-weight: 700;
  font-size: 60px;
  line-height: 1;
  text-transform: uppercase;
  color: #E8DDD2;
  margin-bottom: 50px;
}
.about .text-wrap ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 90px;
  margin-top: 100px;
}
.about .text-wrap ul li {
  text-align: center;
}
.about .text-wrap ul li figure {
  height: 70px;
  margin-bottom: 50px;
}
.about .text-wrap ul li h6 {
  font-style: normal;
  font-weight: 500;
  font-size: 30px;
  line-height: 36px;
  text-transform: uppercase;
  color: #E8DDD2;
}
.about .text-wrap ul li p {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  text-align: center;
  color: #E8DDD2;
}

.form-default .input-wrap {
  position: relative;
  margin-bottom: 50px;
}
.form-default .input-wrap input {
  width: 100%;
  outline: none !important;
  border: none;
  border-bottom: 1px solid #E8DDD2;
  height: 50px;
  border-radius: 0;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-weight: 400;
  font-size: 25px;
  line-height: 50px;
  position: relative;
  z-index: 2;
  background: transparent !important;
}
.form-default .input-wrap label {
  position: absolute;
  top: 13px;
  left: 0;
  font-style: normal;
  font-weight: 400;
  font-size: 25px;
  line-height: 1;
  color: rgba(232, 221, 210, 0.6);
  transition: all 0.4s ease;
}
.form-default .input-wrap .is-focus, .form-default .input-wrap .is-active {
  font-size: 14px;
  top: -5px;
}
.form-default .input-wrap-submit button {
  width: 300px;
  color: #070404;
}
.form-default .input-wrap-submit button:hover {
  color: #fff;
  border-color: #1E1E1E;
}

.cases {
  position: relative;
  z-index: 4;
  /*background: url("../img/bg-1.jpg") no-repeat center;
  background-size: cover;*/
  padding: 0 0 100px;
  overflow: hidden;
  background: #E8DDD2;
}
.cases .bg {
  width: 100%;
  text-align: center;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease;
  min-height: 650px;
}
.cases .bg h2 {
  font-style: normal;
  font-weight: 700;
  font-size: 220px;
  line-height: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: uppercase;
  color: #0A0A0A;
  margin: 0;
}
.cases .content-width {
  position: relative;
  z-index: 3;
}
.cases .item {
  width: 1410px;
  margin-bottom: 250px;
}
.cases .item a {
  height: 815px;
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 25px;
}
.cases .item a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.cases .item a p {
  font-style: normal;
  font-weight: 900;
  font-size: 120px;
  line-height: 144px;
  text-transform: uppercase;
  color: #DC0000;
  position: relative;
  z-index: 1;
}
/*.cases .item:nth-child(2n) a p {
  color: #070404;
}*/
.cases .item:last-child {
  margin-bottom: 0;
}
.cases .content {
  padding-top: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

footer {
  position: relative;
  z-index: 50;
  padding: 150px 0;
  background: #070404;
}
footer .content-width {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
footer .left {
  width: 48%;
}
footer .left ul {
  margin-bottom: 75px;
}
footer .left ul p {
  font-style: normal;
  font-weight: 400;
  font-size: 25px;
  line-height: 30px;
  color: #E8DDD2;
  width: 300px;
}
footer .left ul p a {
  font-style: normal;
  font-weight: 400;
  font-size: 25px;
  line-height: 30px;
  color: #E8DDD2;
}
footer .left ul p a:hover {
  color: #DC0000;
}
footer .left ul p + p {
  margin-top: 15px;
}
footer .left ul li {
  margin-bottom: 45px;
}
footer .left ul li:last-child {
  margin-bottom: 0;
}
footer .btn-wrap a {
  width: 300px;
}
footer .right {
  width: 50%;
}
footer .right ul li {
  margin-bottom: 50px;
}
footer .right ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px;
  font-style: normal;
  font-weight: 400;
  font-size: 50px;
  line-height: 60px;
  color: #E8DDD2;
  position: relative;
}
footer .right ul li a:after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  height: 1px;
  width: 100%;
  background: #E8DDD2;
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.4s ease;
}
footer .right ul li a:hover:after {
  transform: scaleX(1);
}
footer .right ul li:last-child {
  margin-bottom: 0;
}

/*----------------------------END-HOME------------------------------*/
/*----------------------------PAGE-CASE------------------------------*/
.case-inner {
  padding: 250px 0 0;
  overflow: hidden;
}
.case-inner .content {
  width: 1120px;
  margin: auto;
}
.case-inner p {
  font-style: normal;
  font-weight: 400;
  font-size: 25px;
  line-height: 150%;
  color: #070404;
  margin-bottom: 25px;
}
.case-inner figure {
  margin: 100px 0 100px;
}
.case-inner figure img {
  width: 100%;
  height: auto;
}
.case-inner .bg {
  position: relative;
}
.case-inner .bg:after {
  position: absolute;
  bottom: 0;
  left: -1000px;
  right: -1000px;
  content: "";
  background: #DC0000;
  top: 300px;
}
.case-inner .bg > * {
  position: relative;
  z-index: 1;
}
.case-inner .bg p {
  color: #E8DDD2;
}
.case-inner h1 {
  font-style: normal;
  font-weight: 700;
  font-size: 100px;
  line-height: 100px;
  text-transform: uppercase;
  margin-bottom: 50px;
  color: #070404;
}
.case-inner .number-wrap {
  display: flex;
  flex-wrap: wrap;
  margin-top: 150px;
  padding-bottom: 150px;
}
.case-inner .number-wrap .item {
  width: calc(33.33% - 30px);
  margin-right: 30px;
}
.case-inner .number-wrap .item h6 {
  font-style: normal;
  font-weight: 700;
  font-size: 60px;
  line-height: 72px;
  text-transform: uppercase;
  color: #E8DDD2;
  margin-bottom: 15px;
}
.case-inner .number-wrap .item p {
  font-style: normal;
  font-weight: 500;
  font-size: 30px;
  line-height: 36px;
  text-transform: uppercase;
  color: #E8DDD2;
  margin: 0;
  padding-left: 50px;
}
.case-inner .number-wrap .item:nth-child(3n) {
  margin-right: 0;
}

.section-form {
  position: relative;
  background: #070404;
}
.section-form .bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: #DC0000;
}
.section-form .content-width {
  position: relative;
  z-index: 2;
}
.section-form .content {
  background: #E8DDD2;
  padding: 65px;
  width: 1520px;
  margin: auto;
}
.section-form .form-default {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.section-form .input-wrap {
  width: calc(25% - 55px);
  position: relative;
  margin: 0 !important;
}
.section-form .input-wrap input {
  color: rgba(7, 4, 4, 0.6);
  border-bottom: 1px solid #070404;
}
.section-form .form-default .input-wrap label {
  color: rgba(7, 4, 4, 0.6);
}
.section-form .form-default .input-wrap-submit button {
  color: #fff;
}
.section-form .form-default .input-wrap-submit button:hover {
  color: #000;
}

/*---------------------------END-PAGE-CASE------------------------------*/
/*----------------------------PAGE-INSTAGRAM------------------------------*/
.text-img {
  padding: 200px 0 0;
  background: #DC0000;
}
.text-img .content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.text-img p {
  font-style: normal;
  font-weight: 400;
  font-size: 25px;
  line-height: 150%;
  color: #E8DDD2;
  margin-bottom: 45px;
}
.text-img p.top {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  text-transform: uppercase;
  color: #E8DDD2;
  margin-bottom: 20px;
}
.text-img h1 {
  font-style: normal;
  font-weight: 900;
  font-size: 100px;
  line-height: 0.9;
  text-transform: uppercase;
  color: #E8DDD2;
  margin-bottom: 60px;
}
.text-img .btn-wrap {
  display: flex;
  flex-wrap: wrap;
}
.text-img .btn-wrap a + a {
  margin-left: 20px;
}
.text-img figure {
  width: 41%;
  margin-top: 50px;
}
.text-img figure img {
  width: 100%;
  height: auto;
}
.text-img .text {
  width: 50%;
}

.title-text {
  padding: 180px 0 100px;
  background: #DC0000;
}
.title-text .content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.title-text .title {
  width: 48%;
}
.title-text .text {
  width: 41%;
}
.title-text ul li {
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid #E8DDD2;
}
.title-text ul li h6 {
  font-style: normal;
  font-weight: 400;
  font-size: 50px;
  line-height: 50px;
  color: #E8DDD2;
  margin-bottom: 45px;
  position: relative;
  padding-left: 80px;
}
.title-text ul li h6 img {
  position: absolute;
  top: 0;
  left: 0;
}
.title-text ul li p {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  color: #E8DDD2;
}
.title-text h2 {
  font-style: normal;
  font-weight: 700;
  font-size: 100px;
  line-height: 1;
  text-transform: uppercase;
  color: #E8DDD2;
  margin: 0;
}

.about-white {
  background: transparent;
}
.about-white .text-wrap h2, .about-white .text-wrap p, .about-white .text-wrap ul li h6, .about-white .text-wrap ul li p {
  color: #070404;
}

/*---------------------------END-PAGE-INSTAGRAM------------------------------*/
/*----------------------------PAGE-ABOUT------------------------------*/
.about-head {
  padding: 200px 0 115px;
  background: #DC0000;
}
.about-head .content {
  text-align: center;
  margin: auto;
  width: 1150px;
}
.about-head p {
  font-style: normal;
  font-weight: 400;
  font-size: 25px;
  line-height: 150%;
  text-align: center;
  color: #E8DDD2;
  margin-bottom: 25px;
}
.about-head p.top {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  text-transform: uppercase;
  color: #E8DDD2;
  margin-bottom: 20px;
}
.about-head h1 {
  font-style: normal;
  font-weight: 700;
  font-size: 100px;
  line-height: 100px;
  text-align: center;
  text-transform: uppercase;
  color: #E8DDD2;
  margin-bottom: 50px;
}

.soc-section-center {
  position: relative !important;
  padding: 100px 0;
  top: 0 !important;
}
.soc-section-center p.top {
  text-align: center;
}
.soc-section-center h2 {
  text-align: center;
}
.soc-section-center h2 {
  font-size: 100px;
  line-height: 1;
}

.team {
  padding: 100px 0 190px;
}
.team p.top {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  text-transform: uppercase;
  color: #070404;
  margin-bottom: 25px;
}
.team h2 {
  font-style: normal;
  font-weight: 700;
  font-size: 100px;
  line-height: 100px;
  text-transform: uppercase;
  color: #070404;
  margin-bottom: 50px;
}
.team .content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 50px;
}
.team .item figure {
  padding-top: 100%;
  width: 100%;
  position: relative;
  margin-bottom: 27px;
}
.team .item figure img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  object-fit: cover;
}
.team .item h6 {
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  line-height: 26px;
  color: #070404;
  margin-bottom: 10px;
}
.team .item p {
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  color: rgba(7, 4, 4, 0.7);
  margin-bottom: 25px;
}
.team .item ul li {
  margin-bottom: 10px;
}
.team .item ul li a {
  display: flex;
  align-items: center;
  width: fit-content;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  color: #070404;
}
.team .item ul li a:hover {
  opacity: 0.7;
}
.team .item ul li a img {
  margin-right: 10px;
}

.tex-bg {
  background: #DC0000;
  padding: 145px 0;
}
.tex-bg .content {
  padding: 0 225px;
}
.tex-bg h6 {
  font-style: normal;
  font-weight: 400;
  font-size: 50px;
  line-height: 70px;
  color: #E8DDD2;
  margin: 0;
}
.tex-bg h6 a {
  font-style: normal;
  font-weight: 400;
  font-size: 50px;
  line-height: 70px;
  color: #E8DDD2;
  display: inline-block;
  position: relative;
}
.tex-bg h6 a:after {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  content: "";
  height: 1px;
  background: #E8DDD2;
}
.tex-bg h6 a:hover {
  opacity: 0.7;
}

/*---------------------------END-PAGE-ABOUT------------------------------*/

/*---------------------------NEW-26.02.24------------------------------*/
.home-banner {
  padding-top: 200px; }
.home-banner .content-width {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
.home-banner .logo-wrap {
  margin-top: 74px;
  border-top: 1px solid #fff;
  padding-top: 55px; }
.home-banner .logo-wrap ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }
.home-banner .logo-wrap ul li {
  margin-right: 40px; }
.home-banner .logo-wrap ul li img {
  vertical-align: top; }
.home-banner .logo-wrap ul li:last-child {
  margin-right: 0; }
.home-banner figure {
  width: calc(100% - 968px);
  position: relative;
  top: -135px;
  left: 43px;
  margin-bottom: -155px; }
.home-banner figure img {
  width: 100%; }

.home-banner h1 {
  font-size: 120px;
  font-weight: 900;
  line-height: 110px;
  letter-spacing: 0em;
  text-align: left; }

.home-banner .content {
  width: 860px; }

.home-banner p {
  max-width: 100% !important; }

.soc-section {
  display: block !important;
  padding: 86px 0 200px;
  min-height: inherit !important; }
.soc-section h2 {
  font-size: 100px;
  font-weight: 700;
  line-height: 100px;
  letter-spacing: 0em;
  text-align: left;
  margin-bottom: 100px; }
.soc-section .content {
  grid-template-columns: repeat(5, 1fr); }
.soc-section .item-progress {
  position: relative;
  z-index: 1; }
.soc-section .item-progress figure {
  height: 85px;
  width: 85px;
  margin: 0 auto 30px; }
.soc-section .item-progress figure img {
  width: 100%; }
.soc-section .item-progress .point {
  width: 50px;
  height: 50px;
  position: relative;
  margin: 0 auto 30px; }
.soc-section .item-progress .point span {
  display: block;
  position: relative;
  z-index: 10;
  border: 3px solid #070404;
  border-radius: 100%;
  background: #e8ddd2;
  width: 50px;
  height: 50px; }
.soc-section .item-progress p {
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0em;
  text-align: center; }
.soc-section .item-progress .title {
  font-size: 30px;
  font-weight: 500;
  line-height: 36px;
  letter-spacing: 0em;
  text-align: center;
  margin-bottom: 25px;
  text-transform: uppercase; }
.soc-section .item-progress:nth-child(2), .soc-section .item-progress:nth-child(3), .soc-section .item-progress:nth-child(4) {
  z-index: 3; }
.soc-section .item-progress:first-child .point:after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1000px;
  content: '';
  height: 8px;
  background: #dc0000;
  margin-top: -4px; }
.soc-section .item-progress:last-child .point:after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 1000px;
  content: '';
  height: 8px;
  background: #dc0000;
  margin-top: -4px; }

.video-section {
  background: #000; }
.video-section .video-block {
  position: relative; }
.video-section .video-block .bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 2; }
.video-section .video-block .bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center; }
.video-section .video-block .icon-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 10;
  cursor: pointer; }
.video-section .video-block .icon-wrap img {
  -webkit-transition: all .4s ease;
  transition: all .4s ease; }
.video-section .video-block .icon-wrap:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05); }
.video-section video {
  width: 100%;
  height: 100vh; }

.popup-team {
  width: 100%;
  padding: 0;
  background: #e8ddd2; }
.popup-team .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100vh; }
.popup-team .content .name {
  font-size: 50px;
  font-weight: 500;
  line-height: 50px;
  letter-spacing: 0em;
  text-align: left;
  margin-bottom: 15px; }
.popup-team .content .info {
  font-size: 25px;
  font-style: italic;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0em;
  text-align: left;
  margin-bottom: 50px; }
.popup-team .content ul li {
  margin-bottom: 10px; }
.popup-team .content ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  color: #070404; }
.popup-team .content ul li a:hover {
  opacity: 0.7; }
.popup-team ul li a img {
  margin-right: 10px; }
.popup-team .text {
  width: 50%;
  padding: 50px 20px 50px 0; }
.popup-team figure {
  width: 50%;
  height: 100vh;
  position: absolute;
  top: 0;
  right: 0; }
.popup-team figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover; }
.popup-team .logo-wrap {
  position: absolute;
  top: 50px;
  z-index: 10;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }
.popup-team .mob {
  display: none; }

.fancybox-slide--html {
  padding: 0; }

.is-team {
  overflow: hidden; }

.text-img figure {
  width: 46.9%;
  margin-top: 22px; }
.text-img figure img {
  width: 705px; }

.text-img .text {
  padding-top: 85px; }

.text-img h1 {
  font-size: 120px;
  line-height: normal;
  margin-bottom: 35px; }

.text-img p.top {
  margin-bottom: 7px; }

.title-text ul li {
  position: relative; }
.title-text ul li .text-info {
  position: absolute;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0em;
  text-align: right;
  color: #fff;
  right: calc(100% + 96px);
  top: 8px;
  white-space: nowrap; }
.title-text ul li .text-info:after {
  position: absolute;
  right: -42px;
  top: 10px;
  content: '';
  width: 11px;
  height: 11px;
  border-radius: 100%;
  background: #fff; }

.title-text {
  padding: 238px 0 100px; }

.title-text .text {
  padding-top: 42px; }

.title-text ul li h6 {
  margin-bottom: 50px; }

.title-text ul {
  position: relative; }
.title-text ul:before {
  position: absolute;
  left: -60px;
  top: 25px;
  bottom: 53px;
  width: 1px;
  content: '';
  background: #fff; }

.title-text ul li {
  border-bottom: 0; }

.about .form-wrap h3 {
  font-size: 55px;
  font-weight: 500;
  line-height: 66px;
  letter-spacing: 0em;
  text-align: left;
  margin-bottom: 107px; }

.form-default .input-wrap {
  margin-bottom: 42px; }

.about .text-wrap h2 {
  font-size: 100px;
  font-weight: 700;
  line-height: 100px;
  letter-spacing: 0em;
  text-align: left; }

.about .text-wrap ul li h6 {
  width: 220px;
  margin: 0 auto 20px; }

.about {
  padding-bottom: 195px; }

.popup-team figure .video-block {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }
.popup-team figure .video-block .bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 2; }
.popup-team figure .video-block .bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center; }
.popup-team figure .video-block .icon-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 10;
  cursor: pointer; }
.popup-team figure .video-block .icon-wrap img {
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
  width: 40px;
  height: auto; }
.popup-team figure .video-block .icon-wrap:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05); }
.popup-team figure .video-block video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover; }

.top-line .content-width{
  display: flex;
  justify-content: space-between;
}
.top-line{
  border-bottom: 4px solid #000;
}

.top-line .menu-wrap{
  width: 50%;
}

.top-line .menu-wrap .open-menu-mob{
  display: none;
}
.top-line .menu-wrap{
  display: flex;
  justify-content: flex-end;
}

.top-line .menu-wrap ul{
  display: flex;
  justify-content: flex-end;
  position: relative;
  top: 8px;
}

.top-line .menu-wrap ul li + li{
  margin-left: 100px;
}
.top-line .menu-wrap ul li a{
  color: #E9DED5;
  display: inline-block;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 500;
}
.top-line .menu-wrap ul li a:hover{
  opacity: 0.7;
}

.anim-wrap{
  position: relative;
  margin: -110px 0 -100px;
}
.anim-wrap .item{
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translate(-50%,-50%);
  font-size: 30px;
  line-height: 1.2;
  display: inline-block;
  color: #070404;
  text-transform: uppercase;
  text-align: center;
  font-weight: 500;
}
.anim-wrap .item-1, .anim-wrap .item-4{
  white-space: nowrap;
}
.anim-wrap .item-2, .anim-wrap .item-3{
  width: 150px;
}

.anim-wrap .item-2{
  left: 5%;
  top: 50%;
}
.anim-wrap .item-3{
  left: 95%;
  top: 50%;
}
.anim-wrap .item-4{
  top: 90%;
  left: 50%;
}
.amin-wrap-black .item{
  color: #E8DDD2;
}
.top-line{
  overflow: hidden;
  max-height: 150px;
}
.top-line.is-down{
  padding: 0!important;
  max-height: 0;
  border-color: transparent;
  margin-top: -2px;
}

.cases .item .no-link{
  pointer-events: none;
}

.cases .item .btn-red{
	position: absolute;
	bottom:80px;
	background: #DC0000!important;
	color: #E8DDD2!important;
	min-width: 400px;
	left: 50%;
	font-size: 30px;
	transform: translate(-50%,0);
	z-index: 10;
	border: none!important;
	height: 86px;
	line-height: 86px;
	border-radius: 90px;
}

.top-line .logo-wrap a .mob{
  display: none;
}
/*# sourceMappingURL=styles.css.map */
