@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

html,
body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  padding-top: 95px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
  color: #111010;
}

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

.main {
  flex: 1 0 auto;
}

.footer {
  flex: 0 0 auto;
}

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

.style-btn {
  display: inline-block;
  padding: 10px 35px;
  border: 1px solid #111010;
  border-radius: 35px;
  background: #111010;
  color: #fff;
  transition: all 0.3s;
}

.style-btn:hover {
  background: transparent;
  color: #000100;
}

.title {
  font-weight: 500;
  font-size: 32px;
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  z-index: 9999;
}

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

.header__logo-box a img {
  max-width: 140px;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.header__list {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header__item a {
  font-size: 17px;
  color: #111010;
  border-bottom: 1px solid transparent;
  cursor: pointer;
  transition: border 0.3s;
}

.header__item:hover a {
  border-bottom: 1px solid #000100;
}

.hero {
  display: flex;
  align-items: center;
  height: calc(100vh - 95px);
  position: relative;
}

.hero__background {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  -o-object-fit: cover;
  object-fit: cover;
  filter: brightness(50%);
}

.hero__title {
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 65px;
  color: #fff;
  line-height: 1.1;
  text-align: center;
  margin-bottom: 35px;
}

.hero__sub-title {
  font-family: "Montserrat";
  font-weight: 500;
  font-size: 35px;
  line-height: 1.3;
  color: #fff;
  text-align: center;
  margin-bottom: 80px;
}

.hero__btn {
  font-family: "Montserrat";
  font-weight: 400;
  max-width: 330px;
  display: flex;
  font-size: 21px;
  color: #fff;
  text-transform: uppercase;
  background: #000100;
  border: 1px solid #fff;
  padding: 14px 35px;
  border-radius: 35px;
  margin: 0 auto;
  position: relative;
  transition: all 0.3s;
}

.hero__btn::after {
  position: absolute;
  content: "";
  background: url("../img/right-arrow.png") no-repeat center;
  background-size: cover;
  width: 24px;
  height: 21px;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto 0;
}

.hero__btn:hover {
  border: 1px solid #000100;
}

.about {
  padding: 100px 0;
  background: #0b0d0f;
}

.about__inner {
  display: flex;
  align-items: center;
  gap: 30px;
}

.about__colum {
  width: 100%;
}

.about__img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.about__title {
  margin-bottom: 30px;
  color: #fff;
}

.about__text {
  font-weight: 300;
  line-height: 26px;
  color: #fff;
}

.mission {
  padding: 100px 0;
  position: relative;
}

.mission::after {
  position: absolute;
  content: "";
  background: url("../img/map.jpg") no-repeat center;
  background-size: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.02;
}

.mission__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px 0;
}

.mission__item {
  width: 100%;
  padding: 50px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
}

.mission__item:nth-child(1) {
  grid-column-start: 3;
  grid-column-end: 5;
}

.mission__item:nth-child(2) {
  grid-column-start: 1;
  grid-column-end: 4;
}

.mission__item:nth-child(3) {
  grid-column-start: 2;
  grid-column-end: 5;
}

.mission__title {
  margin-bottom: 30px;
}

.mission__text {
  line-height: 26px;
}

.clients {
  padding: 100px 0;
  background: #fcfcfc;
}

.clients__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.clients__title {
  max-width: 320px;
  width: 100%;
  margin-bottom: 30px;
  line-height: 1;
}

.clients__text+.clients__text {
  margin-top: 10px;
}

.clients__text {
  padding-left: 15px;
  position: relative;
}

.clients__text::after {
  position: absolute;
  content: "";
  background: #111010;
  width: 6px;
  height: 6px;
  border-radius: 100px;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto 0;
}

.reviews {
  padding: 100px 0;
  background: #fcfcfc;
}

.reviews__slider {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
}

.reviews__top-title {
  margin-bottom: 50px;
  text-align: center;
}

.reviews__title {
  margin-bottom: 50px;
}

.reviews__slide-qq {
  margin-bottom: 25px;
}

.reviews__slide-img {
  max-width: 54px;
  width: 100%;
  height: auto;
}

.reviews__slide-text {
  max-width: 720px;
  width: 100%;
  font-weight: 300;
  font-size: 21px;
  line-height: 28px;
  color: #000;
  text-align: center;
  margin-bottom: 40px;
}

.reviews__box {
  display: flex;
  gap: 15px;
  align-items: center;
}

.reviews__slide-name {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #111111;
}

.reviews__slide-role {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #666F80;
}

.swiper-slide {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
  width: 50%;
  background: #FFFFFF;
  box-shadow: 0px 4px 8px -4px rgba(0, 0, 0, 0.25);
  border-radius: 3px;
  padding: 50px 40px;
}

.swiper {
  padding-bottom: 50px;
}

.swiper-scrollbar {
  background: #E9ECEF;
}

.swiper-scrollbar-drag {
  background: #111010;
}

.swiper-horizontal>.swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  height: var(--swiper-scrollbar-size, 2px);
}

.home {
  background: #fff;
}

.home__img {
  max-width: 700px;
  width: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

@keyframes FadeUp {
  0% {
    opacity: 0;
    transform: translateY(120px);
  }

  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

.contact {
  padding: 100px 0;
  background: #0b0d0f;
}

.contact__inner {
  display: flex;
  gap: 100px;
}

.contact__colum {
  width: 100%;
}

.contact__title {
  color: #fff;
  margin-bottom: 50px;
}

.contact__form div form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact__input {
  width: 100%;
  outline: none;
  border: none;
  background: transparent;
  border-bottom: 1px solid #fff;
  font-weight: 300;
  font-size: 16px;
  line-height: 21px;
  color: #fff;
  padding: 12px 15px;
}

.contact__input::-moz-placeholder {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 21px;
  color: #fff;
}

.contact__input::placeholder {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 21px;
  color: #fff;
}

.contact__btn {
  outline: none;
  border: 1px solid #fff;
  background: #fff;
  padding: 12px 30px;
  font-weight: 500;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s;
}

.contact__btn:hover {
  background: transparent;
  color: #fff;
}

.contact__img {
  max-width: 340px;
  margin: 0 auto;
  margin-top: -40px;
}

.contact__box {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact__link {
  max-width: 340px;
  width: 100%;
  font-weight: 300;
  color: #fff;
  padding-left: 40px;
  position: relative;
}

.contact__link::after {
  position: absolute;
  content: "";
  background: url("../img/phone-call.png") no-repeat center;
  background-size: contain;
  width: 21px;
  height: 21px;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto 0;
}

.contact__link:nth-child(2)::after {
  background: url("../img/email.png") no-repeat center;
  background-size: contain;
}

.contact__link:nth-child(3)::after {
  background: url("../img/location.png") no-repeat center;
  background-size: contain;
}

.contact__cv-white {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1;
  color: #fff;
  margin-bottom: 15px;
  padding-left: 20px;
}

.contact__cv-black {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1;
  color: #111010;
  margin-bottom: 15px;
  padding-left: 20px;
}

.contact__upload-white .codedropz-upload-inner h3 {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: #fff;
}

.contact__upload-white .codedropz-upload-inner span {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  color: #fff;
}

.contact__upload-white .codedropz-btn-wrap a {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  color: #fff;
}

.codedropz-upload-container {
  padding: 12px 20px;
}

.contact__upload-white .codedropz-upload-handler {
  border: 1px dashed #fff;
}

.contact__upload-black .codedropz-upload-inner h3 {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: #111010;
}

.contact__upload-black .codedropz-upload-inner span {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  color: #111010;
}

.contact__upload-black .codedropz-btn-wrap a {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  color: #111010;
}

.contact__upload-black .codedropz-upload-handler {
  border: 1px dashed #111010;
}

.dnd-upload-counter {
  display: none;
}

.jobs {
  padding: 150px 0;
}

.jobs__title {
  margin-bottom: 80px;
  text-align: center;
}

.jobs__items {
  display: flex;
  gap: 30px;
}

.jobs__item {
  max-width: 380px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: auto;
  padding: 30px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
}

.jobs__img {
  max-width: 320px;
  width: 100%;
  max-height: 214px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 3px;
  margin-bottom: 20px;
}

.jobs__item-title {
  overflow-wrap: break-word;
  font-weight: 700;
  font-size: 21px;
  line-height: 26px;
  margin-bottom: 15px;
}

.jobs__text {
  font-weight: 300;
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 10px;
}

.jobs__description {
  margin-bottom: 20px;
}

.jobs__btn {
  width: 100%;
  text-align: center;
  margin-top: auto;
}

.jobs .contact__input {
  border-bottom: 1px solid #000100;
  color: #111010;
}

.jobs .contact__input::-moz-placeholder {
  color: #111010;
}

.jobs .contact__input::placeholder {
  color: #111010;
}

.jobs .contact__btn {
  color: #fff;
  border: 1px solid #111010;
  background: #111010;
  transition: all 0.3s;
}

.jobs .contact__btn:hover {
  color: #111010;
  background: #fff;
}

.jobs .contact__title {
  color: #111010;
}

.contact-page {
  padding: 200px 0;
  height: calc(100vh - 95px);
  background: #fff;
}

.contact-page .contact__input {
  border-bottom: 1px solid #000100;
  color: #111010;
}

.contact-page .contact__input::-moz-placeholder {
  color: #111010;
}

.contact-page .contact__input::placeholder {
  color: #111010;
}

.contact-page .contact__btn {
  color: #fff;
  border: 1px solid #111010;
  background: #111010;
  transition: all 0.3s;
}

.contact-page .contact__btn:hover {
  color: #111010;
  background: #fff;
}

.contact-page .contact__link {
  color: #111010;
}

.contact-page .contact__link::after {
  background: url("../img/phone-call-black.png") no-repeat center;
  background-size: contain;
}

.contact-page .contact__link:nth-child(2)::after {
  background: url("../img/mail-black.png") no-repeat center;
  background-size: contain;
}

.contact-page .contact__link:nth-child(3)::after {
  background: url("../img/location-black.png") no-repeat center;
  background-size: contain;
}

.contact-page .contact__title {
  color: #111010;
}

.partner {
  width: 100%;
}

.partner__title {
  margin-bottom: 50px;
}

.partner__form div form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.partner__input {
  border-bottom: 1px solid #000100;
  color: #111010;
}

.partner__input::-moz-placeholder {
  color: #111010;
}

.partner__input::placeholder {
  color: #111010;
}

.partner__btn {
  border: 1px solid #111010;
  background: #111010;
  color: #fff;
  transition: all 0.3s;
}

.partner__btn:hover {
  color: #111010;
  background: #fff;
}

.header__burger-btn {
  display: none;
}

.header__burger-close {
  display: none;
}

@media (max-width: 1100px) {
  .header__burger-close {
    display: block;
    width: 30px;
    height: 16px;
    position: absolute;
    top: 40px;
    right: 15px;
  }

  .header__burger-close::after {
    position: absolute;
    content: "";
    background: #000100;
    width: 30px;
    height: 1px;
    transform: rotate(45deg);
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
  }

  .header__burger-close::before {
    position: absolute;
    content: "";
    background: #000100;
    width: 30px;
    height: 1px;
    transform: rotate(-45deg);
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
  }

  .header__menu {
    display: none;
    padding: 100px 30px;
    top: 0;
    right: 0;
    position: fixed;
    height: 100vh;
    width: 300px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
    z-index: 99999;
  }

  .header__menu.active {
    display: block;
  }

  .header__list {
    flex-direction: column;
  }

  .header__burger-btn {
    display: block;
    position: relative;
    width: 30px;
    height: 16px;
  }

  .header__burger-btn::after {
    position: absolute;
    content: "";
    background: #000100;
    width: 30px;
    height: 1px;
    top: 0;
    left: 0;
  }

  .header__burger-btn::before {
    position: absolute;
    content: "";
    background: #000100;
    width: 30px;
    height: 1px;
    bottom: 0;
    left: 0;
  }

  .header__burger-btn span {
    position: absolute;
    background: #000100;
    width: 30px;
    height: 1px;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto 0;
  }

  .hero__title {
    font-size: 48px;
  }

  .hero__sub-title {
    font-size: 18px;
  }

  .hero__btn {
    font-size: 18px;
  }

  .about {
    padding: 50px 0;
  }

  .about__inner {
    flex-direction: column-reverse;
  }

  .mission {
    padding: 50px 0;
  }

  .mission__item:nth-child(1),
  .mission__item:nth-child(2),
  .mission__item:nth-child(3) {
    grid-column-start: 1;
    grid-column-end: 5;
  }

  .reviews {
    padding: 50px 0;
  }

  .reviews__slide-text {
    font-size: 18px;
  }

  .contact__inner {
    flex-direction: column;
  }

  .about__title {
    text-align: center;
  }

  .mission__item {
    padding: 40px 30px;
  }

  .about__img {
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
  }

  .contact-page {
    padding: 100px 0;
    height: auto;
  }

  .contact-page .contact__inner {
    flex-direction: column-reverse;
  }

  .contact-page .contact__title {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .jobs {
    padding: 50px 0;
  }

  .jobs__items {
    flex-direction: column-reverse;
    gap: 100px;
  }

  .jobs .contact__title,
  .partner__title {
    line-height: 1;
  }

  .clients__inner {
    flex-direction: column;
  }
}

.home__text {
	text-align: center
}
/*# sourceMappingURL=style.css.map */