@font-face {
  font-family: "Michroma";
  src: url("../fonts/Michroma/Michroma-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/Inter-VariableFont_opsz,wght.ttf") format("truetype");
}
header {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: auto;
  padding: 30px 0;
  z-index: 100;
  transition: all 0.2s linear;
}
@media screen and (max-width: 991px) {
  header {
    padding: 0;
  }
}
header .container {
  display: flex;
}
@media screen and (max-width: 991px) {
  header .container {
    align-items: center;
  }
}
header .logo_block {
  position: relative;
  width: 384px;
  height: auto;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  header .logo_block {
    left: -15px;
  }
}
@media screen and (max-width: 479px) {
  header .logo_block {
    width: calc(100% - 60px);
  }
}
header .logo_block .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 69px;
  width: 100%;
  background: #9F1B3B;
  font-weight: 400;
  font-size: 11px;
  font-family: "Michroma", system-ui;
  color: #FFFFFF;
  letter-spacing: 4px;
  line-height: 1.6;
  text-decoration: none;
  padding: 0 10px;
  transition: all 0.2s linear;
}
@media all and (min-width: 992px) {
  header .logo_block .logo {
    position: absolute;
    top: -32px;
    left: 0px;
  }
}
@media print {
  header .logo_block .logo {
    position: absolute;
    top: -32px;
    left: 0px;
  }
}
header .logo_block .logo:hover {
  background: #77132b;
}
header .menu_block {
  width: calc(100% - 384px);
}
@media screen and (max-width: 991px) {
  header .menu_block {
    display: flex;
    align-content: center;
    justify-content: flex-end;
  }
}
@media screen and (max-width: 479px) {
  header .menu_block {
    width: 60px;
  }
}
header .menu_block .mobile_menu {
  position: relative;
  display: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  padding: 0;
  z-index: 2;
}
@media screen and (max-width: 991px) {
  header .menu_block .mobile_menu {
    display: block;
  }
}
header .menu_block .mobile_menu span {
  background-color: #fff;
  border-radius: 1px;
  content: "";
  cursor: pointer;
  display: block;
  height: 2px;
  position: absolute;
  top: 2px;
  transition: background-color 0.3s;
  width: 26px;
  will-change: transform;
}
header .menu_block .mobile_menu span:before, header .menu_block .mobile_menu span:after {
  background-color: #fff;
  border-radius: 1px;
  content: "";
  cursor: pointer;
  display: block;
  height: 2px;
  position: absolute;
  top: 8px;
  width: 26px;
  will-change: transform;
  transition: all 225ms ease-in-out;
}
header .menu_block .mobile_menu span:after {
  top: 16px;
}
header .menu_block ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 991px) {
  header .menu_block ul {
    display: block;
    position: fixed;
    left: 0;
    width: calc(100% - 30px);
    height: calc(100vh - 135px);
    background: #FFFFFF;
    padding: 120px 15px 15px;
    top: -100vh;
    transition: all 0.3s linear;
    z-index: 1;
  }
}
header .menu_block ul li {
  list-style: none;
  padding: 0;
}
@media screen and (max-width: 991px) {
  header .menu_block ul li {
    margin-bottom: 16px;
  }
}
header .menu_block ul a {
  text-decoration: none;
  font-family: "Michroma", system-ui;
  font-size: 10px;
  color: #FFFFFF;
  opacity: 0.5;
  position: relative;
  letter-spacing: 2px;
  transition: all 0.2s linear;
}
header .menu_block ul a.active, header .menu_block ul a:hover {
  opacity: 1;
}
header .menu_block ul a.active:before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: #9F1B3B;
  border-radius: 50%;
  top: 5px;
  left: -17px;
}
@media screen and (max-width: 991px) {
  header .menu_block ul a.active:before {
    display: none;
  }
}
header .menu_block ul .button {
  background-color: #9F1B3B;
  border-color: #9F1B3B;
  border-radius: 500px;
  font-family: "Michroma", system-ui;
  font-size: 10px;
  color: #FFFFFF;
  letter-spacing: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 58px 0 32px;
  height: 50px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.2s linear;
  position: relative;
  opacity: 1;
}
header .menu_block ul .button:hover {
  border-color: #77132b;
  background: #77132b;
}
header .menu_block ul .button:after {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background-image: url(../images/arrow-right.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  right: 5px;
}

body.open_mobile_menu {
  overflow: hidden;
}
body.open_mobile_menu .mobile_menu + ul {
  top: 0;
}
body.open_mobile_menu .mobile_menu + ul a {
  font-size: 16px;
}
body.open_mobile_menu .mobile_menu + ul a:not(.button) {
  color: #1A1A1C;
}
body.open_mobile_menu .mobile_menu + ul a:not(.button):hover, body.open_mobile_menu .mobile_menu + ul a:not(.button).active {
  color: #9F1B3B;
}
body.open_mobile_menu .mobile_menu + ul a.button {
  margin-top: 30px;
  font-size: 13px;
}
body.open_mobile_menu .mobile_menu span {
  background: none !important;
}
body.open_mobile_menu .mobile_menu span:before {
  background: #1A1A1C;
  top: 8px;
  transform: rotate(45deg);
}
body.open_mobile_menu .mobile_menu span:after {
  background: #1A1A1C;
  top: 8px;
  transform: rotate(-45deg);
}

footer {
  background-color: #000000;
  font-size: 12px;
  font-family: "Inter", sans-serif;
  color: #FFFFFF;
  padding: 33px;
  position: relative;
  z-index: 1;
}
footer .container {
  display: flex;
}
@media screen and (max-width: 575px) {
  footer .container {
    flex-wrap: wrap;
  }
}
footer .copyright {
  width: 50%;
}
@media screen and (max-width: 575px) {
  footer .copyright {
    width: 100%;
    text-align: center;
    order: 2;
  }
}
footer .menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 50%;
}
@media screen and (max-width: 575px) {
  footer .menu {
    width: 100%;
    justify-content: center;
    margin-bottom: 15px;
    order: 1;
  }
}
footer ul {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
footer ul li {
  list-style: none;
  padding: 0 10px;
  margin: 0;
  border-right: 1px solid #FFFFFF;
}
footer ul li:last-child {
  border: none;
}
footer ul a {
  color: inherit;
  text-decoration: none;
  font: inherit;
}
footer ul a:hover {
  text-decoration: underline;
}

[data-animate] {
  opacity: 0;
  visibility: hidden;
}
[data-animate].animate__animated {
  opacity: 1;
  visibility: visible;
}

.animate__animated {
  opacity: 0;
}

body.loaded .animate__animated.animate__delay-300ms {
  opacity: 0;
  -webkit-animation-delay: 300ms;
  animation-delay: 300ms;
}
body.loaded .animate__animated.animate__delay-500ms {
  opacity: 0;
  -webkit-animation-delay: 500ms;
  animation-delay: 500ms;
}
body.loaded .animate__animated.animate__delay-600ms {
  opacity: 0;
  -webkit-animation-delay: 600ms;
  animation-delay: 600ms;
}
body.loaded .animate__animated.animate__delay-1s {
  opacity: 0;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
body.loaded .animate__fadeInUp {
  animation: fadeInUp 1s forwards;
}
body.loaded .animate__fadeInDown {
  animation: fadeInDown 1s forwards;
}
body.loaded .animate__flipInX {
  animation: flipInX 1s forwards;
}
body.loaded .animate__fadeInLeft {
  animation: fadeInLeft 1s forwards;
}
body.loaded .animate__fadeInRight {
  animation: fadeInRight 1s forwards;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -ms-transform: translate3d(0, 100px, 0);
    -webkit-transform: translate3d(0, 100px, 0);
    transform: translate3d(0, 100px, 0);
  }
  100% {
    opacity: 1;
    -ms-transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -ms-transform: translate3d(-100px, 0, 0);
    -webkit-transform: translate3d(-100px, 0, 0);
    transform: translate3d(-100px, 0, 0);
  }
  100% {
    opacity: 1;
    -ms-transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -ms-transform: translate3d(0, -100%, 0);
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -ms-transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -ms-transform: translate3d(-100px, 0, 0);
    -webkit-transform: translate3d(-100px, 0, 0);
    transform: translate3d(-100px, 0, 0);
  }
  100% {
    opacity: 1;
    -ms-transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -ms-transform: translate3d(100px, 0, 0);
    -webkit-transform: translate3d(-100px, 0, 0);
    transform: translate3d(100px, 0, 0);
  }
  100% {
    opacity: 1;
    -ms-transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes flipInX {
  0% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
  }
  40% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
  }
  60% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }
  80% {
    -webkit-transform: perspective(400px) rotateX(-5deg);
    transform: perspective(400px) rotateX(-5deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
body.about-us:before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100vh;
  background-image: url(../images/about-us.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  body.about-us:before {
    display: block;
  }
}
body.about-us h1 {
  font-size: 72px;
  font-family: "Michroma", system-ui;
  font-weight: 400;
  color: #FFFFFF;
  max-width: 890px;
  padding-top: 0;
  margin: 0;
  line-height: 1.1;
}
@media screen and (max-width: 1024px) {
  body.about-us h1 {
    font-size: 52px;
    max-width: 645px;
  }
}
@media screen and (max-width: 767px) {
  body.about-us h1 {
    font-size: 48px;
  }
}
@media screen and (max-width: 575px) {
  body.about-us h1 {
    font-size: 32px;
  }
}
body.about-us h1 span {
  color: #9F1B3B;
}
body.about-us .header_block {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}
@media all and (min-width: 768px) {
  body.about-us .header_block {
    background-image: url(../images/about-us.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    clip-path: inset(0% 0% 0% 0%);
    z-index: 2;
  }
}
@media print {
  body.about-us .header_block {
    background-image: url(../images/about-us.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    clip-path: inset(0% 0% 0% 0%);
    z-index: 2;
  }
}
@media screen and (max-width: 767px) {
  body.about-us .header_block {
    position: relative;
    clip-path: unset !important;
    top: 0 !important;
    z-index: 1;
  }
}
body.about-us .header_block .inner_wrap {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
}
body.about-us .about_block_wrap {
  position: relative;
  background: #FFFFFF;
  padding: 90px 0 187px;
  margin-top: 250vh;
}
@media screen and (max-width: 767px) {
  body.about-us .about_block_wrap {
    padding-bottom: 80px;
    margin-top: 0;
  }
}
body.about-us .about_block_wrap:before {
  content: "";
  position: absolute;
  top: 360px;
  left: 0;
  display: block;
  width: 278px;
  height: 530px;
  background-image: url(../images/round-little.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
body.about-us .about_block_wrap:after {
  content: "";
  position: absolute;
  top: 452px;
  right: 0;
  display: block;
  width: 340px;
  height: 842px;
  background-image: url(../images/round-big.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
body.about-us .about_block_wrap .container {
  display: flex;
  gap: 147px;
}
@media screen and (max-width: 1024px) {
  body.about-us .about_block_wrap .container {
    gap: 60px;
  }
}
@media screen and (max-width: 767px) {
  body.about-us .about_block_wrap .container {
    flex-wrap: wrap;
  }
}
body.about-us .about_block_wrap .image_block {
  width: 50%;
}
@media screen and (max-width: 767px) {
  body.about-us .about_block_wrap .image_block {
    width: 100%;
    order: 2;
  }
}
body.about-us .about_block_wrap .image_block img {
  max-width: 100%;
}
body.about-us .about_block_wrap .text_block {
  width: 50%;
  max-width: 449px;
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 300;
  color: #0C0D0D;
  line-height: 1.68;
}
@media screen and (max-width: 767px) {
  body.about-us .about_block_wrap .text_block {
    width: 100%;
    max-width: 100%;
    order: 1;
  }
}
body.about-us .about_block_wrap .text_block p {
  margin: 0 0 60px;
}
body.about-us .about_block_wrap .text_block p:last-child {
  margin: 0;
}
body.about-us .about_block_wrap .text_block .button {
  background-color: #9F1B3B;
  border-color: #9F1B3B;
  border-radius: 500px;
  font-family: "Michroma", system-ui;
  font-size: 10px;
  color: #FFFFFF;
  letter-spacing: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 58px 0 32px;
  height: 50px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.2s linear;
  position: relative;
}
body.about-us .about_block_wrap .text_block .button:hover {
  border-color: #77132b;
  background: #77132b;
}
body.about-us .about_block_wrap .text_block .button:after {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background-image: url(../images/arrow-right.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  right: 5px;
}

body.contact-us header .menu_block ul a:not(.button) {
  color: #242424;
}
body.contact-us header .menu_block .mobile_menu span {
  background-color: #1A1A1C;
}
body.contact-us header .menu_block .mobile_menu span:before, body.contact-us header .menu_block .mobile_menu span:after {
  background: #1A1A1C;
}
body.contact-us h1 {
  font-size: 72px;
  font-family: "Michroma", system-ui;
  font-weight: 400;
  color: #0C0D0D;
  max-width: 890px;
  padding-top: 109px;
  margin: 0;
  line-height: 1.1;
}
@media screen and (max-width: 1024px) {
  body.contact-us h1 {
    font-size: 52px;
    max-width: 645px;
  }
}
@media screen and (max-width: 991px) {
  body.contact-us h1 {
    padding-top: 0px;
  }
}
@media screen and (max-width: 767px) {
  body.contact-us h1 {
    font-size: 48px;
  }
}
@media screen and (max-width: 575px) {
  body.contact-us h1 {
    font-size: 32px;
  }
}
body.contact-us h1 span {
  color: #9F1B3B;
}
body.contact-us h2 {
  font-family: "Inter", sans-serif;
  font-size: 52px;
  font-weight: 500;
  line-height: 1.12;
  color: #000000;
  margin: 0 0 54px;
}
@media screen and (max-width: 1024px) {
  body.contact-us h2 {
    font-size: 42px;
  }
}
@media screen and (max-width: 575px) {
  body.contact-us h2 {
    font-size: 26px;
  }
}
body.contact-us .header_block {
  padding: 227px 0 100px;
}
@media screen and (max-width: 767px) {
  body.contact-us .header_block {
    padding: 160px 0 80px;
  }
}
body.contact-us .header_block .container {
  display: flex;
  gap: 140px;
}
@media screen and (max-width: 1199px) {
  body.contact-us .header_block .container {
    gap: 60px;
  }
}
@media screen and (max-width: 991px) {
  body.contact-us .header_block .container {
    flex-wrap: wrap;
  }
}
body.contact-us .header_block .title {
  width: 50%;
}
@media screen and (max-width: 991px) {
  body.contact-us .header_block .title {
    width: 100%;
  }
}
body.contact-us .header_block .contacts {
  width: 50%;
}
@media screen and (max-width: 991px) {
  body.contact-us .header_block .contacts {
    width: 100%;
  }
}
body.contact-us .header_block form .item {
  margin-bottom: 33px;
}
body.contact-us .header_block form .item:last-child {
  margin-bottom: 0;
}
body.contact-us .header_block form label {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 300;
  line-height: 1.68;
  color: #0C0D0D;
  margin-bottom: 0;
}
body.contact-us .header_block form input:not([type=submit]),
body.contact-us .header_block form textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #A09BA0;
  padding: 8px 0;
  font-size: 18px;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  color: #0C0D0D;
  transition: all 0.2s linear;
}
body.contact-us .header_block form input:not([type=submit]):focus, body.contact-us .header_block form input:not([type=submit]):active,
body.contact-us .header_block form textarea:focus,
body.contact-us .header_block form textarea:active {
  border-color: #9F1B3B;
}
body.contact-us .header_block form input:not([type=submit])::placeholder,
body.contact-us .header_block form textarea::placeholder {
  color: #A09BA0;
}
body.contact-us .header_block form textarea {
  min-height: 39px;
}
body.contact-us .header_block form [type=submit] {
  background-color: #9F1B3B;
  border-color: #9F1B3B;
  border-radius: 500px;
  font-family: "Michroma", system-ui;
  font-size: 10px;
  color: #FFFFFF;
  letter-spacing: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 58px 0 32px;
  height: 50px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.2s linear;
  position: relative;
  background-color: #FFFFFF;
  border: 1px solid #000000;
  color: #000000;
  max-width: 258px;
  width: 100%;
  position: relative;
}
body.contact-us .header_block form [type=submit]:hover {
  border-color: #77132b;
  background: #77132b;
}
body.contact-us .header_block form [type=submit]:after {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background-image: url(../images/arrow-right.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  right: 5px;
}
body.contact-us .header_block form [type=submit]:hover {
  color: #FFFFFF;
}
body.contact-us .header_block form [type=submit]:hover:after {
  background-image: url(../images/arrow-right.svg);
}
body.contact-us .header_block form [type=submit]:after {
  background-image: url(../images/arrow-right-black.svg);
}
body.contact-us .header_block form .message-status {
  position: absolute;
  top: calc(100% + 3px);
  left: 0;
  width: 100%;
  height: auto;
  font-weight: 600;
}
body.contact-us .header_block form .message-status.error {
  color: #9F1B3B;
}
body.contact-us .header_block form .message-status.success {
  color: #2CAE2C;
}

body.home:before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100vh;
  background-image: url(../images/main-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  z-index: 0;
}
body.home h1 {
  font-size: 72px;
  font-family: "Michroma", system-ui;
  font-weight: 400;
  color: #FFFFFF;
  max-width: 890px;
  padding-top: 188px;
  margin: 0;
  line-height: 1.1;
}
@media screen and (max-width: 1024px) {
  body.home h1 {
    font-size: 52px;
    max-width: 645px;
  }
}
@media screen and (max-width: 767px) {
  body.home h1 {
    font-size: 48px;
  }
}
@media screen and (max-width: 575px) {
  body.home h1 {
    font-size: 32px;
  }
}
body.home h2 {
  font-size: 62px;
  font-family: "Michroma", system-ui;
  font-weight: 400;
  color: #1A1A1C;
  padding: 0;
  margin: 0 0 18px;
  line-height: 1.1;
}
@media screen and (max-width: 1024px) {
  body.home h2 {
    font-size: 48px;
  }
}
body.home h2 span {
  color: #9F1B3B;
}
body.home .header_block {
  min-height: 100vh;
}
body.home .header_block .inner_wrap {
  position: relative;
  height: 100vh;
}
body.home .scroll_down {
  position: absolute;
  bottom: 6.7%;
  border: none;
  background-color: transparent;
  cursor: pointer;
  font-family: "Michroma", system-ui;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 2px;
  color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  body.home .scroll_down {
    bottom: 10%;
  }
}
body.home .scroll_down span {
  opacity: 0.5;
  transition: all 0.2s linear;
}
body.home .scroll_down span:hover {
  opacity: 1;
}
body.home .scroll_down img {
  position: relative;
  top: 4px;
  margin-right: 7px;
}
body.home .description_block {
  display: flex;
  align-items: center;
  min-height: 150vh;
  background: #373434;
  background: linear-gradient(0deg, #373434 0%, rgba(55, 52, 52, 0.6) 78%, rgba(55, 52, 52, 0) 100%);
}
@media screen and (max-width: 767px) {
  body.home .description_block {
    min-height: 100vh;
  }
}
body.home .description_block .container {
  max-width: 1298px;
}
body.home .description_block .inner_wrap {
  display: flex;
  align-items: center;
}
body.home .description_block .about {
  font-size: 32px;
  font-family: "Inter", sans-serif;
  color: #FFFFFF;
  line-height: 1.68;
  max-width: 635px;
  font-weight: 300;
}
@media screen and (max-width: 1024px) {
  body.home .description_block .about {
    font-size: 28px;
  }
}
body.home .about_block {
  position: relative;
  background: #FFFFFF;
  padding-top: 118px;
  padding-bottom: 464px;
}
@media screen and (max-width: 767px) {
  body.home .about_block {
    padding-bottom: 118px;
  }
}
body.home .about_block:before {
  content: "";
  position: absolute;
  top: 360px;
  left: 0;
  display: block;
  width: 278px;
  height: 530px;
  background-image: url(../images/round-little.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
body.home .about_block:after {
  content: "";
  position: absolute;
  top: 452px;
  right: 0;
  display: block;
  width: 340px;
  height: 842px;
  background-image: url(../images/round-big.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
body.home .about_block .container {
  max-width: 1123px;
}
body.home .about_block .inner_wrap {
  display: flex;
}
@media screen and (max-width: 767px) {
  body.home .about_block .inner_wrap {
    flex-wrap: wrap;
  }
}
body.home .about_block .left_block {
  position: relative;
}
@media all and (min-width: 768px) {
  body.home .about_block .left_block {
    width: 50%;
  }
}
@media print {
  body.home .about_block .left_block {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  body.home .about_block .left_block {
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
  }
}
body.home .about_block .right_block {
  display: flex;
  justify-content: flex-end;
}
@media all and (min-width: 768px) {
  body.home .about_block .right_block {
    width: 50%;
    padding-top: 460px;
  }
}
@media print {
  body.home .about_block .right_block {
    width: 50%;
    padding-top: 460px;
  }
}
@media screen and (max-width: 767px) {
  body.home .about_block .right_block {
    width: 100%;
    justify-content: center;
  }
}
body.home .about_block .description {
  font-family: "Inter", sans-serif;
  font-size: 32px;
  line-height: 1.68;
  color: #242424;
  margin-bottom: 60px;
  font-weight: 300;
  max-width: 520px;
}
@media screen and (max-width: 1024px) {
  body.home .about_block .description {
    font-size: 28px;
  }
}
body.home .about_block .steps {
  max-width: 300px;
}
@media screen and (max-width: 767px) {
  body.home .about_block .steps {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    width: 100%;
  }
}
body.home .about_block .steps .step_item {
  margin-bottom: 271px;
}
@media screen and (max-width: 767px) {
  body.home .about_block .steps .step_item {
    margin-bottom: 60px;
    width: 50%;
  }
}
@media screen and (max-width: 575px) {
  body.home .about_block .steps .step_item {
    max-width: 273px;
    width: 100%;
  }
}
body.home .about_block .steps .step_item:last-child {
  margin-bottom: 0;
}
body.home .about_block .steps .step_image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  body.home .about_block .steps .step_image {
    margin-bottom: 15px;
  }
}
body.home .about_block .steps .step_image img {
  object-fit: contain;
  object-position: center center;
  width: 100%;
  height: 100%;
}
body.home .about_block .steps .step_title {
  font-family: "Michroma", system-ui;
  font-size: 32px;
  font-weight: 400;
  color: #242424;
  margin-bottom: 24px;
  text-transform: uppercase;
}
@media screen and (max-width: 1024px) {
  body.home .about_block .steps .step_title {
    font-size: 28px;
  }
}
body.home .about_block .steps .step_description {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #242424;
  margin-bottom: 0;
  max-width: 254px;
}
body.home .about_block .actions .button {
  background-color: #9F1B3B;
  border-color: #9F1B3B;
  border-radius: 500px;
  font-family: "Michroma", system-ui;
  font-size: 10px;
  color: #FFFFFF;
  letter-spacing: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 58px 0 32px;
  height: 50px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.2s linear;
  position: relative;
}
body.home .about_block .actions .button:hover {
  border-color: #77132b;
  background: #77132b;
}
body.home .about_block .actions .button:after {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background-image: url(../images/arrow-right.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  right: 5px;
}
body.home .counting_block {
  background: #52162F;
  background-image: url(../images/pink-bg.jpg);
  background-size: cover;
  padding: 350px 0;
}
@media screen and (max-width: 991px) {
  body.home .counting_block {
    padding: 250px 0;
  }
}
@media screen and (max-width: 767px) {
  body.home .counting_block {
    padding: 73px 0 13px;
  }
}
body.home .counting_block .countings .item {
  display: flex;
  align-items: center;
  margin-bottom: 105px;
}
@media screen and (max-width: 767px) {
  body.home .counting_block .countings .item {
    justify-content: center;
    margin-bottom: 60px;
  }
}
@media all and (min-width: 768px) {
  body.home .counting_block .countings .item:nth-child(1) {
    padding-left: 166px;
  }
}
@media print {
  body.home .counting_block .countings .item:nth-child(1) {
    padding-left: 166px;
  }
}
@media all and (min-width: 768px) {
  body.home .counting_block .countings .item:nth-child(2) {
    justify-content: flex-end;
    padding-right: 127px;
  }
}
@media print {
  body.home .counting_block .countings .item:nth-child(2) {
    justify-content: flex-end;
    padding-right: 127px;
  }
}
@media all and (min-width: 768px) {
  body.home .counting_block .countings .item:nth-child(3) {
    padding-left: 320px;
    margin-bottom: 0;
  }
}
@media print {
  body.home .counting_block .countings .item:nth-child(3) {
    padding-left: 320px;
    margin-bottom: 0;
  }
}
body.home .counting_block .countings .inner {
  max-width: 351px;
}
body.home .counting_block .countings .title {
  font-family: "Michroma", system-ui;
  font-size: 92px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1;
  margin-bottom: 24px;
}
@media screen and (max-width: 1024px) {
  body.home .counting_block .countings .title {
    font-size: 48px;
  }
}
body.home .counting_block .countings .description {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #FFFFFF;
  line-height: 2.2;
  max-width: 243px;
}
body.home .links_block {
  background-image: url(../images/black-bg.jpg);
  background-size: cover;
  background-position: center center;
  padding: 136px 0 172px;
}
@media screen and (max-width: 767px) {
  body.home .links_block {
    padding: 80px 0;
  }
}
body.home .links_block .container {
  max-width: 1232px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  body.home .links_block .container {
    flex-wrap: wrap;
  }
}
body.home .links_block .links_title {
  width: 27%;
  font-size: 24px;
  font-family: "Michroma", system-ui;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.6;
}
@media screen and (max-width: 1024px) {
  body.home .links_block .links_title {
    width: 100%;
    margin-bottom: 24px;
  }
}
body.home .links_block .links {
  display: flex;
  width: 73%;
}
@media screen and (max-width: 1024px) {
  body.home .links_block .links {
    width: calc(100% + 30px);
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media screen and (max-width: 767px) {
  body.home .links_block .links {
    flex-wrap: wrap;
  }
}
body.home .links_block .links .item {
  width: 50%;
  height: 100%;
  padding: 0 15px;
}
@media screen and (max-width: 767px) {
  body.home .links_block .links .item {
    width: 100%;
    padding: 15px;
  }
}
body.home .links_block .links .inner {
  display: inline-flex;
  align-items: center;
  width: calc(100% - 60px);
  background: rgba(255, 255, 255, 0.02);
  border-left: 4px solid #242424;
  padding: 70px 30px;
  text-decoration: none;
  color: #FFFFFF;
  transition: all 0.2s linear;
}
@media screen and (max-width: 767px) {
  body.home .links_block .links .inner {
    padding: 40px 30px;
  }
}
body.home .links_block .links .inner:hover {
  background: #242424;
}
body.home .links_block .links .title {
  font-family: "Michroma", system-ui;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 24px;
  line-height: 1.09;
}
@media screen and (max-width: 767px) {
  body.home .links_block .links .title {
    font-size: 18px;
  }
}
body.home .links_block .links .button {
  font-family: "Michroma", system-ui;
  font-size: 10px;
  font-weight: 400;
  line-height: 1;
}

body.meet-the-team:before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100vh;
  background-image: url(../images/about-us.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  z-index: 0;
}
body.meet-the-team h1 {
  font-size: 72px;
  font-family: "Michroma", system-ui;
  font-weight: 400;
  color: #FFFFFF;
  max-width: 890px;
  padding-top: 0;
  margin: 0;
  line-height: 1.1;
}
@media screen and (max-width: 1024px) {
  body.meet-the-team h1 {
    font-size: 52px;
    max-width: 645px;
  }
}
@media screen and (max-width: 767px) {
  body.meet-the-team h1 {
    font-size: 48px;
  }
}
@media screen and (max-width: 575px) {
  body.meet-the-team h1 {
    font-size: 32px;
  }
}
body.meet-the-team h1 span {
  color: #9F1B3B;
}
body.meet-the-team .header_block {
  min-height: 100vh;
}
body.meet-the-team .header_block .inner_wrap {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
}
body.meet-the-team .about_block_wrap {
  position: relative;
  background: #FFFFFF;
  padding: 90px 0 187px;
}
@media screen and (max-width: 767px) {
  body.meet-the-team .about_block_wrap {
    padding-bottom: 80px;
  }
}
body.meet-the-team .about_block_wrap:before {
  content: "";
  position: absolute;
  top: 360px;
  left: 0;
  display: block;
  width: 278px;
  height: 530px;
  background-image: url(../images/round-little.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
body.meet-the-team .about_block_wrap:after {
  content: "";
  position: absolute;
  top: 452px;
  right: 0;
  display: block;
  width: 340px;
  height: 842px;
  background-image: url(../images/round-big.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
body.meet-the-team .about_block_wrap .container {
  display: flex;
  gap: 147px;
}
@media screen and (max-width: 1024px) {
  body.meet-the-team .about_block_wrap .container {
    gap: 60px;
  }
}
@media screen and (max-width: 767px) {
  body.meet-the-team .about_block_wrap .container {
    flex-wrap: wrap;
  }
}
body.meet-the-team .about_block_wrap .image_block {
  width: 50%;
}
@media screen and (max-width: 767px) {
  body.meet-the-team .about_block_wrap .image_block {
    width: 100%;
    order: 2;
  }
}
body.meet-the-team .about_block_wrap .image_block img {
  max-width: 100%;
}
body.meet-the-team .about_block_wrap .text_block {
  width: 50%;
  max-width: 449px;
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 300;
  color: #0C0D0D;
  line-height: 1.68;
}
@media screen and (max-width: 767px) {
  body.meet-the-team .about_block_wrap .text_block {
    width: 100%;
    max-width: 100%;
    order: 1;
  }
}
body.meet-the-team .about_block_wrap .text_block p {
  margin: 0 0 60px;
}
body.meet-the-team .about_block_wrap .text_block p:last-child {
  margin: 0;
}
body.meet-the-team .about_block_wrap .text_block .button {
  background-color: #9F1B3B;
  border-color: #9F1B3B;
  border-radius: 500px;
  font-family: "Michroma", system-ui;
  font-size: 10px;
  color: #FFFFFF;
  letter-spacing: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 58px 0 32px;
  height: 50px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.2s linear;
  position: relative;
}
body.meet-the-team .about_block_wrap .text_block .button:hover {
  border-color: #77132b;
  background: #77132b;
}
body.meet-the-team .about_block_wrap .text_block .button:after {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background-image: url(../images/arrow-right.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  right: 5px;
}

body {
  padding: 0;
  margin: 0;
}

.container {
  max-width: 1328px;
  width: calc(100% - 30px);
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

.row {
  margin-left: -15px;
  margin-right: -15px;
  width: calc(100% + 30px);
}

.sitewrap {
  min-height: calc(100vh - 81px);
  overflow: hidden;
}
.sitewrap > * {
  position: relative;
  z-index: 1;
}

input,
select,
textarea {
  outline: none;
}

h1 .item, h2 .item, h3 .item, h4 .item, h5 .item, h6 .item {
  overflow: hidden;
}

/*# sourceMappingURL=styles.css.map */
