@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300..800&display=swap");
.modal-order {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  z-index: 222;
  display: none;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}
.modal-order.active {
  opacity: 1;
  visibility: visible;
}
.modal-order .content {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 600px;
  max-width: 90%;
  padding: 30px 50px;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 260;
  transform: translate(-50%, -50%);
  border-radius: 7px;
  padding-top: 70px;
}
@media screen and (max-width: 576px) {
  .modal-order .content {
    padding: 30px;
    padding-top: 70px;
  }
}
.modal-order .content .close_btn {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 30px;
  cursor: pointer;
}
@media screen and (max-width: 576px) {
  .modal-order .content .close_btn {
    width: 25px;
  }
}
.modal-order .content form input,
.modal-order .content form textarea {
  width: 100%;
  display: block;
  border: 2px solid #fff;
  height: 80px;
  background-color: transparent;
  margin-bottom: 40px;
  text-align: center;
  color: #fff;
  font-size: 22px;
}
@media screen and (max-width: 576px) {
  .modal-order .content form input,
  .modal-order .content form textarea {
    height: 65px;
    font-size: 18px;
  }
}
.modal-order .content form input::-moz-placeholder, .modal-order .content form textarea::-moz-placeholder {
  font-size: 22px;
  color: #fff;
}
.modal-order .content form input::placeholder,
.modal-order .content form textarea::placeholder {
  font-size: 22px;
  color: #fff;
}
@media screen and (max-width: 576px) {
  .modal-order .content form input::-moz-placeholder, .modal-order .content form textarea::-moz-placeholder {
    font-size: 16px;
  }
  .modal-order .content form input::placeholder,
  .modal-order .content form textarea::placeholder {
    font-size: 16px;
  }
}
.modal-order .content form textarea {
  height: 150px;
  padding: 15px;
  resize: none;
}

body,
div,
dl,
dt,
dd,
ul,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset,
img,
abbr {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ul li {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

legend {
  color: #000;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
  display: block;
}

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

*:focus {
  outline: none;
}

* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html,
body {
  overscroll-behavior: none;
}

body {
  font-size: 16px;
  font-family: "Open Sans", sans-serif;
  background-color: #111111;
  color: #fff;
}

.pulse-orange {
  animation: pulse-orange 2s linear infinite;
}
@keyframes pulse-orange {
  0% {
    box-shadow: 0 0 0 0 rgba(252, 92, 34, 0.8);
  }
  40% {
    box-shadow: 0 0 0px 5px rgba(252, 92, 34, 0.5);
  }
  80% {
    box-shadow: 0 0 3px 10px rgba(252, 92, 34, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(252, 92, 34, 0);
  }
}

.title-primary {
  text-transform: uppercase;
  font-weight: bold;
  position: relative;
}
.title-primary .main_text {
  -webkit-text-fill-color: #111;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #888888;
  font-size: 60px;
}
@media screen and (max-width: 576px) {
  .title-primary .main_text {
    font-size: 40px;
  }
}
.title-primary .lower_text {
  font-size: 45px;
  line-height: 1;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateX(20px);
  letter-spacing: 3px;
}
@media screen and (max-width: 576px) {
  .title-primary .lower_text {
    font-size: 35px;
    transform: translateX(20px) translateY(5px);
  }
}

.title-secondary {
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .title-secondary {
    font-size: 18px;
  }
}
@media screen and (max-width: 576px) {
  .title-secondary {
    font-size: 16px;
  }
}

.text-primary {
  color: #FC5C22;
}

.btn-primary {
  display: inline-block;
  background: #FC5C22;
  font-size: 24px;
  font-weight: light;
  color: #fff;
  border: 1px solid #FC5C22;
  padding: 28px 62px;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: "Century Gothic", Arial, Helvetica, sans-serif;
}
@media screen and (max-width: 768px) {
  .btn-primary {
    font-size: 22px;
  }
}
@media screen and (max-width: 576px) {
  .btn-primary {
    padding: 18px 43px;
    font-size: 19px;
  }
}
.btn-primary:hover {
  background-color: #FC5C22;
}

@keyframes pulse-primary {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 213, 26, 0.8);
  }
  40% {
    box-shadow: 0 0 0px 5px rgba(255, 213, 26, 0.5);
  }
  80% {
    box-shadow: 0 0 3px 10px rgba(255, 213, 26, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 213, 26, 0);
  }
}
.list-square li {
  padding-left: 20px;
  position: relative;
  margin: 15px 0;
}
.list-square li::before {
  position: absolute;
  top: 3px;
  left: 0;
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background: #FFD51A;
}

@media screen and (max-width: 768px) {
  .overhidden {
    overflow: hidden;
  }
}

.p {
  font-size: 18px;
  font-weight: 500;
}

.row-inner {
  display: flex;
  flex-wrap: wrap;
}

.container {
  width: 1350px;
  max-width: 95%;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 15px;
}
@media screen and (max-width: 1024px) {
  .container {
    max-width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .container {
    max-width: calc(100% - 30px);
  }
}

.container-mini {
  max-width: 100%;
  width: 1100px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}
@media screen and (max-width: 576px) {
  .container-mini {
    max-width: calc(100% - 30px);
  }
}

.show-xs {
  display: none !important;
}
@media screen and (max-width: 576px) {
  .show-xs {
    display: block !important;
  }
}

.show-sm {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .show-sm {
    display: block !important;
  }
}

@media screen and (max-width: 768px) {
  .hide-sm {
    display: none !important;
  }
}

@media screen and (max-width: 576px) {
  .hide-xs {
    display: none !important;
  }
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

.nowrap {
  white-space: nowrap;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.text-center {
  text-align: center;
}

.text-center-md {
  text-align: initial;
}
@media screen and (max-width: 1024px) {
  .text-center-md {
    text-align: center;
  }
}

button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.pulse {
  animation: pulse-primary 2s linear infinite;
}
@keyframes pulse-primary {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8);
  }
  40% {
    box-shadow: 0 0 0px 5px rgba(255, 255, 255, 0.5);
  }
  80% {
    box-shadow: 0 0 3px 10px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.pulse-secondary {
  animation: pulse-secondary 2s linear infinite;
}
@keyframes pulse-secondary {
  0% {
    box-shadow: 0 0 0 0 rgba(252, 92, 34, 0.8);
  }
  40% {
    box-shadow: 0 0 0px 5px rgba(252, 92, 34, 0.5);
  }
  80% {
    box-shadow: 0 0 3px 10px rgba(252, 92, 34, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(252, 92, 34, 0);
  }
}

.navbar {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 111;
  transition: all 0.3s ease;
  z-index: 200;
}
.navbar.scrolled {
  background-color: #1B1B1B;
  box-shadow: 0 0 15px #1B1B1B;
}
.navbar_inner {
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar .logo {
  width: 33.333%;
  color: #fff;
  font-size: 30px;
  text-align: center;
}
.navbar .logo svg {
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .navbar .logo svg {
    transform: translateY(5px);
  }
}
@media screen and (max-width: 768px) {
  .navbar .logo {
    width: 170px;
    order: 1;
    position: relative;
    z-index: 30;
  }
}
.navbar .menu {
  position: absolute;
  height: 100vh;
  left: 0;
  top: 0;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  padding-left: 70px;
  padding-right: 70px;
  padding-bottom: 70px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transform: translateX(-100%);
  transition: all 0.3s ease;
}
.navbar .menu.active {
  transform: translateX(0%);
}
@media screen and (max-width: 576px) {
  .navbar .menu.active {
    visibility: visible;
    opacity: 1;
  }
}
@media screen and (max-width: 576px) {
  .navbar .menu {
    padding-left: 30px;
    padding-bottom: 20%;
    padding-right: 30px;
    text-align: center;
    background: rgba(255, 255, 255, 0.01);
    width: 100%;
    transform: translateX(0);
    opacity: 0;
    visibility: hidden;
    min-height: -webkit-fill-available;
  }
}
.navbar .menu .menu_btn {
  margin-bottom: 30px;
  background-color: #FC5C22;
  box-shadow: 0 0 15px #FC5C22;
}
.navbar .menu .list {
  margin-top: 50px;
  margin-bottom: auto;
  padding-left: 20px;
}
@media screen and (max-width: 576px) {
  .navbar .menu .list {
    padding-left: 0;
    margin-top: auto;
    margin-bottom: auto;
  }
}
.navbar .menu .list li {
  margin-bottom: 15px;
}
.navbar .menu .list a {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: white;
  font-size: 40px;
  font-weight: bold;
  display: inline-block;
  position: relative;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .navbar .menu .list a {
    font-size: 30px;
  }
}
.navbar .menu .list a::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 4px;
  background-color: #fff;
  top: 50%;
  right: 100%;
  transform: translateX(-50px);
  opacity: 0;
  transition: all 0.3s ease;
}
@media screen and (max-width: 576px) {
  .navbar .menu .list a::before {
    display: none;
  }
}
.navbar .menu .list a:hover {
  transform: translateX(15px);
  -webkit-text-fill-color: #fff;
}
@media screen and (max-width: 768px) {
  .navbar .menu .list a:hover {
    transform: none;
  }
}
.navbar .menu .list a:hover::before {
  opacity: 1;
  transform: translateX(-25px);
}
.navbar .menu .phone {
  margin-bottom: 15px;
}
.navbar .menu .phone a {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
}
.navbar .menu .menu_text {
  line-height: 1.5;
  text-align: center;
}
.navbar_contacts {
  width: 33.333%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (max-width: 576px) {
  .navbar_contacts {
    order: 2;
    margin-left: auto;
  }
}
.navbar_contacts .phone {
  margin-right: 15px;
}
@media screen and (max-width: 576px) {
  .navbar_contacts .phone {
    display: none;
  }
}
.navbar_contacts .phone a {
  font-size: 25px;
  color: #fff;
  transition: all 0.3s ease;
}
.navbar_contacts .phone a i {
  transform: rotateY(180deg);
}
.navbar_contacts .phone a:hover {
  text-shadow: 0 0 5px #fff;
}
@media screen and (max-width: 576px) {
  .navbar_contacts .leave_request {
    display: none;
  }
}
.navbar_contacts .leave_request button {
  background-color: #FC5C22;
  color: #fff;
  box-shadow: 0 0 15px #FC5C22;
  border: none;
  padding: 10px 15px;
  font-size: 18px;
  border-radius: 1px;
  cursor: pointer;
  font-family: "Century Gothic", Arial, Helvetica, sans-serif;
  height: 42px;
}
.navbar .lang {
  margin-left: 10px;
  margin-right: 10px;
  position: relative;
  font-family: "Century Gothic", Arial, Helvetica, sans-serif;
}
.navbar .lang input {
  display: none;
}
.navbar .lang input:checked ~ label i {
  transform: rotate(-180deg);
}
.navbar .lang input:checked ~ .langs {
  visibility: visible;
  transform: translateX(-50%) translateY(-5px);
  opacity: 1;
}
.navbar .lang label {
  color: #FC5C22;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  width: 42px;
  height: 42px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 3px solid #FC5C22;
  border-radius: 1px;
}
@media screen and (max-width: 576px) {
  .navbar .lang label {
    width: 35px;
    height: 35px;
    border-width: 2px;
    font-size: 15px;
  }
}
.navbar .lang label i {
  display: inline-block;
  transition: transform 0.3s ease;
  margin-left: 3px;
}
.navbar .lang .langs {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background-color: #FC5C22;
  color: #fff;
  padding: 10px;
  border-radius: 5px;
  transition: all 0.2s ease;
}
.navbar .lang .langs::before {
  content: "";
  position: absolute;
  border: 5px solid transparent;
  border-bottom: 5px solid #FC5C22;
  left: 50%;
  transform: translateX(-50%);
  top: -10px;
}
.navbar .lang .langs a {
  font-size: 15px;
  color: inherit;
  font-weight: bold;
  text-transform: uppercase;
}
.navbar .toggle_btn_wrapper {
  width: 33.333%;
  margin-left: 25px;
}
@media screen and (max-width: 768px) {
  .navbar .toggle_btn_wrapper {
    width: auto;
    order: 3;
    margin-left: 0px;
  }
}
.navbar .toggle-btn {
  position: relative;
  width: 50px;
  height: 50px;
  overflow: hidden;
  z-index: 220;
}
@media screen and (max-width: 576px) {
  .navbar .toggle-btn {
    transform: scale(0.9);
  }
}
.navbar .toggle-btn .toggle-input {
  display: none;
}
.navbar .toggle-btn label {
  display: block;
  cursor: pointer;
}
.navbar .toggle-btn svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
}
@media screen and (max-width: 1200px) {
  .navbar .toggle-btn svg {
    width: 100px;
  }
}
@media (min-aspect-ratio: 1/1) {
  .navbar .toggle-btn label {
    width: 90px;
    height: 90px;
  }
}
.navbar .toggle-btn path {
  fill: none;
  stroke: #fff;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  --length: 24;
  --offset: -38;
  stroke-dasharray: var(--length) var(--total-length);
  stroke-dashoffset: var(--offset);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.navbar .toggle-btn circle {
  fill: transparent;
  opacity: 0;
}
.navbar .toggle-btn label:hover circle {
  opacity: 1;
}
.navbar .toggle-btn .cross input:checked + svg path {
  stroke: #fff;
}
.navbar .toggle-btn .cross input:checked + svg .line--1,
.navbar .toggle-btn .cross input:checked + svg .line--3 {
  --length: 22.627416998;
}
.navbar .toggle-btn .cross input:checked + svg .line--2 {
  --length: 0;
}
.navbar .toggle-btn .back input:checked + svg .line--1,
.navbar .toggle-btn .back input:checked + svg .line--3 {
  --length: 8.602325267;
}
.navbar .toggle-btn .line--1,
.navbar .toggle-btn .line--3 {
  --total-length: 126.64183044433594;
}
.navbar .toggle-btn .line--2 {
  --total-length: 70;
}
.navbar .toggle-btn input:checked + svg .line--1,
.navbar .toggle-btn input:checked + svg .line--3 {
  --offset: -94.1149185097;
}
.navbar .toggle-btn input:checked + svg .line--2 {
  --offset: -50;
}

header {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
@media screen and (max-width: 576px) {
  header {
    height: 100vh;
  }
}
header .header_content {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 50;
  width: 100%;
  z-index: 111;
}
header .page-title {
  margin-top: 100px;
  font-size: 80px;
  font-weight: bold;
}
header .page-title div {
  will-change: transform;
  transition: transform 0.1s ease-in;
}
@media screen and (max-width: 1024px) {
  header .page-title {
    font-size: 60px;
  }
}
@media screen and (max-width: 768px) {
  header .page-title {
    font-size: 50px;
  }
}
@media screen and (max-width: 576px) {
  header .page-title {
    font-size: 27px;
    margin-top: 50px;
    text-align: center;
  }
  header .page-title .second {
    font-size: 37px;
  }
}
header .page-title .outlined {
  -webkit-text-fill-color: #111;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: white;
}
header .header_btn_wrap {
  margin-top: 50px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  header .header_btn_wrap {
    text-align: center;
  }
}
header .header_btn_wrap .btn-primary {
  position: relative;
}
header .header_quote {
  position: absolute;
  right: 0;
  bottom: 10%;
  width: 100%;
  z-index: 50;
}
@media screen and (max-width: 576px) {
  header .header_quote {
    position: static;
    margin-top: 50px;
    text-align: center;
    font-size: 20px;
  }
}
header .header_quote .content {
  text-align: right;
  max-width: 60%;
  margin-left: auto;
}
@media screen and (max-width: 576px) {
  header .header_quote .content {
    text-align: left;
    max-width: 100%;
  }
}
header .header_quote .content h3 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  header .header_quote .content h3 {
    font-size: 30px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 576px) {
  header .header_quote .content h3 {
    font-size: 23px;
  }
}
header .header_quote .content p {
  font-size: 21px;
  font-style: italic;
}
@media screen and (max-width: 768px) {
  header .header_quote .content p {
    font-size: 17px;
  }
}
@media screen and (max-width: 576px) {
  header .header_quote .content p {
    font-size: 15px;
  }
}
header .particles {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background: #111111;
}

.about {
  padding: 60px 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .about {
    padding: 40px 0;
  }
}
.about .container {
  position: relative;
}
.about p {
  font-size: 22px;
  margin-top: 60px;
  max-width: 70%;
}
@media screen and (max-width: 768px) {
  .about p {
    max-width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .about p {
    font-size: 15px;
    line-height: 1.5;
  }
}
.about .circle_type {
  position: absolute;
  right: 15px;
  top: 80px;
  width: 150px;
  height: 150px;
}
@media screen and (max-width: 768px) {
  .about .circle_type {
    position: relative;
    right: auto;
    top: auto;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
  }
}
.about .circle_type .text {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 200px;
  height: 200px;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 576px) {
  .about .circle_type .text {
    width: 180px;
    height: 180px;
  }
}
.about .circle_type .text img {
  transform-origin: center center;
  transition: transform 0.2s ease;
}
.about .circle_type button {
  background-color: #FC5C22;
  border: none;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 20px #FC5C22;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 10;
}
@media screen and (max-width: 576px) {
  .about .circle_type button {
    width: 115px;
    height: 115px;
  }
}
.about .circle_type button img {
  transform: translateX(3px);
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
.advantages {
  padding: 60px 0;
}
@media screen and (max-width: 768px) {
  .advantages {
    padding: 40px 0;
  }
}
.advantages .title-primary {
  margin-bottom: 40px;
}
@media screen and (max-width: 576px) {
  .advantages .title-primary {
    margin-bottom: 60px;
  }
}
.advantages .title-primary .main_text {
  font-size: 29px;
}
.advantages .title-primary .lower_text {
  transform: translateX(20px) translateY(14px);
}
.advantages .left,
.advantages .right {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 15px;
  margin-right: 15px;
}
.advantages .left {
  width: calc(25% - 30px);
}
@media screen and (max-width: 768px) {
  .advantages .left {
    width: calc(100% - 30px);
  }
}
@media screen and (max-width: 768px) {
  .advantages .left {
    padding-right: 150px;
    margin-bottom: 50px;
  }
}
.advantages .left img {
  vertical-align: bottom;
  border-radius: 15px;
}
.advantages .right {
  width: calc(58.3333333333% - 30px);
}
@media screen and (max-width: 768px) {
  .advantages .right {
    width: calc(100% - 30px);
  }
}
.advantages ul li:not(:last-of-type) {
  margin-bottom: 50px;
}
.advantages ul li h3 {
  font-size: 27px;
  font-weight: bold;
  padding-left: 50px;
  position: relative;
  margin-bottom: 15px;
}
@media screen and (max-width: 576px) {
  .advantages ul li h3 {
    font-size: 20px;
    padding-left: 30px;
  }
}
.advantages ul li h3::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background-color: #FC5C22;
  border-radius: 50%;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 576px) {
  .advantages ul li h3::before {
    width: 10px;
    height: 10px;
    left: 5px;
  }
}
.advantages ul li p {
  font-size: 22px;
}
@media screen and (max-width: 576px) {
  .advantages ul li p {
    font-size: 17px;
  }
}

.services {
  padding: 60px 0;
}
@media screen and (max-width: 768px) {
  .services {
    padding: 40px 0;
  }
}
.services .title-primary {
  margin-bottom: 80px;
}
.services .row {
  justify-content: space-between;
}
@media screen and (max-width: 576px) {
  .services .row {
    justify-content: center;
  }
}
.services .item {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 15px;
  margin-right: 15px;
  width: calc(45.8333333333% - 30px);
  padding: 50px;
  padding-bottom: 20px;
  background-color: #1B1B1B;
  position: relative;
  margin-bottom: 70px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .services .item {
    width: calc(100% - 30px);
  }
}
@media screen and (max-width: 768px) {
  .services .item:last-of-type {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 576px) {
  .services .item {
    padding: 25px;
    padding-top: 40px;
  }
}
.services .item.web .icon {
  background: linear-gradient(180deg, #29C2F5 0%, #F0FAC9 100%);
  box-shadow: 0px 0px 20px #60D1E8;
}
.services .item.context .icon {
  background: linear-gradient(180deg, #1BB1BD 0%, #E8F684 100%);
  box-shadow: 0px 0px 20px #60C8A9;
}
.services .item.target .icon {
  background: linear-gradient(180deg, #2C419A 0%, #1DE3F0 100%);
  box-shadow: 0px 0px 20px #23A1CD;
}
.services .item.seo .icon {
  background: linear-gradient(180deg, #1BA810 0%, #F0F98D 100%);
  box-shadow: 0px 0px 20px #75CA45;
}
.services .item.smm .icon {
  background: linear-gradient(180deg, #F1504B 0%, #EBB486 100%);
  box-shadow: 0px 0px 20px #EE7E66;
}
.services .item.crm .icon {
  background: linear-gradient(180deg, #F5ADF2 0%, #BAF8FE 100%);
  box-shadow: 0px 0px 20px #D8D0F7;
}
.services .item.branding .icon {
  background: linear-gradient(180deg, #F88E2A 0%, #DCD822 100%);
  box-shadow: 0px 0px 20px #EBB026;
}
.services .item.selling .icon {
  background: linear-gradient(180deg, #C48EFD 0%, #0EF6EF 100%);
  box-shadow: 0px 0px 20px #5CC8F5;
}
.services .item .icon {
  width: 55px;
  height: 55px;
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 576px) {
  .services .item .icon {
    transform: translate(-20%, -50%);
  }
}
.services .item h3 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 20px;
}
@media screen and (max-width: 576px) {
  .services .item h3 {
    text-align: center;
    font-size: 22px;
  }
}
.services .item p {
  padding-left: 30px;
  line-height: 1.6;
  font-size: 15px;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .services .item p {
    font-size: 16px;
  }
}
@media screen and (max-width: 576px) {
  .services .item p {
    padding-left: 0;
    font-size: 13px;
    text-align: center;
    line-height: 1.5;
  }
}
.services .item .text-right {
  text-align: right;
  margin-top: auto;
}
.services .item .text-right button {
  background: none;
  border: none;
  color: #FC5C22;
  font-size: 23px;
  cursor: pointer;
}
.services .item::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 100px;
  background-color: #FC5C22;
  top: 100px;
  left: 50px;
}
@media screen and (max-width: 576px) {
  .services .item::before {
    display: none;
  }
}

.speheres {
  padding: 60px 0;
}
@media screen and (max-width: 768px) {
  .speheres {
    padding: 40px 0;
  }
}
.speheres .title-primary {
  margin-bottom: 20px;
}
.speheres .title-secondary {
  margin-bottom: 40px;
}
.speheres .swiper-container {
  margin-bottom: 30px;
}
.speheres .swiper-wrapper {
  padding-bottom: 40px;
  align-items: center !important;
}
.speheres .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  background-color: #FC5C22;
}
.speheres .swiper-pagination-bullet-active {
  background-color: #FC5C22;
}
.speheres .flex {
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 576px) {
  .speheres .flex {
    margin-bottom: 30px;
  }
}
.speheres .item {
  width: 33.333%;
  text-align: center;
  padding: 0 30px;
}
@media screen and (max-width: 768px) {
  .speheres .item {
    width: 50%;
  }
}
@media screen and (max-width: 576px) {
  .speheres .item {
    width: 100%;
    padding: 0 15px;
  }
}
.speheres .item:not(:last-of-type) {
  position: relative;
}
@media screen and (max-width: 768px) {
  .speheres .item:not(:last-of-type) {
    margin-bottom: 40px;
  }
}
.speheres .item:not(:last-of-type)::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 100px;
  right: 0;
  background-color: rgba(136, 136, 136, 0.5);
}
@media screen and (max-width: 768px) {
  .speheres .item:not(:last-of-type)::before {
    display: none;
  }
}
.speheres .item .title {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 12px;
}
@media screen and (max-width: 576px) {
  .speheres .item .title {
    font-size: 25px;
    margin-bottom: 15px;
  }
}
.speheres .item .title .icon {
  display: inline-block;
}
.speheres .item .text {
  font-size: 15px;
  line-height: 1.5;
}
@media screen and (max-width: 576px) {
  .speheres .item .text {
    font-size: 13px;
  }
}

.steps {
  padding: 60px 0;
}
@media screen and (max-width: 768px) {
  .steps {
    padding: 40px 0;
  }
}
.steps .swiper-button-next:after,
.steps .swiper-rtl .swiper-button-prev:after,
.steps .swiper-button-prev:after,
.steps .swiper-rtl .swiper-button-next:after {
  content: none;
}
.steps .swiper-button-prev,
.steps .swiper-button-next {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FC5C22;
  border-radius: 50%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  bottom: 0px !important;
  top: auto;
}
.steps .swiper-button-next {
  right: auto;
  left: 52%;
}
.steps .swiper-button-prev {
  left: auto;
  right: 52%;
}
.steps .swiper-container {
  margin-bottom: 100px;
  display: none;
}
@media screen and (max-width: 768px) {
  .steps .swiper-container {
    display: block;
  }
}
.steps h2 {
  font-weight: bold;
  font-size: 45px;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .steps h2 {
    font-size: 30px;
  }
}
.steps .item {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 15px;
  margin-right: 15px;
  width: calc(33.3333333333% - 30px);
  background-color: #1B1B1B;
  padding: 30px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .steps .item {
    width: calc(50% - 30px);
  }
}
@media screen and (max-width: 576px) {
  .steps .item {
    width: calc(100% - 30px);
  }
}
@media screen and (max-width: 576px) {
  .steps .item {
    padding: 0px;
    padding-top: 15px;
    text-align: center;
  }
}
.steps .item .step_num {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #FC5C22;
  font-size: 75px;
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width: 576px) {
  .steps .item .step_num {
    margin-top: 10px;
    font-size: 50px;
    text-align: left;
  }
}
.steps .item .step_num.lower {
  display: none;
}
@media screen and (max-width: 576px) {
  .steps .item .step_num.lower {
    display: block;
  }
}
@media screen and (max-width: 576px) {
  .steps .item .step_num.upper {
    display: none;
  }
}
.steps .item .title {
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 25px;
  position: relative;
}
@media screen and (max-width: 576px) {
  .steps .item .title {
    padding: 0 15px;
    padding-bottom: 15px;
    font-size: 21px;
  }
}
.steps .item .title::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100px;
  height: 2px;
  background: #FC5C22;
}
@media screen and (max-width: 576px) {
  .steps .item .title::before {
    left: 50%;
    transform: translateX(-50%);
  }
}
.steps .item p {
  font-size: 15px;
  line-height: 1.6;
}
@media screen and (max-width: 576px) {
  .steps .item p {
    padding: 0 15px;
    font-size: 13px;
  }
}
.steps .btn-primary {
  margin-bottom: 15px;
}
.steps i {
  font-size: 20px;
}
@media screen and (max-width: 576px) {
  .steps i {
    font-size: 16px;
  }
}

.portfolio {
  padding: 60px 0;
}
@media screen and (max-width: 768px) {
  .portfolio {
    padding: 40px 0;
  }
}
.portfolio .title-primary {
  margin-bottom: 40px;
}
.portfolio .row {
  justify-content: space-around;
  padding-bottom: 50px;
}
@media screen and (max-width: 576px) {
  .portfolio .row {
    padding-bottom: 0;
  }
}
.portfolio .item {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 15px;
  margin-right: 15px;
  width: calc(45.8333333333% - 30px);
  margin-bottom: 50px;
}
@media screen and (max-width: 576px) {
  .portfolio .item {
    width: calc(100% - 30px);
  }
}
.portfolio .item:nth-of-type(even) {
  transform: translateY(25%);
}
@media screen and (max-width: 576px) {
  .portfolio .item:nth-of-type(even) {
    transform: none;
  }
}
.portfolio .item .img {
  margin-bottom: 20px;
}
.portfolio .item .img img {
  vertical-align: bottom;
  width: 100%;
}
.portfolio .item .title {
  font-size: 24px;
  margin-bottom: 10px;
}
@media screen and (max-width: 576px) {
  .portfolio .item .title {
    font-size: 18px;
  }
}
.portfolio .item .title b {
  font-weight: bold;
}
.portfolio .item .desc {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 25px;
}
@media screen and (max-width: 576px) {
  .portfolio .item .desc {
    font-size: 14px;
  }
}
.portfolio .item .tags {
  display: flex;
  justify-content: center;
  align-items: center;
}
.portfolio .item .tag {
  width: 33.333%;
  text-align: center;
}
.portfolio .item .tag:not(:last-of-type) {
  position: relative;
}
.portfolio .item .tag:not(:last-of-type)::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%) translateX(50%);
  width: 2px;
  height: 60px;
  right: 0;
  background-color: #FC5C22;
}
@media screen and (max-width: 576px) {
  .portfolio .item .tag:not(:last-of-type)::before {
    width: 1px;
    height: 40px;
  }
}
.portfolio .item .tag .num {
  font-size: 55px;
  font-weight: bold;
  line-height: 1;
}
.portfolio .item .tag .num sub {
  font-size: 23px;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .portfolio .item .tag .num {
    font-size: 40px;
  }
}
@media screen and (max-width: 576px) {
  .portfolio .item .tag .num {
    font-size: 29px;
  }
}
.portfolio .item .tag span {
  color: #888888;
  letter-spacing: 0.5px;
}
@media screen and (max-width: 576px) {
  .portfolio .item .tag span {
    font-size: 12px;
  }
}
.portfolio .more {
  overflow: hidden;
  transition: all 0.3s ease;
}
.portfolio .more_btn button {
  background-color: transparent;
  border: none;
  color: #FC5C22;
  font-size: 17px;
  text-transform: uppercase;
  cursor: pointer;
}
@media screen and (max-width: 576px) {
  .portfolio .more_btn button {
    font-size: 15px;
  }
}
.portfolio .more_btn button img {
  width: 20px;
}
.portfolio .more_btn button:hover {
  text-decoration: underline;
}

.reviews {
  padding: 60px 0;
}
@media screen and (max-width: 768px) {
  .reviews {
    padding: 40px 0;
  }
}
.reviews .swiper-button-next:after,
.reviews .swiper-rtl .swiper-button-prev:after,
.reviews .swiper-button-prev:after,
.reviews .swiper-rtl .swiper-button-next:after {
  content: none;
}
.reviews .swiper-button-prev,
.reviews .swiper-button-next {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FC5C22;
  border-radius: 50%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  bottom: 0px !important;
  top: auto;
  display: none;
}
@media screen and (max-width: 768px) {
  .reviews .swiper-button-prev,
  .reviews .swiper-button-next {
    display: flex;
  }
}
.reviews .swiper-button-next {
  right: auto;
  left: 52%;
}
.reviews .swiper-button-prev {
  left: auto;
  right: 52%;
}
.reviews .swiper-wrapper {
  padding-bottom: 60px;
}
.reviews .swiper-slide {
  padding: 0 2px;
}
.reviews .title-primary {
  margin-bottom: 30px;
}
.reviews .vid {
  overflow: hidden;
  border-radius: 15px;
  position: relative;
}
.reviews .vid video {
  vertical-align: bottom;
  display: inline-block;
}
.reviews .vid.paused .controller .pause_btn {
  transition: all 400ms ease;
  visibility: hidden;
  opacity: 0;
}
.reviews .vid.playing .controller {
  opacity: 0;
}
.reviews .vid.playing .controller .play_btn {
  transition: all 400ms ease;
  visibility: hidden;
  opacity: 0;
}
.reviews .vid .controller {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  transition: all 500ms ease;
}
.reviews .vid .controller button {
  background: transparent;
  border: none;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
.reviews .vid .controller button img {
  width: 50px;
}

.partners {
  padding: 60px 0;
}
@media screen and (max-width: 768px) {
  .partners {
    padding: 40px 0;
  }
}
.partners .title-primary {
  margin-bottom: 40px;
}
.partners .swiper-slide {
  padding: 30px;
}
@media screen and (max-width: 768px) {
  .partners .swiper-slide {
    padding: 0;
  }
}
.partners .swiper-wrapper {
  padding-bottom: 20px;
  align-items: center !important;
}
.partners .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  background-color: #FC5C22;
}
.partners .swiper-pagination-bullet-active {
  background-color: #FC5C22;
}

.problems {
  padding: 60px 0;
}
@media screen and (max-width: 768px) {
  .problems {
    padding: 40px 0;
  }
}
.problems .title-primary {
  margin-bottom: 40px;
}
.problems .row {
  justify-content: center;
}
@media screen and (max-width: 576px) {
  .problems .container {
    padding: 0;
    overflow: hidden;
    padding-top: 60px;
  }
}
.problems .item {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 15px;
  margin-right: 15px;
  width: calc(29.1666666667% - 30px);
  background-color: #1B1B1B;
  padding: 30px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .problems .item {
    width: calc(50% - 30px);
  }
}
@media screen and (max-width: 576px) {
  .problems .item {
    text-align: center;
    padding: 0;
    padding-top: 20px;
  }
}
.problems .item .icon {
  color: #FC5C22;
  font-size: 30px;
}
.problems .item .icon.lower {
  display: none;
  text-align: right;
  margin-bottom: 10px;
  padding-right: 5px;
}
@media screen and (max-width: 576px) {
  .problems .item .icon.lower {
    display: block;
  }
}
@media screen and (max-width: 576px) {
  .problems .item .icon.upper {
    display: none;
  }
}
.problems .item .title {
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 25px;
  position: relative;
}
@media screen and (max-width: 576px) {
  .problems .item .title {
    padding: 0 10px 10px 10px;
    font-size: 18px;
    margin-bottom: 15px;
  }
}
.problems .item .title::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100px;
  height: 2px;
  background: #FC5C22;
}
@media screen and (max-width: 576px) {
  .problems .item .title::before {
    left: 50%;
    transform: translateX(-50%);
  }
}
.problems .item p {
  font-size: 15px;
  line-height: 1.6;
}
@media screen and (max-width: 576px) {
  .problems .item p {
    font-size: 14px;
    padding: 10px;
  }
}

.contacts {
  padding: 60px 0;
}
@media screen and (max-width: 768px) {
  .contacts {
    padding: 40px 0;
  }
}
.contacts .title-primary {
  margin-bottom: 80px;
}
@media screen and (max-width: 576px) {
  .contacts .title-primary {
    margin-bottom: 60px;
  }
}
.contacts .title-primary .lower_text {
  transform: translateX(5px) translateY(20px);
}
@media screen and (max-width: 576px) {
  .contacts .title-primary .lower_text {
    font-size: 23px;
  }
}
.contacts .left,
.contacts .right {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 15px;
  margin-right: 15px;
  width: calc(50% - 30px);
}
@media screen and (max-width: 768px) {
  .contacts .left,
  .contacts .right {
    width: calc(100% - 30px);
  }
}
.contacts .socials {
  color: #FC5C22;
  margin-top: 30px;
  font-size: 20px;
}
@media screen and (max-width: 576px) {
  .contacts .socials {
    font-size: 14px;
    text-align: center;
  }
}
.contacts .socials a {
  color: #FC5C22;
  font-size: inherit;
  letter-spacing: 1px;
  border-bottom: 1px solid #FC5C22;
  line-height: 1;
}
.contacts .phone {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .contacts .phone {
    text-align: center;
  }
}
.contacts .phone a {
  color: #FC5C22;
  letter-spacing: 1px;
  border-bottom: 1px solid #FC5C22;
  line-height: 1;
  font-size: 20px;
}
@media screen and (max-width: 576px) {
  .contacts .phone a {
    font-size: 15px;
  }
}
.contacts .initials {
  margin-top: 40px;
}
@media screen and (max-width: 576px) {
  .contacts .initials {
    text-align: center;
  }
}
.contacts .initials h4 {
  color: #FC5C22;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 1px;
}
@media screen and (max-width: 576px) {
  .contacts .initials h4 {
    font-size: 20px;
    margin-bottom: 15px;
  }
}
.contacts .initials h5 {
  font-size: 21px;
  letter-spacing: 1px;
}
@media screen and (max-width: 576px) {
  .contacts .initials h5 {
    font-size: 18px;
  }
}
.contacts .left {
  display: flex;
  flex-direction: column;
  padding-bottom: 5vh;
}
.contacts .left p {
  font-size: 20px;
  line-height: 1.5;
  padding-right: 50px;
  margin-bottom: auto;
}
@media screen and (max-width: 576px) {
  .contacts .left p {
    font-size: 15px;
    padding-right: 0;
  }
}
.contacts .right {
  padding: 0 50px;
}
@media screen and (max-width: 768px) {
  .contacts .right {
    padding: 0;
    margin-top: 30px;
  }
}
.contacts .right form input,
.contacts .right form textarea {
  width: 100%;
  display: block;
  border: 2px solid #888888;
  height: 80px;
  background-color: #111;
  margin-bottom: 40px;
  text-align: center;
  color: #888888;
  font-size: 22px;
}
@media screen and (max-width: 576px) {
  .contacts .right form input,
  .contacts .right form textarea {
    height: 65px;
    font-size: 18px;
  }
}
.contacts .right form input::-moz-placeholder, .contacts .right form textarea::-moz-placeholder {
  font-size: 22px;
}
.contacts .right form input::placeholder,
.contacts .right form textarea::placeholder {
  font-size: 22px;
}
@media screen and (max-width: 576px) {
  .contacts .right form input::-moz-placeholder, .contacts .right form textarea::-moz-placeholder {
    font-size: 16px;
  }
  .contacts .right form input::placeholder,
  .contacts .right form textarea::placeholder {
    font-size: 16px;
  }
}
.contacts .right form textarea {
  height: 150px;
  padding: 15px;
  resize: none;
}

footer {
  padding: 60px 0;
}
@media screen and (max-width: 768px) {
  footer {
    padding: 40px 0;
  }
}
footer .copy {
  text-align: center;
  color: #292929;
}/*# sourceMappingURL=style.css.map */