@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background-color: #fff;
  font-family: "DM Sans", sans-serif;
}

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

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button,
input,
textarea {
  font: inherit;
  border: 0;
  outline: none;
}

main {
  overflow: hidden;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #fff;
}
.header__container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: 1720px;
  min-height: 70px;
  margin: 0 auto;
  padding: 18px 64px;
}
.header__logo {
  justify-self: start;
}
.header__button {
  justify-self: center;
  text-decoration: underline;
}
.header__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 32px;
  height: 22px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  justify-self: end;
}
.header__burger span {
  display: block;
  width: 28px;
  height: 2px;
  background-color: #000;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.header__burger.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.header__burger.is-active span:nth-child(2) {
  opacity: 0;
}
.header__burger.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
@media (max-width: 767px) {
  .header__container {
    min-height: 70px;
    grid-template-columns: 1fr auto auto;
    padding: 0 15px;
  }
  .header__button {
    display: none;
  }
  .header__burger {
    width: 40px;
    height: 40px;
  }
  .header__burger span {
    width: 26px;
  }
}

.menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1100;
  width: min(420px, 100%);
  height: 100dvh;
  background-color: #fff;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.35s ease, visibility 0.35s ease;
}
.menu.is-open {
  transform: translateX(0);
  visibility: visible;
}
.menu__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 15px 40px;
}
.menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 70px;
}
.menu__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
}
.menu__close span {
  position: absolute;
  width: 26px;
  height: 2px;
  background-color: #000;
  border-radius: 2px;
}
.menu__close span:first-child {
  transform: rotate(45deg);
}
.menu__close span:last-child {
  transform: rotate(-45deg);
}
.menu__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.menu__link {
  display: block;
  color: #000;
  text-align: center;
  font-size: 16px;
  padding: 10px;
  line-height: 120%;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
@media (min-width: 768px) {
  .menu__link {
    font-size: 18px;
  }
}
.menu__link:hover {
  opacity: 0.9;
  cursor: pointer;
  background-color: rgb(255, 107, 73);
  color: white;
  border-radius: 24px;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 1050;
  background-color: rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.menu-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

body.menu-is-open {
  overflow: hidden;
}

@media (max-width: 767px) {
  .menu {
    width: 100%;
  }
  .menu__inner {
    padding: 15px;
  }
  .menu__header {
    margin-bottom: 50px;
  }
}
.footer {
  padding: 50px 20px;
}
@media (min-width: 1440px) {
  .footer {
    padding: 65px;
  }
}
.footer__container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .footer__container {
    flex-direction: row;
    gap: 50px;
  }
}
.footer__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}
.footer__item + .footer__item {
  border-top: 1px solid rgb(100, 116, 139);
  padding-top: 20px;
}
@media (min-width: 768px) {
  .footer__item + .footer__item {
    border-top: none;
    border-left: 1px solid rgb(100, 116, 139);
    padding-left: 30px;
  }
}
.footer__item:nth-child(2), .footer__item:nth-child(3) {
  justify-content: end;
}
.footer__item:nth-child(2) {
  align-items: center;
  flex-direction: row;
  justify-content: center;
}
@media (min-width: 768px) {
  .footer__item:nth-child(2) {
    flex-direction: column;
    justify-content: end;
  }
}
.footer__item:nth-child(3) {
  align-items: center;
}
@media (min-width: 1440px) {
  .footer__item:nth-child(3) {
    align-items: end;
  }
}
.footer__item-text {
  font-size: 16px;
  line-height: 120%;
  font-weight: 400;
  text-align: left;
  color: rgb(104, 104, 104);
}

/* Contact Form 7 */
.cf-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 0 auto;
}

.cf-field {
  width: 100%;
}

.cf-field input,
.cf-field textarea {
  width: 100%;
  box-sizing: border-box;
  background: white;
  border: none;
  border-radius: 24px;
  padding: 24px;
  font-size: 16px;
  color: rgb(104, 104, 104);
  outline: none;
  transition: border-color 0.3s ease;
}

.cf-field textarea {
  height: 240px;
  resize: vertical;
}

.cf-field input::placeholder,
.cf-field textarea::placeholder {
  color: #999;
}

.cf-field input:focus,
.cf-field textarea:focus {
  border-bottom-color: #77d3d1;
}

/* Desktop */
@media (min-width: 1024px) {
  .cf-form {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  /* Name */
  .cf-field:nth-child(1) {
    grid-column: 1;
  }
  /* Email */
  .cf-field:nth-child(2) {
    grid-column: 2;
  }
  /* Phone */
  .cf-field:nth-child(3) {
    grid-column: 3;
  }
  /* Message */
  .cf-field:nth-child(4) {
    grid-column: 1/-1;
  }
}
/* Submit */
.cf-submit {
  grid-column: 1/-1;
  text-align: center;
}

.cf-submit input[type=submit] {
  display: block;
  background: rgb(124, 58, 237);
  color: white;
  border: none;
  padding: 24px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 24px;
  margin: 0 auto;
  box-shadow: 0px 1.85px 3.15px 0px rgba(24, 167, 185, 0.02), 0px 8.15px 6.52px 0px rgba(24, 167, 185, 0.04), 0px 20px 13px 0px rgba(24, 167, 185, 0.05), 0px 38.52px 25.48px 0px rgba(24, 167, 185, 0.06), 0px 64.81px 46.85px 0px rgba(24, 167, 185, 0.08);
  text-transform: uppercase;
}

.cf-submit input[type=submit]:hover {
  transform: translateY(-2px);
}

/* Errors */
.wpcf7-not-valid-tip {
  font-size: 14px;
  color: #e74c3c;
  margin-top: 8px;
}

.wpcf7-response-output {
  border: none;
  padding: 20px;
  margin-top: 30px;
  text-align: center;
}

.wpcf7-response-output.wpcf7-display-none.wpcf7-validation-errors {
  margin: 2em auto;
  border: none;
  color: red;
}

@media (min-width: 1024px) {
  .wpcf7-response-output.wpcf7-display-none.wpcf7-validation-errors {
    width: 50%;
  }
}
.wpcf7-response-output.wpcf7-display-none.wpcf7-mail-sent-ok {
  border: none;
  color: green;
}

.container {
  width: 100%;
  max-width: 1720px;
  margin: 0 auto;
  padding: 50px 20px 100px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 25px;
}
@media (min-width: 768px) {
  .container {
    padding: 75px 30px 125px 30px;
  }
}
@media (min-width: 1024px) {
  .container {
    padding: 100px 50px 150px 50px;
  }
}
@media (min-width: 1440px) {
  .container {
    max-width: 1184px;
    padding: 128px 0 250px 0;
  }
}
@media (min-width: 1920px) {
  .container {
    max-width: 1440px;
  }
}

.section {
  position: relative;
}
.section--gray {
  background-color: rgb(241, 241, 241);
}
.section--orange {
  background-color: rgb(255, 107, 73);
}
.section::before, .section::after {
  content: "";
  position: absolute;
  left: 50%;
  z-index: 1;
  width: 2px;
  transform: translateX(-50%) scaleY(0);
  transition: transform 1s ease;
}
.section::before {
  top: 0;
  height: 32px;
  transform-origin: top;
  background: rgb(255, 31, 18);
}
@media (min-width: 768px) {
  .section::before {
    height: 48px;
  }
}
@media (min-width: 1440px) {
  .section::before {
    height: 64px;
  }
}
.section::after {
  bottom: 0;
  height: 75px;
  transform-origin: bottom;
  background: linear-gradient(0deg, #FF1F12 0%, #F1F1F1 100%);
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .section::after {
    height: 100px;
  }
}
@media (min-width: 1440px) {
  .section::after {
    height: 200px;
  }
}
.section.is-visible::before, .section.is-visible::after {
  transform: translateX(-50%) scaleY(1);
}
.section__title {
  font-size: 24px;
  line-height: 120%;
  font-weight: 400;
  color: rgb(27, 27, 27);
  text-align: center;
}
@media (min-width: 768px) {
  .section__title {
    font-size: 26px;
  }
}
@media (min-width: 1024px) {
  .section__title {
    font-size: 32px;
  }
}
@media (min-width: 1440px) {
  .section__title {
    font-size: 38px;
  }
}
.section__description {
  font-size: 16px;
  line-height: 120%;
  font-weight: 400;
  color: rgb(104, 104, 104);
  text-align: center;
}
@media (min-width: 1440px) {
  .section__description {
    margin-bottom: 40px;
  }
}
.section__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: 20px;
}
@media (min-width: 768px) {
  .section__content {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .section__content {
    gap: 45px;
  }
}
@media (min-width: 768px) {
  .section--items-animation .section__content .section__item {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .section--items-animation .section__content .section__item:nth-child(-n+3) {
    transform: translateY(-120px);
  }
  .section--items-animation .section__content .section__item:nth-child(n+4) {
    transform: translateY(120px);
  }
  .section--items-animation .section__content .section__item:nth-child(1) {
    transition-delay: 0.1s;
  }
  .section--items-animation .section__content .section__item:nth-child(2) {
    transition-delay: 0.2s;
  }
  .section--items-animation .section__content .section__item:nth-child(3) {
    transition-delay: 0.3s;
  }
  .section--items-animation .section__content .section__item:nth-child(4) {
    transition-delay: 0.1s;
  }
  .section--items-animation .section__content .section__item:nth-child(5) {
    transition-delay: 0.2s;
  }
  .section--items-animation .section__content .section__item:nth-child(6) {
    transition-delay: 0.3s;
  }
  .section--items-animation.is-visible .section__content .section__item {
    opacity: 1;
    transform: translateY(0);
  }
}
.section__list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}
.section__item {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}
.section__item-title {
  font-size: 14px;
  line-height: 120%;
  font-weight: 400;
  color: rgb(27, 27, 27);
  text-align: center;
}
@media (min-width: 768px) {
  .section__item-title {
    font-size: 18px;
  }
}
@media (min-width: 1024px) {
  .section__item-title {
    font-size: 22px;
  }
}
@media (min-width: 1440px) {
  .section__item-title {
    font-size: 24px;
  }
}
.section__item-text {
  font-size: 16px;
  line-height: 120%;
  font-weight: 400;
  color: rgb(104, 104, 104);
  text-align: center;
}
.section__item-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
  flex-shrink: 0;
  align-self: center;
}
@media (min-width: 768px) {
  .section__item-icon {
    width: 65px;
    height: 65px;
  }
}
@media (min-width: 1024px) {
  .section__item-icon {
    width: 85px;
    height: 85px;
  }
}
@media (min-width: 1440px) {
  .section__item-icon {
    width: 100px;
    height: 100px;
  }
}
.section__item-number {
  color: rgb(201, 166, 107);
  font-size: 32px;
  line-height: 120%;
  font-weight: 200;
}
@media (min-width: 1440px) {
  .section__item-number {
    font-size: 76px;
  }
}
.section__stats {
  display: flex;
  flex-direction: row;
  border-top: 2px solid rgb(201, 166, 107);
  border-bottom: 2px solid rgb(201, 166, 107);
  padding: 15px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 70px);
  overflow: hidden;
}
@media (min-width: 1920px) {
  .hero {
    min-height: 940px;
  }
}
.hero::before {
  display: none;
}
.hero__video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__container {
  position: relative;
  z-index: 1;
  min-height: inherit;
  height: 100%;
}
.hero__content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.hero__title {
  color: #fff;
  font-size: 28px;
  line-height: 100%;
  font-weight: 400;
  text-align: center;
}
@media (min-width: 1440px) {
  .hero__title {
    max-width: 750px;
    font-size: 64px;
    line-height: 120%;
  }
}
.hero__text {
  color: #fff;
  font-size: 18px;
  line-height: 100%;
  text-align: center;
}
@media (min-width: 1440px) {
  .hero__text {
    font-size: 16px;
    line-height: 120%;
  }
}
.hero__button {
  background-color: white;
  color: black;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 18px;
  margin: 0 auto;
  border-radius: 8px;
  text-transform: uppercase;
}
@media (min-width: 1440px) {
  .hero__button {
    font-size: 22px;
    padding: 24px 36px;
  }
}

.about::after {
  background: linear-gradient(0deg, #7C3AED 0%, #FF6B4A 100%);
}
.about .section__item:nth-child(3) {
  grid-column: 1/-1;
  justify-self: center;
}
@media (min-width: 768px) {
  .about .section__item:nth-child(3) {
    grid-column: 3;
  }
}

.advantages::before {
  background: rgb(124, 58, 237);
}
.advantages::after {
  background: linear-gradient(0deg, #006F75 0%, #7C3AED 100%);
}

.contact-us::before {
  background: rgb(74, 1, 0);
}
.contact-us::after {
  background: linear-gradient(0deg, #1B1B1B 0%, #4A0100 100%);
}

.coverage::before {
  background: rgb(201, 166, 107);
}
.coverage::after {
  background: linear-gradient(0deg, #FF1F12 0%, #C9A66B 100%);
}
.coverage .section__content {
  display: flex;
  flex-direction: column;
}
.coverage .section__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  gap: 10px;
}
@media (min-width: 768px) {
  .coverage .section__item {
    flex-direction: row;
    gap: 40px;
  }
}
.coverage .section__item:first-child {
  justify-content: flex-start;
}
.coverage .section__item:last-child {
  justify-content: flex-end;
  border-left: 2px solid rgb(201, 166, 107);
}

.features::before {
  background: rgb(0, 111, 117);
}
.features::after {
  background: linear-gradient(0deg, #FF6B49 0%, #006F75 100%);
}

.industries .section__content {
  width: 100%;
  background-color: rgb(241, 241, 241);
  border-radius: 24px;
  margin-top: 0;
  padding: 64px 0;
}
.industries::before {
  background: linear-gradient(0deg, #FF6B49 0%, #E83E8C 100%);
}
.industries::after {
  background: linear-gradient(0deg, #C9A66B 0%, #E83E8C 100%);
}

.seporator {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 30px 20px;
  gap: 10px;
}
@media (min-width: 1440px) {
  .seporator {
    padding: 70px 128px;
  }
}
.seporator .section__title {
  color: white;
}
.seporator::before, .seporator::after {
  display: none;
}
.seporator__button {
  background-color: white;
  color: rgb(255, 107, 73);
  font-size: 16px;
  font-weight: 600;
  padding: 12px 18px;
  border-radius: 12px;
  text-transform: uppercase;
  text-align: center;
}
@media (min-width: 1440px) {
  .seporator__button {
    font-size: 22px;
    padding: 24px 36px;
  }
}

.work-steps::before {
  background: rgb(255, 31, 18);
}
.work-steps::after {
  background: linear-gradient(0deg, #4A0100 0%, #FF1F12 100%);
}
.work-steps .section__content {
  display: flex;
  width: 100%;
  background-color: rgb(241, 241, 241);
  border-radius: 24px;
  margin-top: 0;
  padding: 24px 10px;
}
@media (min-width: 1440px) {
  .work-steps .section__content {
    margin-bottom: 65px;
    padding: 64px 20px;
  }
}
.work-steps .section__list {
  flex-direction: column;
  gap: 15px;
}
@media (min-width: 768px) {
  .work-steps .section__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-row: auto;
  }
}
@media (min-width: 1440px) {
  .work-steps .section__list {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
.work-steps .section__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex: 1;
}
.work-steps .section__item-number {
  display: flex;
  justify-content: center;
  width: 20px;
  color: rgb(255, 31, 18);
  font-size: 24px;
  border-right: 2px solid rgb(255, 31, 18);
  padding-right: 10px;
}
@media (min-width: 768px) {
  .work-steps .section__item-number {
    width: 40px;
    font-size: 48px;
    padding-right: 20px;
  }
}
.work-steps .section__item-title {
  width: 230px;
  text-align: left;
}

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