@font-face {
  font-family: "Nordique Pro";
  src: url(../fonts/NordiquePro-Regular.otf);
  font-weight: 400;
}
@font-face {
  font-family: "Nordique Pro";
  src: url(../fonts/NordiquePro-Semibold.otf);
  font-weight: 600;
}
@font-face {
  font-family: "Nordique Pro";
  src: url(../fonts/Nordique\ Pro\ Bold.otf);
  font-weight: 700;
}
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  line-height: 100%;
}

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

a {
  text-decoration: none;
  color: inherit;
}

html,
body {
  height: 100%;
  font-family: "Nordique Pro", sans-serif;
  overflow: hidden;
}

.wrapper {
  min-height: 100%;
  min-width: 100%;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 1 auto;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0px 15px;
}

._ibg {
  position: relative;
}

._ibg img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

#pp-nav {
  display: none;
}

.header {
  z-index: 100;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100px;
}
@media (max-width: 480px) {
  .header {
    height: 150px;
  }
}

.header__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0px 30px 0px;
  border-bottom: 1px solid rgba(23, 22, 48, 0.3);
}
@media (max-width: 480px) {
  .header__wrap {
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px 0px 20px 0px;
  }
}

.header__wrap.actived {
  border-bottom: 1px solid white;
  transition: all 0.3s ease 0s;
}

.header__logo {
  position: relative;
}
.header__logo img {
  transition: all 0.3s ease 0s;
  width: 300px;
}
@media (max-width: 1130px) {
  .header__logo img {
    width: 200px;
    height: auto;
  }
}
@media (max-width: 480px) {
  .header__logo img {
    margin-bottom: 10px;
  }
}
.header__logo .logo-one.actived {
  position: absolute;
  left: 0;
  opacity: 0;
}
.header__logo .logo-two {
  position: absolute;
  left: 0;
  opacity: 0;
}
.header__logo .logo-two.actived {
  position: relative;
  opacity: 1;
}

@media (max-width: 860px) {
  .header__navigation {
    display: none;
  }
}

.header__navigation-list {
  display: flex;
  justify-content: space-between;
  width: 425px;
}
.header__navigation-list li {
  font-size: 16px;
  font-weight: 600;
  color: #171630;
  transition: all 0.3s ease 0s;
  line-height: 150%;
}
.header__navigation-list li:hover {
  font-weight: 700;
}
.header__navigation-list li.actived {
  color: white;
}
@media (max-width: 1130px) {
  .header__navigation-list {
    width: 320px;
  }
}

.header__button-wrap {
  display: flex;
  align-items: center;
}
.header__button-wrap > *:not(:last-child) {
  margin-right: 25px;
}

.header__button {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 20px;
}

.sign a {
  color: white;
  background-color: #D80000;
  padding: 13px 48px;
  font-weight: 700;
  transition: all 0.3s ease 0s;
  border: 2px solid transparent;
}
.sign a:hover {
  color: #D80000;
  background-color: white;
  border: 2px solid #D80000;
}
.sign a.actived {
  background-color: white;
  color: #D80000;
}
.sign a.actived:hover {
  color: white;
  background-color: #D80000;
  border: 2px solid white;
}
@media (max-width: 1130px) {
  .sign a {
    padding: 8px 30px;
  }
}

.log a {
  color: #D80000;
  background-color: transparent;
  border: 2px solid #D80000;
  padding: 13px 34px;
  font-weight: 600;
  transition: all 0.3s ease 0s;
}
.log a:hover {
  color: white;
  background-color: #D80000;
}
.log a.actived {
  border: 2px solid white;
  color: white;
}
.log a.actived:hover {
  color: white;
  background-color: #D80000;
}
@media (max-width: 1130px) {
  .log a {
    padding: 8px 20px;
  }
}

.container2 {
  margin: 0 auto;
  max-width: 1100px;
  padding: 0 15px;
}

.home__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.section-home {
  background: url(../images/home-bg.png) no-repeat;
  background-size: cover;
  height: 100vh;
  padding-top: 80px;
}
@media (max-width: 560px) {
  .section-home {
    padding-top: 30px;
  }
}

.home__content-headtext {
  font-weight: 700;
  font-size: 64px;
  line-height: 81.5%;
  text-transform: capitalize;
  max-width: 690px;
  margin-bottom: 30px;
  color: #171630;
}
.home__content-headtext span {
  color: #D80000;
}
@media (max-width: 1024px) {
  .home__content-headtext {
    font-size: 50px;
  }
}
@media (max-width: 900px) {
  .home__content-headtext {
    font-size: 64px;
  }
}
@media (max-width: 780px) {
  .home__content-headtext {
    font-size: 50px;
  }
}
@media (max-width: 580px) {
  .home__content-headtext {
    font-size: 28px;
    margin-bottom: 20px;
  }
}

.home__content-subtext {
  font-weight: 600;
  font-size: 20px;
  color: #000000;
  max-width: 550px;
  margin-bottom: 30px;
}
@media (max-width: 480px) {
  .home__content-subtext {
    font-size: 16px;
    margin-bottom: 20px;
  }
}

.home__content-download {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 540px;
  margin-bottom: 12px;
}
@media (max-width: 530px) {
  .home__content-download {
    justify-content: center;
    gap: 20px;
  }
}

.app-store,
.goole-play {
  width: 247px;
}
@media (max-width: 480px) {
  .app-store,
.goole-play {
    width: 180px;
  }
}

.home__content-subtext2 {
  opacity: 0.5;
  font-weight: 600;
  font-size: 10px;
  color: #000000;
  line-height: 175%;
}

.home__image {
  width: 268px;
}
@media (max-width: 1024px) {
  .home__image {
    width: 200px;
  }
}
@media (max-width: 900px) {
  .home__image {
    display: none;
  }
}

.run__line {
  position: fixed;
  top: calc(95vh - 25px);
	left: 0;
  width: 100%;
  background-color: white;
  height: 25px;
  padding-top: 10px;
  padding-bottom: 25px;
}
@media (max-width: 560px) {
  .run__line {
    top: calc(95vh - 50px);
  }
}

.line-text {
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  padding-left: 25px;
  padding-right: 25px;
  position: relative;
}
.line-text::before {
  content: "";
  width: 2px;
  height: 50px;
  background: black;
  opacity: 0.15;
  left: 0;
  top: -10px;
  position: absolute;
}

.mouse {
  position: absolute;
  left: 50%;
  bottom: 10%;
  -webkit-animation: mouse 5s infinite linear;
          animation: mouse 5s infinite linear;
  transition: all 0.3s ease 1ms;
}
.mouse img {
  width: 20px;
}
@media (max-width: 560px) {
  .mouse {
    bottom: 13%;
  }
}
@media (max-width: 480px) {
  .mouse img {
    width: 15px;
  }
}


@-webkit-keyframes mouse {
  0% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(5px);
  }
  80% {
    transform: translateY(-5px);
  }
}

@keyframes mouse {
  0% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(5px);
  }
  80% {
    transform: translateY(-5px);
  }
}
.section-home-wrap {
  transform: translate(-200%, 0px);
  transition: all 0.3s ease 0s;
}

.section-home-wrap.actived {
  transform: translate(0%, 0px);
}

.section-home-wrap.opacity {
  opacity: 0;
}

.section-company {
  background: red url(../images/company-bg.png) no-repeat;
  background-size: cover;
  width: 100%;
}

.section-company__headtext {
  font-size: 48px;
  color: white;
  text-transform: uppercase;
  margin-bottom: 50px;
  padding-top: 80px;
}
@media (max-width: 620px) {
  .section-company__headtext {
    font-size: 20px;
    margin-bottom: 30px;
  }
}


.section-company__wrap {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, auto));
  gap: 40px 55px;
  padding-left: 24px;
}
@media (max-width: 620px) {
  .section-company__wrap {
    gap: 15px;
    padding-left: 0px;
    grid-template-columns: repeat(auto-fill, minmax(250px, auto));
  }
}

.section-company__item {
  line-height: 150%;
  color: #171630;
  font-size: 23px;
  font-weight: 600;
  position: relative;
}
.section-company__item::before {
  content: "";
  position: absolute;
  background: url(../images/company-i.png) no-repeat;
  background-size: cover;
  width: 24px;
  height: 24px;
  top: -18px;
  left: -24px;
}
@media (max-width: 620px) {
  .section-company__item::before {
    width: 12px;
    height: 12px;
    top: -8px;
    left: -10px;
  }
}
@media (max-width: 1280px) {
  .section-company__item {
    font-size: 20px;
  }
}
@media (max-width: 620px) {
  .section-company__item {
    font-size: 18px;
  }
  .section-company__item .item-br {
    display: none;
  }
}

.company-section {
  transform: translate(-100%, 0px);
  transition: all 0.3s ease 0s;
}

.company-section.actived {
  transform: translate(0%, 0px);
}

.company-section.opacity {
  opacity: 0;
}

.section-brands {
  background-image: url(../images/brands-bg.jpg);
  background-size: cover;
  padding-top: 80px;
}
@media (max-width: 480px) {
  .section-brands {
    padding-top: 100px;
  }
}

.section-brands-two {
  background-image: url(../images/brands2-bg.jpg);
}

.brands__wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
@media (max-width: 1200px) {
  .brands__wrap {
    flex-direction: column;
    gap: 40px;
  }
}
@media (max-width: 480px) {
  .brands__wrap {
    gap: 20px;
  }
}

.brands-headtext {
  z-index: 10;
  font-size: 64px;
  color: white;
  max-width: 480px;
  font-weight: 700;
}
.brands-headtext .color {
  color: #D80000;
}
.brands-headtext .big {
  font-size: 96px;
}
@media (max-width: 1250px) {
  .brands-headtext .big {
    font-size: 56px;
  }
}
@media (max-width: 1200px) {
  .brands-headtext .big {
    font-size: 96px;
  }
}
@media (max-width: 1024px) {
  .brands-headtext .big {
    font-size: 46px;
  }
}
@media (max-width: 480px) {
  .brands-headtext .big {
    font-size: 42px;
  }
}
@media (max-width: 720px) {
  .brands-headtext {
    font-size: 32px;
  }
}

.brands__wrap-item {
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px 120px;
}
@media (max-width: 1280px) {
  .brands__wrap-item {
    gap: 35px 70px;
  }
}
@media (max-width: 720px) {
  .brands__wrap-item {
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
  }
}
@media (max-width: 480px) {
  .brands__wrap-item {
    gap: 15px;
  }
}

.brands__item {
  position: relative;
  width: 320px;
  color: white;
  line-height: 175%;
  border-top: 2px solid #D90101;
  font-size: 24px;
  padding-top: 10px;
}
@media (max-width: 1200px) {
  .brands__item {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .brands__item {
    font-size: 18px;
  }
}
@media (max-width: 680px) {
  .brands__item {
    font-size: 16px;
    border-top: none;
    padding-top: 4px;
  }
  .brands__item::before {
    content: "";
    position: absolute;
    background-color: #D90101;
    height: 2px;
    width: 50vw;
    left: 0;
    top: 0;
  }
}

.fake-line__wrap {
  display: flex;
  transition: all 0s ease 0s;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  bottom: 60px;
  right: 35px;
}
@media (max-width: 1024px) {
  .fake-line__wrap {
    bottom: 35px;
  }
}
.fake-line__wrap.actived {
  opacity: 1;
  visibility: visible;
}

.fake-line {
  z-index: 10;
  width: 146px;
  height: 3px;
  background-color: #D80000;
  transition: all 0.3s ease 0s;
  border-radius: 20px;
  margin-right: 10px;
}
.fake-line a {
  padding: 0px 75px;
}
.fake-line a.actived {
  padding: 0px 15px;
}
.fake-line.actived {
  width: 24px;
  background-color: white;
}

.fake-line-right {
  height: 3px;
  width: 24px;
  background-color: white;
  border-radius: 20px;
  z-index: 20;
}
.fake-line-right a {
  padding: 0 15px;
}
.fake-line-right a.actived {
  padding: 0px 75px;
}
.fake-line-right.actived {
  width: 146px;
  background-color: #D80000;
}

.brands-section {
  transform: translate(-100%, 0px);
  transition: all 0.3s ease 0s;
}

.brands-section.actived {
  transform: translate(0%, 0px);
}

.brands-section.opacity {
  opacity: 0;
}

.brands-section-two {
  transform: translate(-100%, 0px);
  transition: all 0.3s ease 0s;
}

.brands-section-two.actived {
  transform: translate(0%, 0px);
}

.brands-section-two.opacity {
  opacity: 0;
}


.brands-section {
  transform: translate(-100%, 0px);
  transition: all 0.3s ease 0s;
}

.brands-section.actived {
  transform: translate(0%, 0px);
}

.brands-section.opacity {
  opacity: 0;
}

.brands-section-two {
  transform: translate(-100%, 0px);
  transition: all 0.3s ease 0s;
}

.brands-section-two.actived {
  transform: translate(0%, 0px);
}

.brands-section-two.opacity {
  opacity: 0;
}

.section-contact {
  background: url(../images/contact-bg.png) no-repeat;
  background-size: cover;
}
@media (max-width: 1024px) {
  .section-contact {
    padding-top: 80px;
  }
}
@media (max-width: 480px) {
  .section-contact {
    padding-top: 5px;
  }
}

.contact__wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contact__logo {
  width: 400px;
  margin-bottom: 5px;
}
@media (max-width: 1200px) {
  .contact__logo {
    display: none;
  }
}

.contact__text {
  color: #000000;
  line-height: 175%;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 30px;
  max-width: 460px;
}
@media (max-width: 1200px) {
  .contact__text {
    display: none;
  }
}

.contact__text-bonus {
  color: #000000;
  line-height: 150%;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 15px;
}
@media (max-width: 1200px) {
  .contact__text-bonus {
    display: none;
  }
}

.contact__adress-wrap {
  display: flex;
  justify-content: space-between;
  width: 500px;
  line-height: 150%;
}
@media (max-width: 1200px) {
  .contact__adress-wrap {
    max-width: 100%;
    margin-bottom: 10px;
    gap: 15px;
  }
}
@media (max-width: 690px) {
  .contact__adress-wrap {
    display: block;
    width: 100%;
  }
}

.adress {
  font-weight: 600;
  font-size: 14px;
  line-height: 150%;
  color: #000000;
  max-width: 245px;
  margin-bottom: 15px;
}
.adress span {
  font-weight: 700;
}
@media (max-width: 1200px) {
  .adress {
    margin-bottom: 5px;
    line-height: 130%;
  }
}
@media (max-width: 560px) {
  .adress {
    font-size: 10px;
  }
}


.mail {
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 14px;
  line-height: 125%;
  color: #171630;
  text-decoration: underline;
}
@media (max-width: 1200px) {
  .mail {
    margin-bottom: 5px;
    line-height: 100%;
  }
}
@media (max-width: 560px) {
	.mail{
		 font-size: 10px;
	}
}


.phone {
  font-weight: 600;
  font-size: 14px;
  line-height: 125%;
  color: #171630;
}
@media (max-width: 560px) {
	.phone{
		 font-size: 10px;
	}
}



.contact__worktime {
  font-weight: 600;
  font-size: 14px;
  line-height: 150%;
  color: #000000;
}
.contact__worktime span {
  font-weight: 700;
}
@media (max-width: 560px) {
  .contact__worktime {
    font-size: 10px;
  }
}


.contact__line img {
  width: 26px;
  height: 460px;
}
@media (max-width: 1200px) {
  .contact__line {
    display: none;
  }
}

.contact__name {
  font-size: 36px;
  font-weight: 700;
  color: #D80000;
  line-height: 175%;
  margin-bottom: 20px;
}
@media (max-width: 1200px) {
  .contact__name {
    font-size: 24px;
    margin-bottom: 10px;
    line-height: 100%;
  }
}
@media (max-width: 480px) {
  .contact__name {
    font-size: 18px;
  }
}

.form__intput__wrap {
  display: flex;
}

.contact__form {
  max-width: 640px;
}
@media (max-width: 690px) {
  .contact__form {
    flex-direction: column;
    display: flex;
  }
}

.form__input__wrap {
  display: flex;
  margin-bottom: 10px;
}
.form__input__wrap > *:not(:last-child) {
  margin-right: 30px;
}
/* @media (max-width: 690px) {
  .form__input__wrap {
    display: block;
  }
  .form__input__wrap > *:not(:last-child) {
    margin-right: 0px;
  }
}
 */
.input {
  border: 2px solid rgba(23, 22, 48, 0.1);
  width: 300px;
  height: 40px;
}
@media (max-width: 1200px) {
  .input {
    height: 30px;
  }
}
@media (max-width: 480px) {
  .input {
    width: 40vw;
  }
}
@media (max-width: 375px) {
  .input {
    height: 20px;
  }
}
.input-area {
  width: 100%;
  height: 120px;
  resize: none;
  margin-bottom: 20px;
}
@media (max-width: 1200px) {
  .input-area {
    display: none;
  }
}

label {
  font-weight: 600;
  font-size: 14px;
  line-height: 150%;
  color: #242424;
}

.form__check {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 690px) {
  .form__check {
    display: block;
  }
}
.form__check label {
  font-size: 14px;
  max-width: 350px;
}
.form__check .option {
  display: block;
  position: relative;
  max-width: 320px;
}
@media (max-width: 480px) {
  .form__check .option {
    margin-bottom: 10px;
  }
}
.form__check .check {
  padding-left: 30px;
  width: 320px;
}
.form__check .check__input {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  position: absolute;
}
.form__check .check__box {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid #D80000;
  border-radius: 4px;
  margin-left: -30px;
  margin-top: 10px;
}
/* .form__check .check__input:checked + .check__box {
  background: #D80000  url(../images/check.svg);
  background-size: cover;
} */
.checke {
  background: #D80000  url(../images/check.svg);
  background-size: cover;
}
.form__btn {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: 2px solid #D80000;
  padding: 13px 48px;
  color: #D80000;
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  text-transform: uppercase;
  transition: all 0.3s ease 0s;
}
.form__btn:hover {
  background-color: #D80000;
  color: white;
}
@media (max-width: 690px) {
  .form__btn {
    padding: 5px 20px;
    font-size: 14px;
    width: 100%;
  }
}
@media (max-width: 480px) {
  .form__btn {
    font-size: 14px;
    width: 100%;
	  
  }
}

.contact-section {
  transform: translate(-100%, 0px);
  transition: all 0.3s ease 0s;
  position: relative;
}

.contact__footer {
  background-color: #171630;
  position: fixed;
  bottom: 0;
  width: 100%;
}

.contact__footer-wrap {
  opacity: 0.3;
  padding: 50px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.contact__footer-wrap img {
  width: 120px;
}
@media (max-width: 1200px) {
  .contact__footer-wrap {
    padding: 10px 0px;
  }
}
@media (max-width: 480px) {
  .contact__footer-wrap img {
    width: 60px;
  }
}
.footer-line {
  width: 1130px;
  height: 2px;
  background-color: white;
}
@media (max-width: 1440px) {
  .footer-line {
    width: calc(150px + 880 * (100vw - 320px) / 1120);
  }
}

.footer-data {
  font-weight: 700;
  font-size: 24px;
  line-height: 150%;
  color: white;
}
@media (max-width: 480px)  {
  .footer-data {
    font-size: 18px;
  }
}

.section-contact-wrap {
  transform: translate(-100%, 0px);
  transition: all 0.3s ease 0s;
}

.section-contact-wrap.actived {
  transform: translate(0%, 0px);
}

.section-contact-wrap.opacity {
  opacity: 0;
}

.wpcf7-form-control .has-spinner  {
  display: none;
}
.check br {
  display: none;
}
.wpcf7-spinner {
	display:none;
}
