@charset "UTF-8";
/*!
Theme Name: w2x
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: w2x
*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap");
/* Base */
/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

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

/* Links */
a, a:link, a:visited {
  text-decoration: none;
}

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;
  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;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  color: #222325;
  font-weight: 400;
  line-height: 1.6;
}
body.active {
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
}

.page-project {
  background: #222325;
  color: white;
}

a {
  color: #3D8DA6;
  font-weight: 700;
}

.page-project a {
  color: white;
  font-weight: 400;
}

.container {
  width: 100%;
  max-width: 1248px;
  margin-right: auto;
  margin-left: auto;
  padding-left: 3rem;
  padding-right: 3rem;
}
@media only screen and (max-width: 992px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.title {
  font-weight: 700;
  font-size: 52px;
}
@media only screen and (max-width: 992px) {
  .title {
    font-size: 24px;
  }
}

.tabs {
  display: flex;
  column-gap: 48px;
  margin-bottom: 84px;
}
@media only screen and (max-width: 992px) {
  .tabs {
    column-gap: 16px;
    margin-bottom: 32px;
  }
}
.tabs span {
  font-size: 24px;
  cursor: pointer;
  color: #74767E;
}
.tabs span:hover {
  color: #222325;
}
@media only screen and (max-width: 992px) {
  .tabs span {
    font-size: 16px;
  }
}
.tabs span.active {
  font-weight: 700;
  position: relative;
  color: #222325;
}
.tabs span.active:before {
  content: "";
  position: absolute;
  bottom: calc(100% + 4px);
  left: 50%;
  width: 37px;
  height: 37px;
  background: url("images/img__values-active.gif");
  background-size: contain;
  transform: translateX(-50%);
}

.tab_item {
  display: none;
}

.tab_item:first-child {
  display: block;
}

.svg-color {
  fill: #222325;
}

.page-project .header__navigation ul a {
  color: #FFFFFF !important;
}

.page-project .svg-color {
  fill: #FFFFFF !important;
}

.form {
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 120px;
  margin-top: 48px;
}
@media only screen and (max-width: 992px) {
  .form {
    display: block;
  }
}
.form .wpcf7-submit {
  border: 1px solid white;
  padding: 12px 64px;
  border-radius: 48px;
  margin-top: 16px;
  background: white;
  color: #222325;
}
.form .wpcf7-radio {
  display: block;
}
.form .wpcf7-radio input {
  display: none;
}
.form .wpcf7-list-item-label {
  border: 1px solid white;
  padding: 12px 24px;
  display: inline-block;
  margin-bottom: 16px;
  border-radius: 48px;
}
@media only screen and (max-width: 992px) {
  .form .wpcf7-list-item-label {
    padding: 6px 12px;
    font-size: 14px;
  }
}
.form input:checked + .wpcf7-list-item-label {
  border: 1px solid white;
  background: white;
  color: #000;
}
.form input[type=text],
.form input[type=email], .form textarea {
  border: 1px solid white;
  padding: 12px 24px;
  margin-bottom: 16px;
  width: 100%;
}

.wpcf7-response-output {
  margin: 0 0 2em calc(50% + 48px) !important;
  padding: 24px 24px !important;
  border: 0 !important;
  background: #333438 !important;
  border-radius: 5px !important;
  display: flex;
}
.wpcf7-response-output:after {
  content: "";
  background: url("images/material-symbols_check-circle.svg");
  width: 32px;
  height: 32px;
  display: block;
  margin-left: 4px;
  transform: translateY(-4px);
}

.button--start-project {
  color: white;
  padding: 12px 24px;
  background: linear-gradient(to right, #222325, #3D8DA6);
  border-radius: 24px;
  border: 2px solid white;
}
.button--start-project:hover {
  border: 2px solid #222325;
  color: #222325;
  background: transparent;
}
.button--black {
  color: #222325 !important;
  background: white;
  font-weight: 600 !important;
  border: 2px solid white;
}
.button--black:hover {
  background: linear-gradient(to right, #222325, #3D8DA6);
  color: white !important;
}

.header {
  height: 80px;
  display: flex;
  align-items: center;
}
.header__row {
  display: grid;
  grid-template-columns: auto 2fr 1fr auto;
  column-gap: 32px;
}
@media only screen and (max-width: 992px) {
  .header__row {
    column-gap: 0;
    grid-template-columns: auto auto auto;
  }
}
.header__branding {
  align-self: center;
}
.header__branding img {
  display: block;
}
.header__navigation {
  justify-self: end;
  align-self: center;
}
@media only screen and (max-width: 992px) {
  .header__navigation {
    display: none;
  }
}
.header__navigation ul {
  display: flex;
  column-gap: 32px;
}
.header__navigation ul a {
  color: #222325;
  font-weight: 500;
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0% 100%;
  background-repeat: no-repeat;
  background-size: 0% 1px;
  transition: background-size 0.3s;
  padding-bottom: 2px;
}
.header__navigation ul a:hover {
  background-size: 100% 1px;
}
@media only screen and (max-width: 992px) {
  .header__start {
    display: none;
  }
}
.header__mobile {
  display: none;
  margin-left: auto;
}
@media only screen and (max-width: 992px) {
  .header__mobile {
    display: block;
  }
}
.header__toggle {
  height: 24px;
  width: 33px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 9999;
  position: relative;
}
.header__toggle.active {
  justify-content: center;
}
.header__toggle.active div {
  background: white !important;
}
.header__toggle.active div:nth-child(1) {
  transform: translateY(2px) rotate(45deg);
  transition: 0.15s;
}
.header__toggle.active div:nth-child(3) {
  transform: translateY(-2px) rotate(-45deg);
  transition: 0.15s;
}
.header__toggle.active div:nth-child(2) {
  transition: 0.15s;
  display: none;
}
.header__toggle div {
  width: 100%;
  height: 4px;
  background: #3D8DA6;
}
.header__phones {
  align-self: center;
}
@media only screen and (max-width: 992px) {
  .header__phones {
    text-align: center;
  }
}
.header__phones a {
  font-size: 18px;
  font-weight: 400;
  white-space: nowrap;
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0% 100%;
  background-repeat: no-repeat;
  background-size: 0% 1px;
  transition: background-size 0.3s;
  padding-bottom: 2px;
}
.header__phones a:hover {
  background-size: 100% 1px;
}
.header__phones img {
  width: 20px;
  height: 20px;
  margin-right: 3px;
  vertical-align: middle;
}

.footer {
  margin-bottom: 32px;
}
.footer__row {
  display: grid;
  grid-template-columns: 1fr auto;
}
@media only screen and (max-width: 992px) {
  .footer__row {
    grid-template-columns: 1fr;
  }
}
.footer__wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media only screen and (max-width: 992px) {
  .footer__wrap {
    margin-bottom: 32px;
  }
}
.footer__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 40px;
}
@media only screen and (max-width: 992px) {
  .footer__title {
    font-size: 20px;
  }
}
.footer__phone {
  font-size: 20px;
  margin-bottom: 24px;
  color: #222325;
  font-weight: 400;
}
@media only screen and (max-width: 992px) {
  .footer__phone {
    font-size: 16px;
  }
}
.footer__mail {
  font-size: 20px;
  margin-bottom: 24px;
  color: #222325;
  font-weight: 400;
}
@media only screen and (max-width: 992px) {
  .footer__mail {
    font-size: 16px;
  }
}
.footer__address {
  font-size: 20px;
}
@media only screen and (max-width: 992px) {
  .footer__address {
    font-size: 16px;
  }
}
.footer__mail, .footer__phone {
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0% 100%;
  background-repeat: no-repeat;
  background-size: 0% 1px;
  transition: background-size 0.3s;
  padding-bottom: 1px;
}
.footer__mail:hover, .footer__phone:hover {
  background-size: 100% 1px;
}
.footer__social {
  align-self: end;
  display: flex;
  column-gap: 16px;
}

.mobile-menu {
  background: #222325;
  color: white;
  position: fixed;
  top: 0;
  left: -9999px;
  width: 100%;
  height: 100%;
  padding: 56px 56px;
  z-index: 999;
  opacity: 0;
}
.mobile-menu.active {
  opacity: 1;
  left: 0;
}
.mobile-menu a {
  font-size: 20px;
}
.mobile-menu li {
  margin-bottom: 16px;
}
.mobile-menu__close {
  position: absolute;
  top: 1.5rem;
  right: 32px;
}
.mobile-menu__list a {
  color: white;
}
.mobile-menu__start {
  margin-bottom: 32px;
}
.mobile-menu__contact {
  margin-bottom: 48px;
  font-size: 18px;
}
.mobile-menu__contact a {
  display: block;
  font-weight: 400;
  margin-bottom: 16px;
  color: white;
}
.mobile-menu__social {
  display: flex;
  column-gap: 16px;
}

/* Page */
@media only screen and (max-width: 992px) {
  .case__description {
    margin-bottom: 24px;
  }
}
.case__preview-img {
  box-shadow: 0 0 20px #ccc;
}
.case__big-img {
  margin-bottom: 112px;
  box-shadow: 0 0 20px #ccc;
}
@media only screen and (max-width: 992px) {
  .case__big-img {
    margin-bottom: 50px;
  }
}
.case__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 96px;
}
@media only screen and (max-width: 992px) {
  .case__header {
    grid-template-columns: 1fr;
  }
}
.case__header .case__name {
  word-break: break-all;
}
.case__header .s_cases__tags {
  font-size: 16px;
  font-weight: 600;
  margin-top: 15px;
}
.case__text {
  margin-top: 112px;
  margin-bottom: 112px;
}
@media only screen and (max-width: 992px) {
  .case__text {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}
.case__wrap {
  margin-bottom: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 96px;
  row-gap: 21px;
  margin-top: 112px;
}
@media only screen and (max-width: 992px) {
  .case__wrap {
    grid-template-columns: 1fr;
    margin-bottom: 48px;
    margin-top: 64px;
  }
}
.case__wrap:last-child {
  margin-bottom: 144px;
}
@media only screen and (max-width: 992px) {
  .case__wrap:last-child {
    margin-bottom: 72px;
  }
}
.case__item {
  box-shadow: 0 0 20px #ccc;
  /*&:nth-child(2n) {
    padding-top: 75px;

    @include media('max', 'lg'){
      padding-top: 0;
    }
  }*/
}
.case__name {
  font-size: 64px;
  line-height: 78px;
  font-weight: 700;
  margin-bottom: 40px;
}
@media only screen and (max-width: 992px) {
  .case__name {
    font-size: 32px;
    margin-bottom: 0;
  }
}
.case__article {
  margin-top: 57px;
}
.case__article iframe {
  width: 100%;
  height: 650px;
  margin-bottom: 164px;
}
@media only screen and (max-width: 992px) {
  .case__article iframe {
    height: 240px;
    margin-bottom: 72px;
  }
}
.case__header {
  margin-bottom: 98px;
}
@media only screen and (max-width: 992px) {
  .case__header {
    margin-bottom: 48px;
  }
}
.case__title-about {
  font-size: 52px;
  margin-bottom: 40px;
  font-weight: 700;
}
@media only screen and (max-width: 992px) {
  .case__title-about {
    font-size: 32px;
    margin-bottom: 24px;
  }
}
.case__about-text {
  font-size: 20px;
  line-height: 38px;
}
@media only screen and (max-width: 992px) {
  .case__about-text {
    font-size: 16px;
    line-height: 1.5;
  }
}
.case__black {
  background-color: #222325;
  color: white;
  padding: 112px 0 144px 0;
  margin-bottom: 144px;
}
@media only screen and (max-width: 992px) {
  .case__black {
    padding: 64px 0 74px 0;
    margin-bottom: 74px;
  }
}

.project__hero {
  margin-top: 118px;
  margin-bottom: 112px;
}
@media only screen and (max-width: 992px) {
  .project__hero {
    margin-top: 64px;
    margin-bottom: 64px;
  }
}
.project__title {
  font-size: 64px;
  line-height: 78px;
  font-weight: 700;
}
@media only screen and (max-width: 992px) {
  .project__title {
    font-size: 32px;
    line-height: 1.5;
  }
}
.project__form {
  margin-bottom: 47px;
}
.project__bottom {
  margin-bottom: 144px;
}
@media only screen and (max-width: 992px) {
  .project__bottom {
    margin-bottom: 64px;
  }
}
.project__bottom p {
  max-width: 944px;
  font-size: 20px;
  line-height: 38px;
}
@media only screen and (max-width: 992px) {
  .project__bottom p {
    font-size: 16px;
    line-height: 1.5;
  }
}

/* Section */
.s_hero__wrap {
  text-align: center;
}
.s_hero__text {
  font-size: 48px;
  line-height: 72px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 180px;
}
@media only screen and (max-width: 992px) {
  .s_hero__text {
    font-size: 32px;
    line-height: 1.5;
    margin-bottom: 75px;
  }
}
.s_hero__text a {
  background-size: 0 2px;
  padding-bottom: 3px;
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0% 100%;
  background-repeat: no-repeat;
  transition: background-size 0.3s;
}
.s_hero__text a:hover {
  background-size: 100% 2px;
}
.s_hero__scroll {
  margin-bottom: 64px;
}
.s_hero__scroll img {
  width: 64px;
  height: 64px;
}
@media only screen and (max-width: 992px) {
  .s_hero__scroll img {
    width: 48px;
    height: 48px;
  }
}
@media only screen and (max-width: 992px) {
  .s_hero__image img {
    width: 130px;
    height: 130px;
  }
}

.s_values {
  margin-bottom: 144px;
}
@media only screen and (max-width: 992px) {
  .s_values {
    margin-bottom: 74px;
  }
}
.s_values__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 96px;
}
@media only screen and (max-width: 992px) {
  .s_values__row {
    grid-template-columns: 1fr;
  }
}
.s_values__illustration {
  z-index: -99;
}
@media only screen and (max-width: 992px) {
  .s_values__illustration {
    margin-bottom: 48px;
  }
}
.s_values .tab_content {
  font-size: 20px;
  line-height: 38px;
}
@media only screen and (max-width: 992px) {
  .s_values .tab_content {
    font-size: 16px;
    line-height: 1.5;
  }
}
.s_values .title {
  position: relative;
  display: block;
}
.s_values .title:before {
  content: "";
  width: 228px;
  height: 228px;
  background: url("images/bg-title.gif") center no-repeat;
  background-size: cover;
  display: block;
  position: absolute;
  transform: translateY(-15%);
  top: -50%;
  left: 0;
  z-index: -9;
}
@media only screen and (max-width: 992px) {
  .s_values .title:before {
    width: 114px;
    height: 114px;
  }
}

.s_cases__row {
  display: grid;
  grid-template-columns: 33% 67%;
  margin-bottom: 112px;
}
@media only screen and (max-width: 992px) {
  .s_cases__row {
    grid-template-columns: 1fr;
  }
}
.s_cases__row--margin-top {
  margin-top: 118px;
}
.s_cases__description {
  font-size: 32px;
  line-height: 1.5;
}
@media only screen and (max-width: 992px) {
  .s_cases__description {
    font-size: 18px;
  }
}
.s_cases__wrap {
  margin-bottom: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 96px;
  row-gap: 53px;
  margin-top: 112px;
}
@media only screen and (max-width: 992px) {
  .s_cases__wrap {
    grid-template-columns: 1fr;
  }
}
.s_cases__item:nth-child(2n) {
  padding-top: 75px;
}
@media only screen and (max-width: 992px) {
  .s_cases__item:nth-child(2n) {
    padding-top: 0;
  }
}
.s_cases__item img {
  display: block;
  margin-bottom: 72px;
}
@media only screen and (max-width: 992px) {
  .s_cases__item img {
    margin-bottom: 36px;
  }
}
.s_cases__subtitle {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #222325;
}
@media only screen and (max-width: 992px) {
  .s_cases__subtitle {
    font-size: 18px;
    margin-bottom: 12px;
  }
}
.s_cases__bottom {
  margin-bottom: 144px;
  text-align: center;
}
.s_cases__bottom a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  column-gap: 4px;
}
@media only screen and (max-width: 992px) {
  .s_cases__bottom a {
    font-size: 16px;
  }
}
.s_cases__bottom a span:nth-child(2) {
  display: block;
  width: 71px;
  height: 71px;
  background: url("images/animated-arrow-bg.gif") center center no-repeat;
  background-size: contain;
}
.s_cases__bottom a span:nth-child(2):after {
  content: "›";
  color: #3D8DA6;
  font-size: 40px;
  font-weight: 400;
}
.s_cases__tags {
  display: flex;
  column-gap: 8px;
  color: #222325;
  font-weight: 400;
  font-size: 20px;
  line-height: 38px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 992px) {
  .s_cases__tags {
    font-size: 14px;
    line-height: 1.5;
  }
}
.s_cases .title {
  position: relative;
  display: block;
}
.s_cases .title:before {
  content: "";
  width: 228px;
  height: 228px;
  background: url("images/bg-title.gif") center no-repeat;
  background-size: cover;
  display: block;
  position: absolute;
  transform: translateY(-15%);
  top: -50%;
  left: 0;
  z-index: -9;
}
@media only screen and (max-width: 992px) {
  .s_cases .title:before {
    width: 114px;
    height: 114px;
  }
}

.s_services {
  margin-bottom: 144px;
}
@media only screen and (max-width: 992px) {
  .s_services {
    margin-bottom: 74px;
  }
}
.s_services__subtitle {
  margin-bottom: 112px;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}
@media only screen and (max-width: 992px) {
  .s_services__subtitle {
    margin-bottom: 64px;
  }
}
@media only screen and (max-width: 992px) {
  .s_services .title {
    margin-bottom: 24px;
  }
}
.s_services__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 96px;
  row-gap: 112px;
  margin-bottom: 144px;
}
@media only screen and (max-width: 992px) {
  .s_services__wrap {
    grid-template-columns: 1fr;
    margin-bottom: 74px;
    row-gap: 64px;
  }
}
.s_services__row {
  display: grid;
  grid-template-columns: 33% 67%;
  margin-bottom: 112px;
}
@media only screen and (max-width: 992px) {
  .s_services__row {
    grid-template-columns: 1fr;
    margin-bottom: 64px;
  }
}
.s_services__text {
  font-size: 20px;
  line-height: 38px;
}
@media only screen and (max-width: 992px) {
  .s_services__text {
    font-size: 16px;
    line-height: 1.5;
  }
}
.s_services__name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
}
@media only screen and (max-width: 992px) {
  .s_services__name {
    font-size: 20px;
    line-height: 38px;
  }
}
.s_services__description {
  font-size: 20px;
  line-height: 38px;
}
@media only screen and (max-width: 992px) {
  .s_services__description {
    font-size: 16px;
    line-height: 1.5;
  }
}
.s_services__bottom {
  width: 67%;
  margin-bottom: 200px;
}
@media only screen and (max-width: 992px) {
  .s_services__bottom {
    width: 100%;
    margin-bottom: 100px;
  }
}

.s_contact-us {
  color: white;
  margin-bottom: 144px;
  background: #222325;
  padding-bottom: 90px;
}
@media only screen and (max-width: 992px) {
  .s_contact-us {
    padding-bottom: 90px;
    margin-bottom: 74px;
  }
}
.s_contact-us__wrap {
  padding-top: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: url("images/img__contact-us.png") bottom center no-repeat;
  padding-bottom: 140px;
}
@media only screen and (max-width: 992px) {
  .s_contact-us__wrap {
    padding-top: 100px;
  }
}
.s_contact-us__text {
  margin-bottom: 235px;
  text-align: center;
  font-size: 32px;
  line-height: 54px;
}
@media only screen and (max-width: 992px) {
  .s_contact-us__text {
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 140px;
  }
}
.s_contact-us__button {
  display: inline-block;
  margin: 0 auto;
  font-size: 24px;
  color: white;
}
@media only screen and (max-width: 992px) {
  .s_contact-us__button {
    font-size: 16px;
  }
}
