@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");
@font-face {
  font-family: "Geometria";
  src: url("fonts/Geometria-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "Gilroy";
  src: url("fonts/Gilroy-Regular.ttf") format("truetype");
}
/* Начертания */
@font-face {
  font-family: "Gilroy";
  font-weight: bold;
  src: url("fonts/Gilroy-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "Gilroy";
  font-style: italic;
  src: url("fonts/Gilroy-Light.ttf") format("truetype");
}
/* Gotham Pro (платный) */
@font-face {
  font-family: "Gotham Pro";
  src: url("../fonts/gothampro.ttf") format("truetype");
}
/* Начертания (платные) */
@font-face {
  font-family: "Gotham Pro";
  font-weight: 600;
  src: url("../fonts/gothampro_medium.ttf") format("truetype");
}
@font-face {
  font-family: "Gotham Pro";
  font-style: italic;
  font-weight: 500;
  src: url("../fonts/gothampro_mediumitalic.ttf") format("truetype");
}
@font-face {
  font-family: "Bebas";
  src: url("../fonts/BebasNeuePro-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Gotham Pro";
  font-weight: 900;
  src: url("../fonts/gothampro_black.ttf") format("truetype");
}
@font-face {
  font-family: "Gotham Pro";
  font-weight: 700;
  src: url("../fonts/gothampro_bold.ttf") format("truetype");
}
@font-face {
  font-family: "Gotham Pro";
  font-weight: 300;
  src: url("../fonts/gothampro_light.ttf") format("truetype");
}
@font-face {
  font-family: "Bebas light";
  src: url("../fonts/BebasNeuePro-Light.ttf") format("truetype");
}
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

input:focus::-webkit-input-placeholder {
  color: transparent;
}

textarea:focus::-webkit-input-placeholder {
  color: transparent;
}

input:focus-visible {
  outline: none;
}

/* Reset and base styles  */
* {
  padding: 0;
  margin: 0;
  border: none;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

:focus,
:active,
a:focus,
a:active {
  outline: none;
}

/* Links */
a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: color 0.3s linear;
  transition: color 0.3s linear;
}

a:hover {
  text-decoration: none;
}

/* Common */
aside, nav, footer, header, section, main {
  display: block;
}

h1, h2, h3, h4, h5, h6, p {
  font-size: inherit;
  font-weight: inherit;
}

ul, ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img, svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */
input, textarea, button, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button, input[type=submit] {
  display: inline-block;
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus, input:active,
button:focus, button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

.buttonOrange {
  margin-left: auto;
  padding: 15px 30px;
  border-radius: 6px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgb(241, 142, 56);
  position: relative;
  overflow: hidden;
}
.buttonOrange--modal {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-transition: 0.38s ease-in-out;
  transition: 0.38s ease-in-out;
}
.buttonOrange--modal::after {
  display: none;
}
.buttonOrange--modal:hover {
  background: #E33224;
}
.buttonOrange span {
  z-index: 1;
}
.buttonOrange::after {
  -webkit-transition: width 0.38s ease-in-out;
  transition: width 0.38s ease-in-out;
  content: "";
  background: #E33224;
  position: absolute;
  right: 0;
  top: 0;
  height: 110%;
  width: 0;
}
.buttonOrange:hover {
  color: #ffffff;
}
.buttonOrange:hover::after {
  width: 100%;
}
.buttonArrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
@media (min-width: 992px) {
  .buttonArrow {
    gap: calc(0.0021551724 * 100vw + 5.8620689655px);
  }
}
@media (min-width: 1920px) {
  .buttonArrow {
    gap: 10px;
  }
}
@media screen and (min-width: 993px) {
  .buttonArrow:hover p {
    -webkit-transform: translateX(-5px);
            transform: translateX(-5px);
    color: rgb(231, 121, 24);
  }
  .buttonArrow:hover span {
    color: rgb(231, 121, 24);
  }
}
.buttonArrow p {
  -webkit-transition: 0.38s ease-in-out;
  transition: 0.38s ease-in-out;
  font-size: 14px;
  font-weight: 400;
  line-height: 13.4px;
}
.buttonArrow span {
  -webkit-transition: color 0.38s ease-in-out;
  transition: color 0.38s ease-in-out;
  margin-top: 4px;
  font-size: 3.5px;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

@media screen and (max-width: 992px) {
  .buttonOrange::after {
    display: none;
  }
}
.title, h2 {
  color: rgb(255, 255, 255);
  font-family: "Bebas";
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0%;
  -webkit-transform-origin: 0;
          transform-origin: 0;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .title, h2 {
    font-size: calc(0 * 100vw + 40px);
  }
}
@media (min-width: 1920px) {
  .title, h2 {
    font-size: 40px;
  }
}
.title--grey, h2--grey {
  color: #2B2A29;
}
.title--top, h2--top {
  margin-top: 30px;
}
@media (min-width: 992px) {
  .title--top, h2--top {
    margin-top: calc(0.0323275862 * 100vw + -2.0689655172px);
  }
}
@media (min-width: 1920px) {
  .title--top, h2--top {
    margin-top: 60px;
  }
}
.title--big, h2--big {
  font-size: 45px;
  font-weight: 700;
}
@media (min-width: 992px) {
  .title--big, h2--big {
    font-size: calc(0.0290948276 * 100vw + 16.1379310345px);
  }
}
@media (min-width: 1920px) {
  .title--big, h2--big {
    font-size: 72px;
  }
}
.title--search, h2--search {
  font-size: 40px;
}
@media (min-width: 992px) {
  .title--search, h2--search {
    font-size: calc(0.0129310345 * 100vw + 27.1724137931px);
  }
}
@media (min-width: 1920px) {
  .title--search, h2--search {
    font-size: 52px;
  }
}
.title--mt60, h2--mt60 {
  margin-top: 30px;
}
@media (min-width: 992px) {
  .title--mt60, h2--mt60 {
    margin-top: calc(0.0323275862 * 100vw + -2.0689655172px);
  }
}
@media (min-width: 1920px) {
  .title--mt60, h2--mt60 {
    margin-top: 60px;
  }
}
.title--bottom, h2--bottom {
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .title--bottom, h2--bottom {
    margin-bottom: calc(0.0323275862 * 100vw + -2.0689655172px);
  }
}
@media (min-width: 1920px) {
  .title--bottom, h2--bottom {
    margin-bottom: 60px;
  }
}

.header {
  -webkit-transition: 0.1s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: 0.1s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: 0.1s ease-in-out, transform 0.3s ease-in-out;
  transition: 0.1s ease-in-out, transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  position: fixed;
  width: 100%;
  z-index: 10;
}
.header--hide {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
.header--open {
  background-color: #2b2a29;
}
.header--page {
  position: static;
  background-color: #2b2a29;
}
.header--page .header__wrapper {
  padding-bottom: unset;
}
.header--grey {
  background-color: #2b2a29;
}
.header__wrapper {
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media (min-width: 992px) {
  .header__wrapper {
    padding-top: calc(0.0107758621 * 100vw + 9.3103448276px);
  }
}
@media (min-width: 1920px) {
  .header__wrapper {
    padding-top: 30px;
  }
}
@media (min-width: 992px) {
  .header__wrapper {
    padding-bottom: calc(0.0107758621 * 100vw + 9.3103448276px);
  }
}
@media (min-width: 1920px) {
  .header__wrapper {
    padding-bottom: 30px;
  }
}
.header__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  -webkit-transition: all 0.38s ease-in-out;
  transition: all 0.38s ease-in-out;
  -ms-flex-preferred-size: fill;
      flex-basis: fill;
}
@media (min-width: 992px) {
  .header__info {
    gap: calc(0.0161637931 * 100vw + -1.0344827586px);
  }
}
@media (min-width: 1920px) {
  .header__info {
    gap: 30px;
  }
}
.header__info--opacity {
  -webkit-box-flex: unset;
      -ms-flex-positive: unset;
          flex-grow: unset;
  overflow: hidden;
}
.header__info--hide {
  -ms-flex-preferred-size: 1px;
      flex-basis: 1px;
  height: 0;
  width: 0;
  opacity: 0;
}
.header__top {
  margin-bottom: 30px;
}
.header__top-box {
  position: relative;
  padding-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 15px;
}
@media (min-width: 992px) {
  .header__top-box {
    padding-bottom: calc(0.0107758621 * 100vw + 9.3103448276px);
  }
}
@media (min-width: 1920px) {
  .header__top-box {
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .header__top-box {
    gap: calc(0.0301724138 * 100vw + -14.9310344828px);
  }
}
@media (min-width: 1920px) {
  .header__top-box {
    gap: 43px;
  }
}
.header__top-box::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.4745098039);
  -webkit-transition: width 0.38s ease-in-out;
  transition: width 0.38s ease-in-out;
}
.header__top-logo {
  width: 160px;
}
@media (min-width: 992px) {
  .header__top-logo {
    width: calc(0.067887931 * 100vw + 92.6551724138px);
  }
}
@media (min-width: 1920px) {
  .header__top-logo {
    width: 223px;
  }
}
.header__link, .header__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  color: #ffffff;
  font-size: 12px;
}
@media (min-width: 992px) {
  .header__link, .header__text {
    gap: calc(0.005387931 * 100vw + -0.3448275862px);
  }
}
@media (min-width: 1920px) {
  .header__link, .header__text {
    gap: 10px;
  }
}
@media (min-width: 992px) {
  .header__link, .header__text {
    font-size: calc(0.0021551724 * 100vw + 9.8620689655px);
  }
}
@media (min-width: 1920px) {
  .header__link, .header__text {
    font-size: 14px;
  }
}
.header__icon {
  color: #f18e38;
  font-size: 16px;
}
@media (min-width: 992px) {
  .header__icon {
    font-size: calc(0.0043103448 * 100vw + 11.724137931px);
  }
}
@media (min-width: 1920px) {
  .header__icon {
    font-size: 20px;
  }
}
.header__bottom {
  -webkit-transition: all 0.38s ease-in-out;
  transition: all 0.38s ease-in-out;
}
.header__bottom-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 20px;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  -webkit-transition: opacity 0.38s ease-in-out;
  transition: opacity 0.38s ease-in-out;
}
.header__mobileBlock {
  display: none;
}
.header__endBlock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 15px;
  -webkit-transition: 0.38s ease-in-out;
  transition: 0.38s ease-in-out;
  width: 175px;
}
@media (min-width: 992px) {
  .header__endBlock {
    gap: calc(0.0161637931 * 100vw + -1.0344827586px);
  }
}
@media (min-width: 1920px) {
  .header__endBlock {
    gap: 30px;
  }
}
@media (min-width: 992px) {
  .header__endBlock {
    width: calc(0.0969827586 * 100vw + 78.7931034483px);
  }
}
@media (min-width: 1920px) {
  .header__endBlock {
    width: 265px;
  }
}
.header__endBlock--open {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.social__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  color: rgba(255, 255, 255, 0.5019607843);
  font-size: 20px;
}
.social__link span {
  font-family: "Gotham Pro";
  -webkit-transition: color 0.38s ease-in-out;
  transition: color 0.38s ease-in-out;
  color: #fff;
  font-size: 14px;
}
.social__link:hover {
  color: rgba(241, 142, 56, 0.4666666667);
}
.social__link:hover span {
  color: #f18e38;
}

@media screen and (max-width: 992px) {
  .header {
    -webkit-transition: 0.38s ease-in-out;
    transition: 0.38s ease-in-out;
  }
  .header__wrapper {
    padding-bottom: 0;
  }
  .header__top {
    border: unset;
    padding: unset;
    margin: unset;
  }
  .header__top-box::after {
    width: 100%;
  }
  .header__text {
    display: none;
  }
  .header__link {
    display: none;
  }
  .header__bottom {
    position: fixed;
    top: 90px;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
    padding-top: 30px;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    background-color: #2b2a29;
    -webkit-transition: opacity 0.38s ease-in-out, visibility 0.38s ease-in-out, z-index 0.38s ease-in-out, -webkit-transform 0.38s ease-in-out;
    transition: opacity 0.38s ease-in-out, visibility 0.38s ease-in-out, z-index 0.38s ease-in-out, -webkit-transform 0.38s ease-in-out;
    transition: transform 0.38s ease-in-out, opacity 0.38s ease-in-out, visibility 0.38s ease-in-out, z-index 0.38s ease-in-out;
    transition: transform 0.38s ease-in-out, opacity 0.38s ease-in-out, visibility 0.38s ease-in-out, z-index 0.38s ease-in-out, -webkit-transform 0.38s ease-in-out;
  }
  .header__bottom--open {
    opacity: 1;
    visibility: visible;
    z-index: 3;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-transition: opacity 0.38s ease-in-out, visibility 0.38s ease-in-out, z-index 0.38s ease-in-out, -webkit-transform 0.38s ease-in-out;
    transition: opacity 0.38s ease-in-out, visibility 0.38s ease-in-out, z-index 0.38s ease-in-out, -webkit-transform 0.38s ease-in-out;
    transition: transform 0.38s ease-in-out, opacity 0.38s ease-in-out, visibility 0.38s ease-in-out, z-index 0.38s ease-in-out;
    transition: transform 0.38s ease-in-out, opacity 0.38s ease-in-out, visibility 0.38s ease-in-out, z-index 0.38s ease-in-out, -webkit-transform 0.38s ease-in-out;
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
  }
  .header__bottom-container {
    display: block;
    width: 100%;
    max-width: 1336px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 992px) and (max-width: 992px) {
  .header__bottom-container {
    max-width: 720px;
  }
}
@media screen and (max-width: 992px) and (max-width: 768px) {
  .header__bottom-container {
    max-width: 540px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 992px) and (max-width: 576px) {
  .header__bottom-container {
    max-width: none;
  }
}
@media screen and (max-width: 992px) {
  .header__mobileBlock {
    display: block;
  }
  .header__mobileBlock-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
  }
  .header__mobileBlock .header__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: #2b2a29;
    font-size: 14px;
  }
  .header__mobileBlock .header__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: #2b2a29;
    font-size: 14px;
  }
  .header__mobileBlock .link {
    margin-bottom: 40px;
  }
  .header__icon {
    margin-right: 10px;
  }
  .header__endBlock {
    display: none;
  }
}
.footer {
  background-color: #2b2a29;
}
.footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-right: 80px;
  padding-bottom: 15px;
}
@media (min-width: 992px) {
  .footer__top {
    padding-right: calc(0.0689655172 * 100vw + 11.5862068966px);
  }
}
@media (min-width: 1920px) {
  .footer__top {
    padding-right: 144px;
  }
}
@media (min-width: 992px) {
  .footer__top {
    padding-bottom: calc(0.0161637931 * 100vw + -1.0344827586px);
  }
}
@media (min-width: 1920px) {
  .footer__top {
    padding-bottom: 30px;
  }
}
.footer__top img {
  width: 200px;
  height: 65px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 992px) {
  .footer__top img {
    width: calc(0.0247844828 * 100vw + 175.4137931034px);
  }
}
@media (min-width: 1920px) {
  .footer__top img {
    width: 223px;
  }
}
@media (min-width: 992px) {
  .footer__top img {
    height: calc(0.005387931 * 100vw + 59.6551724138px);
  }
}
@media (min-width: 1920px) {
  .footer__top img {
    height: 70px;
  }
}
.footer__top-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
}
.footer__top-text > p {
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
}
.footer__top-text > p span {
  margin-left: 10px;
  font-size: 16px;
  font-weight: 300;
  line-height: 20px;
}
.footer__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100vh;
  padding-top: 100px;
}
@media (min-width: 992px) {
  .footer__wrapper {
    padding-top: calc(0.0215517241 * 100vw + 78.6206896552px);
  }
}
@media (min-width: 1920px) {
  .footer__wrapper {
    padding-top: 120px;
  }
}
.footer__logo {
  width: 200px;
  height: 90px;
  -o-object-fit: contain;
     object-fit: contain;
  -ms-flex-item-align: center;
      align-self: center;
  margin-bottom: auto;
}
@media (min-width: 992px) {
  .footer__logo {
    width: calc(0.1745689655 * 100vw + 26.8275862069px);
  }
}
@media (min-width: 1920px) {
  .footer__logo {
    width: 362px;
  }
}
@media (min-width: 992px) {
  .footer__logo {
    height: calc(0.0247844828 * 100vw + 65.4137931034px);
  }
}
@media (min-width: 1920px) {
  .footer__logo {
    height: 113px;
  }
}
.footer__content {
  border-top: 1px solid rgba(255, 255, 255, 0.2509803922);
  padding-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media (min-width: 992px) {
  .footer__content {
    padding-top: calc(0.0323275862 * 100vw + -2.0689655172px);
  }
}
@media (min-width: 1920px) {
  .footer__content {
    padding-top: 60px;
  }
}
.footer__content-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media (min-width: 992px) {
  .footer__content-item {
    gap: calc(0.0215517241 * 100vw + -1.3793103448px);
  }
}
@media (min-width: 1920px) {
  .footer__content-item {
    gap: 40px;
  }
}
.footer__content-item--mobile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
}
.footer__content-item--mobile > p {
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
}
.footer__content-item--mobile > p span {
  font-size: 16px;
  font-weight: 300;
  line-height: 20px;
  color: #fff;
}
.footer__content-title {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}
.footer__content-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
.footer__content-box a {
  font-size: 14px;
  font-weight: 400;
  line-height: 17.5px;
  color: #aaaaa9;
  -webkit-transition: color 0.38s ease-in-out;
  transition: color 0.38s ease-in-out;
}
@media screen and (min-width: 993px) {
  .footer__content-box a:hover {
    color: #f18e38;
  }
}
.footer__contacts-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 17.5px;
  text-align: left;
}
.footer__contacts-item:not(.footer__contacts-item--mobile) span {
  color: #f18e38;
  font-size: 20px;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.footer__contacts-item--mobile {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
}
.footer__contacts-item--mobile > p {
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
}
.footer__contacts-item--mobile > p span {
  font-size: 16px;
  font-weight: 300;
  line-height: 20px;
}
.footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.2509803922);
  margin-top: auto;
  padding-top: 30px;
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .footer__bottom {
    padding-top: calc(0.0355603448 * 100vw + -5.275862069px);
  }
}
@media (min-width: 1920px) {
  .footer__bottom {
    padding-top: 63px;
  }
}
@media (min-width: 992px) {
  .footer__bottom {
    margin-bottom: calc(-0.0107758621 * 100vw + 50.6896551724px);
  }
}
@media (min-width: 1920px) {
  .footer__bottom {
    margin-bottom: 30px;
  }
}
.footer__bottom-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 400;
  line-height: 17.5px;
  text-align: left;
  color: #aaaaa9;
}
.footer__bottom-item img {
  width: 53px;
  height: 42px;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer__bottom-item:nth-child(2) {
  color: #ac692f;
}
.footer--page .footer__wrapper {
  height: unset;
}
.footer--page .footer__content {
  padding-top: 30px;
}
.footer--page .footer__contacts-item--mobile {
  display: none;
}
.footer--page .footer__bottom {
  padding-top: 30px;
  margin-top: 30px;
}

@media screen and (max-width: 1200px), screen and (max-height: 900px) {
  .footer--page {
    padding-top: 60px;
  }
}
@media screen and (max-width: 1200px) and (min-width: 992px), screen and (max-height: 900px) and (min-width: 992px) {
  .footer--page {
    padding-top: calc(-0.0215517241 * 100vw + 81.3793103448px);
  }
}
@media screen and (max-width: 1200px) and (min-width: 1920px), screen and (max-height: 900px) and (min-width: 1920px) {
  .footer--page {
    padding-top: 40px;
  }
}
@media screen and (max-width: 1200px), screen and (max-height: 900px) {
  .footer.section {
    padding-bottom: 0;
  }
  .footer__wrapper {
    padding-top: 0;
    height: auto;
  }
  .footer__logo {
    margin-bottom: 30px;
  }
  .footer__bottom {
    margin-top: 30px;
  }
}
@media screen and (min-width: 993px) {
  .footer .link {
    display: none;
  }
}
@media screen and (max-width: 992px) {
  .footer--page .footer__contacts-item--mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .footer--page .footer__top {
    padding-bottom: 0px;
  }
  .footer--page .footer__top > img {
    width: 190px;
    height: 60px;
  }
  .footer--page .footer__top-text {
    display: none;
  }
  .footer__logo {
    -ms-flex-item-align: start;
        align-self: start;
    width: 190px;
    height: 60px;
  }
  .footer__content {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
  }
  .footer__contacts-item--mobile {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 10px;
  }
  .footer__contacts-item:nth-child(3) {
    font-size: 20px;
    font-weight: 600;
    line-height: 25px;
  }
  .footer__contacts-item:nth-child(3) span {
    -ms-flex-item-align: center;
        align-self: center;
  }
  .footer__contacts-item:last-child span {
    color: rgba(255, 255, 255, 0.5019607843);
  }
  .footer__bottom {
    margin-bottom: 40px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
  .footer__bottom-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .footer__content {
    grid-template-columns: 1fr;
  }
}
.menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  opacity: 1;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
@media (min-width: 992px) {
  .menu {
    gap: calc(0.0344827586 * 100vw + -4.2068965517px);
  }
}
@media (min-width: 1920px) {
  .menu {
    gap: 62px;
  }
}
.menu--home .menu__link-icon {
  color: #fff;
}
.menu--close {
  display: none;
}
.menu--opacity {
  opacity: 0;
}
.menu__item {
  position: relative;
}
.menu__item:hover .menu__submenu:not(.menu__submenu--level2) {
  opacity: 1;
  visibility: visible;
}
.menu__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 13px;
  font-size: 14px;
  color: #fff;
  -webkit-transition: color 0.38s ease-in-out;
  transition: color 0.38s ease-in-out;
}
@media (min-width: 992px) {
  .menu__link {
    font-size: calc(0.0021551724 * 100vw + 11.8620689655px);
  }
}
@media (min-width: 1920px) {
  .menu__link {
    font-size: 16px;
  }
}
.menu__link--close {
  cursor: pointer;
}
.menu__link--mobile {
  display: none;
}
.menu__link--mobile .menu__link-icon::before {
  display: block;
  rotate: 180deg;
}
.menu__link:hover {
  color: #f18e38;
}
.menu__link-icon {
  color: #aba7a2;
  font-size: 8px;
}
@media (min-width: 992px) {
  .menu__link-icon {
    font-size: calc(0 * 100vw + 8px);
  }
}
@media (min-width: 1920px) {
  .menu__link-icon {
    font-size: 8px;
  }
}
.menu__link-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 5px;
}
@media (min-width: 992px) {
  .menu__link-container {
    gap: calc(0.005387931 * 100vw + -0.3448275862px);
  }
}
@media (min-width: 1920px) {
  .menu__link-container {
    gap: 10px;
  }
}
.menu__submenu {
  position: absolute;
  top: 45px;
  background-color: #2b2a29;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2509803922);
  opacity: 0;
  max-width: 290px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  visibility: hidden;
  -webkit-transition: all 0.38s ease-in-out;
  transition: all 0.38s ease-in-out;
}
@media (min-width: 992px) {
  .menu__submenu {
    padding: calc(0 * 100vw + 20px);
  }
}
@media (min-width: 1920px) {
  .menu__submenu {
    padding: 20px;
  }
}
.menu__submenu::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 0;
  height: 30px;
  width: 100%;
  background-color: #fff;
  opacity: 0;
}
.menu__submenu-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
@media (min-width: 992px) {
  .menu__submenu-container {
    gap: calc(0.005387931 * 100vw + 9.6551724138px);
  }
}
@media (min-width: 1920px) {
  .menu__submenu-container {
    gap: 20px;
  }
}
.menu__submenu-item {
  position: relative;
}
.menu__submenu-item:hover > .menu__submenu--level2 {
  opacity: 1;
  visibility: visible;
}
.menu__submenu--level2 {
  left: calc(100% + 20px);
  top: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.38s ease-in-out;
  transition: all 0.38s ease-in-out;
}
.menu__submenu--level2:first-of-type {
  top: -21px;
}
.menu__submenu-link {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%; /* 22.4px */
  -webkit-transition: color 0.38s ease-in-out;
  transition: color 0.38s ease-in-out;
  gap: 5px;
}
@media (min-width: 992px) {
  .menu__submenu-link {
    font-size: calc(0.0021551724 * 100vw + 11.8620689655px);
  }
}
@media (min-width: 1920px) {
  .menu__submenu-link {
    font-size: 16px;
  }
}
.menu__submenu-link:hover {
  color: #f18e38;
}
.menu__submenu-link:hover span::before {
  color: #f18e38;
}
.menu__submenu-link span::before {
  display: block;
  rotate: -90deg;
  margin-top: 15px;
  -webkit-transition: color 0.38s ease-in-out;
  transition: color 0.38s ease-in-out;
}
.menu__submenu-link--desktop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.menu__submenu-link--mobile {
  display: none;
}

@media screen and (max-width: 992px) {
  .menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(43, 42, 41, 0.25);
    margin-bottom: 30px;
  }
  .menu__item {
    width: 100%;
    position: static;
  }
  .menu__link {
    font-size: 18px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .menu__link--white {
    color: #2b2a29;
  }
  .menu__link:hover {
    color: #fff;
  }
  .menu__link-icon {
    display: inline-block;
    margin-left: 10px;
    -webkit-transform: rotateZ(270deg);
            transform: rotateZ(270deg);
  }
  .menu__link--desktop {
    display: none;
  }
  .menu__link-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    gap: 5px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .menu__link--close span {
    -webkit-transform: rotateZ(-90deg);
            transform: rotateZ(-90deg);
    margin: 0;
  }
  .menu__submenu {
    padding-top: 30px;
    left: -100%;
    width: 100%;
    height: 100%;
    max-width: unset;
    top: 0px;
    border: none;
    display: block;
  }
  .menu__submenu--open {
    visibility: visible;
    opacity: 1;
    z-index: 1;
    left: 0;
  }
  .menu__submenu-container {
    width: 100%;
    max-width: 1336px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
    gap: 30px;
  }
}
@media screen and (max-width: 992px) and (max-width: 992px) {
  .menu__submenu-container {
    max-width: 720px;
  }
}
@media screen and (max-width: 992px) and (max-width: 768px) {
  .menu__submenu-container {
    max-width: 540px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 992px) and (max-width: 576px) {
  .menu__submenu-container {
    max-width: none;
  }
}
@media screen and (max-width: 992px) {
  .menu__submenu-item {
    position: unset;
  }
  .menu__submenu-item:hover > .menu__submenu--level2 {
    opacity: 0;
    visibility: hidden;
  }
  .menu__submenu-link {
    font-size: 18px;
  }
  .menu__submenu-link--desktop {
    display: none;
  }
  .menu__submenu-link--mobile {
    display: block;
  }
  .menu__submenu-link:hover {
    color: #ffffff;
  }
}
.burger {
  display: none;
}

@media screen and (max-width: 992px) {
  .burger {
    position: relative;
    display: block;
    top: 0;
    width: 24px;
    height: 20px;
    cursor: pointer;
    z-index: 5;
    border-radius: 50%;
    -webkit-transition: 0.38s;
    transition: 0.38s;
  }
  .burger__line, .burger__line:before, .burger__line:after {
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #fff;
    -webkit-transition: 0.38s;
    transition: 0.38s;
    border-radius: 25px;
  }
  .burger__line {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .burger__line::before {
    content: "";
    top: -8px;
  }
  .burger__line::after {
    content: "";
    top: 8px;
  }
  .burger--open .burger__line {
    background-color: transparent;
  }
  .burger--open .burger__line::before {
    background-color: rgb(255, 255, 255);
    top: 0;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .burger--open .burger__line::after {
    background-color: rgb(255, 255, 255);
    top: 0;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}
.searchForm {
  width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: width 0.38s ease-in-out;
  transition: width 0.38s ease-in-out;
  position: relative;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.searchForm--mobile {
  width: 100%;
  display: none;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(43, 42, 41, 0.25);
  padding-bottom: 12px;
}
.searchForm--mobile .searchForm__input {
  width: 97%;
}
.searchForm--white .searchForm__wrapper--open {
  border-bottom: 1px solid #FFFFFF;
}
.searchForm--white .searchForm__btn {
  background-image: url("../../assets/images/icons/search-Icon-white.svg");
}
.searchForm--white .searchForm__input::-webkit-input-placeholder {
  color: #FFFFFF;
}
.searchForm--white .searchForm__input::-moz-placeholder {
  color: #FFFFFF;
}
.searchForm--white .searchForm__input:-ms-input-placeholder {
  color: #FFFFFF;
}
.searchForm--white .searchForm__input::-ms-input-placeholder {
  color: #FFFFFF;
}
.searchForm--white .searchForm__input::placeholder {
  color: #FFFFFF;
}
.searchForm--white .searchForm__btnClose span {
  background: #FFFFFF;
}
.searchForm__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: width 0.38s ease-in-out;
  transition: width 0.38s ease-in-out;
  width: 100%;
}
.searchForm__btn {
  background-image: url("../img/icon/search-Icon.svg");
  background-repeat: no-repeat;
  background-size: cover;
  width: 15px;
  height: 15px;
  background-color: transparent;
  cursor: pointer;
  position: absolute;
  left: -13px;
  -webkit-transition: 0.38s ease-in-out;
  transition: 0.38s ease-in-out;
}
@media (min-width: 992px) {
  .searchForm__btn {
    width: calc(0.005387931 * 100vw + 9.6551724138px);
  }
}
@media (min-width: 1920px) {
  .searchForm__btn {
    width: 20px;
  }
}
@media (min-width: 992px) {
  .searchForm__btn {
    height: calc(0.005387931 * 100vw + 9.6551724138px);
  }
}
@media (min-width: 1920px) {
  .searchForm__btn {
    height: 20px;
  }
}
@media (min-width: 992px) {
  .searchForm__btn {
    left: calc(-0.0075431034 * 100vw + -5.5172413793px);
  }
}
@media (min-width: 1920px) {
  .searchForm__btn {
    left: -20px;
  }
}
.searchForm__btn--open {
  left: 15px;
}
.searchForm__input {
  font-family: "Gotham Pro";
  background: transparent;
  width: 0%;
  opacity: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  line-height: normal;
  -webkit-transition: all 0.38s ease-in-out;
  transition: all 0.38s ease-in-out;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  height: 100%;
  padding: 0;
  opacity: 1;
  padding: 0 50px;
  width: 100%;
  opacity: 0;
}
.searchForm__input::-webkit-input-placeholder {
  color: rgb(255, 255, 255);
}
.searchForm__input::-moz-placeholder {
  color: rgb(255, 255, 255);
}
.searchForm__input:-ms-input-placeholder {
  color: rgb(255, 255, 255);
}
.searchForm__input::-ms-input-placeholder {
  color: rgb(255, 255, 255);
}
.searchForm__input::placeholder {
  color: rgb(255, 255, 255);
}
.searchForm__input:focus {
  outline: none;
}
.searchForm__input--open {
  opacity: 1;
}
.searchForm__btnClose {
  cursor: pointer;
  opacity: 0;
  width: 20px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  -webkit-transition: opacity 0.38s ease-in-out;
  transition: opacity 0.38s ease-in-out;
  -ms-flex-item-align: start;
      align-self: flex-start;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.searchForm__btnClose--open {
  opacity: 1;
}
.searchForm__btnClose span {
  display: block;
  background: #FFF;
  position: absolute;
  height: 100%;
  width: 1px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.searchForm__btnClose span:last-child {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

@media screen and (max-width: 992px) {
  .searchForm {
    display: none;
  }
  .searchForm--mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.btn,
.link {
  font-size: 16px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 30px;
  -moz-column-gap: 20px;
  -webkit-column-gap: 20px;
          column-gap: 20px;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 6px;
  padding-right: 10px;
  color: #fff;
  line-height: 140%;
  border-bottom: 1px solid rgba(255, 255, 255, 0);
  overflow: hidden;
  border: none;
  cursor: pointer;
}
@media (min-width: 992px) {
  .btn,
  .link {
    font-size: calc(0 * 100vw + 16px);
  }
}
@media (min-width: 1920px) {
  .btn,
  .link {
    font-size: 16px;
  }
}
.btn span,
.link span {
  z-index: 1;
}
.btn__icon,
.link__icon {
  -webkit-transition: color 0.38s ease-in-out;
  transition: color 0.38s ease-in-out;
}
.btn__header,
.link__header {
  padding-left: 10px;
  padding-top: 7px;
  padding-bottom: 7px;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  font-size: 12px;
  margin-left: auto;
  white-space: nowrap;
}
@media (min-width: 992px) {
  .btn__header,
  .link__header {
    padding-left: calc(0.0215517241 * 100vw + -11.3793103448px);
  }
}
@media (min-width: 1920px) {
  .btn__header,
  .link__header {
    padding-left: 30px;
  }
}
@media (min-width: 992px) {
  .btn__header,
  .link__header {
    padding-top: calc(0.0032327586 * 100vw + 3.7931034483px);
  }
}
@media (min-width: 1920px) {
  .btn__header,
  .link__header {
    padding-top: 10px;
  }
}
@media (min-width: 992px) {
  .btn__header,
  .link__header {
    padding-bottom: calc(0.0032327586 * 100vw + 3.7931034483px);
  }
}
@media (min-width: 1920px) {
  .btn__header,
  .link__header {
    padding-bottom: 10px;
  }
}
@media (min-width: 992px) {
  .btn__header,
  .link__header {
    -webkit-column-gap: calc(0.0161637931 * 100vw + -11.0344827586px);
       -moz-column-gap: calc(0.0161637931 * 100vw + -11.0344827586px);
            column-gap: calc(0.0161637931 * 100vw + -11.0344827586px);
  }
}
@media (min-width: 1920px) {
  .btn__header,
  .link__header {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
}
@media (min-width: 992px) {
  .btn__header,
  .link__header {
    font-size: calc(0.0043103448 * 100vw + 7.724137931px);
  }
}
@media (min-width: 1920px) {
  .btn__header,
  .link__header {
    font-size: 16px;
  }
}
.btn[disabled], .btn--gray[disabled],
.link[disabled],
.link--gray[disabled] {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}
.btn::before,
.link::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  pointer-events: none;
  -webkit-transition: width 0.9s cubic-bezier(0, -0.01, 0, 0.99);
  transition: width 0.9s cubic-bezier(0, -0.01, 0, 0.99);
  background-color: #F18E38;
}
.btn::after,
.link::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 5%;
  background-color: #E33224;
  pointer-events: none;
  -webkit-transition: width 0.5s cubic-bezier(0, -0.01, 0, 0.99), opacity 0.28s ease-in-out;
  transition: width 0.5s cubic-bezier(0, -0.01, 0, 0.99), opacity 0.28s ease-in-out;
  opacity: 0;
}
.btn:hover,
.link:hover {
  color: #FFF;
}
.btn:hover::after,
.link:hover::after {
  opacity: 0.97;
  width: 100%;
}
.btn:hover .btn__icon,
.btn:hover .link__icon,
.link:hover .btn__icon,
.link:hover .link__icon {
  color: #FFF;
}
.btn--red,
.link--red {
  background-color: #E33224;
}
.btn--red::before,
.link--red::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  pointer-events: none;
  -webkit-transition: width 0.9s cubic-bezier(0, -0.01, 0, 0.99);
  transition: width 0.9s cubic-bezier(0, -0.01, 0, 0.99);
  background-color: #E33224;
}
.btn--red .link__icon::before,
.link--red .link__icon::before {
  font-size: 10px;
  rotate: -90deg;
}
.btn--red::after,
.link--red::after {
  background-color: #F18E38;
}
.btn--red:hover,
.link--red:hover {
  color: #FFF;
}
.btn--red:hover .btn__icon,
.btn--red:hover .link__icon,
.link--red:hover .btn__icon,
.link--red:hover .link__icon {
  color: #FFF;
}
.btn--grey,
.link--grey {
  background-color: #323130;
  font-weight: 600;
}
.btn--grey::before,
.link--grey::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  pointer-events: none;
  -webkit-transition: width 0.9s cubic-bezier(0, -0.01, 0, 0.99);
  transition: width 0.9s cubic-bezier(0, -0.01, 0, 0.99);
  background-color: rgba(255, 255, 255, 0.0823529412);
}
.btn--grey::after,
.link--grey::after {
  background-color: #F18E38;
}
.btn--grey:hover,
.link--grey:hover {
  color: #FFF;
}
.btn--grey:hover .btn__icon,
.btn--grey:hover .link__icon,
.link--grey:hover .btn__icon,
.link--grey:hover .link__icon {
  color: #FFF;
}
.btn--orange,
.link--orange {
  -webkit-transition: 0.38s ease-in-out;
  transition: 0.38s ease-in-out;
  background-color: #F18E38;
}
.btn--orange::before,
.link--orange::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  pointer-events: none;
  -webkit-transition: width 0.9s cubic-bezier(0, -0.01, 0, 0.99);
  transition: width 0.9s cubic-bezier(0, -0.01, 0, 0.99);
  background-color: #F18E38;
}
.btn--orange::after,
.link--orange::after {
  background-color: #E33224;
}
.btn--orange .link__icon::before,
.link--orange .link__icon::before {
  font-size: 10px;
  rotate: -90deg;
}
.btn--orange:hover,
.link--orange:hover {
  color: #FFF;
}
.btn--orange:hover .btn__icon,
.btn--orange:hover .link__icon,
.link--orange:hover .btn__icon,
.link--orange:hover .link__icon {
  color: #FFF;
}
.btn__icon, .btn__text,
.link__icon,
.link__text {
  position: relative;
  z-index: 1;
}
.btn__icon,
.link__icon {
  font-size: 20px;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
}
.btn__icon::after,
.link__icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  -webkit-transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  border-radius: 3px;
}
.btn__icon-header,
.link__icon-header {
  height: 30px;
  width: 30px;
}
@media (min-width: 992px) {
  .btn__icon-header,
  .link__icon-header {
    height: calc(0.0107758621 * 100vw + 19.3103448276px);
  }
}
@media (min-width: 1920px) {
  .btn__icon-header,
  .link__icon-header {
    height: 40px;
  }
}
@media (min-width: 992px) {
  .btn__icon-header,
  .link__icon-header {
    width: calc(0.0107758621 * 100vw + 19.3103448276px);
  }
}
@media (min-width: 1920px) {
  .btn__icon-header,
  .link__icon-header {
    width: 40px;
  }
}

/* MEDIA */
@media (max-width: 992px) {
  .btn:hover, .link:hover {
    color: #FFF;
  }
  .btn:hover::after, .link:hover::after {
    content: none;
  }
  .btn:hover:before, .link:hover:before {
    width: 100%;
  }
  .btn:hover .link__icon, .link:hover .link__icon {
    color: #FFF;
  }
  .btn--alt:hover .link__icon, .btn--alt:hover .link__text, .link--alt:hover .link__icon, .link--alt:hover .link__text {
    color: #fff;
  }
  .btn--red:hover, .link--red:hover {
    color: #FFF;
  }
  .btn--red:hover .btn__icon,
  .btn--red:hover .link__icon, .link--red:hover .btn__icon,
  .link--red:hover .link__icon {
    color: #FFF;
  }
  .btn--red:hover .btn__icon::after,
  .btn--red:hover .link__icon::after, .link--red:hover .btn__icon::after,
  .link--red:hover .link__icon::after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    -webkit-transition: opacity 0.3s ease-in-out 0s, -webkit-transform 0.3s ease-in-out 0s;
    transition: opacity 0.3s ease-in-out 0s, -webkit-transform 0.3s ease-in-out 0s;
    transition: transform 0.3s ease-in-out 0s, opacity 0.3s ease-in-out 0s;
    transition: transform 0.3s ease-in-out 0s, opacity 0.3s ease-in-out 0s, -webkit-transform 0.3s ease-in-out 0s;
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
  .btn--grey:hover, .link--grey:hover {
    color: #FFF;
  }
  .btn--grey:hover .btn__icon,
  .btn--grey:hover .link__icon, .link--grey:hover .btn__icon,
  .link--grey:hover .link__icon {
    color: #FFF;
  }
  .btn--grey:hover .btn__icon::after,
  .btn--grey:hover .link__icon::after, .link--grey:hover .btn__icon::after,
  .link--grey:hover .link__icon::after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    -webkit-transition: opacity 0.3s ease-in-out 0s, -webkit-transform 0.3s ease-in-out 0s;
    transition: opacity 0.3s ease-in-out 0s, -webkit-transform 0.3s ease-in-out 0s;
    transition: transform 0.3s ease-in-out 0s, opacity 0.3s ease-in-out 0s;
    transition: transform 0.3s ease-in-out 0s, opacity 0.3s ease-in-out 0s, -webkit-transform 0.3s ease-in-out 0s;
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
  .btn--orange:hover, .link--orange:hover {
    color: #FFF;
  }
  .btn--orange:hover .btn__icon,
  .btn--orange:hover .link__icon, .link--orange:hover .btn__icon,
  .link--orange:hover .link__icon {
    color: #FFF;
  }
  .btn--orange:hover .btn__icon::after,
  .btn--orange:hover .link__icon::after, .link--orange:hover .btn__icon::after,
  .link--orange:hover .link__icon::after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    -webkit-transition: opacity 0.3s ease-in-out 0s, -webkit-transform 0.3s ease-in-out 0s;
    transition: opacity 0.3s ease-in-out 0s, -webkit-transform 0.3s ease-in-out 0s;
    transition: transform 0.3s ease-in-out 0s, opacity 0.3s ease-in-out 0s;
    transition: transform 0.3s ease-in-out 0s, opacity 0.3s ease-in-out 0s, -webkit-transform 0.3s ease-in-out 0s;
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
  .btn--gray:not([disabled]):hover {
    border: 1px solid rgb(149, 149, 148);
    color: #959594;
  }
  .btn--gray:not([disabled]):hover::after {
    content: none;
  }
}
@media (max-width: 768px) {
  .forms .link--orange {
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.main, body {
  background-color: #2B2A29;
}

#fp-nav.fp-right {
  right: 5px;
  top: 54%;
}
@media (min-width: 992px) {
  #fp-nav.fp-right {
    right: calc(0.0592672414 * 100vw + -53.7931034483px);
  }
}
@media (min-width: 1920px) {
  #fp-nav.fp-right {
    right: 60px;
  }
}

#fp-nav ul, .fp-slidesNav ul {
  width: 30px !important;
  margin: 0 !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
@media (min-width: 992px) {
  #fp-nav ul, .fp-slidesNav ul {
    gap: calc(0.0161637931 * 100vw + -1.0344827586px);
  }
}
@media (min-width: 1920px) {
  #fp-nav ul, .fp-slidesNav ul {
    gap: 30px;
  }
}

#fp-nav li, .fp-slidesNav li {
  width: 30px !important;
  margin: 0 !important;
}

#fp-nav ul li:hover a span, .fp-slidesNav ul li:hover a span {
  height: 1px;
  width: 15px;
}

#fp-nav ul li a span, .fp-slidesNav ul li a span {
  border: none;
  height: 1px;
  width: 15px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.1450980392);
  right: -10px !important;
}

#fp-nav ul li a.active span, #fp-nav ul li:hover a.active span, .fp-slidesNav ul li a.active span, .fp-slidesNav ul li:hover a.active span {
  width: 30px;
  height: 1px;
  background: #FFF;
  border-radius: 0;
  left: 5px;
}
#fp-nav ul li a.active span #fp-nav ul li:hover a span, #fp-nav ul li a.active span .fp-slidesNav ul li:hover a span, #fp-nav ul li:hover a.active span #fp-nav ul li:hover a span, #fp-nav ul li:hover a.active span .fp-slidesNav ul li:hover a span, .fp-slidesNav ul li a.active span #fp-nav ul li:hover a span, .fp-slidesNav ul li a.active span .fp-slidesNav ul li:hover a span, .fp-slidesNav ul li:hover a.active span #fp-nav ul li:hover a span, .fp-slidesNav ul li:hover a.active span .fp-slidesNav ul li:hover a span {
  height: 4px;
  width: 30px !important;
}

#fp-nav ul li .fp-tooltip.fp-right {
  right: 40px;
  font-size: 14px;
  font-family: "Gotham Pro";
  top: -6px;
}
@media (min-width: 992px) {
  #fp-nav ul li .fp-tooltip.fp-right {
    right: calc(0.0215517241 * 100vw + 18.6206896552px);
  }
}
@media (min-width: 1920px) {
  #fp-nav ul li .fp-tooltip.fp-right {
    right: 60px;
  }
}
@media (min-width: 992px) {
  #fp-nav ul li .fp-tooltip.fp-right {
    font-size: calc(0.0021551724 * 100vw + 11.8620689655px);
  }
}
@media (min-width: 1920px) {
  #fp-nav ul li .fp-tooltip.fp-right {
    font-size: 16px;
  }
}

.fp-warning, .fp-watermark {
  display: none !important;
}

@media screen and (max-width: 768px) {
  #fp-nav.fp-right {
    display: none;
  }
}
.firstSect {
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
}
.firstSect--page {
  background: unset;
  position: relative;
  height: 72vh;
  min-height: 550px;
}
.firstSect--page .firstSect__wrapper {
  margin-top: 150px;
}
@media (min-width: 992px) {
  .firstSect--page .firstSect__wrapper {
    margin-top: calc(0.1637931034 * 100vw + -12.4827586207px);
  }
}
@media (min-width: 1920px) {
  .firstSect--page .firstSect__wrapper {
    margin-top: 302px;
  }
}
.firstSect--page .blog__bg--firstSect {
  top: -150px;
  height: 100vh;
  min-height: 800px;
  z-index: 0;
}
@media (min-width: 992px) {
  .firstSect--page .blog__bg--firstSect {
    top: calc(-0.1637931034 * 100vw + 12.4827586207px);
  }
}
@media (min-width: 1920px) {
  .firstSect--page .blog__bg--firstSect {
    top: -302px;
  }
}
.firstSect__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  margin-top: 40px;
}
@media (min-width: 992px) {
  .firstSect__wrapper {
    margin-top: calc(0.1185344828 * 100vw + -77.5862068966px);
  }
}
@media (min-width: 1920px) {
  .firstSect__wrapper {
    margin-top: 150px;
  }
}
.firstSect__num {
  width: 15%;
}
.firstSect__num p {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.5)), to(rgba(37, 37, 37, 0.5)));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(37, 37, 37, 0.5));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-family: "Bebas light";
  font-weight: 100;
  font-variant-numeric: proportional-nums;
  font-size: 100px;
  font-weight: 300;
  line-height: 100px;
  margin-top: -5px;
  letter-spacing: 0%;
  text-align: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 11px;
}
@media (min-width: 992px) {
  .firstSect__num p {
    font-size: calc(0.0301724138 * 100vw + 70.0689655172px);
  }
}
@media (min-width: 1920px) {
  .firstSect__num p {
    font-size: 128px;
  }
}
.firstSect__num p::after {
  content: "";
  width: 68px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1568627451);
  margin-top: 10px;
  margin-right: 15px;
}
.firstSect__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  width: 100%;
}
@media (min-width: 992px) {
  .firstSect__content {
    gap: calc(0 * 100vw + 30px);
  }
}
@media (min-width: 1920px) {
  .firstSect__content {
    gap: 30px;
  }
}
.firstSect__content-name {
  font-size: 14px;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: 0%;
  text-align: left;
}
@media (min-width: 992px) {
  .firstSect__content-name {
    font-size: calc(0.0021551724 * 100vw + 11.8620689655px);
  }
}
@media (min-width: 1920px) {
  .firstSect__content-name {
    font-size: 16px;
  }
}
.firstSect__content h1 {
  color: rgb(255, 255, 255);
  font-family: "Bebas";
  font-size: 64px;
  font-weight: 800;
  font-stretch: condensed;
  line-height: 62px;
  letter-spacing: 0%;
  text-align: left;
  width: 490px;
  -webkit-transform-origin: 0;
          transform-origin: 0;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  -webkit-transform: scale(1.02, 1);
          transform: scale(1.02, 1);
}
@media (min-width: 992px) {
  .firstSect__content h1 {
    font-size: calc(0.0086206897 * 100vw + 55.4482758621px);
  }
}
@media (min-width: 1920px) {
  .firstSect__content h1 {
    font-size: 72px;
  }
}
@media (min-width: 992px) {
  .firstSect__content h1 {
    line-height: calc(0.0107758621 * 100vw + 51.3103448276px);
  }
}
@media (min-width: 1920px) {
  .firstSect__content h1 {
    line-height: 72px;
  }
}
@media (min-width: 992px) {
  .firstSect__content h1 {
    width: calc(0.0323275862 * 100vw + 457.9310344828px);
  }
}
@media (min-width: 1920px) {
  .firstSect__content h1 {
    width: 520px;
  }
}
.firstSect__content-subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: left;
  margin-bottom: 7px;
  width: 50%;
}
@media (min-width: 992px) {
  .firstSect__content-subtitle {
    font-size: calc(0.0043103448 * 100vw + 11.724137931px);
  }
}
@media (min-width: 1920px) {
  .firstSect__content-subtitle {
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  .firstSect__content-subtitle {
    margin-bottom: calc(0.0107758621 * 100vw + -3.6896551724px);
  }
}
@media (min-width: 1920px) {
  .firstSect__content-subtitle {
    margin-bottom: 17px;
  }
}
.firstSect__content-subtitle--w35 {
  width: 35%;
}
.firstSect__banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  gap: 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  -webkit-box-shadow: 0px 20px 40px 0px rgba(30, 34, 36, 0.25);
          box-shadow: 0px 20px 40px 0px rgba(30, 34, 36, 0.25);
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  background: rgba(43, 42, 41, 0.4);
  padding-top: 20px;
  padding-bottom: 20px;
  padding-right: 20px;
  padding-left: 20px;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}
@media (min-width: 992px) {
  .firstSect__banner {
    padding-top: calc(0.0215517241 * 100vw + -1.3793103448px);
  }
}
@media (min-width: 1920px) {
  .firstSect__banner {
    padding-top: 40px;
  }
}
@media (min-width: 992px) {
  .firstSect__banner {
    padding-bottom: calc(0.0215517241 * 100vw + -1.3793103448px);
  }
}
@media (min-width: 1920px) {
  .firstSect__banner {
    padding-bottom: 40px;
  }
}
@media (min-width: 992px) {
  .firstSect__banner {
    padding-right: calc(0.0215517241 * 100vw + -1.3793103448px);
  }
}
@media (min-width: 1920px) {
  .firstSect__banner {
    padding-right: 40px;
  }
}
@media (min-width: 992px) {
  .firstSect__banner {
    padding-left: calc(0.0215517241 * 100vw + -1.3793103448px);
  }
}
@media (min-width: 1920px) {
  .firstSect__banner {
    padding-left: 40px;
  }
}
.firstSect__banner--mt30 {
  margin-top: 10px;
}
.firstSect__banner-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-transform: uppercase;
  -webkit-transform-origin: 0;
          transform-origin: 0;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  -webkit-transform: scale(1.02, 1);
          transform: scale(1.02, 1);
}
.firstSect__banner-text p:last-child {
  font-size: 12px;
}
@media (min-width: 992px) {
  .firstSect__banner-text p:last-child {
    font-size: calc(0.0010775862 * 100vw + 10.9310344828px);
  }
}
@media (min-width: 1920px) {
  .firstSect__banner-text p:last-child {
    font-size: 13px;
  }
}
.firstSect__banner__icon-link {
  font-size: 10px;
}

@media screen and (max-width: 1400px) {
  .firstSect--page {
    height: 50vh;
  }
  .firstSect--page .blog__bg--firstSect {
    height: 70vh;
  }
}
@media screen and (max-width: 1360px) {
  .firstSect__wrapper {
    position: relative;
    z-index: 2;
  }
}
@media screen and (max-width: 1200px), screen and (max-height: 900px) {
  .firstSect {
    padding-top: 150px !important;
    padding-bottom: 30px;
  }
  .firstSect--page {
    position: static;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
  }
  .firstSect--page .blog__bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .firstSect__num {
    display: none;
  }
  .firstSect__wrapper {
    margin-top: 80px;
  }
  .firstSect__content-subtitle {
    width: 100%;
  }
  .firstSect__content-subtitle--w35 {
    width: 45%;
  }
}
@media screen and (max-width: 992px) {
  .firstSect {
    padding-top: 100px !important;
  }
  .firstSect--page .firstSect__wrapper {
    margin-top: 80px;
  }
  .firstSect__banner-text {
    width: 50%;
  }
  .firstSect__content-subtitle--w35 {
    width: 55%;
  }
}
@media screen and (max-width: 768px) {
  .firstSect__content-subtitle {
    margin-bottom: 30px;
  }
  .firstSect__banner {
    background-color: transparent;
    border: none;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 30px;
    padding: 0;
  }
  .firstSect__banner a {
    width: 256px;
  }
  .firstSect__banner-text {
    gap: 10px;
    line-height: 150%;
    width: 100%;
  }
  .firstSect__content-subtitle--w35 {
    width: 98%;
  }
}
@media screen and (max-width: 576px) {
  .firstSect__content h1 {
    width: 100%;
    font-size: 32px;
    line-height: 32px;
    width: 233px;
  }
  .firstSect__content-subtitle {
    margin-bottom: 30px;
    width: 340px;
  }
  .firstSect__banner {
    background-color: transparent;
    border: none;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 30px;
    padding: 0;
  }
  .firstSect__banner a {
    width: 256px;
  }
  .firstSect__banner-text {
    gap: 10px;
    line-height: 150%;
  }
  .firstSect__banner-text P:first-child {
    font-size: 24px;
  }
}
.production {
  background-color: #2b2a29;
  position: relative;
}
.production--accordion .product--detail {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 992px) {
  .production--accordion .product--detail {
    gap: calc(0.0215517241 * 100vw + -1.3793103448px);
  }
}
@media (min-width: 1920px) {
  .production--accordion .product--detail {
    gap: 40px;
  }
}
.production--accordion .product__accordion--detail {
  width: 100%;
}
.production--mt120 .production__wrapper {
  margin-top: 30px;
}
@media (min-width: 992px) {
  .production--mt120 .production__wrapper {
    margin-top: calc(0.0969827586 * 100vw + -66.2068965517px);
  }
}
@media (min-width: 1920px) {
  .production--mt120 .production__wrapper {
    margin-top: 120px;
  }
}
.production--mt125 .production__wrapper {
  margin-top: 30px;
}
@media (min-width: 992px) {
  .production--mt125 .production__wrapper {
    margin-top: calc(0.1023706897 * 100vw + -71.5517241379px);
  }
}
@media (min-width: 1920px) {
  .production--mt125 .production__wrapper {
    margin-top: 125px;
  }
}
.production--mt85 .production__wrapper {
  margin-top: 30px;
}
@media (min-width: 992px) {
  .production--mt85 .production__wrapper {
    margin-top: calc(0.0592672414 * 100vw + -28.7931034483px);
  }
}
@media (min-width: 1920px) {
  .production--mt85 .production__wrapper {
    margin-top: 85px;
  }
}
.production--end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
.production__bg {
  width: 100%;
  height: 82%;
  position: absolute;
  background-image: url(../img/production/gear.svg);
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  right: 0;
  background-position-x: right;
  background-position-y: 100px;
}
.production__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  margin-top: 60px;
  z-index: 2;
  position: relative;
}
@media (min-width: 992px) {
  .production__wrapper {
    margin-top: calc(0.0431034483 * 100vw + 17.2413793103px);
  }
}
@media (min-width: 1920px) {
  .production__wrapper {
    margin-top: 100px;
  }
}
.production__wrapper--end {
  margin-top: 30px;
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .production__wrapper--end {
    margin-bottom: calc(0.0431034483 * 100vw + -2.7586206897px);
  }
}
@media (min-width: 1920px) {
  .production__wrapper--end {
    margin-bottom: 80px;
  }
}
.production__num {
  width: 15%;
  margin-left: 0px;
  margin-top: 10px;
}
@media (min-width: 992px) {
  .production__num {
    margin-left: calc(-0.0215517241 * 100vw + 21.3793103448px);
  }
}
@media (min-width: 1920px) {
  .production__num {
    margin-left: -20px;
  }
}
.production__num p {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.5)), to(rgba(37, 37, 37, 0.5)));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(37, 37, 37, 0.5));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-family: "Bebas light";
  font-weight: 100;
  font-variant-numeric: proportional-nums;
  font-size: 100px;
  font-weight: 300;
  line-height: 100px;
  margin-top: -10px;
  letter-spacing: 0%;
  text-align: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 11px;
}
@media (min-width: 992px) {
  .production__num p {
    font-size: calc(0.0301724138 * 100vw + 70.0689655172px);
  }
}
@media (min-width: 1920px) {
  .production__num p {
    font-size: 128px;
  }
}
.production__num p::after {
  content: "";
  width: 68px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.25);
  margin-top: 10px;
  margin-right: 15px;
}
.production__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  width: 100%;
}
@media (min-width: 992px) {
  .production__content {
    gap: calc(0.0323275862 * 100vw + -2.0689655172px);
  }
}
@media (min-width: 1920px) {
  .production__content {
    gap: 60px;
  }
}
.production__content-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.production__content-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 15px;
}
@media (min-width: 992px) {
  .production__content-tabs {
    gap: calc(0.0161637931 * 100vw + -1.0344827586px);
  }
}
@media (min-width: 1920px) {
  .production__content-tabs {
    gap: 30px;
  }
}
.production__content-link {
  opacity: 0.5;
  cursor: pointer;
  -webkit-transition: opacity 0.38s ease-in-out;
  transition: opacity 0.38s ease-in-out;
  font-size: 14px;
}
@media (min-width: 992px) {
  .production__content-link {
    font-size: calc(0.0021551724 * 100vw + 11.8620689655px);
  }
}
@media (min-width: 1920px) {
  .production__content-link {
    font-size: 16px;
  }
}
.production__content-link--active {
  opacity: 1;
  position: relative;
}
.production__content-link--active::after {
  content: "";
  position: absolute;
  bottom: -10px;
  background-color: rgba(255, 255, 255, 0.1764705882);
  height: 1px;
  width: 100%;
  left: 0;
}
@media (min-width: 992px) {
  .production__content-link--active::after {
    bottom: calc(0 * 100vw + -10px);
  }
}
@media (min-width: 1920px) {
  .production__content-link--active::after {
    bottom: -10px;
  }
}
.production__content-link:hover {
  opacity: 1;
}
.production__cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}
.production__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  background: rgba(43, 42, 41, 0.25);
  -webkit-transition: all 0.38s ease-in-out;
  transition: all 0.38s ease-in-out;
}
.production__card img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100px;
  min-height: 140px;
}
@media (min-width: 992px) {
  .production__card img {
    width: calc(0.0538793103 * 100vw + 46.5517241379px);
  }
}
@media (min-width: 1920px) {
  .production__card img {
    width: 150px;
  }
}
@media (min-width: 992px) {
  .production__card img {
    min-height: calc(0.0592672414 * 100vw + 81.2068965517px);
  }
}
@media (min-width: 1920px) {
  .production__card img {
    min-height: 195px;
  }
}
.production__card span::before {
  display: block;
  -webkit-transition: 0.38s ease-in-out;
  transition: 0.38s ease-in-out;
}
.production__card:hover {
  background: rgb(255, 255, 255);
  border: 1px solid #61605f;
}
.production__card:hover .production__card-text {
  color: #000;
}
.production__card:hover .production__card-text span::before {
  rotate: 50deg;
}
.production__card-last {
  background-color: rgb(241, 142, 56);
}
.production__card-last:hover {
  background-color: rgb(241, 142, 56);
}
.production__card-last:hover .production__card-text {
  color: #fff;
}
.production__card-last .production__card-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.production__card-last .production__card-text p {
  width: 58%;
}
.production__card-last .production__card-text span {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  font-size: 8px;
}
.production__card-text {
  padding: 16px 20px;
  color: rgb(255, 255, 255);
  font-size: 14px;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: 0%;
  text-align: left;
  -webkit-transition: color 0.38s ease-in-out;
  transition: color 0.38s ease-in-out;
  -ms-flex-item-align: end;
      align-self: flex-end;
}
@media (min-width: 992px) {
  .production__card-text {
    font-size: calc(0.0043103448 * 100vw + 9.724137931px);
  }
}
@media (min-width: 1920px) {
  .production__card-text {
    font-size: 18px;
  }
}

@media screen and (max-width: 1200px), screen and (max-height: 900px) {
  .production {
    padding-bottom: 60px;
  }
  .production__wrapper {
    margin: 0;
  }
  .production__bg {
    height: 100%;
  }
  .production--accordion .product--detail {
    margin-top: 0;
  }
}
@media screen and (max-width: 992px) {
  .production {
    padding-bottom: 0;
  }
  .production--accordion .product--detail {
    grid-template-columns: 1fr;
  }
  .production__wrapper {
    margin: 0;
  }
  .production__bg {
    width: 60%;
    height: 100%;
    display: none;
  }
  .production__bg-advantages {
    width: 100%;
    background-position-x: center;
    background-size: 530px;
  }
  .production__num {
    display: none;
  }
  .production__content-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
  .production__content-link:hover {
    opacity: 0.5;
  }
  .production__content-link--active {
    opacity: 1 !important;
  }
  .production__cards {
    grid-template-columns: 1fr 1fr;
  }
  .production__card:hover {
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(43, 42, 41, 0.25);
  }
  .production__card:hover .production__card-text {
    color: #fff;
  }
  .production__card-last {
    background-color: rgb(241, 142, 56);
  }
  .production__card-last .production__card-text {
    font-size: 16px;
  }
  .production__card-text {
    width: 100%;
  }
  .production__card img {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .production__bg {
    display: none;
  }
  .production__bg-advantages {
    display: block;
    background-size: 1050px;
  }
  .production__num {
    display: none;
  }
  .production__content {
    gap: 30px;
  }
  .production__content-tabs {
    overflow-y: scroll;
    white-space: nowrap;
    padding-bottom: 30px;
  }
  .production__cards {
    grid-template-columns: 1fr;
  }
  .production__card img {
    width: 50%;
    height: 100%;
  }
  .production__card-last {
    height: 140px;
  }
  .production__card-last .production__card-text {
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .production__card img {
    width: 50%;
    height: 100%;
    max-width: 150px;
  }
}
@media screen and (max-width: 540px) {
  .production__card img {
    width: 50%;
    height: 100%;
    max-width: unset;
  }
}
.services {
  background-image: url(/img/services/services.svg);
  background-repeat: no-repeat;
  background-size: cover;
}
.services__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  margin-top: 60px;
}
@media (min-width: 992px) {
  .services__wrapper {
    margin-top: calc(0.0431034483 * 100vw + 17.2413793103px);
  }
}
@media (min-width: 1920px) {
  .services__wrapper {
    margin-top: 100px;
  }
}
.services__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  display: none;
  opacity: 0;
  -webkit-transition: opacity 0.38s ease-in-out;
  transition: opacity 0.38s ease-in-out;
}
.services__cards-top, .services__cards-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 10px;
}
.services__cards--active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.services__cards--opacity {
  opacity: 1;
}
.services__card {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  background: rgba(43, 42, 41, 0.25);
  -webkit-transition: all 0.38s ease-in-out;
  transition: all 0.38s ease-in-out;
}
.services__card-big {
  width: 50%;
}
.services__card-big img {
  -ms-flex-item-align: stretch;
      align-self: stretch;
  width: 45%;
  height: 165px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 992px) {
  .services__card-big img {
    height: calc(0.0323275862 * 100vw + 132.9310344828px);
  }
}
@media (min-width: 1920px) {
  .services__card-big img {
    height: 195px;
  }
}
.services__card-small img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 110px;
  height: 165px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
}
@media (min-width: 992px) {
  .services__card-small img {
    width: calc(0.0646551724 * 100vw + 45.8620689655px);
  }
}
@media (min-width: 1920px) {
  .services__card-small img {
    width: 170px;
  }
}
@media (min-width: 992px) {
  .services__card-small img {
    height: calc(0.0323275862 * 100vw + 132.9310344828px);
  }
}
@media (min-width: 1920px) {
  .services__card-small img {
    height: 195px;
  }
}
.services__card-small span::before {
  -webkit-transition: 0.38s ease-in-out;
  transition: 0.38s ease-in-out;
  display: block;
}
.services__card-small:last-child {
  background-color: rgb(241, 142, 56);
}
.services__card-small:last-child .production__card-text {
  color: #fff;
}
.services__card-small:last-child .services__card-small:last-child .services__card-text span {
  -webkit-transform: rotate(267deg);
          transform: rotate(267deg);
  font-size: 8px;
}
.services__card-small:last-child:hover {
  background-color: rgb(241, 142, 56);
}
.services__card-small:last-child:hover span {
  -webkit-transform: rotate(267deg);
          transform: rotate(267deg);
}
.services__card-small:last-child:hover span::before {
  -webkit-transform: rotate(50deg);
          transform: rotate(50deg);
}
.services__card-small:last-child .services__card-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
.services__card-small:last-child .services__card-text p {
  width: 60%;
}
.services__card-small:last-child .services__card-text span {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  font-size: 8px;
}
.services__card:hover {
  background: rgb(255, 255, 255);
  border: 1px solid #61605f;
}
.services__card:hover p {
  color: #000;
}
.services__card:hover .services__card-text p {
  color: #fff;
}
.services__card .services__card-text {
  padding: 20px;
}
.services__card .services__card-text p {
  padding: 0;
}
.services__card p {
  padding: 20px 20px 10px;
  color: rgb(255, 255, 255);
  font-size: 16px;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: 0%;
  text-align: left;
  -webkit-transition: color 0.38s ease-in-out;
  transition: color 0.38s ease-in-out;
  word-break: break-word;
}
@media (min-width: 992px) {
  .services__card p {
    font-size: calc(0.0021551724 * 100vw + 13.8620689655px);
  }
}
@media (min-width: 1920px) {
  .services__card p {
    font-size: 18px;
  }
}
.services__card--width img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 120px;
  min-height: 140px;
}
@media (min-width: 992px) {
  .services__card--width img {
    width: calc(0.0797413793 * 100vw + 40.8965517241px);
  }
}
@media (min-width: 1920px) {
  .services__card--width img {
    width: 194px;
  }
}
@media (min-width: 992px) {
  .services__card--width img {
    min-height: calc(0.0592672414 * 100vw + 81.2068965517px);
  }
}
@media (min-width: 1920px) {
  .services__card--width img {
    min-height: 195px;
  }
}

@media screen and (max-width: 1200px), screen and (max-height: 900px) {
  .services {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .services__wrapper {
    margin: 0;
  }
}
@media screen and (max-width: 993px) {
  .services {
    padding-top: 60px;
    padding-bottom: 0;
    background-color: #2b2a29;
    background-image: none;
  }
  .services__cards-bottom {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .services__card {
    width: 49%;
  }
  .services__card:hover {
    border: 1px solid rgba(255, 255, 255, 0.25);
    -webkit-backdrop-filter: blur(30px);
            backdrop-filter: blur(30px);
    background: rgba(43, 42, 41, 0.25);
  }
  .services__card:hover .services__card-text {
    color: #fff;
  }
  .services__card:hover p {
    color: #fff;
  }
  .services__card-small {
    width: 49%;
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }
  .services__card-small img {
    width: 45%;
  }
  .services__card-small:last-child {
    height: 140px;
    background-color: #f18e38;
  }
  .services__card--width {
    width: 100%;
  }
  .services__card--width img {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .services__cards-bottom, .services__cards-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .services__card {
    width: 100%;
  }
  .services__card--width img {
    width: 50%;
    height: 100%;
  }
}
@media screen and (max-width: 576px) {
  .services__card--width img {
    width: 50%;
    height: 100%;
    max-width: 150px;
  }
}
@media screen and (max-width: 540px) {
  .services__card--width img {
    width: 50%;
    height: 100%;
    max-width: unset;
  }
}
.advantages {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px 30px;
}
.advantages__wrapper {
  margin-top: 60px;
}
@media (min-width: 992px) {
  .advantages__wrapper {
    margin-top: calc(0.0646551724 * 100vw + -4.1379310345px);
  }
}
@media (min-width: 1920px) {
  .advantages__wrapper {
    margin-top: 120px;
  }
}
.advantages--columns4 {
  grid-template-columns: repeat(4, 1fr);
}
.advantages__num {
  width: 105px;
  height: 100px;
  border: 3px solid rgb(241, 142, 56);
  border-radius: 6px;
  background-color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: rgb(255, 255, 255);
  font-family: "Bebas";
  font-size: 72px;
  font-weight: 700;
  line-height: 72px;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}
.advantages__num::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 0;
  left: 0;
  background-color: rgb(241, 142, 56);
  -webkit-transition: all 0.38s ease-in-out;
  transition: all 0.38s ease-in-out;
  z-index: 0;
}
.advantages__num:hover::after {
  height: 100%;
}
.advantages__num p {
  z-index: 1;
}
.advantages__text p:first-child {
  color: rgb(255, 255, 255);
  font-size: 20px;
  font-weight: 400;
  line-height: 125%;
  letter-spacing: 0%;
  text-align: left;
  margin-bottom: 10px;
}
.advantages__text p:last-child:not(:first-child) {
  opacity: 0.6;
}

@media screen and (max-width: 1200px) {
  .advantages__wrapper {
    margin: 0;
  }
}
@media screen and (max-width: 992px) {
  .advantages__num::after {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .advantages {
    grid-template-columns: 1fr;
    gap: 30px 30px;
  }
  .advantages__content {
    gap: 28px;
  }
  .advantages__card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 27px;
  }
  .advantages__num {
    margin: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 88px;
            flex: 0 0 88px;
    height: 88px;
  }
  .advantages__num p {
    font-size: 64px;
    font-variant-numeric: tabular-nums;
  }
  .advantages__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .advantages__text p {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }
  .advantages__text p:first-child {
    font-size: 16px;
    margin: 0;
  }
  .advantages__text p:last-child {
    font-size: 14px;
  }
}
.geography {
  background-color: #2B2A29;
  position: relative;
}
.geography .production__wrapper {
  position: static;
}
.geography .imgMobile {
  display: none;
}
.geography--page .production__wrapper {
  margin-top: 30px;
}
@media (min-width: 992px) {
  .geography--page .production__wrapper {
    margin-top: calc(0.0969827586 * 100vw + -66.2068965517px);
  }
}
@media (min-width: 1920px) {
  .geography--page .production__wrapper {
    margin-top: 120px;
  }
}
.geography--page .geography__map {
  position: absolute;
  bottom: 0px;
  width: 1002px;
  height: 679px;
  z-index: 0;
  right: 0px;
}
@media (min-width: 992px) {
  .geography--page .geography__map {
    bottom: calc(-0.2661637931 * 100vw + 264.0344827586px);
  }
}
@media (min-width: 1920px) {
  .geography--page .geography__map {
    bottom: -247px;
  }
}
@media (min-width: 992px) {
  .geography--page .geography__map {
    right: calc(0.3200431034 * 100vw + -317.4827586207px);
  }
}
@media (min-width: 1920px) {
  .geography--page .geography__map {
    right: 297px;
  }
}
.geography__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
  z-index: 1;
}
@media (min-width: 992px) {
  .geography__content {
    gap: calc(0.005387931 * 100vw + 54.6551724138px);
  }
}
@media (min-width: 1920px) {
  .geography__content {
    gap: 65px;
  }
}
.geography__content-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media (min-width: 992px) {
  .geography__content-top {
    gap: calc(0 * 100vw + 20px);
  }
}
@media (min-width: 1920px) {
  .geography__content-top {
    gap: 20px;
  }
}
.geography__content-top h2 {
  letter-spacing: 0.2px;
}
.geography__content-top p {
  font-weight: 400;
  font-size: 18px;
}
@media (min-width: 992px) {
  .geography__content-top p {
    font-size: calc(0.0021551724 * 100vw + 15.8620689655px);
  }
}
@media (min-width: 1920px) {
  .geography__content-top p {
    font-size: 20px;
  }
}
.geography__cities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 60px;
  grid-row-gap: 30px;
}
@media (min-width: 992px) {
  .geography__cities {
    grid-column-gap: calc(0 * 100vw + 60px);
  }
}
@media (min-width: 1920px) {
  .geography__cities {
    grid-column-gap: 60px;
  }
}
@media (min-width: 992px) {
  .geography__cities {
    grid-row-gap: calc(0 * 100vw + 30px);
  }
}
@media (min-width: 1920px) {
  .geography__cities {
    grid-row-gap: 30px;
  }
}
.geography__cities p {
  font-size: 13px;
  font-weight: 500;
  line-height: 17.61px;
}
@media (min-width: 992px) {
  .geography__cities p {
    font-size: calc(0 * 100vw + 13px);
  }
}
@media (min-width: 1920px) {
  .geography__cities p {
    font-size: 13px;
  }
}
.geography__map {
  position: absolute;
  bottom: 0;
  width: 1002px;
  height: 607px;
  z-index: 0;
}
.geography__map img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.geography__mark {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
}
@media screen and (min-width: 993px) {
  .geography__mark:hover .geography__mark-img {
    border: 1px solid rgba(255, 255, 255, 0.4);
  }
  .geography__mark:hover .geography__mark-img:before {
    opacity: 1;
  }
  .geography__mark:hover p {
    opacity: 1;
  }
}
.geography__mark-img {
  width: 21px;
  height: 21px;
  border-radius: 50%;
  -webkit-transition: 0.38s ease-in-out;
  transition: 0.38s ease-in-out;
  position: relative;
}
.geography__mark-img:before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.7) 0%, rgba(84, 83, 83, 0) 100%);
  -webkit-transition: 0.38s ease-in-out;
  transition: 0.38s ease-in-out;
  opacity: 0;
}
.geography__mark p {
  opacity: 0;
  font-size: 12px;
  -webkit-transition: 0.38s ease-in-out;
  transition: 0.38s ease-in-out;
  font-weight: 400;
}
.geography__mark:nth-of-type(1) {
  top: 345px;
  right: 725px;
}
.geography__mark:nth-of-type(2) {
  top: 392px;
  right: 645px;
}
.geography__mark:nth-of-type(3) {
  top: 367px;
  right: 616px;
}
.geography__mark:nth-of-type(4) {
  top: 292px;
  right: 622px;
}
.geography__mark:nth-of-type(5) {
  top: 324px;
  right: 460px;
}
.geography__mark:nth-of-type(6) {
  top: 210px;
  right: 474px;
}
.geography__mark:nth-of-type(7) {
  top: 226px;
  right: 356px;
}
.geography__mark:nth-of-type(8) {
  top: 200px;
  right: 256px;
}
.geography__mark:nth-of-type(9) {
  top: 319px;
  right: 216px;
}

@media screen and (min-width: 1200px) {
  .geography__map {
    right: 0px;
  }
}
@media screen and (min-width: 1200px) and (min-width: 992px) {
  .geography__map {
    right: calc(0.2521551724 * 100vw + -250.1379310345px);
  }
}
@media screen and (min-width: 1200px) and (min-width: 1920px) {
  .geography__map {
    right: 234px;
  }
}
@media screen and (max-width: 1200px), screen and (max-height: 900px) {
  .geography--page .geography__map {
    top: 0;
    right: -16%;
  }
  .geography__map {
    right: -16%;
    bottom: -20%;
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
  }
}
@media screen and (max-width: 992px) {
  .geography {
    position: relative;
    padding-top: 60px;
  }
  .geography--page .geography__map {
    position: absolute;
    top: 180px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    right: unset;
    bottom: unset;
    width: 534px;
    height: 360px;
  }
  .geography img {
    display: none;
  }
  .geography.section {
    padding-top: 60px;
  }
  .geography .production__wrapper {
    margin-top: 0;
  }
  .geography .imgMobile {
    display: block;
  }
  .geography__map {
    position: absolute;
    top: 180px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    right: unset;
    bottom: unset;
    width: 534px;
    height: 360px;
  }
  .geography__mark {
    display: none;
  }
}
.partners {
  background-color: #2B2A29;
  position: relative;
}
.partners .production__wrapper {
  margin-top: 60px;
}
@media (min-width: 992px) {
  .partners .production__wrapper {
    margin-top: calc(0.0969827586 * 100vw + -36.2068965517px);
  }
}
@media (min-width: 1920px) {
  .partners .production__wrapper {
    margin-top: 150px;
  }
}
.partners--mt120 {
  margin-top: 30px;
}
@media (min-width: 992px) {
  .partners--mt120 {
    margin-top: calc(0.0969827586 * 100vw + -66.2068965517px);
  }
}
@media (min-width: 1920px) {
  .partners--mt120 {
    margin-top: 120px;
  }
}
.partners--mt120 .production__wrapper {
  margin-top: 0;
}
.partners__content {
  width: 100%;
}
.partners__content-top {
  margin-bottom: 60px;
}
.partners__cards {
  display: grid;
  grid-gap: 15px;
  grid-template-columns: repeat(5, 1fr);
}
@media (min-width: 992px) {
  .partners__cards {
    grid-gap: calc(-0.005387931 * 100vw + 20.3448275862px);
  }
}
@media (min-width: 1920px) {
  .partners__cards {
    grid-gap: 10px;
  }
}
.partners__cards--h138 .partners__card img {
  max-height: 138px;
}
.partners__card {
  border-radius: 6px;
  background-color: #fff;
}
.partners__card img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (max-width: 1200px), screen and (max-height: 900px) {
  .partners {
    padding: 60px 0;
  }
  .partners .production__wrapper {
    margin-top: 0;
  }
}
@media screen and (max-width: 992px) {
  .partners {
    padding-bottom: 0;
    padding-top: 60px;
  }
  .partners.section {
    padding-top: 60px;
  }
  .partners__content-top {
    margin-bottom: 30px;
  }
  .partners__cards {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .partners__cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .partners__cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 568px) {
  .partners__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
.certificates {
  background-color: #2B2A29;
  position: relative;
}
.certificates__content-top {
  margin-bottom: 60px;
}
.certificates__cards .swiper-wrapper {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(6, 1fr);
}
@media (min-width: 992px) {
  .certificates__cards .swiper-wrapper {
    grid-gap: calc(0.0215517241 * 100vw + -11.3793103448px);
  }
}
@media (min-width: 1920px) {
  .certificates__cards .swiper-wrapper {
    grid-gap: 30px;
  }
}
.certificates__card {
  border-radius: 6px;
}
.certificates__card img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (min-width: 1200px) {
  .production__wrapper {
    margin-top: 60px;
  }
}
@media screen and (min-width: 1200px) and (min-width: 992px) {
  .production__wrapper {
    margin-top: calc(0.1185344828 * 100vw + -57.5862068966px);
  }
}
@media screen and (min-width: 1200px) and (min-width: 1920px) {
  .production__wrapper {
    margin-top: 170px;
  }
}
@media screen and (max-width: 1200px) {
  .production__wrapper {
    margin-top: 0;
  }
}
@media screen and (max-width: 992px) {
  .certificates {
    padding-top: 60px;
  }
  .certificates.section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .certificates .production__wrapper {
    margin-top: 0;
  }
  .certificates__content {
    width: 100%;
  }
  .certificates__content-top {
    margin-bottom: 30px;
  }
  .certificates__cards .swiper-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    grid-gap: unset;
  }
  .certificates__card {
    width: 163.17px;
    height: 247px;
  }
}
.blog__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog__bg--firstSect {
  opacity: 15%;
  min-height: 800px;
}
.blog__bg--mobile {
  display: none;
}
.blog__content {
  width: 100%;
}
.blog__content > .buttonArrow {
  display: none;
}
.blog__content-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.blog__cards .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 11px;
  margin-top: 30px;
}
@media (min-width: 992px) {
  .blog__cards .swiper-wrapper {
    margin-top: calc(0.0323275862 * 100vw + -2.0689655172px);
  }
}
@media (min-width: 1920px) {
  .blog__cards .swiper-wrapper {
    margin-top: 60px;
  }
}
.blog__card {
  border-radius: 6px;
  background-color: #2B2A29;
  border: 1px solid rgba(255, 255, 255, 0.2509803922);
  overflow: hidden;
  position: relative;
}
.blog__card:before {
  content: "";
  position: absolute;
  top: -60%;
  left: 0;
  background-color: #FFFFFF;
  height: 100%;
  width: 100%;
  border-radius: 0 0 6px 6px;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  z-index: 0;
}
@media screen and (min-width: 993px) {
  .blog__card:hover:before {
    top: 0;
  }
  .blog__card:hover .blog__card-title, .blog__card:hover .blog__card-text, .blog__card:hover .blog__card-date {
    color: #2B2A29;
    z-index: 2;
  }
  .blog__card:hover .blog__card-more {
    color: #F18E38;
    z-index: 2;
  }
}
.blog__card-content {
  padding: 30px 20px 20px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  gap: 8px;
}
@media (min-width: 992px) {
  .blog__card-content {
    gap: calc(0.0021551724 * 100vw + 5.8620689655px);
  }
}
@media (min-width: 1920px) {
  .blog__card-content {
    gap: 10px;
  }
}
.blog__card-img {
  border-radius: 6px;
  z-index: 1;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  width: 100%;
  height: 200px;
}
@media (min-width: 992px) {
  .blog__card-img {
    height: calc(0.0183189655 * 100vw + 181.8275862069px);
  }
}
@media (min-width: 1920px) {
  .blog__card-img {
    height: 217px;
  }
}
.blog__card-date {
  font-size: 14px;
  font-weight: 400;
  line-height: 13.4px;
  -webkit-transition: 0.45s ease-in-out;
  transition: 0.45s ease-in-out;
  color: rgba(255, 255, 255, 0.5);
}
.blog__card-title {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  -webkit-transition: 0.45s ease-in-out;
  transition: 0.45s ease-in-out;
}
.blog__card-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 17.5px;
  -webkit-transition: 0.45s ease-in-out;
  transition: 0.45s ease-in-out;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  .blog__card-text {
    margin-bottom: calc(0.0107758621 * 100vw + -0.6896551724px);
  }
}
@media (min-width: 1920px) {
  .blog__card-text {
    margin-bottom: 20px;
  }
}
.blog__card-more {
  font-size: 14px;
  font-weight: 400;
  line-height: 13.4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -webkit-transition: 0.38s ease-in-out;
  transition: 0.38s ease-in-out;
}
.blog__card-more span {
  font-size: 4px;
  -webkit-transform: rotate(-90deg) translate(-27%, 0px);
          transform: rotate(-90deg) translate(-27%, 0px);
  -webkit-transition: -webkit-transform 0.38s ease-in-out;
  transition: -webkit-transform 0.38s ease-in-out;
  transition: transform 0.38s ease-in-out;
  transition: transform 0.38s ease-in-out, -webkit-transform 0.38s ease-in-out;
}
@media screen and (min-width: 993px) {
  .blog__card-more:hover span {
    -webkit-transform: rotate(-90deg) translate(-27%, 4px);
            transform: rotate(-90deg) translate(-27%, 4px);
    color: #F18E38;
  }
}

@media screen and (max-width: 1360px) {
  .blog__bg {
    z-index: 1;
  }
}
@media screen and (min-width: 993px) {
  .blog__card {
    -ms-flex-negative: unset;
        flex-shrink: unset;
  }
}
@media screen and (max-width: 992px) {
  .blog {
    position: relative;
    margin-top: 60px;
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .blog--page {
    margin-top: 0;
  }
  .blog.section {
    margin-top: 0;
  }
  .blog__bg {
    z-index: 0;
  }
  .blog__bg--firstSect {
    display: none;
  }
  .blog__bg--mobile {
    display: block;
    opacity: 15%;
  }
  .blog .swiper-wrapper {
    margin-top: 0;
  }
  .blog__content .buttonArrow {
    margin-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .blog__content-top {
    margin-bottom: 30px;
  }
  .blog__content-top .buttonArrow {
    display: none;
  }
  .blog__card-title {
    font-size: 15px;
  }
  .blog__card-text {
    font-family: Gotham Pro;
    font-size: 14px;
    font-weight: 300;
    line-height: 17.5px;
    text-align: left;
  }
  .blog__card-img {
    height: 217px;
  }
  .blog__card-more {
    margin-top: 20px;
  }
  .blog .swiper-wrapper {
    gap: unset;
  }
  .blog .production__wrapper {
    margin-top: 0;
  }
}
.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 30px;
}
@media (min-width: 992px) {
  .pagination {
    gap: calc(0.0161637931 * 100vw + 3.9655172414px);
  }
}
@media (min-width: 1920px) {
  .pagination {
    gap: 35px;
  }
}
@media (min-width: 992px) {
  .pagination {
    margin-top: calc(0.0215517241 * 100vw + 8.6206896552px);
  }
}
@media (min-width: 1920px) {
  .pagination {
    margin-top: 50px;
  }
}
.pagination--mt0 {
  margin-top: 0;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}
.pagination__arrow {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2509803922);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 4px;
  -webkit-transition: 0.38s ease-in-out;
  transition: 0.38s ease-in-out;
}
@media (min-width: 992px) {
  .pagination__arrow {
    width: calc(0.0075431034 * 100vw + 22.5172413793px);
  }
}
@media (min-width: 1920px) {
  .pagination__arrow {
    width: 37px;
  }
}
@media (min-width: 992px) {
  .pagination__arrow {
    height: calc(0.0075431034 * 100vw + 22.5172413793px);
  }
}
@media (min-width: 1920px) {
  .pagination__arrow {
    height: 37px;
  }
}
@media screen and (min-width: 993px) {
  .pagination__arrow:hover {
    background-color: #F18E38;
    border-color: #F18E38;
  }
  .pagination__arrow:hover span {
    color: #fff;
  }
}
.pagination__arrow:first-child span {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  margin-right: 0px;
}
@media (min-width: 992px) {
  .pagination__arrow:first-child span {
    margin-right: calc(0.0032327586 * 100vw + -3.2068965517px);
  }
}
@media (min-width: 1920px) {
  .pagination__arrow:first-child span {
    margin-right: 3px;
  }
}
.pagination__arrow:last-child span {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  margin-left: 0px;
}
@media (min-width: 992px) {
  .pagination__arrow:last-child span {
    margin-left: calc(0.0032327586 * 100vw + -3.2068965517px);
  }
}
@media (min-width: 1920px) {
  .pagination__arrow:last-child span {
    margin-left: 3px;
  }
}
.pagination__arrow span {
  -webkit-transition: 0.38s ease-in-out;
  transition: 0.38s ease-in-out;
  display: block;
  font-size: 7px;
  color: rgba(255, 255, 255, 0.2509803922);
}
@media (min-width: 992px) {
  .pagination__arrow span {
    font-size: calc(0.0021551724 * 100vw + 4.8620689655px);
  }
}
@media (min-width: 1920px) {
  .pagination__arrow span {
    font-size: 9px;
  }
}
.pagination__numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
@media (min-width: 992px) {
  .pagination__numbers {
    gap: calc(0.0021551724 * 100vw + 5.8620689655px);
  }
}
@media (min-width: 1920px) {
  .pagination__numbers {
    gap: 10px;
  }
}
.pagination__numbers a {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2509803922);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.2509803922);
  -webkit-transition: 0.38s ease-in-out;
  transition: 0.38s ease-in-out;
}
@media (min-width: 992px) {
  .pagination__numbers a {
    width: calc(0.0075431034 * 100vw + 22.5172413793px);
  }
}
@media (min-width: 1920px) {
  .pagination__numbers a {
    width: 37px;
  }
}
@media (min-width: 992px) {
  .pagination__numbers a {
    height: calc(0.0075431034 * 100vw + 22.5172413793px);
  }
}
@media (min-width: 1920px) {
  .pagination__numbers a {
    height: 37px;
  }
}
.pagination__numbers a .active {
  background-color: #F18E38;
  color: #fff;
  border-color: #F18E38;
}
@media screen and (min-width: 993px) {
  .pagination__numbers a:hover {
    background-color: #F18E38;
    color: #fff;
    border-color: #F18E38;
  }
}
.pagination__numbers a.active {
  background-color: #F18E38;
  color: #fff;
}

@media screen and (max-width: 370px) {
  .pagination {
    gap: 8px;
  }
  .pagination__numbers {
    gap: 3px;
  }
}
.projects--page {
  margin-top: 30px;
}
@media (min-width: 992px) {
  .projects--page {
    margin-top: calc(0.0969827586 * 100vw + -66.2068965517px);
  }
}
@media (min-width: 1920px) {
  .projects--page {
    margin-top: 120px;
  }
}
.projects__wrapper-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-row-gap: 20px;
  grid-column-gap: 10px;
  margin-top: 30px;
}
@media (min-width: 992px) {
  .projects__wrapper-cards {
    grid-row-gap: calc(0.0107758621 * 100vw + 9.3103448276px);
  }
}
@media (min-width: 1920px) {
  .projects__wrapper-cards {
    grid-row-gap: 30px;
  }
}
@media (min-width: 992px) {
  .projects__wrapper-cards {
    margin-top: calc(0.0323275862 * 100vw + -2.0689655172px);
  }
}
@media (min-width: 1920px) {
  .projects__wrapper-cards {
    margin-top: 60px;
  }
}
.projects__wrapper-cards .project__card {
  width: 100% !important;
}
.projects__wrapper-cards .project__card-img {
  width: 100%;
}
.projects__wrapper-cards .project__card .buttonOrange:after {
  background-color: #E33224;
}
.projects__content {
  width: 100%;
}
.projects__content > .buttonArrow {
  display: none;
}
.projects__content-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.projects__cards--page .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 11px;
  margin-top: 30px;
}
@media (min-width: 992px) {
  .projects__cards--page .swiper-wrapper {
    margin-top: calc(0.0323275862 * 100vw + -2.0689655172px);
  }
}
@media (min-width: 1920px) {
  .projects__cards--page .swiper-wrapper {
    margin-top: 60px;
  }
}

@media screen and (max-width: 992px) {
  .projects__wrapper-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .projects .project__cards {
    width: 100%;
  }
  .projects .project__card-img {
    height: auto;
  }
  .project__cards {
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .projects__wrapper-cards {
    grid-template-columns: repeat(1, 1fr);
  }
}
.questions {
  margin-top: 30px;
}
@media (min-width: 992px) {
  .questions {
    margin-top: calc(0.1077586207 * 100vw + -76.8965517241px);
  }
}
@media (min-width: 1920px) {
  .questions {
    margin-top: 130px;
  }
}
.questions--mt40 {
  margin-top: 30px;
}
@media (min-width: 992px) {
  .questions--mt40 {
    margin-top: calc(0.1185344828 * 100vw + -87.5862068966px);
  }
}
@media (min-width: 1920px) {
  .questions--mt40 {
    margin-top: 140px;
  }
}
.questions__wrapper {
  padding: 30px;
  background-color: #262524;
  border-radius: 6px;
}
@media (min-width: 992px) {
  .questions__wrapper {
    padding: calc(0.0323275862 * 100vw + -2.0689655172px);
  }
}
@media (min-width: 1920px) {
  .questions__wrapper {
    padding: 60px;
  }
}
.questions__wrapper-title {
  font-family: Bebas;
  font-size: 60px;
  font-weight: 700;
  line-height: 72px;
  margin-bottom: 15px;
}
@media (min-width: 992px) {
  .questions__wrapper-title {
    font-size: calc(0.0129310345 * 100vw + 47.1724137931px);
  }
}
@media (min-width: 1920px) {
  .questions__wrapper-title {
    font-size: 72px;
  }
}
@media (min-width: 992px) {
  .questions__wrapper-title {
    margin-bottom: calc(0.0161637931 * 100vw + -1.0344827586px);
  }
}
@media (min-width: 1920px) {
  .questions__wrapper-title {
    margin-bottom: 30px;
  }
}
.questions__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.questions__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 44%;
}
.questions__left-description {
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
}
@media (min-width: 992px) {
  .questions__left-description {
    font-size: calc(0.0043103448 * 100vw + 11.724137931px);
  }
}
@media (min-width: 1920px) {
  .questions__left-description {
    font-size: 20px;
  }
}
.questions__left-tel {
  font-family: Bebas;
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  margin-top: 30px;
}
@media (min-width: 992px) {
  .questions__left-tel {
    font-size: calc(0.0107758621 * 100vw + 19.3103448276px);
  }
}
@media (min-width: 1920px) {
  .questions__left-tel {
    font-size: 40px;
  }
}
@media (min-width: 992px) {
  .questions__left-tel {
    margin-top: calc(0.0323275862 * 100vw + -2.0689655172px);
  }
}
@media (min-width: 1920px) {
  .questions__left-tel {
    margin-top: 60px;
  }
}
.questions__left-tg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 15px;
  gap: 15px;
}
@media (min-width: 992px) {
  .questions__left-tg {
    margin-top: calc(0.0161637931 * 100vw + -1.0344827586px);
  }
}
@media (min-width: 1920px) {
  .questions__left-tg {
    margin-top: 30px;
  }
}
@media (min-width: 992px) {
  .questions__left-tg {
    gap: calc(0.005387931 * 100vw + 9.6551724138px);
  }
}
@media (min-width: 1920px) {
  .questions__left-tg {
    gap: 20px;
  }
}
@media screen and (min-width: 993px) {
  .questions__left-tg:hover p, .questions__left-tg:hover span {
    color: #F18E38;
  }
}
.questions__left-tg p {
  font-family: Gotham Pro;
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
  line-height: 17.5px;
  -webkit-transition: color 0.38s ease-in-out;
  transition: color 0.38s ease-in-out;
}
.questions__left-tg span {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.5019607843);
  -webkit-transition: color 0.38s ease-in-out;
  transition: color 0.38s ease-in-out;
}
.questions__form {
  width: 48.8%;
}
.questions__form textarea {
  resize: none;
}
.questions__form-inputs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 15px;
}
@media (min-width: 992px) {
  .questions__form-inputs {
    grid-gap: calc(0.0107758621 * 100vw + 4.3103448276px);
  }
}
@media (min-width: 1920px) {
  .questions__form-inputs {
    grid-gap: 25px;
  }
}
.questions__form input[type=text], .questions__form textarea {
  width: 100%;
  height: 37px;
  font-size: 16px;
  font-size: 18px;
  font-weight: 400;
  line-height: 17.23px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5019607843);
}
@media (min-width: 992px) {
  .questions__form input[type=text], .questions__form textarea {
    font-size: calc(0.0021551724 * 100vw + 13.8620689655px);
  }
}
@media (min-width: 1920px) {
  .questions__form input[type=text], .questions__form textarea {
    font-size: 18px;
  }
}
@media (min-width: 992px) {
  .questions__form input[type=text], .questions__form textarea {
    padding-bottom: calc(0.005387931 * 100vw + 9.6551724138px);
  }
}
@media (min-width: 1920px) {
  .questions__form input[type=text], .questions__form textarea {
    padding-bottom: 20px;
  }
}
.questions__form textarea {
  width: 100%;
  margin-top: 20px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .questions__form textarea {
    margin-top: calc(0.0140086207 * 100vw + 6.1034482759px);
  }
}
@media (min-width: 1920px) {
  .questions__form textarea {
    margin-top: 33px;
  }
}
.questions__form-bottom {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media (min-width: 992px) {
  .questions__form-bottom {
    margin-top: calc(0.0204741379 * 100vw + -0.3103448276px);
  }
}
@media (min-width: 1920px) {
  .questions__form-bottom {
    margin-top: 39px;
  }
}
@media (min-width: 992px) {
  .questions__form-bottom {
    gap: calc(0.0107758621 * 100vw + 9.3103448276px);
  }
}
@media (min-width: 1920px) {
  .questions__form-bottom {
    gap: 30px;
  }
}
.questions__form-bottom .buttonOrange {
  padding: 16px 49px;
}
.questions__form-bottom label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
@media (min-width: 992px) {
  .questions__form-bottom label {
    gap: calc(0.005387931 * 100vw + 4.6551724138px);
  }
}
@media (min-width: 1920px) {
  .questions__form-bottom label {
    gap: 15px;
  }
}
.questions__form-bottom label input[type=checkbox] {
  position: relative;
  border: 2px solid #F18E38;
  background: none;
  cursor: pointer;
  line-height: 0;
  outline: 0;
  padding: 0 !important;
  vertical-align: text-top;
  width: 24px;
  height: 24px;
  border-radius: 3px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-appearance: none;
  opacity: 0.5;
  -webkit-transition: 0.38s ease-in-out;
  transition: 0.38s ease-in-out;
}
@media screen and (min-width: 993px) {
  .questions__form-bottom label input[type=checkbox]:hover {
    opacity: 1;
  }
  .questions__form-bottom label input[type=checkbox]:hover input:before {
    opacity: 1;
  }
}
.questions__form-bottom label input[type=checkbox]:checked {
  background-color: #F18E38;
  opacity: 1;
}
.questions__form-bottom label input[type=checkbox]:checked:before {
  opacity: 1;
}
.questions__form-bottom label input[type=checkbox]:before {
  content: "";
  position: absolute;
  right: 50%;
  top: 50%;
  width: 7px;
  height: 10px;
  border: solid #FFF;
  border-width: 0 2px 2px 0;
  margin: -1px -3px 0 -4px;
  opacity: 0;
  -webkit-transform: rotate(45deg) translate(-50%, -50%);
          transform: rotate(45deg) translate(-50%, -50%);
  z-index: 2;
  -webkit-transition: 0.38s ease-in-out;
  transition: 0.38s ease-in-out;
}
.questions__form-bottom label input[type=checkbox] p {
  font-size: 14px;
  font-weight: 400;
  line-height: 19.6px;
}

@media screen and (max-width: 992px) {
  .questions__wrapper-title {
    font-size: 30px;
    line-height: 30px;
  }
  .questions__left-description {
    line-height: 20px;
  }
  .questions__left-tel {
    margin-top: 10px;
    font-size: 25px;
    line-height: 25px;
  }
  .questions__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .questions__form, .questions__left {
    width: 100%;
  }
  .questions__form input[type=text], .questions__form textarea {
    font-size: 14px;
    padding-bottom: 5px;
    height: 33px;
  }
  .questions__form-bottom > label {
    font-size: 14px;
  }
}
@media screen and (max-width: 576px) {
  .questions__form-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .questions__form-bottom .buttonOrange {
    margin-left: unset;
    width: 100%;
  }
  .questions__form-inputs {
    grid-template-columns: 1fr;
  }
}
.project {
  padding-top: 0px;
}
@media (min-width: 992px) {
  .project {
    padding-top: calc(0.0754310345 * 100vw + -74.8275862069px);
  }
}
@media (min-width: 1920px) {
  .project {
    padding-top: 70px;
  }
}
.project .blog__bg {
  z-index: 0;
}
.project .blog__content-top {
  position: relative;
  z-index: 1;
}
.project__content-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.project__content-arrowBottom {
  display: none;
}
.project__cards-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 10px;
}
.project__cards--m0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.project__card {
  border-radius: 6px;
  background-color: rgba(43, 42, 41, 0.6156862745);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: auto;
  border: rgba(255, 255, 255, 0.1450980392) 1px solid;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}
.project__card--blog {
  -webkit-box-flex: unset;
      -ms-flex: unset;
          flex: unset;
}
.project__card:before {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  background-color: #ffffff;
  height: 100%;
  width: 100%;
  border-radius: 0 0 6px 6px;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  z-index: 0;
}
@media screen and (min-width: 993px) {
  .project__card:hover:before {
    top: 0;
  }
  .project__card:hover .project__card-title, .project__card:hover .project__card-subTitle, .project__card:hover .project__card-list, .project__card:hover .project__card-date {
    position: relative;
    color: #2b2a29;
    z-index: 2;
  }
  .project__card:hover .project__card-more {
    color: #008dd2;
    z-index: 2;
  }
  .project__card:hover .project__card-more--blog {
    color: #F18E38;
  }
}
.project__card-content {
  padding: 30px 20px 20px 20px;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.project__card-content a {
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin-top: auto;
}
.project__card-img {
  border-radius: 6px;
  z-index: 1;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  height: 217px;
  width: 100%;
  height: 217px;
}
@media (min-width: 992px) {
  .project__card-img {
    height: calc(0 * 100vw + 217px);
  }
}
@media (min-width: 1920px) {
  .project__card-img {
    height: 217px;
  }
}
.project__card-title {
  font-size: 18px;
  font-weight: 400;
  line-height: 125%;
  -webkit-transition: 0.45s ease-in-out;
  transition: 0.45s ease-in-out;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}
@media (min-width: 992px) {
  .project__card-title {
    font-size: calc(0.0021551724 * 100vw + 15.8620689655px);
  }
}
@media (min-width: 1920px) {
  .project__card-title {
    font-size: 20px;
  }
}
.project__card-subTitle {
  font-size: 14px;
  font-weight: 400;
  line-height: 125%;
  opacity: 0.6;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
  -webkit-transition: 0.45s ease-in-out;
  transition: 0.45s ease-in-out;
}
.project__card-list {
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
  -webkit-transition: 0.45s ease-in-out;
  transition: 0.45s ease-in-out;
}
.project__card-list li {
  font-size: 14px;
  font-weight: 400;
  line-height: 13px;
  letter-spacing: 0%;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: center;
      align-self: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  gap: 10px;
  margin-bottom: 10px;
}
.project__card-list li:last-child {
  margin-bottom: 0;
}
.project__card-list li span {
  opacity: 0.6;
}
.project__card-list--blog {
  margin-bottom: 25px;
}
.project__card-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 17.5px;
  -webkit-transition: 0.45s ease-in-out;
  transition: 0.45s ease-in-out;
  color: rgba(255, 255, 255, 0.5);
}
.project__card-more {
  font-size: 14px;
  font-weight: 400;
  line-height: 13.4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -webkit-transition: 0.38s ease-in-out;
  transition: 0.38s ease-in-out;
}
.project__card-more span {
  font-size: 4px;
  -webkit-transform: rotate(-90deg) translate(-27%, 0px);
          transform: rotate(-90deg) translate(-27%, 0px);
  -webkit-transition: -webkit-transform 0.38s ease-in-out;
  transition: -webkit-transform 0.38s ease-in-out;
  transition: transform 0.38s ease-in-out;
  transition: transform 0.38s ease-in-out, -webkit-transform 0.38s ease-in-out;
}
@media screen and (min-width: 993px) {
  .project__card-more:hover span {
    -webkit-transform: rotate(-90deg) translate(-27%, 4px);
            transform: rotate(-90deg) translate(-27%, 4px);
    color: #008dd2;
  }
}
.project__card-date {
  font-size: 14px;
  font-weight: 400;
  line-height: 13.4px;
  -webkit-transition: 0.45s ease-in-out;
  transition: 0.45s ease-in-out;
  color: rgba(255, 255, 255, 0.5);
}

@media screen and (min-width: 1201px) {
  .project__card {
    -ms-flex-negative: unset;
        flex-shrink: unset;
  }
}
@media screen and (max-width: 1200px) {
  .project {
    padding-bottom: 60px;
  }
  .project__content-arrowTop {
    display: none;
  }
  .project__content-arrowBottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (max-width: 1200px), screen and (max-height: 900px) {
  .project {
    position: relative;
    padding-top: 60px;
  }
  .project__card-img {
    width: 100%;
  }
  .project .production__wrapper {
    margin-top: 0;
  }
}
@media screen and (max-width: 992px) {
  .project {
    position: relative;
    padding-top: 60px;
  }
  .project__card {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: unset;
  }
  .project .production__wrapper {
    margin-top: 0;
  }
}
.product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
}
.product--detail {
  gap: 60px;
}
.product--detail .product__ac-header {
  width: 95%;
}
.product--detail .product__ac-header button::before {
  right: -30px;
}
.product--detail .product__ac-header button::after {
  right: -25px;
}
.product__accordion {
  width: 52%;
}
.product__accordion--detail {
  height: auto;
  width: 72%;
}
.product__accordion--detail h2 {
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .product__accordion--detail h2 {
    margin-bottom: calc(0.0323275862 * 100vw + -2.0689655172px);
  }
}
@media (min-width: 1920px) {
  .product__accordion--detail h2 {
    margin-bottom: 60px;
  }
}
.product img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.product__swiper {
  border-radius: 6px;
  width: 48%;
  height: auto;
}
.product__swiper-pagination .swiper-pagination-bullet {
  border: 1px solid #fff;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.1);
  width: 10px;
  height: 10px;
  opacity: 1;
}
.product__swiper-pagination .swiper-pagination-bullet-active {
  background: #fff;
}
.product__ac {
  margin: 0;
  border: none;
  background-color: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.product__ac:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}
.product__ac:first-of-type {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}
.product__ac-header {
  color: rgb(255, 255, 255);
  font-family: "Gotham Pro";
  font-size: 20px;
  font-weight: 400;
  line-height: 125%;
  letter-spacing: 0%;
  text-align: left;
}
.product__ac-trigger {
  padding: 30px 0;
  color: rgb(255, 255, 255);
  font-family: "Gotham Pro";
  font-size: 18px;
  font-weight: 400;
  line-height: 125%;
  letter-spacing: 0%;
  text-align: left;
  position: relative;
}
@media (min-width: 992px) {
  .product__ac-trigger {
    font-size: calc(0.0021551724 * 100vw + 15.8620689655px);
  }
}
@media (min-width: 1920px) {
  .product__ac-trigger {
    font-size: 20px;
  }
}
.product__ac-trigger:focus {
  color: rgb(255, 255, 255) !important;
}
.product__ac-trigger:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0px;
  width: 8px;
  height: 1px;
  -webkit-transform: rotate(-45deg) translateY(-50%);
          transform: rotate(-45deg) translateY(-50%);
  background-color: #fff;
  -webkit-transition: all 0.38s ease-in-out;
  transition: all 0.38s ease-in-out;
  opacity: 0.5;
}
.product__ac-trigger:after {
  content: "" !important;
  position: absolute;
  top: 50%;
  right: 5.9px;
  width: 8px;
  height: 1px;
  background-color: #fff;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
  -webkit-transition: all 0.38s ease-in-out;
  transition: all 0.38s ease-in-out;
  opacity: 0.5;
}
.product__ac-text {
  padding: 0 0 30px;
  color: rgba(255, 255, 255, 0.6);
  font-family: "Gotham Pro";
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  text-align: left;
}

.product__ac.is-active > .product__ac-header .product__ac-trigger::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  opacity: 1;
}
.product__ac.is-active > .product__ac-header .product__ac-trigger::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  opacity: 1;
}

@media screen and (max-width: 1200px), screen and (max-height: 900px) {
  .product--detail {
    margin-top: 60px;
  }
}
@media screen and (max-width: 992px) {
  .product {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .product__accordion {
    width: 100%;
    height: auto;
  }
  .product__swiper {
    width: 100%;
    height: 440px;
  }
}
@media (max-width: 768px) {
  .product--detail .product__ac-header button::before {
    right: -25px;
  }
  .product--detail .product__ac-header button::after {
    right: -19px;
  }
}
@media (max-width: 576px) {
  .product--detail .product__ac-header button::before {
    right: -15px;
  }
  .product--detail .product__ac-header button::after {
    right: -9px;
  }
}
.calculate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
  position: relative;
}
.calculate__right {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 320px;
  height: 635px;
  height: 71%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 50px;
  border-radius: 6px;
  padding: 45px 30px 140px;
  padding-top: 30px;
  padding-bottom: 95px;
  padding-left: 20px;
  padding-right: 20px;
  z-index: 3;
  background-color: #fff;
}
@media (min-width: 992px) {
  .calculate__right {
    width: calc(0.1023706897 * 100vw + 218.4482758621px);
  }
}
@media (min-width: 1920px) {
  .calculate__right {
    width: 415px;
  }
}
@media (min-width: 992px) {
  .calculate__right {
    height: calc(0.0808189655 * 100vw + 554.8275862069px);
  }
}
@media (min-width: 1920px) {
  .calculate__right {
    height: 710px;
  }
}
@media (min-width: 992px) {
  .calculate__right {
    padding-top: calc(0.0161637931 * 100vw + 13.9655172414px);
  }
}
@media (min-width: 1920px) {
  .calculate__right {
    padding-top: 45px;
  }
}
@media (min-width: 992px) {
  .calculate__right {
    padding-bottom: calc(0.0377155172 * 100vw + 57.5862068966px);
  }
}
@media (min-width: 1920px) {
  .calculate__right {
    padding-bottom: 130px;
  }
}
@media (min-width: 992px) {
  .calculate__right {
    padding-left: calc(0.0107758621 * 100vw + 9.3103448276px);
  }
}
@media (min-width: 1920px) {
  .calculate__right {
    padding-left: 30px;
  }
}
@media (min-width: 992px) {
  .calculate__right {
    padding-right: calc(0.0107758621 * 100vw + 9.3103448276px);
  }
}
@media (min-width: 1920px) {
  .calculate__right {
    padding-right: 30px;
  }
}
.calculate__right-title {
  color: rgb(48, 54, 57);
  font-size: 16px;
  font-weight: 600;
  line-height: 140%;
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .calculate__right-title {
    font-size: calc(0.0021551724 * 100vw + 13.8620689655px);
  }
}
@media (min-width: 1920px) {
  .calculate__right-title {
    font-size: 18px;
  }
}
.calculate__right ul li {
  color: rgb(48, 54, 57);
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 10px;
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 30.5px;
  width: 90%;
}
@media (min-width: 992px) {
  .calculate__right ul li {
    font-size: calc(0.0021551724 * 100vw + 11.8620689655px);
  }
}
@media (min-width: 1920px) {
  .calculate__right ul li {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .calculate__right ul li {
    padding-left: calc(0.0107758621 * 100vw + -0.6896551724px);
  }
}
@media (min-width: 1920px) {
  .calculate__right ul li {
    padding-left: 20px;
  }
}
@media (min-width: 992px) {
  .calculate__right ul li {
    padding-right: calc(0.0107758621 * 100vw + -0.6896551724px);
  }
}
@media (min-width: 1920px) {
  .calculate__right ul li {
    padding-right: 20px;
  }
}
.calculate__right ul li:last-child {
  margin-bottom: 0;
}
.calculate__right ul li:before {
  content: "";
  margin-top: 7px;
  width: 5px;
  height: 5px;
  min-width: 5px;
  min-height: 5px;
  background-color: #ff7b00;
  border-radius: 50%;
}
.calculate__right-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.calculate__right-bottom p {
  color: rgb(48, 54, 57);
  font-size: 14px;
  font-weight: 400;
  line-height: 125%;
}
.calculate__right-bottom p:last-of-type {
  margin-bottom: 20px;
}
.calculate__right-phone {
  color: rgb(43, 42, 41);
  margin-bottom: 30px;
}
.calculate__right-social {
  color: rgb(43, 42, 41);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.calculate__right-social::before {
  color: rgba(43, 42, 41, 0.5);
  font-size: 20px;
  -webkit-transition: 0.38s ease-in-out;
  transition: 0.38s ease-in-out;
}
.calculate__right-social span {
  font-family: "Gotham Pro";
  font-size: 14px;
  font-weight: 400;
  line-height: 125%;
  color: rgb(43, 42, 41);
  -webkit-transition: 0.38s ease-in-out;
  transition: 0.38s ease-in-out;
}
@media screen and (min-width: 993px) {
  .calculate__right-social:hover span {
    color: #f18e38;
  }
  .calculate__right-social:hover::before {
    color: #f18e38;
  }
}
.calculate__right-modal {
  width: 320px;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 50px;
  border-radius: 6px;
  padding: 45px 30px 140px;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 20px;
  padding-right: 20px;
  z-index: 3;
  background-color: #fff;
}
@media (min-width: 992px) {
  .calculate__right-modal {
    width: calc(0.1023706897 * 100vw + 218.4482758621px);
  }
}
@media (min-width: 1920px) {
  .calculate__right-modal {
    width: 415px;
  }
}
@media (min-width: 992px) {
  .calculate__right-modal {
    padding-top: calc(0.0398706897 * 100vw + -9.5517241379px);
  }
}
@media (min-width: 1920px) {
  .calculate__right-modal {
    padding-top: 67px;
  }
}
@media (min-width: 992px) {
  .calculate__right-modal {
    padding-bottom: calc(0.0215517241 * 100vw + 8.6206896552px);
  }
}
@media (min-width: 1920px) {
  .calculate__right-modal {
    padding-bottom: 50px;
  }
}
@media (min-width: 992px) {
  .calculate__right-modal {
    padding-left: calc(0.0107758621 * 100vw + 9.3103448276px);
  }
}
@media (min-width: 1920px) {
  .calculate__right-modal {
    padding-left: 30px;
  }
}
@media (min-width: 992px) {
  .calculate__right-modal {
    padding-right: calc(0.0107758621 * 100vw + 9.3103448276px);
  }
}
@media (min-width: 1920px) {
  .calculate__right-modal {
    padding-right: 30px;
  }
}
.calculate__right-modal-title {
  color: rgb(48, 54, 57);
  font-size: 16px;
  font-weight: 600;
  line-height: 140%;
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .calculate__right-modal-title {
    font-size: calc(0.0021551724 * 100vw + 13.8620689655px);
  }
}
@media (min-width: 1920px) {
  .calculate__right-modal-title {
    font-size: 18px;
  }
}
.calculate__right-modal ul li {
  color: rgb(48, 54, 57);
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 10px;
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 30.5px;
  width: 90%;
}
@media (min-width: 992px) {
  .calculate__right-modal ul li {
    font-size: calc(0.0021551724 * 100vw + 11.8620689655px);
  }
}
@media (min-width: 1920px) {
  .calculate__right-modal ul li {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .calculate__right-modal ul li {
    padding-left: calc(0.0107758621 * 100vw + -0.6896551724px);
  }
}
@media (min-width: 1920px) {
  .calculate__right-modal ul li {
    padding-left: 20px;
  }
}
@media (min-width: 992px) {
  .calculate__right-modal ul li {
    padding-right: calc(0.0107758621 * 100vw + -0.6896551724px);
  }
}
@media (min-width: 1920px) {
  .calculate__right-modal ul li {
    padding-right: 20px;
  }
}
.calculate__right-modal ul li:last-child {
  margin-bottom: 0;
}
.calculate__right-modal ul li:before {
  content: "";
  margin-top: 7px;
  width: 5px;
  height: 5px;
  min-width: 5px;
  min-height: 5px;
  background-color: #ff7b00;
  border-radius: 50%;
}
.calculate__right-modal-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.calculate__right-modal-bottom p {
  color: rgb(48, 54, 57);
  font-size: 14px;
  font-weight: 400;
  line-height: 125%;
}
.calculate__right-modal-bottom p:last-of-type {
  margin-bottom: 20px;
}
.calculate__right-modal-phone {
  color: rgb(43, 42, 41);
  margin-bottom: 30px;
}
.calculate__right-modal-social {
  color: rgb(43, 42, 41);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.calculate__right-modal-social::before {
  color: rgba(43, 42, 41, 0.5);
  font-size: 20px;
}
.calculate__right-modal-social span {
  font-family: "Gotham Pro";
  font-size: 14px;
  font-weight: 400;
  line-height: 125%;
  color: rgb(43, 42, 41);
}
.calculate__left {
  width: 58%;
  color: #FFF;
}
.calculate__left-title {
  margin-bottom: 30px;
  color: rgb(255, 255, 255);
  font-size: 16px;
  font-weight: 400;
  line-height: 125%;
  width: 70%;
}
@media (min-width: 992px) {
  .calculate__left-title {
    margin-bottom: calc(0 * 100vw + 30px);
  }
}
@media (min-width: 1920px) {
  .calculate__left-title {
    margin-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .calculate__left-title {
    font-size: calc(0.0043103448 * 100vw + 11.724137931px);
  }
}
@media (min-width: 1920px) {
  .calculate__left-title {
    font-size: 20px;
  }
}
.calculate__left-title--w100 {
  width: 100%;
}
.calculate__left-title--modal {
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  .calculate__left-title--modal {
    margin-bottom: calc(0.0107758621 * 100vw + -0.6896551724px);
  }
}
@media (min-width: 1920px) {
  .calculate__left-title--modal {
    margin-bottom: 20px;
  }
}
.calculate__left--w100 {
  width: 100%;
}
.calculate__content {
  gap: 15px;
}
@media (min-width: 992px) {
  .calculate__content {
    gap: calc(0.005387931 * 100vw + 9.6551724138px);
  }
}
@media (min-width: 1920px) {
  .calculate__content {
    gap: 20px;
  }
}
.calculate__progress {
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .calculate__progress {
    margin-bottom: calc(0.0215517241 * 100vw + 18.6206896552px);
  }
}
@media (min-width: 1920px) {
  .calculate__progress {
    margin-bottom: 60px;
  }
}
.calculate__progress p {
  margin-bottom: 10px;
}
.calculate__progress p span {
  color: #ff7b00;
}
.calculate__question {
  display: none;
  opacity: 0;
  -webkit-transition: opacity 0.38s ease-in-out;
  transition: opacity 0.38s ease-in-out;
}
.calculate__question--active {
  display: block;
}
.calculate__question--opacity {
  opacity: 1;
}
.calculate__question--selected::before {
  background-image: url(../img/icon/Vector\ 9.svg);
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
  border: 1px solid rgb(241, 142, 56);
  border-radius: 3px;
  background-color: rgb(241, 142, 56) !important;
}
.calculate__question-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  -webkit-column-gap: 100px;
     -moz-column-gap: 100px;
          column-gap: 100px;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .calculate__question-wrapper {
    -webkit-column-gap: calc(0 * 100vw + 100px);
       -moz-column-gap: calc(0 * 100vw + 100px);
            column-gap: calc(0 * 100vw + 100px);
  }
}
@media (min-width: 1920px) {
  .calculate__question-wrapper {
    -webkit-column-gap: 100px;
       -moz-column-gap: 100px;
            column-gap: 100px;
  }
}
@media (min-width: 992px) {
  .calculate__question-wrapper {
    margin-bottom: calc(0.0215517241 * 100vw + 18.6206896552px);
  }
}
@media (min-width: 1920px) {
  .calculate__question-wrapper {
    margin-bottom: 60px;
  }
}
.calculate__question-wrapper--inputs {
  grid-template-columns: 1fr;
  margin-bottom: 140px;
}
@media (min-width: 992px) {
  .calculate__question-wrapper--inputs {
    margin-bottom: calc(0.0355603448 * 100vw + 104.724137931px);
  }
}
@media (min-width: 1920px) {
  .calculate__question-wrapper--inputs {
    margin-bottom: 173px;
  }
}
.calculate__question-wrapper--end {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 80px;
  padding-right: 0px;
}
@media (min-width: 992px) {
  .calculate__question-wrapper--end {
    padding-right: calc(0.0862068966 * 100vw + -85.5172413793px);
  }
}
@media (min-width: 1920px) {
  .calculate__question-wrapper--end {
    padding-right: 80px;
  }
}
.calculate__question-wrapper--gap {
  gap: 25px;
  padding-right: 0px;
}
@media (min-width: 992px) {
  .calculate__question-wrapper--gap {
    padding-right: calc(0.0862068966 * 100vw + -85.5172413793px);
  }
}
@media (min-width: 1920px) {
  .calculate__question-wrapper--gap {
    padding-right: 80px;
  }
}
.calculate__question p {
  margin-bottom: 30px;
  color: rgb(255, 255, 255);
  font-size: 20px;
  font-weight: 400;
  line-height: 125%;
}
@media (min-width: 992px) {
  .calculate__question p {
    margin-bottom: calc(0 * 100vw + 30px);
  }
}
@media (min-width: 1920px) {
  .calculate__question p {
    margin-bottom: 30px;
  }
}
.calculate__question-input {
  display: block;
  position: relative;
  width: 100%;
}
.calculate__question-input input {
  width: 100%;
  font-size: 14px;
}
@media (min-width: 992px) {
  .calculate__question-input input {
    font-size: calc(0.0043103448 * 100vw + 9.724137931px);
  }
}
@media (min-width: 1920px) {
  .calculate__question-input input {
    font-size: 18px;
  }
}
.calculate__question-input input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.3137254902);
}
.calculate__question-input input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.3137254902);
}
.calculate__question-input input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.3137254902);
}
.calculate__question-input input::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.3137254902);
}
.calculate__question-input input::placeholder {
  color: rgba(255, 255, 255, 0.3137254902);
}
.calculate__question-input::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: -20px;
  background-color: rgba(255, 255, 255, 0.3137254902);
}
.calculate label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-transition: all 0.38s ease-in-out;
  transition: all 0.38s ease-in-out;
}
.calculate label.hide {
  display: none;
}
.calculate label::before {
  -webkit-transition: background-color 0.38s ease-in-out;
  transition: background-color 0.38s ease-in-out;
  content: "";
  width: 23px;
  min-width: 23px;
  height: 23px;
  display: inline-block;
  border-radius: 3px;
  cursor: pointer;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background-color: rgba(255, 255, 255, 0.5);
}
.calculate label input {
  display: none;
}
.calculate__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.calculate__btns label {
  width: 55%;
}
.calculate__btn {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.calculate__btn-icon::before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  font-size: 7px !important;
}
.calculate__btn-icon--right {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.calculate__btn--left {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.calculate__btn--left span {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.calculate__btn--none {
  display: none;
}

.progressBar {
  width: 100%;
  background-color: #e0e0e0;
  border-radius: 100px;
}
.progressBar__fill {
  display: block;
  height: 6px;
  background-color: #f18e38;
  border-radius: 100px;
  -webkit-transition: width 500ms ease-in-out;
  transition: width 500ms ease-in-out;
}

@media screen and (max-width: 1200px), screen and (max-height: 900px) {
  .calculate__right {
    height: 93%;
  }
  .calculate__content h2 {
    width: 60%;
  }
  .calculate__btns--last {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 20px;
  }
  .calculate__btns--last label {
    width: 100%;
  }
}
@media screen and (max-width: 992px) {
  .calculate {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 60px;
    gap: 60px;
  }
  .calculate__right {
    position: relative;
    width: 100%;
    height: auto;
    padding: 30px 20px;
  }
  .calculate__left {
    width: 100%;
  }
  .calculate__question-wrapper {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-column-gap: 50px;
       -moz-column-gap: 50px;
            column-gap: 50px;
  }
}
@media screen and (max-width: 768px) {
  .calculate--modal {
    padding-bottom: 20px;
  }
  .calculate__btns {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
  }
  .calculate__btns label {
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .calculate__left,
  .calculate__content h2 {
    padding: 0 15px;
  }
  .calculate__container {
    padding: 0 !important;
  }
  .calculate__question-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
  }
}
.breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 23px;
     -moz-column-gap: 23px;
          column-gap: 23px;
  row-gap: 5px;
  margin-top: 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (min-width: 992px) {
  .breadcrumbs {
    margin-top: calc(0.0339439655 * 100vw + -3.6724137931px);
  }
}
@media (min-width: 1920px) {
  .breadcrumbs {
    margin-top: 61.5px;
  }
}
.breadcrumbs span {
  width: 100%;
  display: contents;
}
.breadcrumbs span span {
  width: unset;
  display: unset;
}
.breadcrumbs a {
  color: #CAC9C9;
  font-family: Gotham Pro;
  font-size: 14px;
  font-weight: 400;
  line-height: 17.5px;
  position: relative;
}
.breadcrumbs a:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  right: -10px;
  top: 50%;
  -webkit-transform: translate(2px, -50%);
          transform: translate(2px, -50%);
  background-color: #F18E38;
}
.breadcrumbs p {
  font-family: Gotham Pro;
  font-size: 14px;
  font-weight: 400;
  line-height: 17.5px;
  color: #fff;
}

.contacts__content {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (min-width: 992px) {
  .contacts__content {
    margin-top: calc(0.0323275862 * 100vw + -2.0689655172px);
  }
}
@media (min-width: 1920px) {
  .contacts__content {
    margin-top: 60px;
  }
}
.contacts__content-title {
  font-family: Bebas;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 15px;
}
@media (min-width: 992px) {
  .contacts__content-title {
    font-size: calc(0.0064655172 * 100vw + 17.5862068966px);
  }
}
@media (min-width: 1920px) {
  .contacts__content-title {
    font-size: 30px;
  }
}
@media (min-width: 992px) {
  .contacts__content-title {
    margin-bottom: calc(0.005387931 * 100vw + 9.6551724138px);
  }
}
@media (min-width: 1920px) {
  .contacts__content-title {
    margin-bottom: 20px;
  }
}
.contacts__content-text {
  font-size: 14px;
  font-weight: 300;
  line-height: 26px;
}
@media (min-width: 992px) {
  .contacts__content-text {
    font-size: calc(0.0021551724 * 100vw + 11.8620689655px);
  }
}
@media (min-width: 1920px) {
  .contacts__content-text {
    font-size: 16px;
  }
}
.contacts__content-text--number {
  font-size: 16px;
  font-weight: 600;
  line-height: 22.5px;
  text-align: left;
}
@media (min-width: 992px) {
  .contacts__content-text--number {
    font-size: calc(0.0021551724 * 100vw + 13.8620689655px);
  }
}
@media (min-width: 1920px) {
  .contacts__content-text--number {
    font-size: 18px;
  }
}
.contacts__content-text--mail {
  color: #F18E38;
}
.contacts__content-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media (min-width: 992px) {
  .contacts__content-box {
    gap: calc(0.0107758621 * 100vw + 9.3103448276px);
  }
}
@media (min-width: 1920px) {
  .contacts__content-box {
    gap: 30px;
  }
}
.contacts__content-box:last-child {
  margin-top: 3px;
}
.contacts__map {
  margin-top: 20px;
  height: 380px;
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .contacts__map {
    margin-top: calc(0.0107758621 * 100vw + 9.3103448276px);
  }
}
@media (min-width: 1920px) {
  .contacts__map {
    margin-top: 30px;
  }
}
.contacts__map #map {
  height: 100%;
}

@media screen and (max-width: 768px) {
  .contacts__content {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
  }
  .contacts__map {
    height: 300px;
  }
}
@media screen and (max-width: 510px) {
  .contacts__content {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 15px;
  }
}
.blogDetail__wrapper {
  width: 865px;
}
.blogDetail ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media (min-width: 992px) {
  .blogDetail ul {
    gap: calc(0.005387931 * 100vw + 4.6551724138px);
  }
}
@media (min-width: 1920px) {
  .blogDetail ul {
    gap: 15px;
  }
}
.blogDetail ul li {
  padding-left: 15px;
  position: relative;
  font-family: Gotham Pro;
  font-size: 14px;
  font-weight: 400;
  line-height: 22.4px;
  text-align: left;
}
@media (min-width: 992px) {
  .blogDetail ul li {
    font-size: calc(0.0043103448 * 100vw + 9.724137931px);
  }
}
@media (min-width: 1920px) {
  .blogDetail ul li {
    font-size: 18px;
  }
}
.blogDetail ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 7.5px;
  width: 5px;
  height: 5px;
  background-color: #F18E38;
  border-radius: 50%;
}
.blogDetail ul {
  margin-top: 15px;
}
@media (min-width: 992px) {
  .blogDetail ul {
    margin-top: calc(0.005387931 * 100vw + 9.6551724138px);
  }
}
@media (min-width: 1920px) {
  .blogDetail ul {
    margin-top: 20px;
  }
}
.blogDetail .title {
  font-family: Bebas;
  font-size: 30px;
  font-weight: 700;
  line-height: 52px;
}
@media (min-width: 992px) {
  .blogDetail .title {
    font-size: calc(0.0237068966 * 100vw + 6.4827586207px);
  }
}
@media (min-width: 1920px) {
  .blogDetail .title {
    font-size: 52px;
  }
}
.blogDetail__content {
  margin-top: 15px;
}
@media (min-width: 992px) {
  .blogDetail__content {
    margin-top: calc(0.0161637931 * 100vw + -1.0344827586px);
  }
}
@media (min-width: 1920px) {
  .blogDetail__content {
    margin-top: 30px;
  }
}
.blogDetail__content p {
  margin-top: 15px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}
@media (min-width: 992px) {
  .blogDetail__content p {
    margin-top: calc(0.005387931 * 100vw + 9.6551724138px);
  }
}
@media (min-width: 1920px) {
  .blogDetail__content p {
    margin-top: 20px;
  }
}
@media (min-width: 992px) {
  .blogDetail__content p {
    font-size: calc(0.0021551724 * 100vw + 13.8620689655px);
  }
}
@media (min-width: 1920px) {
  .blogDetail__content p {
    font-size: 18px;
  }
}
@media (min-width: 992px) {
  .blogDetail__content p {
    line-height: calc(0.0032327586 * 100vw + 20.7931034483px);
  }
}
@media (min-width: 1920px) {
  .blogDetail__content p {
    line-height: 27px;
  }
}
.blogDetail__content-img {
  width: 100%;
  height: 476px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
}
.blogDetail__content-date {
  margin-top: 15px;
  font-family: Gotham Pro;
  font-size: 14px;
  font-weight: 400;
  line-height: 15.31px;
  color: #AAAAA9;
}
@media (min-width: 992px) {
  .blogDetail__content-date {
    margin-top: calc(0.005387931 * 100vw + 9.6551724138px);
  }
}
@media (min-width: 1920px) {
  .blogDetail__content-date {
    margin-top: 20px;
  }
}
@media (min-width: 992px) {
  .blogDetail__content-date {
    font-size: calc(0.0021551724 * 100vw + 11.8620689655px);
  }
}
@media (min-width: 1920px) {
  .blogDetail__content-date {
    font-size: 16px;
  }
}
.blogDetail__content-text {
  margin-top: 15px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}
@media (min-width: 992px) {
  .blogDetail__content-text {
    margin-top: calc(0.005387931 * 100vw + 9.6551724138px);
  }
}
@media (min-width: 1920px) {
  .blogDetail__content-text {
    margin-top: 20px;
  }
}
@media (min-width: 992px) {
  .blogDetail__content-text {
    font-size: calc(0.0021551724 * 100vw + 13.8620689655px);
  }
}
@media (min-width: 1920px) {
  .blogDetail__content-text {
    font-size: 18px;
  }
}
@media (min-width: 992px) {
  .blogDetail__content-text {
    line-height: calc(0.0032327586 * 100vw + 20.7931034483px);
  }
}
@media (min-width: 1920px) {
  .blogDetail__content-text {
    line-height: 27px;
  }
}
.blogDetail__content-text--bold {
  font-weight: 600;
}
.blogDetail__content-title {
  margin-top: 30px;
  font-family: Bebas;
  text-transform: uppercase;
  font-size: 25px;
  font-weight: 700;
  line-height: 30px;
}
@media (min-width: 992px) {
  .blogDetail__content-title {
    margin-top: calc(0.0323275862 * 100vw + -2.0689655172px);
  }
}
@media (min-width: 1920px) {
  .blogDetail__content-title {
    margin-top: 60px;
  }
}
@media (min-width: 992px) {
  .blogDetail__content-title {
    font-size: calc(0.005387931 * 100vw + 19.6551724138px);
  }
}
@media (min-width: 1920px) {
  .blogDetail__content-title {
    font-size: 30px;
  }
}
.blogDetail__mission {
  padding: 20px;
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  border-radius: 6px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #F18E38;
}
@media (min-width: 992px) {
  .blogDetail__mission {
    padding: calc(0.0107758621 * 100vw + 9.3103448276px);
  }
}
@media (min-width: 1920px) {
  .blogDetail__mission {
    padding: 30px;
  }
}
@media (min-width: 992px) {
  .blogDetail__mission {
    margin-top: calc(0.0431034483 * 100vw + -22.7586206897px);
  }
}
@media (min-width: 1920px) {
  .blogDetail__mission {
    margin-top: 60px;
  }
}
@media (min-width: 992px) {
  .blogDetail__mission {
    gap: calc(0.0107758621 * 100vw + 9.3103448276px);
  }
}
@media (min-width: 1920px) {
  .blogDetail__mission {
    gap: 30px;
  }
}
.blogDetail__mission-title {
  font-family: Bebas;
  text-transform: uppercase;
  font-size: 25px;
  line-height: 20px;
  font-weight: 700;
}
@media (min-width: 992px) {
  .blogDetail__mission-title {
    font-size: calc(0.005387931 * 100vw + 19.6551724138px);
  }
}
@media (min-width: 1920px) {
  .blogDetail__mission-title {
    font-size: 30px;
  }
}
@media (min-width: 992px) {
  .blogDetail__mission-title {
    line-height: calc(0.0107758621 * 100vw + 9.3103448276px);
  }
}
@media (min-width: 1920px) {
  .blogDetail__mission-title {
    line-height: 30px;
  }
}
.blogDetail__mission-text {
  font-size: 14px;
  line-height: 16px;
  font-weight: 300;
}
@media (min-width: 992px) {
  .blogDetail__mission-text {
    font-size: calc(0.0021551724 * 100vw + 11.8620689655px);
  }
}
@media (min-width: 1920px) {
  .blogDetail__mission-text {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .blogDetail__mission-text {
    line-height: calc(0.0068965517 * 100vw + 9.1586206897px);
  }
}
@media (min-width: 1920px) {
  .blogDetail__mission-text {
    line-height: 22.4px;
  }
}
.blogDetail__border {
  margin-top: 25px;
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2509803922);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2509803922);
}
@media (min-width: 992px) {
  .blogDetail__border {
    margin-top: calc(0.0377155172 * 100vw + -12.4137931034px);
  }
}
@media (min-width: 1920px) {
  .blogDetail__border {
    margin-top: 60px;
  }
}
@media (min-width: 992px) {
  .blogDetail__border {
    padding-top: calc(0.0107758621 * 100vw + 9.3103448276px);
  }
}
@media (min-width: 1920px) {
  .blogDetail__border {
    padding-top: 30px;
  }
}
@media (min-width: 992px) {
  .blogDetail__border {
    padding-bottom: calc(0.0107758621 * 100vw + 9.3103448276px);
  }
}
@media (min-width: 1920px) {
  .blogDetail__border {
    padding-bottom: 30px;
  }
}
.blogDetail__border-title {
  font-size: 16px;
  line-height: 18px;
  font-family: "Gotham Pro";
  font-weight: 600;
  text-transform: inherit;
}
@media (min-width: 992px) {
  .blogDetail__border-title {
    font-size: calc(0.0043103448 * 100vw + 11.724137931px);
  }
}
@media (min-width: 1920px) {
  .blogDetail__border-title {
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  .blogDetail__border-title {
    line-height: calc(0.0077586207 * 100vw + 10.3034482759px);
  }
}
@media (min-width: 1920px) {
  .blogDetail__border-title {
    line-height: 25.2px;
  }
}
.blogDetail__border-text {
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  color: #989898;
  margin-top: 15px;
}
@media (min-width: 992px) {
  .blogDetail__border-text {
    font-size: calc(0.0021551724 * 100vw + 11.8620689655px);
  }
}
@media (min-width: 1920px) {
  .blogDetail__border-text {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .blogDetail__border-text {
    line-height: calc(0.0047413793 * 100vw + 13.2965517241px);
  }
}
@media (min-width: 1920px) {
  .blogDetail__border-text {
    line-height: 22.4px;
  }
}
@media (min-width: 992px) {
  .blogDetail__border-text {
    margin-top: calc(0.0161637931 * 100vw + -1.0344827586px);
  }
}
@media (min-width: 1920px) {
  .blogDetail__border-text {
    margin-top: 30px;
  }
}
.blogDetail__quote {
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
  margin-top: 25px;
  position: relative;
  background-color: #FFFFFF;
  border-radius: 6px;
}
@media (min-width: 992px) {
  .blogDetail__quote {
    padding-top: calc(0.0107758621 * 100vw + 9.3103448276px);
  }
}
@media (min-width: 1920px) {
  .blogDetail__quote {
    padding-top: 30px;
  }
}
@media (min-width: 992px) {
  .blogDetail__quote {
    padding-bottom: calc(0.0107758621 * 100vw + 9.3103448276px);
  }
}
@media (min-width: 1920px) {
  .blogDetail__quote {
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .blogDetail__quote {
    padding-left: calc(0.0107758621 * 100vw + 9.3103448276px);
  }
}
@media (min-width: 1920px) {
  .blogDetail__quote {
    padding-left: 30px;
  }
}
@media (min-width: 992px) {
  .blogDetail__quote {
    padding-right: calc(0.0107758621 * 100vw + 9.3103448276px);
  }
}
@media (min-width: 1920px) {
  .blogDetail__quote {
    padding-right: 30px;
  }
}
@media (min-width: 992px) {
  .blogDetail__quote {
    margin-top: calc(0.0377155172 * 100vw + -12.4137931034px);
  }
}
@media (min-width: 1920px) {
  .blogDetail__quote {
    margin-top: 60px;
  }
}
.blogDetail__quote > img {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 70px;
  height: 50px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 992px) {
  .blogDetail__quote > img {
    top: calc(0.005387931 * 100vw + 9.6551724138px);
  }
}
@media (min-width: 1920px) {
  .blogDetail__quote > img {
    top: 20px;
  }
}
@media (min-width: 992px) {
  .blogDetail__quote > img {
    right: calc(0.005387931 * 100vw + 9.6551724138px);
  }
}
@media (min-width: 1920px) {
  .blogDetail__quote > img {
    right: 20px;
  }
}
@media (min-width: 992px) {
  .blogDetail__quote > img {
    width: calc(0.0215517241 * 100vw + 48.6206896552px);
  }
}
@media (min-width: 1920px) {
  .blogDetail__quote > img {
    width: 90px;
  }
}
@media (min-width: 992px) {
  .blogDetail__quote > img {
    height: calc(0.0107758621 * 100vw + 39.3103448276px);
  }
}
@media (min-width: 1920px) {
  .blogDetail__quote > img {
    height: 60px;
  }
}
.blogDetail__quote-title {
  font-family: Bebas;
  font-size: 30px;
  line-height: 30px;
  font-weight: 700;
  color: #F18E38;
}
@media (min-width: 992px) {
  .blogDetail__quote-title {
    font-size: calc(0.0107758621 * 100vw + 19.3103448276px);
  }
}
@media (min-width: 1920px) {
  .blogDetail__quote-title {
    font-size: 40px;
  }
}
@media (min-width: 992px) {
  .blogDetail__quote-title {
    line-height: calc(0.0107758621 * 100vw + 19.3103448276px);
  }
}
@media (min-width: 1920px) {
  .blogDetail__quote-title {
    line-height: 40px;
  }
}
.blogDetail__quote-text {
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  color: #2B2A29;
  margin-top: 15px;
}
@media (min-width: 992px) {
  .blogDetail__quote-text {
    font-size: calc(0.0021551724 * 100vw + 11.8620689655px);
  }
}
@media (min-width: 1920px) {
  .blogDetail__quote-text {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .blogDetail__quote-text {
    line-height: calc(0.0047413793 * 100vw + 13.2965517241px);
  }
}
@media (min-width: 1920px) {
  .blogDetail__quote-text {
    line-height: 22.4px;
  }
}
@media (min-width: 992px) {
  .blogDetail__quote-text {
    margin-top: calc(0.005387931 * 100vw + 9.6551724138px);
  }
}
@media (min-width: 1920px) {
  .blogDetail__quote-text {
    margin-top: 20px;
  }
}
.blogDetail__quote-name {
  font-size: 14px;
  font-style: italic;
  font-weight: 500;
  line-height: 18px;
  color: #323130;
  text-align: right;
  margin-top: 15px;
}
@media (min-width: 992px) {
  .blogDetail__quote-name {
    font-size: calc(0.0021551724 * 100vw + 11.8620689655px);
  }
}
@media (min-width: 1920px) {
  .blogDetail__quote-name {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .blogDetail__quote-name {
    line-height: calc(0.0047413793 * 100vw + 13.2965517241px);
  }
}
@media (min-width: 1920px) {
  .blogDetail__quote-name {
    line-height: 22.4px;
  }
}
@media (min-width: 992px) {
  .blogDetail__quote-name {
    margin-top: calc(0.005387931 * 100vw + 9.6551724138px);
  }
}
@media (min-width: 1920px) {
  .blogDetail__quote-name {
    margin-top: 20px;
  }
}
.blogDetail__quote-position {
  font-size: 13px;
  line-height: 15px;
  font-weight: 400;
  color: #989898;
  text-align: right;
  margin-top: 3px;
}
@media (min-width: 992px) {
  .blogDetail__quote-position {
    font-size: calc(0.0010775862 * 100vw + 11.9310344828px);
  }
}
@media (min-width: 1920px) {
  .blogDetail__quote-position {
    font-size: 14px;
  }
}
@media (min-width: 992px) {
  .blogDetail__quote-position {
    line-height: calc(0.0049568966 * 100vw + 10.0827586207px);
  }
}
@media (min-width: 1920px) {
  .blogDetail__quote-position {
    line-height: 19.6px;
  }
}
@media (min-width: 992px) {
  .blogDetail__quote-position {
    margin-top: calc(0.0021551724 * 100vw + 0.8620689655px);
  }
}
@media (min-width: 1920px) {
  .blogDetail__quote-position {
    margin-top: 5px;
  }
}

@media screen and (max-width: 992px) {
  .blogDetail .title {
    line-height: 30px;
  }
  .blogDetail__content-img {
    height: 250px;
  }
  .blogDetail__wrapper {
    width: auto;
  }
}
.about__content {
  margin-top: 20px;
}
@media (min-width: 992px) {
  .about__content {
    margin-top: calc(0.0107758621 * 100vw + 9.3103448276px);
  }
}
@media (min-width: 1920px) {
  .about__content {
    margin-top: 30px;
  }
}
.about__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  row-gap: 30px;
}
@media (min-width: 992px) {
  .about__top {
    row-gap: calc(0.0323275862 * 100vw + -2.0689655172px);
  }
}
@media (min-width: 1920px) {
  .about__top {
    row-gap: 60px;
  }
}
.about__top-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 47%;
}
.about__top-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
}
@media (min-width: 992px) {
  .about__top-text {
    font-size: calc(0.0021551724 * 100vw + 13.8620689655px);
  }
}
@media (min-width: 1920px) {
  .about__top-text {
    font-size: 18px;
  }
}
.about__top-text:not(:nth-child(1)) {
  margin-top: 18px;
}
@media (min-width: 992px) {
  .about__top-text:not(:nth-child(1)) {
    margin-top: calc(0.0107758621 * 100vw + 7.3103448276px);
  }
}
@media (min-width: 1920px) {
  .about__top-text:not(:nth-child(1)) {
    margin-top: 28px;
  }
}
.about__top-right {
  width: 49.2%;
}
.about__top-right img {
  width: 100%;
  height: 458px;
  border-radius: 6px 0 0 6px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 992px) {
  .about__top-right img {
    height: calc(0.3793103448 * 100vw + 81.724137931px);
  }
}
@media (min-width: 1920px) {
  .about__top-right img {
    height: 810px;
  }
}
.about__info {
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
@media (min-width: 992px) {
  .about__info {
    margin-top: calc(0.0808189655 * 100vw + -65.1724137931px);
  }
}
@media (min-width: 1920px) {
  .about__info {
    margin-top: 90px;
  }
}
@media (min-width: 992px) {
  .about__info {
    gap: calc(0.0808189655 * 100vw + -65.1724137931px);
  }
}
@media (min-width: 1920px) {
  .about__info {
    gap: 90px;
  }
}
.about__info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.about__info-number {
  font-family: Bebas;
  font-size: 90px;
  font-weight: 400;
  line-height: 70px;
  color: #CAC9C9;
  width: 150px;
  text-align: right;
}
@media (min-width: 992px) {
  .about__info-number {
    font-size: calc(0.0409482759 * 100vw + 49.3793103448px);
  }
}
@media (min-width: 1920px) {
  .about__info-number {
    font-size: 128px;
  }
}
@media (min-width: 992px) {
  .about__info-number {
    line-height: calc(0.0215517241 * 100vw + 48.6206896552px);
  }
}
@media (min-width: 1920px) {
  .about__info-number {
    line-height: 90px;
  }
}
.about__info-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.about__info-title {
  font-family: Bebas;
  font-size: 30px;
  font-weight: 400;
  line-height: 26.4px;
  text-transform: uppercase;
  color: #CAC9C9;
}
@media (min-width: 992px) {
  .about__info-title {
    font-size: calc(0.0129310345 * 100vw + 17.1724137931px);
  }
}
@media (min-width: 1920px) {
  .about__info-title {
    font-size: 42px;
  }
}
.about__info-text {
  width: 315px;
  margin-top: auto;
  font-family: Gotham Pro;
  font-size: 14px;
  line-height: 19px;
  font-weight: 400;
  text-align: left;
}
@media (min-width: 992px) {
  .about__info-text {
    font-size: calc(0.0021551724 * 100vw + 11.8620689655px);
  }
}
@media (min-width: 1920px) {
  .about__info-text {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .about__info-text {
    line-height: calc(0.0036637931 * 100vw + 15.3655172414px);
  }
}
@media (min-width: 1920px) {
  .about__info-text {
    line-height: 22.4px;
  }
}
.about__judgements {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
}
@media (min-width: 992px) {
  .about__judgements {
    margin-top: calc(0.0969827586 * 100vw + -66.2068965517px);
  }
}
@media (min-width: 1920px) {
  .about__judgements {
    margin-top: 120px;
  }
}
@media (min-width: 992px) {
  .about__judgements {
    gap: calc(0.0323275862 * 100vw + -2.0689655172px);
  }
}
@media (min-width: 1920px) {
  .about__judgements {
    gap: 60px;
  }
}
.about__judgements-left {
  width: 49.2%;
}
.about__judgements-left img {
  width: 100%;
  height: 458px;
  border-radius: 0 6px 6px 0;
}
@media (min-width: 992px) {
  .about__judgements-left img {
    height: calc(0.3793103448 * 100vw + 81.724137931px);
  }
}
@media (min-width: 1920px) {
  .about__judgements-left img {
    height: 810px;
  }
}
.about__judgements-right {
  width: 47.5%;
}
.about__judgements-title {
  font-family: Bebas;
  font-size: 33px;
  font-weight: 700;
  line-height: 40px;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .about__judgements-title {
    font-size: calc(0.0075431034 * 100vw + 25.5172413793px);
  }
}
@media (min-width: 1920px) {
  .about__judgements-title {
    font-size: 40px;
  }
}
.about__judgements-title:not(:nth-child(1)) {
  margin-top: 30px;
}
@media (min-width: 992px) {
  .about__judgements-title:not(:nth-child(1)) {
    margin-top: calc(0.0307112069 * 100vw + -0.4655172414px);
  }
}
@media (min-width: 1920px) {
  .about__judgements-title:not(:nth-child(1)) {
    margin-top: 58.5px;
  }
}
.about__judgements-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
  margin-top: 15px;
}
@media (min-width: 992px) {
  .about__judgements-text {
    font-size: calc(0.0021551724 * 100vw + 13.8620689655px);
  }
}
@media (min-width: 1920px) {
  .about__judgements-text {
    font-size: 18px;
  }
}
@media (min-width: 992px) {
  .about__judgements-text {
    margin-top: calc(0.0086206897 * 100vw + 6.4482758621px);
  }
}
@media (min-width: 1920px) {
  .about__judgements-text {
    margin-top: 23px;
  }
}
.about__strategy {
  margin-top: 30px;
}
@media (min-width: 992px) {
  .about__strategy {
    margin-top: calc(0.0969827586 * 100vw + -66.2068965517px);
  }
}
@media (min-width: 1920px) {
  .about__strategy {
    margin-top: 120px;
  }
}
.about__strategy-title {
  font-family: Bebas;
  font-size: 33px;
  font-weight: 700;
  line-height: 40px;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .about__strategy-title {
    font-size: calc(0.0075431034 * 100vw + 25.5172413793px);
  }
}
@media (min-width: 1920px) {
  .about__strategy-title {
    font-size: 40px;
  }
}
.about__strategy-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 15px;
  margin-top: 20px;
}
@media (min-width: 992px) {
  .about__strategy-lists {
    margin-top: calc(0.0431034483 * 100vw + -22.7586206897px);
  }
}
@media (min-width: 1920px) {
  .about__strategy-lists {
    margin-top: 60px;
  }
}
.about__strategy-img {
  margin-top: 30px;
  border-radius: 6px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 450px;
}
@media (min-width: 992px) {
  .about__strategy-img {
    margin-top: calc(0.0969827586 * 100vw + -66.2068965517px);
  }
}
@media (min-width: 1920px) {
  .about__strategy-img {
    margin-top: 120px;
  }
}
@media (min-width: 992px) {
  .about__strategy-img {
    height: calc(0.1185344828 * 100vw + 332.4137931034px);
  }
}
@media (min-width: 1920px) {
  .about__strategy-img {
    height: 560px;
  }
}
.about__list {
  width: 49.5%;
}
.about__list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media (min-width: 992px) {
  .about__list ul {
    gap: calc(0.005387931 * 100vw + 4.6551724138px);
  }
}
@media (min-width: 1920px) {
  .about__list ul {
    gap: 15px;
  }
}
.about__list ul li {
  padding-left: 15px;
  position: relative;
  font-family: Gotham Pro;
  font-size: 14px;
  font-weight: 400;
  line-height: 22.4px;
  text-align: left;
}
@media (min-width: 992px) {
  .about__list ul li {
    font-size: calc(0.0021551724 * 100vw + 11.8620689655px);
  }
}
@media (min-width: 1920px) {
  .about__list ul li {
    font-size: 16px;
  }
}
.about__list ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 7.5px;
  width: 5px;
  height: 5px;
  background-color: #F18E38;
  border-radius: 50%;
}
.about__list ul {
  margin-top: 15px;
}
@media (min-width: 992px) {
  .about__list ul {
    margin-top: calc(0.0059267241 * 100vw + 9.1206896552px);
  }
}
@media (min-width: 1920px) {
  .about__list ul {
    margin-top: 20.5px;
  }
}
.about__list-title {
  font-family: Gotham Pro;
  font-size: 16px;
  font-weight: 700;
  line-height: 25.2px;
}
@media (min-width: 992px) {
  .about__list-title {
    font-size: calc(0.0021551724 * 100vw + 13.8620689655px);
  }
}
@media (min-width: 1920px) {
  .about__list-title {
    font-size: 18px;
  }
}
.about__list:nth-child(1) ul {
  gap: 20px;
}
@media (min-width: 992px) {
  .about__list:nth-child(1) ul {
    gap: calc(0.0086206897 * 100vw + 11.4482758621px);
  }
}
@media (min-width: 1920px) {
  .about__list:nth-child(1) ul {
    gap: 28px;
  }
}
.about__list:nth-child(2) .about__list-title:not(:nth-of-type(1)) {
  margin-top: 15px;
}
@media (min-width: 992px) {
  .about__list:nth-child(2) .about__list-title:not(:nth-of-type(1)) {
    margin-top: calc(0.0161637931 * 100vw + -1.0344827586px);
  }
}
@media (min-width: 1920px) {
  .about__list:nth-child(2) .about__list-title:not(:nth-of-type(1)) {
    margin-top: 30px;
  }
}

@media screen and (max-width: 992px) {
  .about img {
    border-radius: 6px;
  }
  .about__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about__top-left {
    width: 100%;
  }
  .about__top-right {
    width: 100%;
    width: 100%;
    max-width: 1336px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 992px) and (max-width: 992px) {
  .about__top-right {
    max-width: 720px;
  }
}
@media screen and (max-width: 992px) and (max-width: 768px) {
  .about__top-right {
    max-width: 540px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 992px) and (max-width: 576px) {
  .about__top-right {
    max-width: none;
  }
}
@media screen and (max-width: 992px) {
  .about__info-item {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .about__judgements {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .about__judgements-right {
    width: 100%;
  }
  .about__judgements-left {
    width: 100%;
    width: 100%;
    max-width: 1336px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 992px) and (max-width: 992px) {
  .about__judgements-left {
    max-width: 720px;
  }
}
@media screen and (max-width: 992px) and (max-width: 768px) {
  .about__judgements-left {
    max-width: 540px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 992px) and (max-width: 576px) {
  .about__judgements-left {
    max-width: none;
  }
}
@media screen and (max-width: 768px) {
  .about img {
    height: 300px;
  }
  .about__strategy-lists {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about__strategy-lists .about__list {
    width: 100%;
  }
}
@media screen and (max-width: 490px) {
  .about__info-number {
    width: 90px;
    font-size: 60px;
    line-height: 46px;
  }
  .about__info-title {
    font-size: 20px;
    line-height: 20px;
  }
  .about__info-text {
    font-size: 12px;
    line-height: 16px;
  }
}
@media screen and (max-width: 451px) {
  .about__info-number {
    width: auto;
    font-size: 60px;
    line-height: 46px;
  }
  .about__info-item {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .about__info-text {
    width: auto;
    gap: 5px;
  }
}
.realisedObjects--mt369 {
  margin-top: 30px;
}
@media (min-width: 992px) {
  .realisedObjects--mt369 {
    margin-top: calc(0.3653017241 * 100vw + -332.3793103448px);
  }
}
@media (min-width: 1920px) {
  .realisedObjects--mt369 {
    margin-top: 369px;
  }
}
.realisedObjects__wrapper {
  margin-top: 30px;
}
@media (min-width: 992px) {
  .realisedObjects__wrapper {
    margin-top: calc(0.0969827586 * 100vw + -66.2068965517px);
  }
}
@media (min-width: 1920px) {
  .realisedObjects__wrapper {
    margin-top: 120px;
  }
}
.realisedObjects__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.realisedObjects__top h2 {
  font-family: Bebas;
  font-size: 33px;
  line-height: 35px;
  font-weight: 700;
}
@media (min-width: 992px) {
  .realisedObjects__top h2 {
    font-size: calc(0.0075431034 * 100vw + 25.5172413793px);
  }
}
@media (min-width: 1920px) {
  .realisedObjects__top h2 {
    font-size: 40px;
  }
}
@media (min-width: 992px) {
  .realisedObjects__top h2 {
    line-height: calc(0.005387931 * 100vw + 29.6551724138px);
  }
}
@media (min-width: 1920px) {
  .realisedObjects__top h2 {
    line-height: 40px;
  }
}
.realisedObjects__swiper {
  margin-top: 30px;
}
@media (min-width: 992px) {
  .realisedObjects__swiper {
    margin-top: calc(0.0323275862 * 100vw + -2.0689655172px);
  }
}
@media (min-width: 1920px) {
  .realisedObjects__swiper {
    margin-top: 60px;
  }
}
.realisedObjects__swiper .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px;
}
.realisedObjects__swiper .swiper-slide .buttonOrange::after {
  background-color: #E33224;
}

@media screen and (max-width: 992px) {
  .realisedObjects__swiper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .realisedObjects__swiper .project__card-img {
    height: auto;
  }
}
@media screen and (max-width: 465px) {
  .realisedObjects__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
}
.breadcrumbs__search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .breadcrumbs__search {
    margin-bottom: calc(0.0215517241 * 100vw + 18.6206896552px);
  }
}
@media (min-width: 1920px) {
  .breadcrumbs__search {
    margin-bottom: 60px;
  }
}

.searchPage {
  padding-top: 140px;
}
@media (min-width: 992px) {
  .searchPage {
    padding-top: calc(0.0377155172 * 100vw + 102.5862068966px);
  }
}
@media (min-width: 1920px) {
  .searchPage {
    padding-top: 175px;
  }
}
.searchPage__form {
  width: 100%;
  position: relative;
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .searchPage__form {
    margin-bottom: calc(0.0215517241 * 100vw + 18.6206896552px);
  }
}
@media (min-width: 1920px) {
  .searchPage__form {
    margin-bottom: 60px;
  }
}
.searchPage__form-wrapper {
  position: relative;
}
.searchPage__input {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1450980392);
  padding: 10px 0;
  color: rgb(255, 255, 255);
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
}
@media (min-width: 992px) {
  .searchPage__input {
    font-size: calc(0.0021551724 * 100vw + 15.8620689655px);
  }
}
@media (min-width: 1920px) {
  .searchPage__input {
    font-size: 20px;
  }
}
.searchPage__btn {
  background-image: url("../img/icon/search-Icon.svg");
  background-repeat: no-repeat;
  background-size: cover;
  width: 17px;
  height: 17px;
  background-color: transparent;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.38s ease-in-out;
  transition: 0.38s ease-in-out;
}
@media (min-width: 992px) {
  .searchPage__btn {
    width: calc(0.0064655172 * 100vw + 10.5862068966px);
  }
}
@media (min-width: 1920px) {
  .searchPage__btn {
    width: 23px;
  }
}
@media (min-width: 992px) {
  .searchPage__btn {
    height: calc(0.0064655172 * 100vw + 10.5862068966px);
  }
}
@media (min-width: 1920px) {
  .searchPage__btn {
    height: 23px;
  }
}
.searchPage__btn--hide {
  opacity: 0;
}
.searchPage__btnClose {
  cursor: pointer;
  opacity: 0;
  width: 20px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  -webkit-transition: opacity 0.38s ease-in-out;
  transition: opacity 0.38s ease-in-out;
  -ms-flex-item-align: start;
      align-self: flex-start;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.searchPage__btnClose--show {
  opacity: 1;
  z-index: 10;
}
.searchPage__btnClose span {
  display: block;
  background: #fff;
  position: absolute;
  height: 100%;
  width: 1px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.searchPage__btnClose span:last-child {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.searchPage__result, .searchPage__form {
  width: 83%;
}
.searchPage__result {
  margin-bottom: 50px;
}
@media (min-width: 992px) {
  .searchPage__result {
    margin-bottom: calc(0.0215517241 * 100vw + 28.6206896552px);
  }
}
@media (min-width: 1920px) {
  .searchPage__result {
    margin-bottom: 70px;
  }
}
.searchPage__result-found {
  color: rgb(255, 255, 255);
  font-size: 14px;
  font-weight: 400;
  line-height: 125%;
  letter-spacing: 0%;
  text-align: left;
  opacity: 0.5;
}
.searchPage__card {
  padding-top: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1450980392);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
@media (min-width: 992px) {
  .searchPage__card {
    padding-top: calc(0.0107758621 * 100vw + 19.3103448276px);
  }
}
@media (min-width: 1920px) {
  .searchPage__card {
    padding-top: 40px;
  }
}
@media (min-width: 992px) {
  .searchPage__card {
    padding-bottom: calc(0.0107758621 * 100vw + 19.3103448276px);
  }
}
@media (min-width: 1920px) {
  .searchPage__card {
    padding-bottom: 40px;
  }
}
@media (min-width: 992px) {
  .searchPage__card {
    gap: calc(0.005387931 * 100vw + 9.6551724138px);
  }
}
@media (min-width: 1920px) {
  .searchPage__card {
    gap: 20px;
  }
}
.searchPage__card:first-child {
  padding: 32px 0 40px;
}
.searchPage__card:last-child {
  border: none;
}
.searchPage__card-title {
  color: rgb(255, 255, 255);
  font-family: "Bebas";
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .searchPage__card-title {
    font-size: calc(0.0107758621 * 100vw + 9.3103448276px);
  }
}
@media (min-width: 1920px) {
  .searchPage__card-title {
    font-size: 30px;
  }
}
.searchPage__card-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}
.searchPage__card-text span {
  color: #f18e38;
  font-weight: 600;
}
.searchPage__card-breadcrumbs {
  margin: 0;
  color: #cac9c9;
  opacity: 0.5;
}
.searchPage__card-breadcrumbs a {
  position: relative;
}
.searchPage__card-breadcrumbs a:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  right: -10px;
  top: 50%;
  -webkit-transform: translate(2px, -50%);
          transform: translate(2px, -50%);
  background-color: #cac9c9;
}
.searchPage__card-breadcrumbs a:last-child::before {
  display: none;
}

@media screen and (max-width: 992px) {
  .searchPage {
    padding-top: 95px;
  }
  .searchPage h1 {
    margin-bottom: 20px;
  }
  .searchPage__result, .searchPage__form {
    width: 100%;
  }
}
.error__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 40px;
}
@media (min-width: 992px) {
  .error__wrapper {
    padding-top: calc(0.0215517241 * 100vw + 18.6206896552px);
  }
}
@media (min-width: 1920px) {
  .error__wrapper {
    padding-top: 60px;
  }
}
.error__content {
  width: 450px;
}
.error__content h1 {
  color: rgb(255, 255, 255);
  font-family: "Bebas";
  font-size: 72px;
  font-weight: 700;
  line-height: 72px;
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .error__content h1 {
    margin-bottom: calc(0.0215517241 * 100vw + 18.6206896552px);
  }
}
@media (min-width: 1920px) {
  .error__content h1 {
    margin-bottom: 60px;
  }
}
.error__content p {
  margin-bottom: 30px;
  font-size: 20px;
  font-weight: 400;
  line-height: 140%;
}
@media (min-width: 992px) {
  .error__content p {
    margin-bottom: calc(0.0107758621 * 100vw + 19.3103448276px);
  }
}
@media (min-width: 1920px) {
  .error__content p {
    margin-bottom: 40px;
  }
}
.error img {
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 0;
  width: 550px;
  margin-top: -12px;
}
@media (min-width: 992px) {
  .error img {
    margin-right: calc(-0.0808189655 * 100vw + 80.1724137931px);
  }
}
@media (min-width: 1920px) {
  .error img {
    margin-right: -75px;
  }
}
@media (min-width: 992px) {
  .error img {
    width: calc(0.1487068966 * 100vw + 402.4827586207px);
  }
}
@media (min-width: 1920px) {
  .error img {
    width: 688px;
  }
}
.error__link {
  padding: 15px 30px;
  font-size: 14px;
}
@media (min-width: 992px) {
  .error__link {
    font-size: calc(0.0021551724 * 100vw + 11.8620689655px);
  }
}
@media (min-width: 1920px) {
  .error__link {
    font-size: 16px;
  }
}
.error__link::before {
  background: rgb(241, 142, 56);
}
.error__link::after {
  background-color: #e97a18;
  opacity: 1;
  width: 0;
}

@media screen and (max-width: 992px) {
  .error__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 60px;
  }
  .error__content {
    width: 410px;
  }
  .error__content p {
    font-size: 18px;
  }
  .error img {
    -o-object-fit: cover;
       object-fit: cover;
    margin: 0;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .error__content h1 {
    font-size: 60px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 576px) {
  .error__wrapper {
    padding-top: 20px;
  }
  .error__content {
    width: 100%;
  }
}
.modal {
  background-color: #1f1f1e;
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.1882352941);
  border-radius: 6px;
}
.modal--feedback {
  padding: 90px 60px 60px;
  max-width: 505px;
  width: 100%;
}
.modal--thanks {
  width: 525px;
  padding: 90px 60px 60px;
}
.modal--thanks h2,
.modal--thanks h3,
.modal--thanks h4,
.modal--thanks h5 {
  text-align: center;
}
.modal--calculate {
  padding: 0;
  max-width: 1181px;
}
.modal--calculate .f-button svg {
  -webkit-filter: invert(1);
          filter: invert(1);
}
.modal--calculate h2 {
  font-size: 40px;
  line-height: 40px;
  max-width: 483px;
}
@media (min-width: 992px) {
  .modal--calculate h2 {
    font-size: calc(0.0129310345 * 100vw + 27.1724137931px);
  }
}
@media (min-width: 1920px) {
  .modal--calculate h2 {
    font-size: 52px;
  }
}
@media (min-width: 992px) {
  .modal--calculate h2 {
    line-height: calc(0.0129310345 * 100vw + 27.1724137931px);
  }
}
@media (min-width: 1920px) {
  .modal--calculate h2 {
    line-height: 52px;
  }
}
.modal--calculate .modal__wrapper {
  padding: 45px;
  padding-right: 60px;
}
.modal__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.modal__wrapper {
  padding: 90px 60px 60px;
  width: 67%;
}
.modal__top {
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
.modal__top h2,
.modal__top h3,
.modal__top h4,
.modal__top h5 {
  font-size: 52px;
}
.modal__top P {
  color: rgb(255, 255, 255);
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: left;
}
.modal__top--thanks {
  margin: 0;
}
.modal__top--thanks p {
  text-align: center;
}
.modal__top--thanks p:last-child {
  margin-top: 15px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.658);
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: center;
}
.modal__form-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  margin-bottom: 30px;
}
.modal__form-item textarea,
.modal__form-item input {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3137254902);
  padding-bottom: 20px;
  padding-right: 5px;
  padding-left: 5px;
  resize: none;
}
.modal__form-item textarea::-webkit-input-placeholder, .modal__form-item input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.3137254902);
}
.modal__form-item textarea::-moz-placeholder, .modal__form-item input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.3137254902);
}
.modal__form-item textarea:-ms-input-placeholder, .modal__form-item input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.3137254902);
}
.modal__form-item textarea::-ms-input-placeholder, .modal__form-item input::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.3137254902);
}
.modal__form-item textarea::placeholder,
.modal__form-item input::placeholder {
  color: rgba(255, 255, 255, 0.3137254902);
}
.modal__form-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 15px;
}
.modal__form-bottom input {
  display: none;
}
.modal__form-bottom label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-transition: all 0.38s ease-in-out;
  transition: all 0.38s ease-in-out;
  width: 100%;
  color: rgb(255, 255, 255);
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0%;
  text-align: left;
}
.modal__form-bottom label::before {
  -webkit-transition: background-color 0.38s ease-in-out;
  transition: background-color 0.38s ease-in-out;
  content: "";
  width: 23px;
  height: 23px;
  min-width: 23px;
  min-height: 23px;
  display: inline-block;
  border-radius: 3px;
  cursor: pointer;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background-color: rgba(255, 255, 255, 0.5);
}
.modal__form-bottom .selected::before {
  background-image: url(../img/icon/Vector\ 9.svg);
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
  border: 1px solid rgb(241, 142, 56);
  border-radius: 3px;
  background-color: rgb(241, 142, 56) !important;
}
.modal .f-button svg {
  opacity: 0.5;
}
.modal .f-button {
  width: 55px;
  height: 55px;
  top: 10px !important;
  right: 10px !important;
}

.calculate__btn--end .calculate__btn-icon--right {
  rotate: 270deg;
}

html.with-fancybox {
  overflow: hidden;
}

@media screen and (max-width: 993px) {
  .modal--calculate .f-button svg {
    -webkit-filter: invert(0);
            filter: invert(0);
  }
  .modal--calculate .modal__wrapper {
    width: 100%;
  }
  .modal__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .calculate__right-modal {
    width: 100%;
    padding: 30px 60px;
  }
}
@media screen and (max-width: 768px) {
  .modal--calculate .modal__wrapper {
    padding: 15px;
    padding-top: 20px;
  }
}
@media screen and (max-width: 576px) {
  .modal__top h2,
  .modal__top h3,
  .modal__top h4,
  .modal__top h5 {
    font-size: 40px;
  }
  .modal__top p {
    line-height: 110%;
  }
  .modal--feedback {
    max-width: 100%;
    padding: 60px 30px 30px;
  }
  .modal__wrapper,
  .calculate__right-modal {
    width: 100%;
    padding: 30px 10px;
  }
}
.presentation {
  margin-top: 30px;
}
@media (min-width: 992px) {
  .presentation {
    margin-top: calc(0.0969827586 * 100vw + -66.2068965517px);
  }
}
@media (min-width: 1920px) {
  .presentation {
    margin-top: 120px;
  }
}
.presentation__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media (min-width: 992px) {
  .presentation__wrapper {
    gap: calc(0.0431034483 * 100vw + -22.7586206897px);
  }
}
@media (min-width: 1920px) {
  .presentation__wrapper {
    gap: 60px;
  }
}
.presentation__wrapper-title {
  font-family: Bebas;
  font-size: 33px;
  font-weight: 700;
  line-height: 30px;
}
@media (min-width: 992px) {
  .presentation__wrapper-title {
    font-size: calc(0.0075431034 * 100vw + 25.5172413793px);
  }
}
@media (min-width: 1920px) {
  .presentation__wrapper-title {
    font-size: 40px;
  }
}
@media (min-width: 992px) {
  .presentation__wrapper-title {
    line-height: calc(0.0107758621 * 100vw + 19.3103448276px);
  }
}
@media (min-width: 1920px) {
  .presentation__wrapper-title {
    line-height: 40px;
  }
}
.presentation__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px;
}
.presentationItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  padding: 15px;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.2509803922);
}
@media (min-width: 992px) {
  .presentationItem {
    gap: calc(0.0215517241 * 100vw + -1.3793103448px);
  }
}
@media (min-width: 1920px) {
  .presentationItem {
    gap: 40px;
  }
}
@media (min-width: 992px) {
  .presentationItem {
    padding: calc(0.005387931 * 100vw + 9.6551724138px);
  }
}
@media (min-width: 1920px) {
  .presentationItem {
    padding: 20px;
  }
}
@media screen and (min-width: 993px) {
  .presentationItem:hover > img {
    background-color: #E33224;
  }
  .presentationItem:hover .presentationItem__box .buttonArrow p {
    color: #F18E38;
  }
  .presentationItem:hover .presentationItem__box .buttonArrow span {
    color: #F18E38;
  }
  .presentationItem:hover .presentationItem__title {
    color: #F18E38;
  }
}
.presentationItem > img {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: #F18E38;
  padding: 20px;
  border-radius: 3px;
  -webkit-transition: 0.38s ease-in-out;
  transition: 0.38s ease-in-out;
  position: relative;
}
@media (min-width: 992px) {
  .presentationItem > img {
    width: calc(0.0075431034 * 100vw + 72.5172413793px);
  }
}
@media (min-width: 1920px) {
  .presentationItem > img {
    width: 87px;
  }
}
@media (min-width: 992px) {
  .presentationItem > img {
    height: calc(0.0075431034 * 100vw + 72.5172413793px);
  }
}
@media (min-width: 1920px) {
  .presentationItem > img {
    height: 87px;
  }
}
.presentationItem__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.presentationItem__title {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  -webkit-transition: 0.38s ease-in-out;
  transition: 0.38s ease-in-out;
}
@media (min-width: 992px) {
  .presentationItem__title {
    font-size: calc(0.0043103448 * 100vw + 11.724137931px);
  }
}
@media (min-width: 1920px) {
  .presentationItem__title {
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  .presentationItem__title {
    line-height: calc(0.005387931 * 100vw + 14.6551724138px);
  }
}
@media (min-width: 1920px) {
  .presentationItem__title {
    line-height: 25px;
  }
}
.presentationItem .buttonArrow {
  -webkit-transition: 0.38s ease-in-out;
  transition: 0.38s ease-in-out;
}
.presentationItem .buttonArrow span {
  -webkit-transition: 0.38s ease-in-out;
  transition: 0.38s ease-in-out;
}

@media screen and (max-width: 992px) {
  .presentation__content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .presentation__content {
    grid-template-columns: repeat(1, 1fr);
  }
  .presentationItem {
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
  }
}
.customerFeedback {
  margin-top: 30px;
}
@media (min-width: 992px) {
  .customerFeedback {
    margin-top: calc(0.2004310345 * 100vw + -168.8275862069px);
  }
}
@media (min-width: 1920px) {
  .customerFeedback {
    margin-top: 216px;
  }
}
.customerFeedback--mt120 {
  margin-top: 30px;
}
@media (min-width: 992px) {
  .customerFeedback--mt120 {
    margin-top: calc(0.0969827586 * 100vw + -66.2068965517px);
  }
}
@media (min-width: 1920px) {
  .customerFeedback--mt120 {
    margin-top: 120px;
  }
}
.customerFeedback__wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.customerFeedback__content {
  width: 38%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
customerFeedback__slide .customerFeedback__content-title {
  font-size: 33px;
  line-height: 35px;
  font-weight: 700;
}
@media (min-width: 992px) {
  customerFeedback__slide .customerFeedback__content-title {
    font-size: calc(0.0075431034 * 100vw + 25.5172413793px);
  }
}
@media (min-width: 1920px) {
  customerFeedback__slide .customerFeedback__content-title {
    font-size: 40px;
  }
}
@media (min-width: 992px) {
  customerFeedback__slide .customerFeedback__content-title {
    line-height: calc(0.005387931 * 100vw + 29.6551724138px);
  }
}
@media (min-width: 1920px) {
  customerFeedback__slide .customerFeedback__content-title {
    line-height: 40px;
  }
}
.customerFeedback__content-text {
  font-size: 14px;
  line-height: 20px;
  font-weight: 300;
  margin-top: 15px;
}
@media (min-width: 992px) {
  .customerFeedback__content-text {
    font-size: calc(0.0043103448 * 100vw + 9.724137931px);
  }
}
@media (min-width: 1920px) {
  .customerFeedback__content-text {
    font-size: 18px;
  }
}
@media (min-width: 992px) {
  .customerFeedback__content-text {
    line-height: calc(0.0075431034 * 100vw + 12.5172413793px);
  }
}
@media (min-width: 1920px) {
  .customerFeedback__content-text {
    line-height: 27px;
  }
}
@media (min-width: 992px) {
  .customerFeedback__content-text {
    margin-top: calc(0.005387931 * 100vw + 9.6551724138px);
  }
}
@media (min-width: 1920px) {
  .customerFeedback__content-text {
    margin-top: 20px;
  }
}
.customerFeedback__control {
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
@media (min-width: 992px) {
  .customerFeedback__control {
    gap: calc(0.0021551724 * 100vw + 5.8620689655px);
  }
}
@media (min-width: 1920px) {
  .customerFeedback__control {
    gap: 10px;
  }
}
.customerFeedback__control-button {
  width: 65px;
  height: 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2509803922);
  cursor: pointer;
  -webkit-transition: background-color 0.38s ease-in-out;
  transition: background-color 0.38s ease-in-out;
}
@media (min-width: 992px) {
  .customerFeedback__control-button {
    width: calc(0.0075431034 * 100vw + 57.5172413793px);
  }
}
@media (min-width: 1920px) {
  .customerFeedback__control-button {
    width: 72px;
  }
}
@media (min-width: 992px) {
  .customerFeedback__control-button {
    height: calc(0.0075431034 * 100vw + 57.5172413793px);
  }
}
@media (min-width: 1920px) {
  .customerFeedback__control-button {
    height: 72px;
  }
}
.customerFeedback__control-button--left img {
  rotate: 0deg;
}
.customerFeedback__control-button img {
  -webkit-filter: opacity(25%);
          filter: opacity(25%);
  -webkit-transition: all 0.38s ease-in-out;
  transition: all 0.38s ease-in-out;
}
@media screen and (min-width: 993px) {
  .customerFeedback__control-button:hover {
    background-color: #F18E38;
  }
  .customerFeedback__control-button:hover img {
    -webkit-filter: none;
            filter: none;
  }
}
.customerFeedback__swiper {
  width: 57%;
  margin-right: unset;
}
.customerFeedback__slide {
  width: 300px;
  padding-top: 8px;
  padding-left: 8px;
  padding-right: 8px;
  padding-bottom: 25px;
  border: 1px solid rgba(255, 255, 255, 0.2509803922);
  border-radius: 6px;
  -webkit-transition: all 0.38s ease-in-out;
  transition: all 0.38s ease-in-out;
}
@media (min-width: 992px) {
  .customerFeedback__slide {
    width: calc(0.0538793103 * 100vw + 246.5517241379px);
  }
}
@media (min-width: 1920px) {
  .customerFeedback__slide {
    width: 350px;
  }
}
@media (min-width: 992px) {
  .customerFeedback__slide {
    padding-top: calc(0.0021551724 * 100vw + 5.8620689655px);
  }
}
@media (min-width: 1920px) {
  .customerFeedback__slide {
    padding-top: 10px;
  }
}
@media (min-width: 992px) {
  .customerFeedback__slide {
    padding-left: calc(0.0021551724 * 100vw + 5.8620689655px);
  }
}
@media (min-width: 1920px) {
  .customerFeedback__slide {
    padding-left: 10px;
  }
}
@media (min-width: 992px) {
  .customerFeedback__slide {
    padding-right: calc(0.0021551724 * 100vw + 5.8620689655px);
  }
}
@media (min-width: 1920px) {
  .customerFeedback__slide {
    padding-right: 10px;
  }
}
@media (min-width: 992px) {
  .customerFeedback__slide {
    padding-bottom: calc(0.0107758621 * 100vw + 14.3103448276px);
  }
}
@media (min-width: 1920px) {
  .customerFeedback__slide {
    padding-bottom: 35px;
  }
}
@media screen and (min-width: 993px) {
  .customerFeedback__slide:hover {
    background-color: #FFF;
  }
  .customerFeedback__slide:hover .customerFeedback__slide-title {
    color: #000;
  }
  .customerFeedback__slide:hover .customerFeedback__slide-name {
    color: #333333;
  }
}
.customerFeedback__slide > img {
  width: 100%;
  border-radius: 6px;
  height: 390px;
}
@media (min-width: 992px) {
  .customerFeedback__slide > img {
    height: calc(0.0377155172 * 100vw + 352.5862068966px);
  }
}
@media (min-width: 1920px) {
  .customerFeedback__slide > img {
    height: 425px;
  }
}
.customerFeedback__slide-title {
  font-size: 18px;
  line-height: 20px;
  font-weight: 400;
  padding-left: 15px;
  padding-right: 15px;
  margin-top: 15px;
  -webkit-transition: 0.38s ease-in-out;
  transition: 0.38s ease-in-out;
}
@media (min-width: 992px) {
  .customerFeedback__slide-title {
    font-size: calc(0.0021551724 * 100vw + 15.8620689655px);
  }
}
@media (min-width: 1920px) {
  .customerFeedback__slide-title {
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  .customerFeedback__slide-title {
    line-height: calc(0.005387931 * 100vw + 14.6551724138px);
  }
}
@media (min-width: 1920px) {
  .customerFeedback__slide-title {
    line-height: 25px;
  }
}
@media (min-width: 992px) {
  .customerFeedback__slide-title {
    padding-left: calc(0.005387931 * 100vw + 9.6551724138px);
  }
}
@media (min-width: 1920px) {
  .customerFeedback__slide-title {
    padding-left: 20px;
  }
}
@media (min-width: 992px) {
  .customerFeedback__slide-title {
    padding-right: calc(0.005387931 * 100vw + 9.6551724138px);
  }
}
@media (min-width: 1920px) {
  .customerFeedback__slide-title {
    padding-right: 20px;
  }
}
@media (min-width: 992px) {
  .customerFeedback__slide-title {
    margin-top: calc(0.0161637931 * 100vw + -1.0344827586px);
  }
}
@media (min-width: 1920px) {
  .customerFeedback__slide-title {
    margin-top: 30px;
  }
}
.customerFeedback__slide-name {
  padding-left: 15px;
  padding-right: 15px;
  font-size: 13px;
  line-height: 15px;
  font-weight: 400;
  color: #AAAAA9;
  margin-top: 8px;
  -webkit-transition: 0.38s ease-in-out;
  transition: 0.38s ease-in-out;
}
@media (min-width: 992px) {
  .customerFeedback__slide-name {
    padding-left: calc(0.005387931 * 100vw + 9.6551724138px);
  }
}
@media (min-width: 1920px) {
  .customerFeedback__slide-name {
    padding-left: 20px;
  }
}
@media (min-width: 992px) {
  .customerFeedback__slide-name {
    padding-right: calc(0.005387931 * 100vw + 9.6551724138px);
  }
}
@media (min-width: 1920px) {
  .customerFeedback__slide-name {
    padding-right: 20px;
  }
}
@media (min-width: 992px) {
  .customerFeedback__slide-name {
    font-size: calc(0.0010775862 * 100vw + 11.9310344828px);
  }
}
@media (min-width: 1920px) {
  .customerFeedback__slide-name {
    font-size: 14px;
  }
}
@media (min-width: 992px) {
  .customerFeedback__slide-name {
    line-height: calc(0.0026939655 * 100vw + 12.3275862069px);
  }
}
@media (min-width: 1920px) {
  .customerFeedback__slide-name {
    line-height: 17.5px;
  }
}
@media (min-width: 992px) {
  .customerFeedback__slide-name {
    margin-top: calc(0.0021551724 * 100vw + 5.8620689655px);
  }
}
@media (min-width: 1920px) {
  .customerFeedback__slide-name {
    margin-top: 10px;
  }
}

@media screen and (max-width: 992px) {
  .customerFeedback__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .customerFeedback__content {
    width: 100%;
  }
  .customerFeedback__control {
    margin-top: 20px;
  }
  .customerFeedback__control-button {
    width: 50px;
    height: 50px;
  }
  .customerFeedback__swiper {
    width: 100%;
    max-width: 1336px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
    margin-top: 20px;
  }
}
@media screen and (max-width: 992px) and (max-width: 992px) {
  .customerFeedback__swiper {
    max-width: 720px;
  }
}
@media screen and (max-width: 992px) and (max-width: 768px) {
  .customerFeedback__swiper {
    max-width: 540px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 992px) and (max-width: 576px) {
  .customerFeedback__swiper {
    max-width: none;
  }
}
.projectDetail__wrapper-title {
  font-family: "Bebas";
  font-size: 30px;
  line-height: 30px;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 700;
  margin-top: 30px;
}
@media (min-width: 992px) {
  .projectDetail__wrapper-title {
    font-size: calc(0.0237068966 * 100vw + 6.4827586207px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__wrapper-title {
    font-size: 52px;
  }
}
@media (min-width: 992px) {
  .projectDetail__wrapper-title {
    line-height: calc(0.0237068966 * 100vw + 6.4827586207px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__wrapper-title {
    line-height: 52px;
  }
}
@media (min-width: 992px) {
  .projectDetail__wrapper-title {
    margin-top: calc(0.0323275862 * 100vw + -2.0689655172px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__wrapper-title {
    margin-top: 60px;
  }
}
.projectDetail__top {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (min-width: 992px) {
  .projectDetail__top {
    margin-top: calc(0.0107758621 * 100vw + 9.3103448276px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__top {
    margin-top: 30px;
  }
}
.projectDetail__swipers {
  width: 57.5%;
}
.projectDetail__swiper {
  position: relative;
  width: 100%;
  height: 437px;
}
.projectDetail__swiper img {
  border-radius: 6px;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.projectDetail__swiper-button {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 1;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #FFFFFF;
  border-radius: 4px;
  cursor: pointer;
}
@media (min-width: 992px) {
  .projectDetail__swiper-button {
    width: calc(0.0075431034 * 100vw + 22.5172413793px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__swiper-button {
    width: 37px;
  }
}
@media (min-width: 992px) {
  .projectDetail__swiper-button {
    height: calc(0.0075431034 * 100vw + 22.5172413793px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__swiper-button {
    height: 37px;
  }
}
@media screen and (min-width: 993px) {
  .projectDetail__swiper-button:hover .icon-arrow-bot {
    color: #E33224;
  }
}
.projectDetail__swiper-button .icon-arrow-bot {
  color: #F18E38;
  font-size: 7px;
  -webkit-transition: color 0.38s ease-in-out;
  transition: color 0.38s ease-in-out;
}
.projectDetail__swiper-button img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
.projectDetail__swiper-button--prev {
  left: 15px;
}
.projectDetail__swiper-button--prev .icon-arrow-bot {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.projectDetail__swiper-button--next {
  right: 15px;
}
.projectDetail__swiper-button--next .icon-arrow-bot {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.projectDetail__swiperThumbs {
  margin-top: 8px;
}
@media (min-width: 992px) {
  .projectDetail__swiperThumbs {
    margin-top: calc(0.0021551724 * 100vw + 5.8620689655px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__swiperThumbs {
    margin-top: 10px;
  }
}
.projectDetail__swiperThumbs img {
  border-radius: 6px;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.projectDetail__slide {
  width: 100%;
}
.projectDetail__slide img {
  width: 100%;
}
.projectDetail__characteristics {
  width: 38%;
}
.projectDetail__characteristics-text {
  margin-top: 15px;
  font-size: 13px;
  line-height: 16px;
  font-weight: 300;
}
@media (min-width: 992px) {
  .projectDetail__characteristics-text {
    margin-top: calc(0.005387931 * 100vw + 9.6551724138px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__characteristics-text {
    margin-top: 20px;
  }
}
@media (min-width: 992px) {
  .projectDetail__characteristics-text {
    font-size: calc(0.0010775862 * 100vw + 11.9310344828px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__characteristics-text {
    font-size: 14px;
  }
}
@media (min-width: 992px) {
  .projectDetail__characteristics-text {
    line-height: calc(0.005387931 * 100vw + 10.6551724138px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__characteristics-text {
    line-height: 21px;
  }
}
.projectDetail__guarantee {
  border: 1px solid rgba(255, 255, 255, 0.2509803922);
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 15px;
  padding-right: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 6px;
}
@media (min-width: 992px) {
  .projectDetail__guarantee {
    padding-top: calc(0.0107758621 * 100vw + 9.3103448276px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__guarantee {
    padding-top: 30px;
  }
}
@media (min-width: 992px) {
  .projectDetail__guarantee {
    padding-bottom: calc(0.0107758621 * 100vw + 9.3103448276px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__guarantee {
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .projectDetail__guarantee {
    padding-left: calc(0.005387931 * 100vw + 9.6551724138px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__guarantee {
    padding-left: 20px;
  }
}
@media (min-width: 992px) {
  .projectDetail__guarantee {
    padding-right: calc(0.005387931 * 100vw + 9.6551724138px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__guarantee {
    padding-right: 20px;
  }
}
.projectDetail__guarantee-title {
  font-family: Bebas;
  letter-spacing: 1.7px;
  font-size: 25px;
  line-height: 25px;
  text-transform: uppercase;
  font-weight: 700;
}
@media (min-width: 992px) {
  .projectDetail__guarantee-title {
    font-size: calc(0.005387931 * 100vw + 19.6551724138px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__guarantee-title {
    font-size: 30px;
  }
}
@media (min-width: 992px) {
  .projectDetail__guarantee-title {
    line-height: calc(0.005387931 * 100vw + 19.6551724138px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__guarantee-title {
    line-height: 30px;
  }
}
.projectDetail__guarantee-text {
  margin-top: 10px;
  font-weight: 300;
  font-size: 13px;
  line-height: 15px;
}
@media (min-width: 992px) {
  .projectDetail__guarantee-text {
    margin-top: calc(0.005387931 * 100vw + 4.6551724138px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__guarantee-text {
    margin-top: 15px;
  }
}
@media (min-width: 992px) {
  .projectDetail__guarantee-text {
    font-size: calc(0.0010775862 * 100vw + 11.9310344828px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__guarantee-text {
    font-size: 14px;
  }
}
@media (min-width: 992px) {
  .projectDetail__guarantee-text {
    line-height: calc(0.0026939655 * 100vw + 12.3275862069px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__guarantee-text {
    line-height: 17.5px;
  }
}
.projectDetail__guarantee .link--red {
  margin: 0;
  margin-top: 18px;
}
@media (min-width: 992px) {
  .projectDetail__guarantee .link--red {
    margin-top: calc(0.0086206897 * 100vw + 9.4482758621px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__guarantee .link--red {
    margin-top: 26px;
  }
}
.projectDetail__brief {
  margin-top: 25px;
}
@media (min-width: 992px) {
  .projectDetail__brief {
    margin-top: calc(0.0409482759 * 100vw + -15.6206896552px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__brief {
    margin-top: 63px;
  }
}
.projectDetail__brief-title {
  font-family: Bebas;
  letter-spacing: 1.7px;
  font-size: 25px;
  line-height: 25px;
  font-weight: 700;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .projectDetail__brief-title {
    font-size: calc(0.005387931 * 100vw + 19.6551724138px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__brief-title {
    font-size: 30px;
  }
}
@media (min-width: 992px) {
  .projectDetail__brief-title {
    line-height: calc(0.005387931 * 100vw + 19.6551724138px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__brief-title {
    line-height: 30px;
  }
}
.projectDetail__brief > p {
  margin-top: 15px;
}
@media (min-width: 992px) {
  .projectDetail__brief > p {
    margin-top: calc(0.005387931 * 100vw + 9.6551724138px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__brief > p {
    margin-top: 20px;
  }
}
.projectDetail__brief-text {
  font-size: 13px;
  line-height: 15px;
  font-weight: 600;
}
@media (min-width: 992px) {
  .projectDetail__brief-text {
    font-size: calc(0.0010775862 * 100vw + 11.9310344828px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__brief-text {
    font-size: 14px;
  }
}
@media (min-width: 992px) {
  .projectDetail__brief-text {
    line-height: calc(0.0026939655 * 100vw + 12.3275862069px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__brief-text {
    line-height: 17.5px;
  }
}
.projectDetail__brief-text--pale {
  color: #AAAAA9;
  font-weight: 300;
}
.projectDetail__brief-box {
  margin-top: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
@media (min-width: 992px) {
  .projectDetail__brief-box {
    margin-top: calc(0.0032327586 * 100vw + 8.7931034483px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__brief-box {
    margin-top: 15px;
  }
}
@media (min-width: 992px) {
  .projectDetail__brief-box {
    gap: calc(0.0021551724 * 100vw + 5.8620689655px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__brief-box {
    gap: 10px;
  }
}
.projectDetail__brief-boxItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
@media (min-width: 992px) {
  .projectDetail__brief-boxItem {
    gap: calc(0.0021551724 * 100vw + 5.8620689655px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__brief-boxItem {
    gap: 10px;
  }
}
.projectDetail__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-top: 30px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2509803922);
}
@media (min-width: 992px) {
  .projectDetail__tabs {
    gap: calc(0.0215517241 * 100vw + -1.3793103448px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__tabs {
    gap: 40px;
  }
}
@media (min-width: 992px) {
  .projectDetail__tabs {
    margin-top: calc(0.0646551724 * 100vw + -34.1379310345px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__tabs {
    margin-top: 90px;
  }
}
@media (min-width: 992px) {
  .projectDetail__tabs {
    padding-bottom: calc(0.0021551724 * 100vw + 5.8620689655px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__tabs {
    padding-bottom: 10px;
  }
}
.projectDetail__tabs p {
  font-family: Bebas;
  font-size: 23px;
  line-height: 23px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: 0.38s ease-in-out;
  transition: 0.38s ease-in-out;
}
@media (min-width: 992px) {
  .projectDetail__tabs p {
    font-size: calc(0.0075431034 * 100vw + 15.5172413793px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__tabs p {
    font-size: 30px;
  }
}
@media (min-width: 992px) {
  .projectDetail__tabs p {
    line-height: calc(0.0075431034 * 100vw + 15.5172413793px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__tabs p {
    line-height: 30px;
  }
}
.projectDetail__tabs p.active {
  cursor: unset;
  color: #F18E38;
}
.projectDetail__tabsContent {
  width: 62%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.projectDetail__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 20px;
}
@media (min-width: 992px) {
  .projectDetail__box {
    margin-top: calc(0.0215517241 * 100vw + -1.3793103448px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__box {
    margin-top: 40px;
  }
}
.projectDetail__box-right {
  width: 23.3%;
}
.projectDetail__box-right .presentationItem {
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 12px;
  padding-right: 15px;
}
@media (min-width: 992px) {
  .projectDetail__box-right .presentationItem {
    padding-top: calc(0.0032327586 * 100vw + 8.7931034483px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__box-right .presentationItem {
    padding-top: 15px;
  }
}
@media (min-width: 992px) {
  .projectDetail__box-right .presentationItem {
    padding-bottom: calc(0.0032327586 * 100vw + 8.7931034483px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__box-right .presentationItem {
    padding-bottom: 15px;
  }
}
@media (min-width: 992px) {
  .projectDetail__box-right .presentationItem {
    padding-left: calc(0.0032327586 * 100vw + 8.7931034483px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__box-right .presentationItem {
    padding-left: 15px;
  }
}
@media (min-width: 992px) {
  .projectDetail__box-right .presentationItem {
    padding-right: calc(0.005387931 * 100vw + 9.6551724138px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__box-right .presentationItem {
    padding-right: 20px;
  }
}
.projectDetail__box-right .presentationItem > img {
  width: 50px;
  height: 50px;
  padding: 10px;
}
@media (min-width: 992px) {
  .projectDetail__box-right .presentationItem > img {
    width: calc(0.0110775862 * 100vw + 39.0110344828px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__box-right .presentationItem > img {
    width: 60.28px;
  }
}
@media (min-width: 992px) {
  .projectDetail__box-right .presentationItem > img {
    height: calc(0.0110775862 * 100vw + 39.0110344828px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__box-right .presentationItem > img {
    height: 60.28px;
  }
}
@media (min-width: 992px) {
  .projectDetail__box-right .presentationItem > img {
    padding: calc(0.0032327586 * 100vw + 6.7931034483px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__box-right .presentationItem > img {
    padding: 13px;
  }
}
.projectDetail__box-right .presentationItem__title {
  font-size: 12px;
  line-height: 15px;
  font-weight: 600;
}
@media (min-width: 992px) {
  .projectDetail__box-right .presentationItem__title {
    font-size: calc(0.0010775862 * 100vw + 10.9310344828px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__box-right .presentationItem__title {
    font-size: 13px;
  }
}
@media (min-width: 992px) {
  .projectDetail__box-right .presentationItem__title {
    line-height: calc(0.0026939655 * 100vw + 12.3275862069px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__box-right .presentationItem__title {
    line-height: 17.5px;
  }
}
.projectDetail__box-right .presentationItem:not(:nth-of-type(1)) {
  margin-top: 8px;
}
@media (min-width: 992px) {
  .projectDetail__box-right .presentationItem:not(:nth-of-type(1)) {
    margin-top: calc(0.0021551724 * 100vw + 5.8620689655px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__box-right .presentationItem:not(:nth-of-type(1)) {
    margin-top: 10px;
  }
}
.projectDetail__box-title {
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}
@media (min-width: 992px) {
  .projectDetail__box-title {
    font-size: calc(0.0021551724 * 100vw + 13.8620689655px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__box-title {
    font-size: 18px;
  }
}
@media (min-width: 992px) {
  .projectDetail__box-title {
    line-height: calc(0.0056034483 * 100vw + 14.4413793103px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__box-title {
    line-height: 25.2px;
  }
}
@media (min-width: 992px) {
  .projectDetail__box-title {
    margin-bottom: calc(0.005387931 * 100vw + 9.6551724138px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__box-title {
    margin-bottom: 20px;
  }
}
.projectDetail__box-title:not(:nth-of-type(1)) {
  margin-bottom: 8px;
  margin-top: 20px;
}
@media (min-width: 992px) {
  .projectDetail__box-title:not(:nth-of-type(1)) {
    margin-bottom: calc(0.0021551724 * 100vw + 5.8620689655px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__box-title:not(:nth-of-type(1)) {
    margin-bottom: 10px;
  }
}
@media (min-width: 992px) {
  .projectDetail__box-title:not(:nth-of-type(1)) {
    margin-top: calc(0.0107758621 * 100vw + 9.3103448276px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__box-title:not(:nth-of-type(1)) {
    margin-top: 30px;
  }
}
.projectDetail__tabDescription ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media (min-width: 992px) {
  .projectDetail__tabDescription ul {
    gap: calc(0.005387931 * 100vw + 4.6551724138px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__tabDescription ul {
    gap: 15px;
  }
}
.projectDetail__tabDescription ul li {
  padding-left: 15px;
  position: relative;
  font-family: Gotham Pro;
  font-size: 14px;
  font-weight: 400;
  line-height: 22.4px;
  text-align: left;
}
@media (min-width: 992px) {
  .projectDetail__tabDescription ul li {
    font-size: calc(0.0021551724 * 100vw + 11.8620689655px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__tabDescription ul li {
    font-size: 16px;
  }
}
.projectDetail__tabDescription ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 7.5px;
  width: 5px;
  height: 5px;
  background-color: #F18E38;
  border-radius: 50%;
}
.projectDetail__tabDescription ul {
  gap: 12px;
  margin-top: 15px;
}
@media (min-width: 992px) {
  .projectDetail__tabDescription ul {
    gap: calc(0.0037715517 * 100vw + 8.2586206897px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__tabDescription ul {
    gap: 15.5px;
  }
}
@media (min-width: 992px) {
  .projectDetail__tabDescription ul {
    margin-top: calc(0.005387931 * 100vw + 9.6551724138px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__tabDescription ul {
    margin-top: 20px;
  }
}
.projectDetail__tabDescription ul li {
  font-weight: 300;
}
.projectDetail__tabDescription-text {
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
}
@media (min-width: 992px) {
  .projectDetail__tabDescription-text {
    font-size: calc(0.0021551724 * 100vw + 11.8620689655px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__tabDescription-text {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .projectDetail__tabDescription-text {
    line-height: calc(0 * 100vw + 24px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__tabDescription-text {
    line-height: 24px;
  }
}
.projectDetail__tabDescription-text:not(:nth-of-type(1)) {
  margin-top: 25px;
}
@media (min-width: 992px) {
  .projectDetail__tabDescription-text:not(:nth-of-type(1)) {
    margin-top: calc(0.0161637931 * 100vw + 8.9655172414px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__tabDescription-text:not(:nth-of-type(1)) {
    margin-top: 40px;
  }
}
.projectDetail__tabDescription-text:nth-of-type(2) {
  margin-top: 15px;
}
@media (min-width: 992px) {
  .projectDetail__tabDescription-text:nth-of-type(2) {
    margin-top: calc(0.005387931 * 100vw + 9.6551724138px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__tabDescription-text:nth-of-type(2) {
    margin-top: 20px;
  }
}
.projectDetail__tabDescription p {
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
}
@media (min-width: 992px) {
  .projectDetail__tabDescription p {
    font-size: calc(0.0021551724 * 100vw + 11.8620689655px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__tabDescription p {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .projectDetail__tabDescription p {
    line-height: calc(0 * 100vw + 24px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__tabDescription p {
    line-height: 24px;
  }
}
.projectDetail__tabDescription p:not(:nth-of-type(1)) {
  margin-top: 25px;
}
@media (min-width: 992px) {
  .projectDetail__tabDescription p:not(:nth-of-type(1)) {
    margin-top: calc(0.0161637931 * 100vw + 8.9655172414px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__tabDescription p:not(:nth-of-type(1)) {
    margin-top: 40px;
  }
}
.projectDetail__tabDescription p:nth-of-type(2) {
  margin-top: 15px;
}
@media (min-width: 992px) {
  .projectDetail__tabDescription p:nth-of-type(2) {
    margin-top: calc(0.005387931 * 100vw + 9.6551724138px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__tabDescription p:nth-of-type(2) {
    margin-top: 20px;
  }
}
.projectDetail__tabDescription p b {
  margin-top: -10px;
  font-family: Gotham Pro;
  letter-spacing: normal;
  font-size: 16px;
  line-height: 18px;
  text-transform: unset;
  font-weight: 600;
  display: block;
}
@media (min-width: 992px) {
  .projectDetail__tabDescription p b {
    margin-top: calc(-0.0107758621 * 100vw + 0.6896551724px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__tabDescription p b {
    margin-top: -20px;
  }
}
@media (min-width: 992px) {
  .projectDetail__tabDescription p b {
    font-size: calc(0.0021551724 * 100vw + 13.8620689655px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__tabDescription p b {
    font-size: 18px;
  }
}
@media (min-width: 992px) {
  .projectDetail__tabDescription p b {
    line-height: calc(0.0077586207 * 100vw + 10.3034482759px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__tabDescription p b {
    line-height: 25.2px;
  }
}
.projectDetail__tabDescription-title {
  margin-top: 20px;
  font-family: Bebas;
  letter-spacing: 1.7px;
  font-size: 25px;
  line-height: 25px;
  text-transform: uppercase;
  font-weight: 700;
}
@media (min-width: 992px) {
  .projectDetail__tabDescription-title {
    margin-top: calc(0.0215517241 * 100vw + -1.3793103448px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__tabDescription-title {
    margin-top: 40px;
  }
}
@media (min-width: 992px) {
  .projectDetail__tabDescription-title {
    font-size: calc(0.005387931 * 100vw + 19.6551724138px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__tabDescription-title {
    font-size: 30px;
  }
}
@media (min-width: 992px) {
  .projectDetail__tabDescription-title {
    line-height: calc(0.005387931 * 100vw + 19.6551724138px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__tabDescription-title {
    line-height: 30px;
  }
}
.projectDetail__tabDescription-title--min {
  font-family: Gotham Pro;
  letter-spacing: normal;
  font-size: 16px;
  line-height: 18px;
  text-transform: unset;
  font-weight: 600;
}
@media (min-width: 992px) {
  .projectDetail__tabDescription-title--min {
    font-size: calc(0.0021551724 * 100vw + 13.8620689655px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__tabDescription-title--min {
    font-size: 18px;
  }
}
@media (min-width: 992px) {
  .projectDetail__tabDescription-title--min {
    line-height: calc(0.0077586207 * 100vw + 10.3034482759px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__tabDescription-title--min {
    line-height: 25.2px;
  }
}
.projectDetail__tabDescription h2 {
  margin-top: 20px;
  font-family: Bebas;
  letter-spacing: 1.7px;
  font-size: 25px;
  line-height: 25px;
  text-transform: uppercase;
  font-weight: 700;
}
@media (min-width: 992px) {
  .projectDetail__tabDescription h2 {
    margin-top: calc(0.0215517241 * 100vw + -1.3793103448px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__tabDescription h2 {
    margin-top: 40px;
  }
}
@media (min-width: 992px) {
  .projectDetail__tabDescription h2 {
    font-size: calc(0.005387931 * 100vw + 19.6551724138px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__tabDescription h2 {
    font-size: 30px;
  }
}
@media (min-width: 992px) {
  .projectDetail__tabDescription h2 {
    line-height: calc(0.005387931 * 100vw + 19.6551724138px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__tabDescription h2 {
    line-height: 30px;
  }
}
.projectDetail__tabCharacteristics {
  width: 500px;
}
@media (min-width: 992px) {
  .projectDetail__tabCharacteristics {
    width: calc(0.1487068966 * 100vw + 352.4827586207px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__tabCharacteristics {
    width: 638px;
  }
}
.projectDetail__tabCharacteristics-title {
  font-size: 18px;
  line-height: 22px;
  font-weight: 600;
}
@media (min-width: 992px) {
  .projectDetail__tabCharacteristics-title {
    font-size: calc(0.0021551724 * 100vw + 15.8620689655px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__tabCharacteristics-title {
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  .projectDetail__tabCharacteristics-title {
    line-height: calc(0.0064655172 * 100vw + 15.5862068966px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__tabCharacteristics-title {
    line-height: 28px;
  }
}
.projectDetail__tabCharacteristics-content {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
@media (min-width: 992px) {
  .projectDetail__tabCharacteristics-content {
    margin-top: calc(0.0107758621 * 100vw + 9.3103448276px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__tabCharacteristics-content {
    margin-top: 30px;
  }
}
@media (min-width: 992px) {
  .projectDetail__tabCharacteristics-content {
    gap: calc(0.005387931 * 100vw + 9.6551724138px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__tabCharacteristics-content {
    gap: 20px;
  }
}
.projectDetail__tabCharacteristics-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  background-image: url("../img/icon/borderbottom.png");
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: 100%;
}
.projectDetail__tabCharacteristics-item > img {
  position: absolute;
  bottom: 0;
  z-index: 0;
  width: 100%;
}
.projectDetail__tabCharacteristics-item p {
  overflow: hidden;
  z-index: 1;
  background-color: #2B2A29;
}
.projectDetail__testimonials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2509803922);
  padding: 10px;
}
@media (min-width: 992px) {
  .projectDetail__testimonials {
    gap: calc(0.0010775862 * 100vw + 6.9310344828px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__testimonials {
    gap: 9px;
  }
}
@media (min-width: 992px) {
  .projectDetail__testimonials {
    padding: calc(0.005387931 * 100vw + 4.6551724138px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__testimonials {
    padding: 15px;
  }
}
.projectDetail__testimonials-title {
  font-size: 13px;
  line-height: 15px;
  font-weight: 600;
}
@media (min-width: 992px) {
  .projectDetail__testimonials-title {
    font-size: calc(0.0010775862 * 100vw + 11.9310344828px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__testimonials-title {
    font-size: 14px;
  }
}
@media (min-width: 992px) {
  .projectDetail__testimonials-title {
    line-height: calc(0.0026939655 * 100vw + 12.3275862069px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__testimonials-title {
    line-height: 17.5px;
  }
}
.projectDetail__testimonials-text {
  font-size: 13px;
  line-height: 15px;
  margin-top: 3px;
  font-weight: 300;
  color: #aaaaa9;
}
@media (min-width: 992px) {
  .projectDetail__testimonials-text {
    font-size: calc(0.0010775862 * 100vw + 11.9310344828px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__testimonials-text {
    font-size: 14px;
  }
}
@media (min-width: 992px) {
  .projectDetail__testimonials-text {
    line-height: calc(0.0026939655 * 100vw + 12.3275862069px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__testimonials-text {
    line-height: 17.5px;
  }
}
@media (min-width: 992px) {
  .projectDetail__testimonials-text {
    margin-top: calc(0.0021551724 * 100vw + 0.8620689655px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__testimonials-text {
    margin-top: 5px;
  }
}
.projectDetail__testimonials > img {
  widht: 80px;
  height: 110px;
}
@media (min-width: 992px) {
  .projectDetail__testimonials > img {
    widht: calc(0.0193965517 * 100vw + 60.7586206897px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__testimonials > img {
    widht: 98px;
  }
}
@media (min-width: 992px) {
  .projectDetail__testimonials > img {
    height: calc(0.0247844828 * 100vw + 85.4137931034px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__testimonials > img {
    height: 133px;
  }
}
.projectDetail__testimonials-box {
  padding-top: 9px;
  padding-bottom: 7px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 992px) {
  .projectDetail__testimonials-box {
    padding-top: calc(0.0043103448 * 100vw + 4.724137931px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__testimonials-box {
    padding-top: 13px;
  }
}
@media (min-width: 992px) {
  .projectDetail__testimonials-box {
    padding-bottom: calc(0.0021551724 * 100vw + 4.8620689655px);
  }
}
@media (min-width: 1920px) {
  .projectDetail__testimonials-box {
    padding-bottom: 9px;
  }
}
.projectDetail__testimonials .buttonArrow {
  margin-top: auto;
}

@media screen and (max-width: 992px) {
  .projectDetail__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .projectDetail__box-right {
    width: 40%;
  }
  .projectDetail__tabCharacteristics {
    width: 100%;
  }
  .projectDetail__swiper {
    height: 350px;
  }
  .projectDetail__tabsContent {
    width: 100%;
  }
  .projectDetail__testimonials {
    gap: 30px;
  }
  .projectDetail__content {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 768px) {
  .projectDetail__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .projectDetail__characteristics, .projectDetail__swipers {
    width: 100%;
  }
  .projectDetail__box-right {
    width: 60%;
  }
  .projectDetail__content {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 576px) {
  .projectDetail__tabCharacteristics-item {
    background-image: unset;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
  .projectDetail__tabCharacteristics-item p:nth-of-type(1) {
    font-weight: 600;
  }
  .projectDetail__tabCharacteristics-item p:nth-of-type(2) {
    font-weight: 300;
  }
  .projectDetail__swiper {
    height: 280px;
  }
  .projectDetail__characteristics, .projectDetail__swipers {
    width: 100%;
  }
  .projectDetail__box-right {
    width: 100%;
  }
}
.servicesPage__designing-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
}
.servicesPage__designing-cards .services__card-small img,
.servicesPage__designing-cards .services__card-big img {
  width: 160px;
  height: 160px;
}
@media (min-width: 992px) {
  .servicesPage__designing-cards .services__card-small img,
  .servicesPage__designing-cards .services__card-big img {
    width: calc(0.036637931 * 100vw + 123.6551724138px);
  }
}
@media (min-width: 1920px) {
  .servicesPage__designing-cards .services__card-small img,
  .servicesPage__designing-cards .services__card-big img {
    width: 194px;
  }
}
@media (min-width: 992px) {
  .servicesPage__designing-cards .services__card-small img,
  .servicesPage__designing-cards .services__card-big img {
    height: calc(0.036637931 * 100vw + 123.6551724138px);
  }
}
@media (min-width: 1920px) {
  .servicesPage__designing-cards .services__card-small img,
  .servicesPage__designing-cards .services__card-big img {
    height: 194px;
  }
}
.servicesPage__designing-cards .services__card-small:last-child {
  background-color: unset;
}
.servicesPage__designing-cards .services__card-small:last-child:hover {
  background-color: rgb(255, 255, 255);
}
.servicesPage__jobs-item {
  margin-top: 30px;
}
@media (min-width: 992px) {
  .servicesPage__jobs-item {
    margin-top: calc(0.0754310345 * 100vw + -44.8275862069px);
  }
}
@media (min-width: 1920px) {
  .servicesPage__jobs-item {
    margin-top: 100px;
  }
}
.servicesPage__jobs-item--mt30 {
  margin-top: 15px;
}
@media (min-width: 992px) {
  .servicesPage__jobs-item--mt30 {
    margin-top: calc(0.0161637931 * 100vw + -1.0344827586px);
  }
}
@media (min-width: 1920px) {
  .servicesPage__jobs-item--mt30 {
    margin-top: 30px;
  }
}
.servicesPage__jobs-item--designing {
  margin-top: 15px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
@media (min-width: 992px) {
  .servicesPage__jobs-item--designing {
    margin-top: calc(0.0161637931 * 100vw + -1.0344827586px);
  }
}
@media (min-width: 1920px) {
  .servicesPage__jobs-item--designing {
    margin-top: 30px;
  }
}
@media (min-width: 992px) {
  .servicesPage__jobs-item--designing {
    gap: calc(0.0021551724 * 100vw + 5.8620689655px);
  }
}
@media (min-width: 1920px) {
  .servicesPage__jobs-item--designing {
    gap: 10px;
  }
}
.servicesPage__jobs-item--designing .services__card-big {
  width: 100%;
}
.servicesPage__jobs-box {
  gap: 8px;
  margin-top: 15px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (min-width: 992px) {
  .servicesPage__jobs-box {
    gap: calc(0.0021551724 * 100vw + 5.8620689655px);
  }
}
@media (min-width: 1920px) {
  .servicesPage__jobs-box {
    gap: 10px;
  }
}
@media (min-width: 992px) {
  .servicesPage__jobs-box {
    margin-top: calc(0.0161637931 * 100vw + -1.0344827586px);
  }
}
@media (min-width: 1920px) {
  .servicesPage__jobs-box {
    margin-top: 30px;
  }
}
.servicesPage__jobs--designing {
  margin-top: 30px;
}
@media (min-width: 992px) {
  .servicesPage__jobs--designing {
    margin-top: calc(0.0323275862 * 100vw + -2.0689655172px);
  }
}
@media (min-width: 1920px) {
  .servicesPage__jobs--designing {
    margin-top: 60px;
  }
}
.servicesPage__jobs--designing img {
  width: 47%;
}
.servicesPage__jobs--mt100 {
  margin-top: 50px;
}
@media (min-width: 992px) {
  .servicesPage__jobs--mt100 {
    margin-top: calc(0.0431034483 * 100vw + 7.2413793103px);
  }
}
@media (min-width: 1920px) {
  .servicesPage__jobs--mt100 {
    margin-top: 90px;
  }
}

@media screen and (max-width: 992px) {
  .servicesPage__designing-item {
    grid-template-columns: 1fr;
  }
  .servicesPage__jobs-box {
    grid-template-columns: repeat(2, 1fr);
  }
  .servicesPage__designing-cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    opacity: 1;
  }
  .servicesPage__designing-cards .services__card-small,
  .servicesPage__designing-cards .services__card-big {
    height: unset;
    background-color: unset;
  }
  .servicesPage__designing-cards .services__card-small:last-child:hover {
    background-color: unset;
  }
  .servicesPage__designing-cards .services__card-small:last-child:hover p {
    color: unset;
  }
}
@media screen and (max-width: 768px) {
  .servicesPage .production__card-text {
    word-break: break-word;
  }
  .servicesPage__jobs-box {
    grid-template-columns: 1fr;
  }
  .servicesPage__jobs-item--designing {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.servicesDetail__content > h2 {
  margin-top: 20px;
}
@media (min-width: 992px) {
  .servicesDetail__content > h2 {
    margin-top: calc(0.0215517241 * 100vw + -1.3793103448px);
  }
}
@media (min-width: 1920px) {
  .servicesDetail__content > h2 {
    margin-top: 40px;
  }
}
.servicesDetail__content .gridTwo__item .title {
  margin-top: 0;
}

.gridTwo {
  display: grid;
  grid-template-columns: 0.93fr 0.99fr;
  gap: 30px;
}
@media (min-width: 992px) {
  .gridTwo {
    gap: calc(0.036637931 * 100vw + -6.3448275862px);
  }
}
@media (min-width: 1920px) {
  .gridTwo {
    gap: 64px;
  }
}
.gridTwo--ih443 .gridTwo__item > img {
  height: 380px;
}
@media (min-width: 992px) {
  .gridTwo--ih443 .gridTwo__item > img {
    height: calc(0.067887931 * 100vw + 312.6551724138px);
  }
}
@media (min-width: 1920px) {
  .gridTwo--ih443 .gridTwo__item > img {
    height: 443px;
  }
}
.gridTwo--ih560 .gridTwo__item > img {
  height: 400px;
}
@media (min-width: 992px) {
  .gridTwo--ih560 .gridTwo__item > img {
    height: calc(0.1724137931 * 100vw + 228.9655172414px);
  }
}
@media (min-width: 1920px) {
  .gridTwo--ih560 .gridTwo__item > img {
    height: 560px;
  }
}
.gridTwo--mt40 {
  margin-top: 20px;
}
@media (min-width: 992px) {
  .gridTwo--mt40 {
    margin-top: calc(0.0215517241 * 100vw + -1.3793103448px);
  }
}
@media (min-width: 1920px) {
  .gridTwo--mt40 {
    margin-top: 40px;
  }
}
.gridTwo--mt60 {
  margin-top: 30px;
}
@media (min-width: 992px) {
  .gridTwo--mt60 {
    margin-top: calc(0.0323275862 * 100vw + -2.0689655172px);
  }
}
@media (min-width: 1920px) {
  .gridTwo--mt60 {
    margin-top: 60px;
  }
}
.gridTwo--mt120 {
  margin-top: 30px;
}
@media (min-width: 992px) {
  .gridTwo--mt120 {
    margin-top: calc(0.0969827586 * 100vw + -66.2068965517px);
  }
}
@media (min-width: 1920px) {
  .gridTwo--mt120 {
    margin-top: 120px;
  }
}
.gridTwo__item ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media (min-width: 992px) {
  .gridTwo__item ul {
    gap: calc(0.005387931 * 100vw + 4.6551724138px);
  }
}
@media (min-width: 1920px) {
  .gridTwo__item ul {
    gap: 15px;
  }
}
.gridTwo__item ul li {
  padding-left: 15px;
  position: relative;
  font-family: Gotham Pro;
  font-size: 14px;
  font-weight: 400;
  line-height: 22.4px;
  text-align: left;
}
@media (min-width: 992px) {
  .gridTwo__item ul li {
    font-size: calc(0.0021551724 * 100vw + 11.8620689655px);
  }
}
@media (min-width: 1920px) {
  .gridTwo__item ul li {
    font-size: 16px;
  }
}
.gridTwo__item ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 7.5px;
  width: 5px;
  height: 5px;
  background-color: #F18E38;
  border-radius: 50%;
}
.gridTwo__item ul {
  margin-top: 30px;
  gap: 15px;
}
@media (min-width: 992px) {
  .gridTwo__item ul {
    margin-top: calc(0.0323275862 * 100vw + -2.0689655172px);
  }
}
@media (min-width: 1920px) {
  .gridTwo__item ul {
    margin-top: 60px;
  }
}
@media (min-width: 992px) {
  .gridTwo__item ul {
    gap: calc(0.005387931 * 100vw + 9.6551724138px);
  }
}
@media (min-width: 1920px) {
  .gridTwo__item ul {
    gap: 20px;
  }
}
.gridTwo__item ul li {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
@media (min-width: 992px) {
  .gridTwo__item ul li {
    font-size: calc(0.0043103448 * 100vw + 11.724137931px);
  }
}
@media (min-width: 1920px) {
  .gridTwo__item ul li {
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  .gridTwo__item ul li {
    line-height: calc(0.0010775862 * 100vw + 22.9310344828px);
  }
}
@media (min-width: 1920px) {
  .gridTwo__item ul li {
    line-height: 25px;
  }
}
.gridTwo__item > p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}
@media (min-width: 992px) {
  .gridTwo__item > p {
    font-size: calc(0.0021551724 * 100vw + 13.8620689655px);
  }
}
@media (min-width: 1920px) {
  .gridTwo__item > p {
    font-size: 18px;
  }
}
@media (min-width: 992px) {
  .gridTwo__item > p {
    line-height: calc(0 * 100vw + 24px);
  }
}
@media (min-width: 1920px) {
  .gridTwo__item > p {
    line-height: 24px;
  }
}
.gridTwo__item > p:not(:nth-of-type(1)) {
  margin-top: 10px;
}
@media (min-width: 992px) {
  .gridTwo__item > p:not(:nth-of-type(1)) {
    margin-top: calc(0.0096982759 * 100vw + 0.3793103448px);
  }
}
@media (min-width: 1920px) {
  .gridTwo__item > p:not(:nth-of-type(1)) {
    margin-top: 19px;
  }
}
.gridTwo__item .btn--orange {
  margin-top: 30px;
}
@media (min-width: 992px) {
  .gridTwo__item .btn--orange {
    margin-top: calc(0.0431034483 * 100vw + -12.7586206897px);
  }
}
@media (min-width: 1920px) {
  .gridTwo__item .btn--orange {
    margin-top: 70px;
  }
}
.gridTwo__item > img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  border-radius: 6px;
}

@media screen and (max-width: 992px) {
  .gridTwo {
    grid-template-columns: 1fr;
  }
  .gridTwo--ih443 .gridTwo__item > img {
    height: 300px;
  }
  .gridTwo--ih560 .gridTwo__item > img {
    height: 300px;
  }
}
[data-tab-content], [data-tabsTwo] {
  display: none;
  opacity: 0;
  -webkit-transition: opacity 0.7s ease-in-out;
  transition: opacity 0.7s ease-in-out;
}
[data-tab-content].active, [data-tabsTwo].active {
  display: block;
}
[data-tab-content].opacity, [data-tabsTwo].opacity {
  opacity: 1;
}

.productionDetail__wrapper > img {
  border-radius: 6px;
  margin-top: 30px;
  height: 500px;
}
@media (min-width: 992px) {
  .productionDetail__wrapper > img {
    margin-top: calc(0.0969827586 * 100vw + -66.2068965517px);
  }
}
@media (min-width: 1920px) {
  .productionDetail__wrapper > img {
    margin-top: 120px;
  }
}
@media (min-width: 992px) {
  .productionDetail__wrapper > img {
    height: calc(0.0474137931 * 100vw + 452.9655172414px);
  }
}
@media (min-width: 1920px) {
  .productionDetail__wrapper > img {
    height: 544px;
  }
}
.productionDetail__grids {
  margin-top: 70px;
}
@media (min-width: 992px) {
  .productionDetail__grids {
    margin-top: calc(0.0150862069 * 100vw + 55.0344827586px);
  }
}
@media (min-width: 1920px) {
  .productionDetail__grids {
    margin-top: 84px;
  }
}
.productionDetail__grids--mt10 {
  margin-top: 70px;
}
@media (min-width: 992px) {
  .productionDetail__grids--mt10 {
    margin-top: calc(-0.0431034483 * 100vw + 112.7586206897px);
  }
}
@media (min-width: 1920px) {
  .productionDetail__grids--mt10 {
    margin-top: 30px;
  }
}
.productionDetail__grids .gridTwo {
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
@media (min-width: 992px) {
  .productionDetail__grids .gridTwo {
    gap: calc(0.0161637931 * 100vw + -1.0344827586px);
  }
}
@media (min-width: 1920px) {
  .productionDetail__grids .gridTwo {
    gap: 30px;
  }
}
.productionDetail__grids .gridTwo__item p {
  font-weight: 300;
  font-size: 16px;
}
.productionDetail__grids .gridTwo__item ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media (min-width: 992px) {
  .productionDetail__grids .gridTwo__item ul {
    gap: calc(0.005387931 * 100vw + 4.6551724138px);
  }
}
@media (min-width: 1920px) {
  .productionDetail__grids .gridTwo__item ul {
    gap: 15px;
  }
}
.productionDetail__grids .gridTwo__item ul li {
  padding-left: 15px;
  position: relative;
  font-family: Gotham Pro;
  font-size: 14px;
  font-weight: 400;
  line-height: 22.4px;
  text-align: left;
}
@media (min-width: 992px) {
  .productionDetail__grids .gridTwo__item ul li {
    font-size: calc(0.0021551724 * 100vw + 11.8620689655px);
  }
}
@media (min-width: 1920px) {
  .productionDetail__grids .gridTwo__item ul li {
    font-size: 16px;
  }
}
.productionDetail__grids .gridTwo__item ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 7.5px;
  width: 5px;
  height: 5px;
  background-color: #F18E38;
  border-radius: 50%;
}
.productionDetail__grids .gridTwo__item ul {
  margin-top: 20px;
  gap: 12px;
}
@media (min-width: 992px) {
  .productionDetail__grids .gridTwo__item ul {
    margin-top: calc(0.0193965517 * 100vw + 0.7586206897px);
  }
}
@media (min-width: 1920px) {
  .productionDetail__grids .gridTwo__item ul {
    margin-top: 38px;
  }
}
@media (min-width: 992px) {
  .productionDetail__grids .gridTwo__item ul {
    gap: calc(0.0037715517 * 100vw + 8.2586206897px);
  }
}
@media (min-width: 1920px) {
  .productionDetail__grids .gridTwo__item ul {
    gap: 15.5px;
  }
}
.productionDetail__grids .gridTwo__item ul li {
  font-weight: 300;
  font-size: 14px;
  line-height: 22.4px;
}
@media (min-width: 992px) {
  .productionDetail__grids .gridTwo__item ul li {
    font-size: calc(0.0021551724 * 100vw + 11.8620689655px);
  }
}
@media (min-width: 1920px) {
  .productionDetail__grids .gridTwo__item ul li {
    font-size: 16px;
  }
}
.productionDetail__tabsOne {
  margin-top: 30px;
}
@media (min-width: 992px) {
  .productionDetail__tabsOne {
    margin-top: calc(0.0969827586 * 100vw + -66.2068965517px);
  }
}
@media (min-width: 1920px) {
  .productionDetail__tabsOne {
    margin-top: 120px;
  }
}
.productionDetail__tabsOne-content {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 992px) {
  .productionDetail__tabsOne-content {
    margin-top: calc(0.0215517241 * 100vw + -1.3793103448px);
  }
}
@media (min-width: 1920px) {
  .productionDetail__tabsOne-content {
    margin-top: 40px;
  }
}
.productionDetail__tabsOne-buttons {
  display: grid;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  background-color: #393837;
  cursor: pointer;
}
@media (min-width: 992px) {
  .productionDetail__tabsOne-buttons {
    padding-top: calc(0.021012931 * 100vw + -0.8448275862px);
  }
}
@media (min-width: 1920px) {
  .productionDetail__tabsOne-buttons {
    padding-top: 39.5px;
  }
}
@media (min-width: 992px) {
  .productionDetail__tabsOne-buttons {
    padding-bottom: calc(0.021012931 * 100vw + -0.8448275862px);
  }
}
@media (min-width: 1920px) {
  .productionDetail__tabsOne-buttons {
    padding-bottom: 39.5px;
  }
}
@media (min-width: 992px) {
  .productionDetail__tabsOne-buttons {
    padding-left: calc(0.0215517241 * 100vw + -1.3793103448px);
  }
}
@media (min-width: 1920px) {
  .productionDetail__tabsOne-buttons {
    padding-left: 40px;
  }
}
.productionDetail__tabsOne-button {
  font-family: Bebas;
  font-size: 18px;
  line-height: 18px;
  font-weight: 700;
  text-transform: uppercase;
  -webkit-transition: 0.38s ease-in-out;
  transition: 0.38s ease-in-out;
}
@media (min-width: 992px) {
  .productionDetail__tabsOne-button {
    font-size: calc(0.0086206897 * 100vw + 9.4482758621px);
  }
}
@media (min-width: 1920px) {
  .productionDetail__tabsOne-button {
    font-size: 26px;
  }
}
@media (min-width: 992px) {
  .productionDetail__tabsOne-button {
    line-height: calc(0.0086206897 * 100vw + 9.4482758621px);
  }
}
@media (min-width: 1920px) {
  .productionDetail__tabsOne-button {
    line-height: 26px;
  }
}
.productionDetail__tabsOne-button:not(:last-child) {
  margin-bottom: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.168627451);
  padding-bottom: 13px;
}
@media (min-width: 992px) {
  .productionDetail__tabsOne-button:not(:last-child) {
    margin-bottom: calc(0.0118534483 * 100vw + 1.2413793103px);
  }
}
@media (min-width: 1920px) {
  .productionDetail__tabsOne-button:not(:last-child) {
    margin-bottom: 24px;
  }
}
@media (min-width: 992px) {
  .productionDetail__tabsOne-button:not(:last-child) {
    padding-bottom: calc(0.0129310345 * 100vw + 0.1724137931px);
  }
}
@media (min-width: 1920px) {
  .productionDetail__tabsOne-button:not(:last-child) {
    padding-bottom: 25px;
  }
}
.productionDetail__tabsOne-button.active {
  color: #F18E38;
}
.productionDetail__tabsOne-img {
  width: 100%;
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 992px) {
  .productionDetail__tabsOne-img {
    height: calc(0.1454741379 * 100vw + 205.6896551724px);
  }
}
@media (min-width: 1920px) {
  .productionDetail__tabsOne-img {
    height: 485px;
  }
}
.productionDetail__tabsTwo {
  margin-top: 20px;
}
@media (min-width: 992px) {
  .productionDetail__tabsTwo {
    margin-top: calc(0.0431034483 * 100vw + -22.7586206897px);
  }
}
@media (min-width: 1920px) {
  .productionDetail__tabsTwo {
    margin-top: 60px;
  }
}
.productionDetail__tabsTwo .projectDetail__tabs {
  margin-top: 0;
}
.productionDetail__tabsTwo .projectDetail__tabDescription-title:not(:nth-of-type(1)) {
  margin-top: 20px;
}
@media (min-width: 992px) {
  .productionDetail__tabsTwo .projectDetail__tabDescription-title:not(:nth-of-type(1)) {
    margin-top: calc(0.0193965517 * 100vw + 0.7586206897px);
  }
}
@media (min-width: 1920px) {
  .productionDetail__tabsTwo .projectDetail__tabDescription-title:not(:nth-of-type(1)) {
    margin-top: 38px;
  }
}
.productionDetail__tabsTwo .projectDetail__tabDescription-title:nth-of-type(1) {
  margin-top: 0;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .productionDetail__tabsTwo .projectDetail__tabDescription-title:nth-of-type(1) {
    margin-bottom: calc(0.0215517241 * 100vw + -1.3793103448px);
  }
}
@media (min-width: 1920px) {
  .productionDetail__tabsTwo .projectDetail__tabDescription-title:nth-of-type(1) {
    margin-bottom: 40px;
  }
}
.productionDetail__tabsTwo .projectDetail__tabDescription ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media (min-width: 992px) {
  .productionDetail__tabsTwo .projectDetail__tabDescription ul {
    gap: calc(0.005387931 * 100vw + 4.6551724138px);
  }
}
@media (min-width: 1920px) {
  .productionDetail__tabsTwo .projectDetail__tabDescription ul {
    gap: 15px;
  }
}
.productionDetail__tabsTwo .projectDetail__tabDescription ul li {
  padding-left: 15px;
  position: relative;
  font-family: Gotham Pro;
  font-size: 14px;
  font-weight: 400;
  line-height: 22.4px;
  text-align: left;
}
@media (min-width: 992px) {
  .productionDetail__tabsTwo .projectDetail__tabDescription ul li {
    font-size: calc(0.0021551724 * 100vw + 11.8620689655px);
  }
}
@media (min-width: 1920px) {
  .productionDetail__tabsTwo .projectDetail__tabDescription ul li {
    font-size: 16px;
  }
}
.productionDetail__tabsTwo .projectDetail__tabDescription ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 7.5px;
  width: 5px;
  height: 5px;
  background-color: #F18E38;
  border-radius: 50%;
}
.productionDetail__tabsTwo .projectDetail__tabDescription ul {
  margin-top: 13px;
  gap: 12px;
}
@media (min-width: 992px) {
  .productionDetail__tabsTwo .projectDetail__tabDescription ul {
    margin-top: calc(0.0075431034 * 100vw + 5.5172413793px);
  }
}
@media (min-width: 1920px) {
  .productionDetail__tabsTwo .projectDetail__tabDescription ul {
    margin-top: 20px;
  }
}
@media (min-width: 992px) {
  .productionDetail__tabsTwo .projectDetail__tabDescription ul {
    gap: calc(0.0032327586 * 100vw + 8.7931034483px);
  }
}
@media (min-width: 1920px) {
  .productionDetail__tabsTwo .projectDetail__tabDescription ul {
    gap: 15px;
  }
}
.productionDetail__tabsTwo .projectDetail__tabDescription ul li {
  font-weight: 300;
  font-size: 14px;
  line-height: 22.4px;
}
@media (min-width: 992px) {
  .productionDetail__tabsTwo .projectDetail__tabDescription ul li {
    font-size: calc(0.0021551724 * 100vw + 11.8620689655px);
  }
}
@media (min-width: 1920px) {
  .productionDetail__tabsTwo .projectDetail__tabDescription ul li {
    font-size: 16px;
  }
}
.productionDetail__tabsTwo .projectDetail__tabDescription-text {
  font-weight: 300;
}
.productionDetail__tabsTwo .projectDetail__tabDescription-text:not(:nth-of-type(1)) {
  margin-top: 12px;
}
@media (min-width: 992px) {
  .productionDetail__tabsTwo .projectDetail__tabDescription-text:not(:nth-of-type(1)) {
    margin-top: calc(0.0086206897 * 100vw + 3.4482758621px);
  }
}
@media (min-width: 1920px) {
  .productionDetail__tabsTwo .projectDetail__tabDescription-text:not(:nth-of-type(1)) {
    margin-top: 20px;
  }
}
.productionDetail__tabsTwo .projectDetail__tabDescription-text:nth-of-type(1) {
  margin-top: 20px;
}
@media (min-width: 992px) {
  .productionDetail__tabsTwo .projectDetail__tabDescription-text:nth-of-type(1) {
    margin-top: calc(0.0215517241 * 100vw + -1.3793103448px);
  }
}
@media (min-width: 1920px) {
  .productionDetail__tabsTwo .projectDetail__tabDescription-text:nth-of-type(1) {
    margin-top: 40px;
  }
}
.productionDetail__info {
  margin-top: 30px;
  max-width: 865px;
}
@media (min-width: 992px) {
  .productionDetail__info {
    margin-top: calc(0.0969827586 * 100vw + -66.2068965517px);
  }
}
@media (min-width: 1920px) {
  .productionDetail__info {
    margin-top: 120px;
  }
}
.productionDetail__info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
@media (min-width: 992px) {
  .productionDetail__info-item {
    gap: calc(0.005387931 * 100vw + 9.6551724138px);
  }
}
@media (min-width: 1920px) {
  .productionDetail__info-item {
    gap: 20px;
  }
}
.productionDetail__info-item > h2 {
  font-family: Bebas;
  letter-spacing: 1.7px;
  font-size: 25px;
  line-height: 25px;
  text-transform: uppercase;
  font-weight: 700;
}
@media (min-width: 992px) {
  .productionDetail__info-item > h2 {
    font-size: calc(0.005387931 * 100vw + 19.6551724138px);
  }
}
@media (min-width: 1920px) {
  .productionDetail__info-item > h2 {
    font-size: 30px;
  }
}
@media (min-width: 992px) {
  .productionDetail__info-item > h2 {
    line-height: calc(0.005387931 * 100vw + 19.6551724138px);
  }
}
@media (min-width: 1920px) {
  .productionDetail__info-item > h2 {
    line-height: 30px;
  }
}
.productionDetail__info-item:not(:nth-of-type(1)) {
  margin-top: 15px;
}
@media (min-width: 992px) {
  .productionDetail__info-item:not(:nth-of-type(1)) {
    margin-top: calc(0.0247844828 * 100vw + -9.5862068966px);
  }
}
@media (min-width: 1920px) {
  .productionDetail__info-item:not(:nth-of-type(1)) {
    margin-top: 38px;
  }
}
.productionDetail__info-item:nth-of-type(1) {
  margin-top: 20px;
}
@media (min-width: 992px) {
  .productionDetail__info-item:nth-of-type(1) {
    margin-top: calc(0.0431034483 * 100vw + -22.7586206897px);
  }
}
@media (min-width: 1920px) {
  .productionDetail__info-item:nth-of-type(1) {
    margin-top: 60px;
  }
}
.productionDetail__info-item > p {
  font-weight: 300;
}
.productionDetail__info-item ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media (min-width: 992px) {
  .productionDetail__info-item ul {
    gap: calc(0.005387931 * 100vw + 4.6551724138px);
  }
}
@media (min-width: 1920px) {
  .productionDetail__info-item ul {
    gap: 15px;
  }
}
.productionDetail__info-item ul li {
  padding-left: 15px;
  position: relative;
  font-family: Gotham Pro;
  font-size: 14px;
  font-weight: 400;
  line-height: 22.4px;
  text-align: left;
}
@media (min-width: 992px) {
  .productionDetail__info-item ul li {
    font-size: calc(0.0021551724 * 100vw + 11.8620689655px);
  }
}
@media (min-width: 1920px) {
  .productionDetail__info-item ul li {
    font-size: 16px;
  }
}
.productionDetail__info-item ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 7.5px;
  width: 5px;
  height: 5px;
  background-color: #F18E38;
  border-radius: 50%;
}
.productionDetail__info-item ul li {
  font-weight: 300;
}

@media screen and (max-width: 1400px) {
  .productionDetail__grids {
    margin-top: 30px;
  }
}
@media screen and (max-width: 1400px) and (min-width: 992px) {
  .productionDetail__grids {
    margin-top: calc(0.0581896552 * 100vw + -27.724137931px);
  }
}
@media screen and (max-width: 1400px) and (min-width: 1920px) {
  .productionDetail__grids {
    margin-top: 84px;
  }
}
@media screen and (max-width: 992px) {
  .productionDetail__wrapper > img {
    height: 300px;
  }
  .productionDetail__grids .gridTwo--mt60 {
    grid-template-columns: 1fr;
  }
  .productionDetail__tabsOne-content {
    grid-template-columns: 1fr;
  }
  .productionDetail__tabsOne-img {
    height: 300px;
  }
}
@media screen and (max-width: 375px) {
  .productionDetail__tabsOne-img,
  .productionDetail__wrapper > img {
    height: 200px;
  }
}
@media screen and (max-width: 992px) {
  html,
  body {
    overflow-y: auto;
  }
}
.container {
  width: 100%;
  max-width: 1336px;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
}
@media screen and (max-width: 992px) {
  .container {
    max-width: 720px;
  }
}
@media screen and (max-width: 768px) {
  .container {
    max-width: 540px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 576px) {
  .container {
    max-width: none;
  }
}

.containerBig {
  width: 100%;
  max-width: 1356px;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
}
@media screen and (max-width: 992px) {
  .containerBig {
    max-width: 960px;
  }
}
@media screen and (max-width: 768px) {
  .containerBig {
    max-width: 720px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 576px) {
  .containerBig {
    max-width: none;
  }
}

html {
  font-family: "Gotham Pro";
  font-style: normal;
  color: #FFF;
  overflow-y: scroll;
}

.noScroll {
  overflow: hidden;
}

@media screen and (max-width: 1200px) {
  .section {
    padding-top: 60px;
  }
}
@media screen and (max-height: 900px) {
  .project {
    padding-bottom: 30px;
  }
}