* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html {
  height: 100%;
  scroll-behavior: smooth;
}
body {
  display: flex;
  padding-top: 60px;
  flex-direction: column;
  min-height: 100%;
  background-color: #E9E9E9;
  font-family: 'Montserrat', sans-serif;
}
main {
  flex-grow: 1;
}
main.page-not-found-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
button {
  outline: none;
}
button:hover {
  opacity: 0.8;
  cursor: pointer;
}
ul li {
  list-style-type: none;
}
.social-links {
  display: flex;
  display: none;
  justify-content: space-between;
  align-items: center;
  width: 125px;
}
.social-links_item:hover path {
  opacity: 1;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  height: 60px;
  background: #E9E9E9;
}
.header-inner {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-nav_item {
  display: inline-block;
  margin-right: 32px;
  font-size: 16px;
  line-height: 20px;
  color: rgba(40, 47, 75, 0.4);
  text-decoration: none;
}
.header-nav_item:last-child {
  margin-right: 0;
}
.header-nav_item:hover {
  color: #282F4B;
}
.section {
  padding: 100px 0;
}
.section.about-us {
  background: #282F4B;
}
.section.contacts {
  background: #CFC5C1;
}
.section-inner {
  width: 100%;
  max-width: 1104px;
  margin: 0 auto;
}
.section-item {
  position: relative;
  padding-left: 92px;
  display: flex;
}
.section-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  margin-right: 30px;
  flex-shrink: 0;
  width: 62px;
  height: 62px;
}
.section-item_title {
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 22px;
}
.section-item_text {
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
}
.title {
  font-size: 52px;
  line-height: 52px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-family: 'Bebas Neue', cursive;
}
.row {
  padding-top: 40px;
  margin-bottom: 60px;
  display: flex;
}
.col {
  width: 50%;
}
.col:first-child {
  margin-right: 80px;
}
.about-us {
  color: #E9E9E9;
}
.about-us_title {
  color: #E9E9E9;
}
.about-us_item .section-item_title {
  color: #C3B0A8;
}
.about-us_item--company::before {
  background: url('../img/about-us-icon-company.svg') no-repeat;
  background-size: cover;
}
.about-us_item--strategy::before {
  background: url('../img/about-us-icon-strategy.svg') no-repeat;
  background-size: cover;
}
.about-us_item--mission::before {
  background: url('../img/about-us-icon-mission.svg') no-repeat;
  background-size: cover;
}
.our-services {
  color: #242424;
}
.our-services_title {
  color: #242424;
}
.our-services_item .section-item_title {
  color: #282F4B;
}
.our-services_item--software::before {
  background: url('../img/service-software-icon.svg') no-repeat;
  background-size: cover;
}
.our-services_item--traffic::before {
  background: url('../img/service-traffic-icon.svg') no-repeat;
  background-size: cover;
}
.our-services_item--payment::before {
  background: url('../img/service-payment-icon.svg') no-repeat;
  background-size: cover;
}
.our-services_item--marketing::before {
  background: url('../img/service-marketing-icon.svg') no-repeat;
  background-size: cover;
}
.contacts {
  color: #282F4B;
}
.contacts-form {
  display: flex;
  flex-direction: column;
  position: relative;
}
.contacts_title {
  margin-bottom: 8px;
}
.contacts-recaptcha {
  position: absolute;
  left: 0;
  bottom: 0;
}
.contacts_descr {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 22px;
}
.contacts_input-wrap {
  position: relative;
  width: 100%;
  height: 60px;
  margin-bottom: 40px;
  border: 2px solid rgba(40, 47, 75, 0.3);
}
.contacts_input-wrap.is-error {
  border-color: #EB5757;
}
.contacts_input-wrap.is-error::after {
  content: '';
  position: absolute;
  right: 23px;
  top: 23px;
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url('../img/input-error.svg') no-repeat center;
}
.contacts_input-wrap.is-error .input-error {
  display: block;
}
.contacts_input-wrap.is-ok {
  border-color: #282F4B;
}
.contacts_input-wrap.is-ok .input-error {
  display: none;
}
.contacts_input-wrap.is-ok::after {
  content: '';
  position: absolute;
  right: 23px;
  top: 23px;
  display: inline-block;
  width: 18px;
  height: 14px;
  background: url('../img/ok.svg') no-repeat center;
}
.contacts_input-wrap .input-error {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 60px;
  font-size: 16px;
  line-height: 20px;
  color: #EB5757;
}
.contacts_input-wrap:last-child {
  margin-bottom: 0;
}
.contacts_input-wrap__textarea {
  height: 100%;
}
.contacts_input-wrap__textarea .input-error {
  top: 32px;
}
.contacts_input-title {
  position: absolute;
  left: 38px;
  top: -20px;
  padding: 10px;
  display: inline-block;
  font-size: 14px;
  line-height: 17px;
  color: #282F4B;
  background-color: #CFC5C0;
}
.contacts_input,
.contacts_textarea {
  padding: 20px 38px;
  width: 100%;
  height: 100%;
  border: 0;
  background: #CFC5C0;
  outline: none;
  color: #282F4B;
  font-size: 16px;
  line-height: 20px;
}
.contacts_textarea {
  height: 100%;
  resize: none;
}
.contacts_submit {
  padding: 18px 76px;
  max-width: 200px;
  margin: 0 auto;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #282F4B;
  background: #CFC5C1;
  border: 2px solid #282F4B;
}
.map {
  padding: 0;
  background: url('../img/map.jpg') no-repeat center;
  background-size: cover;
  height: 400px;
}
.map-inner {
  height: 100%;
  position: relative;
}
.map-info {
  position: absolute;
  left: 0;
  z-index: 2;
  bottom: 81px;
  padding: 42px 46px;
  width: 100%;
  max-width: 512px;
  background: linear-gradient(45deg, #282F4B 95%, transparent 50%), transparent no-repeat right top / cover;
  color: #E9E9E9;
}
.map-info_title {
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
}
.map-info_text {
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
}
.map-info_phone {
  margin-top: 20px;
  display: inline-block;
  font-weight: 300;
  font-size: 24px;
  text-decoration: none;
  color: #E9E9E9;
  line-height: 140%;
}
.footer {
  height: 160px;
  background: #282F4B;
}
.footer-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copyright {
  font-weight: 300;
  font-size: 14px;
  color: #E9E9E9;
}
.slider-section {
  display: flex;
  align-items: center;
  height: 100vh;
  background: #E9E9E9;
  position: relative;
}
.slider-section .arrow-down {
  position: absolute;
  left: 50%;
  margin-left: -10px;
  bottom: 100px;
  width: 20px;
  height: 37px;
  background: url('../img/arrow-down.svg') no-repeat center;
}
.slider-inner {
  position: relative;
  max-width: 1280px;
}
.slider-inner .owl-nav {
  display: none;
}
.slider-inner .owl-carousel .owl-nav button.owl-prev,
.slider-inner .owl-carousel .owl-nav button.owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 25px;
  height: 50px;
  font-size: 0;
  outline: none;
}
.slider-inner .owl-carousel .owl-nav button.owl-prev {
  left: 20px;
  background: url('../img/arrow-left.svg') no-repeat center;
}
.slider-inner .owl-carousel .owl-nav button.owl-next {
  right: 20px;
  background: url('../img/arrow-right.svg') no-repeat center;
}
.header-up-btn {
  display: none;
  position: fixed;
  align-items: center;
  justify-content: center;
  bottom: 28px;
  right: 28px;
  width: 30px;
  height: 30px;
  background: #282F4B;
  opacity: 0.7;
}
.header-up-btn::before {
  content: '';
  width: 10px;
  height: 18px;
  background: url('../img/arrow-up.svg') no-repeat center;
}
.slider-item {
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-item_img {
  width: 100%;
  max-width: 550px;
}
.slide-img-mob {
  display: none !important;
}
.slider-menu {
  padding-left: 66px;
}
.slider-menu_item {
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  font-size: 22px;
  line-height: 27px;
  color: rgba(40, 47, 75, 0.3);
  cursor: pointer;
}
.slider-menu_item.active {
  font-weight: 600;
  font-size: 30px;
  line-height: 37px;
  color: #282F4B;
  letter-spacing: 0.08em;
}
.slider-menu_item:first-child {
  transform: rotate(-5deg);
}
.slider-menu_item:nth-child(2) {
  margin: 80px 0;
}
.slider-menu_item:last-child {
  transform: rotate(5deg);
}
.page-not-found {
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.page-not-found_img {
  width: 100%;
  max-width: 600px;
}
.page-not-found_img img {
  width: 100%;
}
.page-not-found_title {
  margin-bottom: 55px ;
  font-weight: 600;
  font-size: 30px;
  line-height: 37px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #282F4B;
}
.page-not-found_btn {
  text-decoration: none;
  padding: 19px 57px;
  color: #E9E9E9;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  background: #282F4B;
}
.page-not-found_btn:hover {
  opacity: 0.9;
}
.input[type=text], select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}

.input[type=submit] {
  background-color: #5DADE2;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
}
@media screen and (max-width: 1280px) {
  .slider-item_img {
    max-width: 500px;
  }
}
@media screen and (max-width: 1024px) {
  .section {
    padding: 40px 20px;
  }
  .section.map {
    padding: 0;
  }
  .header,
  .footer {
    padding-left: 20px;
    padding-right: 20px;
  }
  .map-info {
    left: 40px;
    width: 100%;
    max-width: 400px;
  }
  .slider-item_img {
    max-width: 450px;
  }
  .slider-menu {
    padding-left: 16px;
  }
  .slider-menu_item {
    text-align: center;
    font-size: 22px;
  }
}
@media screen and (max-width: 768px) {
  .section-item {
    padding-left: 0;
  }
  .section-item::before {
    top: -10px;
    width: 40px;
    height: 40px;
  }
  .section-item_title {
    padding-left: 60px;
  }
  .title {
    font-weight: normal;
    font-size: 36px;
    line-height: 36px;
    margin-bottom: 30px;
  }
  .row {
    flex-direction: column;
    padding-top: 0;
    margin-bottom: 30px;
  }
  .row .col {
    width: 100%;
    padding: 0;
  }
  .row .col:first-child {
    margin-bottom: 30px;
  }
  .our-services_item--marketing::before {
    top: 0;
  }
  .contacts .contacts-recaptcha {
    position: relative;
    margin: 0 auto 20px;
  }
  .contacts_title {
    margin-bottom: 8px;
  }
  .contacts_descr {
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 20px;
  }
  .contacts_input-wrap {
    position: relative;
    height: 40px;
  }
  .contacts_input-wrap__textarea {
    padding: 12px 0;
    min-height: 120px;
  }
  .contacts_input,
  .contacts_textarea {
    padding: 14px 16px;
    background-color: #CFC5C0;
  }
  .contacts_input-title {
    padding: 10px 10px 0;
  }
  .footer {
    height: 100%;
    max-height: 160px;
    padding: 20px 0;
  }
  .footer-inner {
    flex-direction: column;
  }
  .footer-logo {
    width: 122px;
    margin-bottom: 30px;
  }
  .footer-logo img {
    width: 100%;
    object-fit: cover;
  }
  .footer .social-links {
    margin-bottom: 30px;
  }
  .footer-copyright {
    font-size: 12px;
  }
  .map {
    background-image: url('../img/mobile-map.png');
    background-position: 0 -140px;
    height: 600px;
  }
  .map-item {
    height: 600px;
  }
  .map-info {
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
  }
  .slider-section .arrow-down {
    bottom: 30px;
  }
  .slider-inner .owl-nav {
    display: block;
  }
  .slider-item {
    flex-direction: column;
  }
  .slider-item_img {
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .slider-item_img .slide-img-web {
    display: none !important;
  }
  .slider-item_img .slide-img-mob {
    display: block !important;
  }
  .slider-menu_item {
    display: none;
  }
  .slider-menu_item.active {
    margin: 20px 0;
    display: block;
    font-size: 20px;
    line-height: 24px;
  }
  .header-up-btn {
    display: flex;
  }
}
@media screen and (max-width: 767px) {
  body {
    padding-top: 40px;
  }
  .header {
    padding: 0;
    height: 40px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    align-items: flex-start;
  }
  .header-inner {
    height: 100%;
    flex-direction: column;
    justify-content: start;
  }
  .header-logo {
    margin-top: 8px;
    width: 160px;
  }
  .header-logo img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  .header .mobile-menu {
    display: block;
  }
  .header-nav {
    display: none;
    width: 100%;
    padding: 60px 0 30px;
    border-bottom: 1px solid rgba(40, 47, 75, 0.3);
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .header-nav_item {
    text-align: center;
    width: 100%;
    padding: 30px;
    font-size: 18px;
    line-height: 22px;
    color: #282F4B;
    margin-right: 0;
  }
  .header .social-links {
    display: none;
    width: 153px;
    margin-top: 60px;
  }
  .nav-open {
    overflow: hidden;
    height: 100vh;
  }
  .nav-open .header {
    z-index: 20;
    height: 100vh;
  }
  .nav-open .header-nav {
    display: flex;
  }
  .nav-open .header .social-links {
    display: none;
  }
  .map {
    background-position: 0 0;
  }
  .map-info {
    width: 90%;
    padding: 20px 26px;
  }
  .map-info_phone {
    font-size: 22px;
  }
  .page-not-found_img img {
    width: 80%;
  }
  .page-not-found_title {
    margin-bottom: 40px;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
  }
}
.mobile-menu {
  display: none;
  right: 10px;
  top: 10px;
  position: absolute;
  z-index: 11;
  height: 20px;
  width: 20px;
}
.mobile-menu .nav-icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  position: relative;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
.mobile-menu .nav-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #282F4B;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
.mobile-menu .nav-icon span:nth-child(1) {
  top: 0;
}
.mobile-menu .nav-icon span:nth-child(2),
.nav-icon span:nth-child(3) {
  top: 7px;
}
.mobile-menu .nav-icon span:nth-child(4) {
  top: 14px;
}
.nav-open .nav-icon span:nth-child(1) {
  top: 9px;
  width: 0;
  left: 50%;
}
.nav-open .nav-icon span:nth-child(2) {
  transform: rotate(45deg);
}
.nav-open .nav-icon span:nth-child(3) {
  transform: rotate(-45deg);
}
.nav-open .nav-icon span:nth-child(4) {
  top: 9px;
  width: 0;
  left: 50%;
}
