@charset "UTF-8";
/*!
Theme Name: vozimvrf
Theme URI: 
Author: 
Author URI: 
Description: vozimvrf
Version: 1.0.0
Tested up to: 6.6
Requires PHP: 5.6
Text Domain: vozimvrf
*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans:wght@100..900&family=Roboto:wght@400;500;700;900&display=swap");
:root {
  --color-accent: #9dc04f;
  --color-accent-light: #bbda87;
  --color-black: #000;
  --color-dark-gray: #2b2d33;
  --color-gray: #4b4b4b;
  --color-text: #555a65;
  --color-white: #f5f5f5;
  --color-pure-white: #fff;
}

:root {
  --radius-xl: 45px;
  --radius-l: 16px;
  --radius-m: 10px;
  --radius-s: 8px;
  --radius-xs: 7px;
  --radius-xxs: 5px;
}

:root {
  --content-width-desktop-large: 1400px;
  --content-width-desktop: 1200px;
  --content-width-mobile: 283px;
}

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

body, html {
  margin: 0;
  padding: 0;
}

/* Common */
aside, nav, footer, header, section, main {
  display: block;
}

img {
  vertical-align: top;
}
@media screen and (max-width: 768px) {
  img {
    max-width: 100%;
  }
}

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

address {
  font-style: normal;
}

dialog {
  border: none;
}

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

:root {
  --font-family: "Roboto", sans-serif;
  --second-family: "Noto Sans", sans-serif;
  --third-family: "Montserrat", sans-serif;
}

body {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
}

h1, h2, h3 {
  margin-top: 0;
}

h1 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 49px;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  h1 {
    font-size: 27px;
  }
}

h2 {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 50px;
  text-transform: uppercase;
  text-align: center;
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 25px;
  }
}

h3 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 27px;
  line-height: 108%;
  text-transform: uppercase;
  color: var(--color-dark-gray);
}
@media screen and (max-width: 768px) {
  h3 {
    font-size: 14px;
  }
}

p {
  color: var(--color-text);
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  p {
    font-size: 12px;
  }
}

* {
  box-sizing: border-box;
}

.container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .container {
    width: var(--content-width-mobile);
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .container {
    width: var(--content-width-desktop);
  }
}
@media screen and (min-width: 1441px) {
  .container {
    width: var(--content-width-desktop-large);
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .container {
    width: 700px;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
}
@media screen and (max-width: 1024px) {
  .row {
    flex-direction: column;
  }
}

.col {
  flex: 1 0 0%;
}

@media screen and (max-width: 1024px) {
  .hide-on-mobile {
    display: none;
  }
}

@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .hide-on-desktop {
    display: none;
  }
}
@media screen and (min-width: 1441px) {
  .hide-on-desktop {
    display: none;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(100%);
          clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.button,
.forminator-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-s);
  padding: 16px;
  height: 56px;
  font-family: var(--second-family);
  font-size: 16px;
  line-height: 150%;
  text-transform: uppercase;
  text-align: center;
  color: var(--color-black);
  background-color: var(--color-accent);
  border: none;
  text-align: center;
  transition: all ease 0.5s;
  text-decoration: none;
  cursor: pointer;
}
@media screen and (min-width: 1441px) {
  .button,
  .forminator-button {
    font-size: 18px;
  }
}
.button:hover, .button:focus, .button:active,
.forminator-button:hover,
.forminator-button:focus,
.forminator-button:active {
  background-color: var(--color-black);
  color: var(--color-accent);
}
.button--type-transparent,
.forminator-button--type-transparent {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  width: auto;
  min-width: auto;
  border-radius: 0;
  color: inherit;
}
.button--type-transparent:hover, .button--type-transparent:focus, .button--type-transparent:active,
.forminator-button--type-transparent:hover,
.forminator-button--type-transparent:focus,
.forminator-button--type-transparent:active {
  background: inherit;
  background-color: inherit;
  color: inherit;
}
.button--type-transparent .icon,
.forminator-button--type-transparent .icon {
  color: inherit;
}
@media screen and (max-width: 1024px) {
  .button,
  .forminator-button {
    font-size: 10px;
    border-radius: var(--radius-xxs);
    padding: 10px;
    height: 34px;
  }
}
.button--size-regular,
.forminator-button--size-regular {
  font-size: 16px;
  padding: 16px;
  height: 56px;
  min-width: 215px;
}
@media screen and (min-width: 1441px) {
  .button--size-regular,
  .forminator-button--size-regular {
    font-size: 19px;
    padding: 19px;
    min-width: 250px;
  }
}
@media screen and (max-width: 1024px) {
  .button--size-regular,
  .forminator-button--size-regular {
    font-size: 9px;
    padding: 10px;
    height: 34px;
    min-width: 132px;
  }
}
.button--size-big,
.forminator-button--size-big {
  font-size: 16px;
  padding: 16px;
  height: 56px;
  min-width: 215px;
}
@media screen and (min-width: 1441px) {
  .button--size-big,
  .forminator-button--size-big {
    font-size: 18px;
    min-width: 227px;
  }
}
@media screen and (max-width: 1024px) {
  .button--size-big,
  .forminator-button--size-big {
    font-size: 15px;
    padding: 15px;
    min-width: 207px;
  }
}
.button--type-filter,
.forminator-button--type-filter {
  font-family: var(--font-family);
  height: auto;
  border-radius: 0;
  padding: 32px;
  font-weight: 700;
  font-size: 36px;
  line-height: 1em;
  text-transform: uppercase;
}
@media screen and (max-width: 1024px) {
  .button--type-filter,
  .forminator-button--type-filter {
    padding: 17px;
    font-size: 19px;
    line-height: 72%;
  }
}
.button--active,
.forminator-button--active {
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  z-index: 2;
}

.menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1em;
}
@media screen and (max-width: 1024px) {
  .menu {
    flex-wrap: wrap;
  }
}
.menu > * {
  flex-grow: 1;
  width: 100%;
  max-width: 100%;
}
@media screen and (max-width: 1024px) {
  .menu > * {
    flex-basis: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .menu {
    flex-direction: column;
  }
}
.menu__item {
  text-align: center;
  flex: 0 1 0%;
  flex-basis: max-content;
  list-style: none;
  margin: 0;
  padding: 0;
  color: inherit;
}
.menu__item a, .menu__item * {
  color: inherit;
  text-decoration: none;
}

.contacts-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
  font-weight: 500;
  line-height: 115%;
  color: inherit;
}
.contacts-list__item {
  display: flex;
  align-items: center;
}
.contacts-list__icon {
  margin-right: 0.5em;
  vertical-align: top;
}
.contacts-list--type-header {
  font-size: 21px;
}
.contacts-list--type-header .contacts-list__item {
  letter-spacing: -0.03em;
}
.contacts-list--type-header .contacts-list__item:last-child {
  letter-spacing: 0.03em;
}
.contacts-list--type-header .contacts-list__icon {
  width: 23px !important;
  height: 23px !important;
}
.contacts-list--type-header-mobile {
  color: var(--color-white);
  background: var(--color-black);
  opacity: 0.92;
  padding: 30px;
  text-align: center;
}
.contacts-list--type-header-mobile .contacts-list__item {
  letter-spacing: -0.03em;
}
.contacts-list--type-header-mobile .contacts-list__item:last-child {
  letter-spacing: 0.03em;
}
.contacts-list--type-header-mobile .contacts-link {
  width: 100%;
}
.contacts-list--type-footer {
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 1em;
  text-align: right;
}
@media screen and (max-width: 1024px) {
  .contacts-list--type-footer {
    flex-wrap: wrap;
  }
}
.contacts-list--type-footer > * {
  flex-grow: 1;
  width: 100%;
  max-width: 100%;
}
@media screen and (max-width: 1024px) {
  .contacts-list--type-footer > * {
    flex-basis: 100%;
  }
}
.contacts-list--type-footer .contacts-list__icon {
  width: 29px !important;
  height: 29px !important;
}
@media screen and (max-width: 1024px) {
  .contacts-list--type-footer {
    font-size: 24px;
    gap: 0.2em;
    align-items: stretch;
  }
}
.contacts-list--type-map .contacts-list__item {
  margin-bottom: 1.1em;
}
.contacts-list--type-map .contacts-list__icon {
  width: 1em;
  height: 1em;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 12px;
  min-height: 12px;
  color: var(--color-black);
  background-color: transparent;
  text-decoration: none;
  height: 1.5em;
  width: 1.5em;
}
.icon.icon--type-round {
  border-radius: 100%;
  background-color: var(--color-accent);
  color: currentColor;
  padding: 4px;
  max-width: 100%;
  max-height: 100%;
}
.icon.icon--type-border {
  border-radius: 100%;
  border: solid 1px;
  background-color: transparent;
  color: currentColor;
  padding: 4px;
  max-width: 100%;
  max-height: 100%;
}
.icon.icon--type-flat {
  border-radius: none;
  border: none;
  background-color: transparent;
  color: var(--color-black);
  padding: 0;
  max-width: 100%;
  max-height: 100%;
}

.header {
  position: relative;
  font-family: var(--font-family);
  height: 182px;
}
@media screen and (max-width: 1024px) {
  .header {
    height: 108px;
  }
}
.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}
@media screen and (max-width: 1024px) {
  .header__container {
    padding: 13px 0 20px;
  }
}
.header__left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-weight: 500;
}
.header__right {
  padding-top: 6px;
}
@media screen and (max-width: 1024px) {
  .header__address, .header__contacts-list {
    display: none;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .header__logo {
    margin-right: 16px;
    width: 100px;
    height: 94px;
  }
}
@media screen and (min-width: 1441px) {
  .header__logo {
    margin-right: 42px;
    width: 100px;
    height: 94px;
  }
}
@media screen and (max-width: 1024px) {
  .header__logo {
    margin-right: 42px;
    width: 60px;
    height: 57px;
  }
}
.header__logo img,
.header__logo picture,
.header__logo svg {
  width: inherit;
  height: inherit;
  max-width: none;
}
.header__logo a {
  width: inherit;
  height: inherit;
  display: block;
}

.header__menu-wrapper {
  background-color: var(--color-black);
  color: var(--color-accent);
}
@media screen and (max-width: 1024px) {
  .header__menu-wrapper {
    height: 18px;
  }
  .header__menu-wrapper .container {
    max-width: 100%;
    width: 100%;
  }
}

.header__mobile-menu {
  z-index: 999;
  position: relative;
}

.header__menu {
  padding: 19px 0;
  height: auto;
  font-family: var(--third-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 93%;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
@media screen and (max-width: 1024px) {
  .header__menu {
    background: var(--color-black);
    opacity: 0.92;
    padding: 23px 30px 46px;
    z-index: 99;
    position: relative;
    gap: 50px;
    display: flex;
    width: 100%;
  }
}
.header__menu a {
  color: inherit;
}
.header__menu a:hover {
  color: var(--color-white);
}

.contacts-link {
  font: inherit;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.contacts-link:hover {
  text-decoration: underline;
}
.contacts-link:visited {
  color: inherit;
}

.banner {
  background: url(img/banner.jpg);
  background-size: cover;
  background-position: bottom center;
  color: var(--color-black);
  margin-top: -182px;
}
@media screen and (min-width: 1441px) {
  .banner {
    padding: 389px 0 380px;
    min-height: 1022px;
    padding-bottom: 2em;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .banner {
    padding: 389px 0 389px;
    min-height: 1022px;
    padding-bottom: 2em;
  }
}
@media screen and (max-width: 1024px) {
  .banner {
    padding: 161px 0 57px;
    padding-bottom: 2em;
    margin-top: -108px;
    min-height: 682px;
    background-position-x: 85%;
  }
}
.banner__title {
  margin: 0 0 12px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.18em;
}
@media screen and (min-width: 1441px) {
  .banner__title {
    font-size: 52px;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .banner__title {
    font-size: 49px;
  }
}
@media screen and (max-width: 1024px) {
  .banner__title {
    font-size: 27px;
  }
}
.banner__subtitle {
  margin: 0 0 24px;
  font-weight: 400;
  font-size: 32px;
  text-transform: uppercase;
  color: inherit;
}
@media screen and (max-width: 1024px) {
  .banner__subtitle {
    font-size: 17px;
    margin-bottom: 20px;
  }
}
.banner__extra {
  margin-top: 1em;
  padding: 1em;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.5);
  font-size: var(--color-black);
}
.banner__extra p, .banner__extra ul, .banner__extra li {
  color: inherit;
}

.footer {
  padding: 30px 0;
  color: #fff;
  background: var(--color-gray);
}
@media screen and (max-width: 1024px) {
  .footer {
    padding: 40px 0 30px;
  }
}
.footer__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
}
@media screen and (max-width: 1024px) {
  .footer__container {
    flex-wrap: wrap;
  }
}
.footer__container > * {
  flex-grow: 1;
  width: 100%;
  max-width: 100%;
}
@media screen and (max-width: 1024px) {
  .footer__container > * {
    flex-basis: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .footer__left {
    text-align: center;
    margin-bottom: 30px;
  }
}
.footer__right {
  text-align: right;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 35px;
}
.footer__menu {
  font-family: var(--third-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 93%;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  text-align: center;
  color: var(--color-accent);
}

.section {
  position: relative;
  padding-top: 56px;
  padding-bottom: 56px;
  background: var(--color-pure-white);
  color: var(--color-dark-gray);
  font-family: var(--font-family);
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  .section {
    padding-top: 29px;
    padding-bottom: 29px;
  }
}
.section__title {
  margin: 0 0 56px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 41px;
  text-transform: uppercase;
  text-align: center;
  color: var(--color-black);
}
@media screen and (max-width: 1024px) {
  .section__title {
    font-size: 25px;
    margin-bottom: 29px;
  }
}
.section__p {
  font-weight: 400;
}
.section__p p, .section__p ul, .section__p ol, .section__p li {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
}
@media screen and (min-width: 1441px) {
  .section__p {
    margin: 0 auto;
    font-size: 18px;
    line-height: 133%;
    max-width: 1200px;
  }
}
@media screen and (max-width: 1024px) {
  .section__p {
    line-height: 100%;
    font-size: 12px;
  }
}
.section--type-workflow {
  background: var(--color-white);
}
@media screen and (max-width: 1024px) {
  .section--type-workflow {
    padding-top: 44px;
  }
}
.section--type-workflow .section__title {
  font-size: 50px;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .section--type-workflow .section__title {
    font-size: 25px;
    margin-bottom: 7px;
  }
}
@media screen and (min-width: 1441px) {
  .section--type-service {
    padding-top: 72px;
  }
}
.section--type-parts {
  background-color: var(--color-white);
  background-image: url("./img/car.png");
  background-position: bottom right;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1024px) {
  .section--type-parts {
    background-size: contain;
    padding-bottom: 256px;
  }
  .section--type-parts .section__title {
    font-size: 19px;
    margin-bottom: 14px;
  }
  .section--type-parts p, .section--type-parts ul, .section--type-parts ol, .section--type-parts h3, .section--type-parts h2, .section--type-parts h1 {
    font-size: 12px;
    color: inherit;
  }
  .section--type-parts ul, .section--type-parts ol {
    padding-left: 1em;
  }
}
.section--type-parts p {
  max-width: 960px;
  margin: 0.5em 0;
}
.section--type-reviews {
  background: var(--color-white);
}
@media screen and (min-width: 1441px) {
  .section--type-reviews {
    padding-top: 88px;
    padding-bottom: 0;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .section--type-reviews {
    padding-top: 66px;
    padding-bottom: 0;
  }
}
.section--type-portfolio {
  background: var(--color-white);
}
@media screen and (min-width: 1441px) {
  .section--type-portfolio {
    padding-top: 47px;
  }
}
.section--type-about {
  background: var(--color-white);
}
@media screen and (max-width: 1024px) {
  .section--type-about {
    padding-bottom: 48px;
  }
}
.section--type-about .section__title {
  font-weight: 500;
}
@media screen and (min-width: 1441px) {
  .section--type-about .section__title {
    margin-bottom: 40px;
    font-size: 50px;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .section--type-about .section__title {
    margin-bottom: 50px;
    font-size: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .section--type-about .section__title {
    margin-bottom: 12px;
    font-size: 21px;
  }
}
.section--type-about .sectioin__p {
  text-align: center;
}
.section--type-client-info {
  background: var(--color-pure-white);
}
.section--type-map {
  height: 726px;
}
.section--type-map .section__title {
  text-align: left;
  font-weight: 700;
  font-size: 25px;
}
@media screen and (min-width: 1441px) {
  .section--type-map {
    height: 732px;
  }
  .section--type-map .section__title {
    margin-bottom: 28px;
  }
}
@media screen and (max-width: 1024px) {
  .section--type-map {
    height: 367px;
  }
}

.workflow {
  background-image: url(img/map.png);
  background-position: top center;
  background-size: cover;
}
@media screen and (min-width: 1441px) {
  .workflow {
    padding-top: 64px;
    padding-bottom: 22px;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .workflow {
    padding-top: 54px;
    padding-bottom: 22px;
  }
}
@media screen and (max-width: 1024px) {
  .workflow {
    background-position: 13% 10%;
    background-size: 400%;
    padding-top: 14px;
  }
}
.workflow__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -moz-column-gap: 200px;
       column-gap: 200px;
  row-gap: 164px;
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .workflow__list {
    -moz-column-gap: 175px;
         column-gap: 175px;
  }
}
@media screen and (max-width: 1024px) {
  .workflow__list {
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 48px;
         column-gap: 48px;
    row-gap: 60px;
  }
}
.workflow p {
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  margin: 10px 0 0;
  color: inherit;
}
@media screen and (max-width: 1024px) {
  .workflow p {
    margin-top: 5px;
  }
}
.workflow__item-icon {
  width: 127px;
  height: 127px;
  max-width: 100%;
  max-height: 100%;
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .workflow__item-icon {
    width: 110px;
    height: 110px;
  }
}
@media screen and (max-width: 1024px) {
  .workflow__item-icon {
    width: 44.68px;
    height: 44.68px;
  }
}
.workflow__list-item {
  position: relative;
  list-style: inherit;
  border: 1px solid var(--color-accent-light);
  border-radius: 16px;
  padding: 26px;
  width: 329px;
  box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.25);
  background: #fff;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 110%;
  text-align: center;
  color: var(--color-black);
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .workflow__list-item {
    padding: 23px;
    width: 285px;
    height: 222px;
    font-size: 17px;
    padding: 23px 23px 18px;
  }
}
@media screen and (max-width: 1024px) {
  .workflow__list-item {
    border-width: 0.5px;
    border-radius: 6px;
    padding: 9px;
    width: 115px;
    box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.25);
    font-size: 7px;
  }
}
.workflow__list-item::after {
  display: inline-block;
  position: absolute;
  content: "";
  width: 115px;
  height: 72px;
  background-image: url(./img/black-arrow.svg?t=1);
  background-repeat: no-repeat;
}
@media screen and (max-width: 1024px) {
  .workflow__list-item::after {
    width: 34px;
    height: 27px;
  }
}
.workflow__list-item::after {
  top: initial;
  left: initial;
  right: initial;
  bottom: initial;
  transform: initial;
  top: calc(50% - 36px);
}
@media screen and (min-width: 1441px) {
  .workflow__list-item::after {
    right: -166px;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .workflow__list-item::after {
    right: -148px;
  }
}
@media screen and (max-width: 1024px) {
  .workflow__list-item::after {
    top: calc(50% - 13.5px);
    right: -42px;
  }
}
.workflow__list-item:nth-child(3n)::after {
  top: initial;
  left: initial;
  right: initial;
  bottom: initial;
  transform: initial;
  transform: rotate(90deg);
  left: calc(50% - 57.5px);
}
@media screen and (min-width: 1441px) {
  .workflow__list-item:nth-child(3n)::after {
    bottom: -123px;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .workflow__list-item:nth-child(3n)::after {
    bottom: -105px;
  }
}
@media screen and (max-width: 1024px) {
  .workflow__list-item:nth-child(3n)::after {
    left: calc(50% - 17px);
    bottom: -43px;
  }
}
.workflow__list-item:nth-child(6n+4)::after, .workflow__list-item:nth-child(6n+5)::after {
  top: initial;
  left: initial;
  right: initial;
  bottom: initial;
  transform: initial;
  top: calc(50% - 36px);
  transform: rotate(180deg);
}
@media screen and (min-width: 1441px) {
  .workflow__list-item:nth-child(6n+4)::after, .workflow__list-item:nth-child(6n+5)::after {
    left: -166px;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .workflow__list-item:nth-child(6n+4)::after, .workflow__list-item:nth-child(6n+5)::after {
    left: -148px;
  }
}
@media screen and (max-width: 1024px) {
  .workflow__list-item:nth-child(6n+4)::after, .workflow__list-item:nth-child(6n+5)::after {
    top: calc(50% - 13.5px);
    left: -42px;
  }
}
.workflow__list-item:last-child::after {
  display: none !important;
}
@media screen and (max-width: 1024px) {
  .workflow__list-item:nth-child(4n+1)::after {
    top: initial;
    left: initial;
    right: initial;
    bottom: initial;
    transform: initial;
    top: calc(50% - 36px);
  }
}
@media screen and (max-width: 1024px) and (min-width: 1441px) {
  .workflow__list-item:nth-child(4n+1)::after {
    right: -166px;
  }
}
@media screen and (max-width: 1024px) and (min-width: 1025px) and (max-width: 1440px) {
  .workflow__list-item:nth-child(4n+1)::after {
    right: -148px;
  }
}
@media screen and (max-width: 1024px) and (max-width: 1024px) {
  .workflow__list-item:nth-child(4n+1)::after {
    top: calc(50% - 13.5px);
    right: -42px;
  }
}
@media screen and (max-width: 1024px) {
  .workflow__list-item:nth-child(2n)::after {
    top: initial;
    left: initial;
    right: initial;
    bottom: initial;
    transform: initial;
    transform: rotate(90deg);
    left: calc(50% - 57.5px);
  }
}
@media screen and (max-width: 1024px) and (min-width: 1441px) {
  .workflow__list-item:nth-child(2n)::after {
    bottom: -123px;
  }
}
@media screen and (max-width: 1024px) and (min-width: 1025px) and (max-width: 1440px) {
  .workflow__list-item:nth-child(2n)::after {
    bottom: -105px;
  }
}
@media screen and (max-width: 1024px) and (max-width: 1024px) {
  .workflow__list-item:nth-child(2n)::after {
    left: calc(50% - 17px);
    bottom: -43px;
  }
}
@media screen and (max-width: 1024px) {
  .workflow__list-item:nth-child(4n+3)::after {
    top: initial;
    left: initial;
    right: initial;
    bottom: initial;
    transform: initial;
    top: calc(50% - 36px);
    transform: rotate(180deg);
  }
}
@media screen and (max-width: 1024px) and (min-width: 1441px) {
  .workflow__list-item:nth-child(4n+3)::after {
    left: -166px;
  }
}
@media screen and (max-width: 1024px) and (min-width: 1025px) and (max-width: 1440px) {
  .workflow__list-item:nth-child(4n+3)::after {
    left: -148px;
  }
}
@media screen and (max-width: 1024px) and (max-width: 1024px) {
  .workflow__list-item:nth-child(4n+3)::after {
    top: calc(50% - 13.5px);
    left: -42px;
  }
}
.workflow__list-item:nth-child(1) {
  grid-area: 1/1/1/1;
}
.workflow__list-item:nth-child(2) {
  grid-area: 1/2/1/2;
}
.workflow__list-item:nth-child(3) {
  grid-area: 1/3/1/3;
}
.workflow__list-item:nth-child(4) {
  grid-area: 2/3/2/3;
}
.workflow__list-item:nth-child(5) {
  grid-area: 2/2/2/2;
}
.workflow__list-item:nth-child(6) {
  grid-area: 2/1/2/1;
}
@media screen and (max-width: 1024px) {
  .workflow__list-item:nth-child(1) {
    grid-area: 1/1/1/1;
  }
  .workflow__list-item:nth-child(2) {
    grid-area: 1/2/1/2;
  }
  .workflow__list-item:nth-child(3) {
    grid-area: 2/2/2/2;
  }
  .workflow__list-item:nth-child(4) {
    grid-area: 2/1/2/1;
  }
  .workflow__list-item:nth-child(5) {
    grid-area: 3/1/3/1;
  }
  .workflow__list-item:nth-child(6) {
    grid-area: 3/2/3/2;
  }
}
@media screen and (max-width: 1200px) {
  .workflow__list-item:nth-child(1) {
    grid-area: 1/1/1/1;
  }
  .workflow__list-item:nth-child(2) {
    grid-area: 1/2/1/2;
  }
  .workflow__list-item:nth-child(3) {
    grid-area: 2/2/2/2;
  }
  .workflow__list-item:nth-child(4) {
    grid-area: 2/1/2/1;
  }
  .workflow__list-item:nth-child(5) {
    grid-area: 3/1/3/1;
  }
  .workflow__list-item:nth-child(6) {
    grid-area: 3/2/3/2;
  }
}

.service {
  font-family: var(--font-family);
  gap: 20px;
  display: flex;
  flex-direction: column;
}
.service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 206px;
}
@media screen and (max-width: 1024px) {
  .service-item {
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 2em;
  }
}
@media screen and (min-width: 1441px) {
  .service-item {
    gap: 229px;
  }
}
.service-item-content {
  flex: 1;
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .service-item-content {
    padding: 4em 0;
  }
}
@media screen and (min-width: 1441px) {
  .service-item-content {
    padding: 4em 0;
  }
}
@media screen and (max-width: 1024px) {
  .service-item-content {
    flex: auto;
    width: 100%;
    flex-basis: 100%;
  }
}
.service-item-picture {
  flex: 1;
}
.service-item-picture img {
  max-width: 100%;
}
@media screen and (max-width: 1024px) {
  .service-item-picture {
    flex: auto;
    width: 100%;
    flex-basis: 100%;
  }
}
.service-item:nth-child(even) {
  flex-direction: row-reverse;
}
.service-item-header {
  font-weight: 700;
  line-height: 108%;
  text-transform: uppercase;
  color: var(--color-dark-gray);
}
@media screen and (min-width: 1441px) {
  .service-item-header {
    font-size: 32px;
    margin-bottom: 29px;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .service-item-header {
    font-size: 27px;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 1024px) {
  .service-item-header {
    font-size: 15px;
    margin-bottom: 18px;
  }
}
.service-item-description {
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: 2em;
  line-height: normal;
}
.service-item-description ul, .service-item-description li, .service-item-description p {
  font-size: inherit;
  color: inherit;
  line-height: inherit;
}
@media screen and (min-width: 1441px) {
  .service-item-description {
    font-size: 24px;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .service-item-description {
    font-size: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .service-item-description {
    font-size: 13px;
  }
}
.service-item-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media screen and (min-width: 1441px) {
  .service-item-logos {
    margin-bottom: 29px;
    gap: 29px;
    height: 36px;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .service-item-logos {
    margin-bottom: 25px;
    gap: 25px;
    height: 33px;
  }
}
@media screen and (max-width: 1024px) {
  .service-item-logos {
    margin-bottom: 18px;
    gap: 13px;
    height: 18px;
  }
}
.service-item-logos img {
  height: inherit;
  width: auto;
  max-width: 100%;
}

.logos {
  display: flex;
  flex-wrap: wrap;
  gap: 56px;
  align-items: center;
}
@media screen and (min-width: 1441px) {
  .logos {
    margin-bottom: 2em;
  }
}
@media screen and (max-width: 1024px) {
  .logos {
    gap: 27px;
  }
}
.logos__item {
  max-height: 120px;
  width: auto;
  max-width: 100%;
}
@media screen and (max-width: 1024px) {
  .logos__item {
    max-height: 37px;
  }
}

.reviews-list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.reviews-list__item {
  flex: 1 0 0%;
  max-width: 33%;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .reviews-list__item {
    max-width: 100%;
  }
}
.reviews-list .slick-list {
  margin: -10px;
}
.reviews-list .slick-slide {
  margin: 0 10px;
}

.review {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--color-text);
}
@media screen and (min-width: 1441px) {
  .review {
    padding: 34px;
  }
}
@media screen and (max-width: 1024px) {
  .review {
    padding: 26px;
  }
}
.review__header {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
@media screen and (min-width: 1441px) {
  .review__header {
    gap: 19px;
    margin-bottom: 27px;
  }
}
.review__image {
  border-radius: 100%;
  overflow: hidden;
  width: 60px;
  height: 60px;
  flex: 0 1 60px;
}
@media screen and (min-width: 1441px) {
  .review__image {
    width: 69px;
    height: 69px;
    flex-basis: 69px;
  }
}
@media screen and (max-width: 1024px) {
  .review__image {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }
}
.review__image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: inherit;
  height: inherit;
  max-width: 100%;
}
.review__name {
  flex: 1 1 auto;
  font-weight: 600;
  font-size: 18px;
  line-height: 156%;
  color: #2b2d33;
}
@media screen and (min-width: 1441px) {
  .review__name {
    font-size: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .review__name {
    font-size: 15px;
  }
}
.review__description {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #999ead;
}
@media screen and (min-width: 1441px) {
  .review__description {
    font-size: 18px;
  }
}
@media screen and (max-width: 1024px) {
  .review__description {
    font-size: 13px;
  }
}
.review__body {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #555a65;
}
@media screen and (min-width: 1441px) {
  .review__body {
    font-size: 18px;
  }
}
.review__body p, .review__body ul, .review__body ol, .review__body li, .review__body span {
  color: inherit;
  font: inherit;
}
.review__body p {
  margin: 0;
}

.portfolio__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  margin-bottom: 25px;
  gap: 30px;
  height: 406px;
}
@media screen and (max-width: 1024px) {
  .portfolio__list {
    flex-wrap: wrap;
  }
}
.portfolio__list > * {
  flex-grow: 1;
  width: 100%;
  max-width: 100%;
}
@media screen and (max-width: 1024px) {
  .portfolio__list > * {
    flex-basis: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .portfolio__list {
    height: auto;
    flex-wrap: wrap;
  }
}
.portfolio__list .slick-list {
  margin: -15px;
}
.portfolio__list .slick-slide {
  margin: 0 15px;
}
.portfolio__list .slick-list,
.portfolio__list .slick-track .slick-slide {
  height: inherit;
}
.portfolio__list-item {
  height: inherit;
  flex: 1;
}
@media screen and (max-width: 1024px) {
  .portfolio__list-item {
    flex-basis: 100%;
  }
}
.portfolio__list-item a {
  display: block;
  height: inherit;
}
.portfolio__list-item img {
  -o-object-fit: cover;
     object-fit: cover;
  width: inherit;
  height: inherit;
}
.portfolio__filter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .portfolio__filter {
    flex-wrap: wrap;
  }
}
.portfolio__filter > * {
  flex-grow: 1;
  width: 100%;
  max-width: 100%;
}
@media screen and (max-width: 1024px) {
  .portfolio__filter > * {
    flex-basis: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .portfolio__filter {
    gap: 3px;
  }
}

.client-card {
  display: grid;
  grid-template-areas: "image title" "image body" "button diagram";
  padding: 80px 100px 58px 80px;
  -moz-column-gap: 101px;
       column-gap: 101px;
  row-gap: 40px;
  width: 100%;
  max-width: 100%;
  border: 5px solid var(--color-accent);
  border-radius: 45px;
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .client-card {
    width: 1196px;
    margin: 25px auto 56px;
  }
}
@media screen and (min-width: 1441px) {
  .client-card {
    padding-left: 150px;
    padding-right: 150px;
    -moz-column-gap: 44px;
         column-gap: 44px;
    row-gap: 12px;
    width: 1395px;
    margin: 25px auto 56px;
  }
}
@media screen and (max-width: 1024px) {
  .client-card {
    grid-template-areas: "image title" "body body" "diagram diagram" "button button";
    gap: 12px;
    border-radius: 10px;
    border-width: 3px;
    padding: 46px 30px 40px 24px;
    height: auto;
    min-height: 50px;
    max-width: 100%;
    width: 100%;
  }
}
.client-card__image {
  grid-area: image;
  width: 222px;
  height: 222px;
}
@media screen and (max-width: 1024px) {
  .client-card__image {
    width: 86px;
    height: 86px;
  }
}
.client-card__button {
  grid-area: button;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .client-card__button {
    max-width: 134px;
  }
}
.client-card__title {
  margin-bottom: 0;
  font-family: var(--font-family);
  grid-area: title;
  font-weight: 500;
  font-size: 50px;
}
@media screen and (max-width: 1024px) {
  .client-card__title {
    font-weight: 500;
    font-size: 19px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    height: 86px;
    justify-content: space-around;
  }
}
.client-card__body {
  grid-area: body;
  font-weight: 400;
  font-size: 20px;
  line-height: 122%;
}
@media screen and (max-width: 1024px) {
  .client-card__body {
    font-size: 12px;
    line-height: 100%;
  }
}
.client-card__body h3 {
  text-transform: uppercase;
  font-weight: 700;
  font-size: inherit;
  margin: 40px 0;
}
.client-card__body ul, .client-card__body p {
  margin: 0;
  font-size: inherit;
}
.client-card__diagram {
  grid-area: diagram;
}
@media screen and (min-width: 1441px) {
  .client-card__diagram {
    width: 692px;
  }
}
.client-card__diagram img {
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .client-container {
    width: 100%;
    padding: 0 10px;
  }
}

.infographics-list {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: 60px;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 40px;
}
@media screen and (max-width: 1024px) {
  .infographics-list {
    flex-wrap: wrap;
  }
}
.infographics-list > * {
  flex-grow: 1;
  width: 100%;
  max-width: 100%;
}
@media screen and (max-width: 1024px) {
  .infographics-list > * {
    flex-basis: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .infographics-list {
    flex-wrap: wrap;
    margin-top: 16px;
    margin-bottom: 16px;
  }
}

.infographics {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.infographics__number {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 50px;
  color: var(--color-accent);
  height: 73px;
}
@media screen and (max-width: 1024px) {
  .infographics__number {
    height: 57px;
    font-size: 42px;
  }
}
.infographics__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 1em;
  text-transform: uppercase;
  color: #2b2d33;
}
@media screen and (max-width: 1024px) {
  .infographics__title {
    font-size: 20px;
  }
}
.infographics__desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: #555a65;
}
@media screen and (max-width: 1024px) {
  .infographics__desc {
    font-size: 13px;
  }
}

.map-contacts {
  position: absolute;
  background-color: var(--color-accent);
  color: var(--color-black);
  border-radius: 10px 0 0 10px;
  right: 0;
  font-weight: 400;
  font-size: 18px;
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .map-contacts {
    top: 154px;
    padding: 80px 102px 96px;
    width: 507px;
    height: 374px;
  }
}
@media screen and (min-width: 1441px) {
  .map-contacts {
    top: 154px;
    width: 667px;
    height: 374px;
    padding-top: 80px;
    padding-left: 142px;
  }
}
@media screen and (max-width: 1024px) {
  .map-contacts {
    position: static;
    padding: 35px 40px 19px;
    width: 100%;
    border-radius: 0;
  }
}

::backdrop {
  background-color: #3E3E40;
  opacity: 0.87;
}

.m-modal {
  display: none;
  background-color: var(--color-white);
  color: var(--color-black);
  border-radius: 20px;
  max-width: 100%;
  position: relative;
}
.m-modal .m-modal__close {
  position: absolute;
  top: 0;
  right: 0;
}
.m-modal .m-modal__desc {
  font-weight: 400;
  font-size: 18px;
  line-height: 114%;
  letter-spacing: -0.01em;
  color: rgba(0, 0, 0, 0.8);
}
.m-modal .m-modal__image {
  max-width: 100%;
  width: 400px;
  height: auto;
  margin: 0 auto 1em;
}
.m-modal .m-modal__title {
  font-family: var(--third-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 150%;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.m-modal--type-form {
  padding: 40px 64px 50px;
  width: 622px;
  max-width: 100%;
}
.m-modal--type-form .m-modal__title {
  font-family: var(--third-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 150%;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.m-modal--type-form .m-modal__p {
  font-weight: 400;
  font-size: 18px;
  line-height: 114%;
  letter-spacing: -0.01em;
  color: rgba(0, 0, 0, 0.8);
}
.m-modal--type-portfolio {
  padding: 107px 102px 47px;
}
.m-modal--type-portfolio .m-modal__title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 30px;
  text-transform: uppercase;
}

.m-form {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  text-align: left;
  gap: 24px;
}
.m-form .forminator-hidden {
  display: none;
}
.m-form .m-form__sub {
  font-family: var(--third-family);
  font-weight: 400;
  font-size: 11px;
  line-height: 100%;
  letter-spacing: -0.01em;
  color: inherit;
}
.m-form .m-form__sub a {
  color: inherit;
}
.m-form .m-form__sub a:visited {
  color: inherit;
}
.m-form .m-form__desc {
  margin: 10px 0;
  padding: 0;
  font-family: var(--third-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 114%;
  letter-spacing: -0.01em;
  color: rgba(0, 0, 0, 0.8);
}
.m-form .m-form__title {
  font-family: var(--third-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 150%;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #000;
}
.m-form label {
  display: block;
}
.m-form .m-form__input,
.m-form .forminator-input,
.m-form input[type=text],
.m-form input[type=password],
.m-form input[type=url],
.m-form input[type=email],
.m-form textarea {
  background: #e5e5e5;
  border-radius: 15px;
  font-family: var(--third-family);
  font-weight: 400;
  font-size: 15px;
  line-height: 160%;
  letter-spacing: -0.01em;
  color: rgba(0, 0, 0, 0.8);
  border-radius: 15px;
  height: 40px;
  min-width: 300px;
  width: 100%;
  padding: 16px;
}
.m-form textarea {
  height: 200px;
}
.m-form .forminator-input {
  width: 100%;
}
.m-form .m-form__submit,
.m-form .forminator-button-submit,
.m-form input[type=submit] {
  border-radius: 8px;
  padding: 16px;
  width: 215px;
  height: 56px;
  background: #9dc04f;
}
.m-form .forminator-label {
  display: none;
}
.m-form .forminator-description {
  display: none;
}
.m-form .forminator-row {
  margin-bottom: 24px;
}
.m-form .m-form__input,
.m-form .m-form__submit {
  max-width: inherit;
}
.m-form .forminator-error-message {
  display: block;
  font-family: var(--third-family);
  font-weight: 400;
  font-size: 11px;
  line-height: 100%;
  letter-spacing: -0.01em;
  color: inherit;
}
.m-form .forminator-error {
  color: red;
}
.m-form .m-form__hidden-input {
  display: none !important;
}
.m-form--size-default .m-form__input,
.m-form--size-default .forminator-input {
  font-family: var(--third-family);
}
.m-form--size-big {
  gap: 14px;
  max-width: 486px;
  text-align: center;
  align-items: center;
}
.m-form--size-big .m-form__input,
.m-form--size-big .forminator-input {
  font-family: var(--second-family);
  height: 56px;
  border-radius: 20px;
  font-size: 16px;
  line-height: 150%;
  padding: 16px;
}
.m-form--size-big .m-form__input,
.m-form--size-big .m-form__submit,
.m-form--size-big .forminator-input {
  max-width: 100%;
  width: 386px;
}
@media screen and (max-width: 768px) {
  .m-form--size-big .m-form__input,
  .m-form--size-big .m-form__submit,
  .m-form--size-big .forminator-input {
    width: 100%;
  }
}
.m-form--color-default {
  color: var(--color-black);
}
.m-form--color-default .m-form__desc {
  color: rgba(0, 0, 0, 0.8);
}
.m-form--color-default .m-form__input,
.m-form--color-default .forminator-input {
  border: 1px solid rgba(0, 0, 0, 0.5);
  background: var(--color-light2);
  color: rgba(0, 0, 0, 0.8);
}
.m-form--color-white {
  color: var(--color-white);
}
.m-form--color-white .m-form__desc {
  color: inherit;
}
.m-form--color-white .m-form__input,
.m-form--color-white .forminator-input {
  border: 1px solid #ccc;
  background: var(--color-white);
  color: #666;
}
.m-form--color-white .forminator-row {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .m-form .m-form__input,
  .m-form .forminator-input {
    border-radius: 15px;
  }
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: #333;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

#page {
  min-height: 50vh;
}/*# sourceMappingURL=style.css.map */