@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Roboto:wght@100;300;400;500;700;900&display=swap");
:root {
  --brand: #1b6a17;
  --brand-light: #f6f7f4;
  --brand-dark: #0a1600;
  --font-color: #111;
  --bg-color: #fcfcfc;
  --border-color: #ddd;
  --gray: #ddd;
  --gray-dark: #111;
  --gray-light: #f9f9f9;
  --white: #fff;
  --black: #000;
}

[data-theme=dark] {
  --brand: #1b6a17;
  --brand-light: #0a1600;
  --brand-dark: #f6f7f4;
  --font-color: #fcfcfc;
  --bg-color: #060e00;
  --border-color: #122900;
  --gray: #333;
  --gray-dark: #111;
  --gray-light: #222;
  --white: #0a1600;
  --black: #fff;
}

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

* {
  margin: 0;
}

html, body {
  height: 100%;
}

body {
  background-color: var(--bg-color);
  background-image: url(../images/pattern-bg.png);
  color: var(--font-color);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

#root, #__next {
  isolation: isolate;
}

body {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 16px;
}

h1 {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
}

h4, h5 {
  font-weight: 500;
}
h4 small, h5 small {
  font-weight: 300;
}

img {
  max-width: 100%;
  max-height: 100%;
}

b, strong, .text-strong {
  font-weight: 700;
}

a {
  color: var(--brand-dark);
}
a:hover {
  color: var(--brand);
}

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

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.fancybox__caption {
  text-align: center;
}

#cookies-message {
  position: fixed;
  left: 20px;
  bottom: 65px;
  padding: 20px;
  background: var(--white);
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.03);
  -webkit-box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.03);
  -moz-box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.03);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 300;
  z-index: 3;
  max-width: 250px;
}
#cookies-message img {
  margin-bottom: 10px;
  width: 32px;
}
#cookies-message .button {
  margin-top: 10px;
  padding: 8px 15px;
  font-size: 15px;
  text-decoration: none;
}
#cookies-message .button::before {
  display: none;
}

.loadingPage {
  position: fixed;
  background-image: url(../images/loading.gif);
  background-color: var(--gray-light);
  background-repeat: no-repeat;
  background-position: center;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$opacity)";
  filter: alpha(opacity=1);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  font-size: 13px;
}
.loadingPage img {
  margin-bottom: 10px;
}
.loadingPage.hide {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$opacity)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  visibility: hidden;
}

.owl-carousel {
  overflow: hidden;
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.owl-stage, .owl-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.owl-item > li,
.owl-item > div {
  width: 100%;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}

.owl-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
.owl-dots.disabled {
  display: none;
}
.owl-dots .owl-dot {
  background: transparent;
  border: 0;
  width: 12px;
  height: 6px;
  margin: 0 7px;
  padding: 0;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.owl-dots .owl-dot span {
  display: inline-block;
  width: 100%;
  height: 6px;
  background: var(--border-color);
  position: relative;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  border-radius: 6px;
  position: relative;
}
.owl-dots .owl-dot.active {
  width: 30px;
}
.owl-dots .owl-dot.active span {
  background: var(--brand) !important;
}

.owl-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 0;
  position: absolute;
  top: calc(50% - 20px);
  left: 0;
  right: 0;
}
.owl-nav.disabled {
  display: none;
}
.owl-nav .owl-prev,
.owl-nav .owl-next {
  background-color: transparent;
  background-image: url(../images/arrow.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 30px 30px;
  font-size: 0;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-filter: invert(1);
          filter: invert(1);
  width: 80px;
  height: 40px;
  border: 0;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  cursor: pointer;
}
.owl-nav .owl-prev:hover, .owl-nav .owl-prev:focus, .owl-nav .owl-prev:active,
.owl-nav .owl-next:hover,
.owl-nav .owl-next:focus,
.owl-nav .owl-next:active {
  border: 0;
  outline: 0;
}
.owl-nav .owl-prev {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
@media (min-width: 578px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}
.mainHeader {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid var(--border-color);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--white);
}
.mainHeader a {
  text-decoration: none;
}
.mainHeader > .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 80px;
}
.mainHeader__logo img {
  height: 50px;
}
.mainHeader__logo .logo_dark {
  display: none;
}
.mainHeader__button {
  position: fixed;
  right: 20px;
  top: 20px;
}
.mainHeader__darkmode .label {
  display: none;
}
.mainHeader__CTA {
  margin: 20px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.mainHeader__contacts {
  padding: 20px;
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
  border-top: 1px solid var(--border-color);
}
.mainHeader__contacts .contactsList li {
  margin-bottom: 20px;
}
.mainHeader__socialmedia {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
.mainHeader__language {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  margin: 24px 20px;
}
.mainHeader__menu {
  position: fixed;
  top: 0;
  left: 50px;
  bottom: 0;
  right: 0;
  height: 100vh;
  background: var(--white);
  padding-bottom: 70px;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: translateX(101%);
          transform: translateX(101%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-left: 1px solid var(--border-color);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow-y: scroll;
}
.mainHeader__menu_logo {
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 20px;
}
.mainHeader__menu_logo img {
  height: 50px;
}
.mainHeader__menu_call {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 80px;
  padding: 15px 20px;
}
.mainHeader__menu_call a {
  border: 2px solid var(--gray-dark);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 10px;
  font-weight: 500;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px 24px;
}
.mainHeader__menu_call img {
  width: 20px;
  margin-right: 10px;
}
.mainHeader__menu.open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.03);
  -webkit-box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.03);
  -moz-box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.03);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.skiptranslate {
  display: none;
}

#google_translate_element {
  visibility: hidden;
  display: none;
}

body#body {
  top: 0 !important;
}

.chooseLanguage {
  position: relative;
  width: 75px;
}
.chooseLanguage__list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  display: none;
  visibility: hidden;
  background-color: var(--gray-light);
  width: 130px;
  overflow: hidden;
}
.chooseLanguage__list .language-item {
  padding: 5px 15px;
  font-weight: 400;
  font-size: 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.chooseLanguage__list .language-item img {
  margin-right: 10px;
}
.chooseLanguage__list .language-item:hover {
  cursor: pointer;
  background-color: var(--gray);
}
.chooseLanguage__button {
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid var(--border-color);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
  padding: 3px 12px;
  background: var(--bg-color);
}
.chooseLanguage__button_flag {
  margin-right: 10px;
}
.chooseLanguage__button_arrow {
  background-image: url(../images/arrow.svg);
  background-position: center right;
  background-size: 16px;
  background-repeat: no-repeat;
  display: block;
  width: 16px;
  height: 16px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$opacity)";
  filter: alpha(opacity=0.3);
  -moz-opacity: 0.3;
  -khtml-opacity: 0.3;
  opacity: 0.3;
}
.chooseLanguage:hover .chooseLanguage__list {
  display: block;
  visibility: visible;
}

.headerMenu {
  white-space: nowrap;
}
.headerMenu__list, .headerMenu .submenu {
  margin: 0;
  padding: 0;
  list-style: none;
}
.headerMenu__list {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 30px;
}
.headerMenu .menu_item {
  position: relative;
  margin-bottom: 20px;
}
.headerMenu .menu_link {
  font-weight: 500;
  font-size: 18px;
  padding: 5px 0;
  text-decoration: none;
  position: relative;
  color: var(--gray-dark);
}
.headerMenu .menu_link::before {
  height: 1px;
  background: var(--brand);
  position: absolute;
  left: 0;
  width: 0;
  bottom: 0;
  content: "";
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.headerMenu .menu_item.selected .menu_link {
  font-weight: 700;
  color: var(--brand);
}
.headerMenu .menu_item.selected .menu_link::before,
.headerMenu .menu_item .menu_link:hover::before {
  width: 100%;
}
.headerMenu .menu_arrow {
  background: url(../images/arrow.svg) no-repeat center center;
  background-size: 16px;
  position: absolute;
  right: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
  top: 2px;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$opacity)";
  filter: alpha(opacity=0.3);
  -moz-opacity: 0.3;
  -khtml-opacity: 0.3;
  opacity: 0.3;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.headerMenu .menu_arrow:hover {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$opacity)";
  filter: alpha(opacity=1);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}
.headerMenu .submenu {
  display: none;
  margin: 20px 0 0 0;
}
.headerMenu .submenu .submenu_link {
  color: var(--gray-dark);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  font-size: 15px;
  font-weight: 300;
  text-decoration: none;
  position: relative;
  padding: 3px 20px 3px 20px;
}
.headerMenu .submenu .submenu_link:hover {
  text-decoration: underline;
}
.headerMenu .submenu .submenu_item.selected .submenu_link {
  font-weight: 700;
  color: var(--brand-dark);
}
.headerMenu .submenu.open {
  display: block;
}

#menu_hamburger {
  position: relative;
  margin: 0;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  cursor: pointer;
  background: var(--font-color);
  border-radius: 50%;
  -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  width: 40px;
  height: 40px;
}
#menu_hamburger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 26px;
  background: var(--white);
  border-radius: 1px;
  opacity: 1;
  left: 7px;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
#menu_hamburger span:nth-child(1) {
  top: 14px;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}
#menu_hamburger span:nth-child(2) {
  top: 23px;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}
#menu_hamburger span:nth-child(3) {
  top: 18px;
  width: 20px;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}
#menu_hamburger.open {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
#menu_hamburger.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 9px;
  left: 11px;
}
#menu_hamburger.open span:nth-child(2) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 27px;
  left: 11px;
}

@media (min-width: 768px) {
  .mainHeader__menu {
    left: 50%;
  }
}
@media (min-width: 1200px) {
  .mainHeader {
    -webkit-transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    height: 120px;
    position: fixed;
  }
  .mainHeader.scroll {
    box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.03);
    -webkit-box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.03);
    -moz-box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.03);
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    background-color: rgba(255, 255, 255, 0.77);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
  }
  .mainHeader > .container {
    height: 120px;
  }
  .mainHeader__logo img {
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    height: 75px;
  }
  .mainHeader__contacts {
    display: none;
  }
  .mainHeader__socialmedia {
    padding: 0;
    margin-left: 30px;
  }
  .mainHeader__darkmode {
    margin-left: 10px;
  }
  .mainHeader__language {
    margin: 0 0 0 30px;
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .mainHeader__button {
    display: none;
  }
  .mainHeader__menu {
    top: 0;
    width: auto;
    position: relative;
    background: transparent;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    overflow: visible;
    border: 0;
    padding: 0;
    height: 100%;
    left: 0;
  }
  .mainHeader__menu_logo {
    display: none;
  }
  .mainHeader__menu_call {
    display: none;
  }
  .mainHeader__menu.open {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .headerMenu {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .headerMenu__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border: 0;
    padding: 0;
  }
  .headerMenu .menu_item {
    position: relative;
    border: 0;
    margin: 0 0 0 20px;
  }
  .headerMenu .menu_link {
    font-size: 15px;
    padding: 8px 0;
  }
  .headerMenu .menu_arrow {
    top: calc(50% - 6px);
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    width: 12px;
    height: 12px;
    right: 5px;
  }
  .headerMenu .menu_item_submenu a {
    padding-right: 25px;
  }
  .headerMenu .submenu {
    display: block;
    margin-bottom: 0;
    position: absolute;
    left: -5px;
    top: 110%;
    min-width: 300px;
    background: var(--white);
    z-index: 10;
    visibility: hidden;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$opacity)";
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.03);
    -webkit-box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.03);
    -moz-box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.03);
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    border: 1px solid var(--border-color);
    border-top: 2px solid var(--gray-dark);
    border-radius: 10px;
    overflow: hidden;
    margin: 0;
    padding: 20px 0;
  }
  .headerMenu .submenu .submenu_link {
    padding: 7px 25px;
    position: relative;
    display: block;
  }
  .headerMenu .submenu .submenu_item:first-child .submenu_link {
    border: 0;
  }
  .headerMenu .submenu .submenu_item.selected .submenu_link {
    color: var(--brand);
  }
  .headerMenu .menu_item:hover > .menu_arrow {
    top: calc(50% - 4px);
  }
  .headerMenu .menu_item:hover > .submenu {
    visibility: visible;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$opacity)";
    filter: alpha(opacity=1);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
    top: calc(100% + 2px);
  }
  .mainHeader.scroll {
    height: 70px;
    box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.03);
    -webkit-box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.03);
    -moz-box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.03);
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
  }
  .mainHeader.scroll .mainHeader__wrapper > .container {
    height: 70px;
  }
  .mainHeader.scroll .mainHeader__logo img {
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    height: 40px;
  }
}
@media (min-width: 1400px) {
  .mainHeader__CTA {
    margin: 0;
  }
}
.mainFooter {
  padding-bottom: 45px;
  font-size: 15px;
  font-weight: 300;
  position: relative;
  background: #0a1600;
  color: #e0e0e0;
}
.mainFooter a {
  text-decoration: none;
  color: #fff;
  font-weight: 400;
}
.mainFooter a:hover {
  color: #fff;
  text-decoration: underline;
}
.mainFooter__logo {
  margin-bottom: 10px;
}
.mainFooter__logo img {
  max-width: 200px;
  max-height: 50px;
}
.mainFooter__slogan {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 20px;
}
.mainFooter .socialMediaList .icon {
  border-color: #2b2b2b;
}
.mainFooter .socialMediaList img {
  -webkit-filter: invert(1);
          filter: invert(1);
}
.mainFooter .darkModeButton label {
  border-color: #2b2b2b;
}
.mainFooter__wrapper {
  padding-top: 50px;
}
.mainFooter__column {
  margin-bottom: 50px;
}
.mainFooter__title {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 15px 0;
  color: #f9f9f9;
}
.mainFooter .contactsList .icon {
  margin-right: 10px;
}
.mainFooter .contactsList .value {
  font-size: 16px;
}
.mainFooter .contactsList img {
  -webkit-filter: invert(1);
          filter: invert(1);
}
.mainFooter .contactsList li {
  margin-bottom: 15px;
}
.mainFooter .darkModeButton {
  display: none;
}
.mainFooter__bottom {
  padding: 40px 0;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 13px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-top: 1px solid #2b2b2b;
}
.mainFooter__info {
  margin: 0 0 15px 0;
}
.mainFooter__author .designer {
  margin: 0 10px 0 0;
}

.footerMenu__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.footerMenu .menu_item {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  width: 50%;
  position: relative;
}
.footerMenu .menu_icon {
  -webkit-filter: invert(1);
          filter: invert(1);
  width: 16px;
}
.footerMenu .menu_link {
  font-weight: 300;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$opacity)";
  filter: alpha(opacity=0.8);
  -moz-opacity: 0.8;
  -khtml-opacity: 0.8;
  opacity: 0.8;
  text-decoration: none;
  padding: 2px 0;
  display: block;
}
.footerMenu .menu_item.selected .menu_link {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$opacity)";
  filter: alpha(opacity=1);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  font-weight: 400;
}

.footerUp {
  width: 40px;
  height: 40px;
  background-color: var(--white);
  position: fixed;
  bottom: 0;
  right: 5px;
  cursor: pointer;
  -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$opacity)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 6;
}
.footerUp.show {
  bottom: 70px;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$opacity)";
  filter: alpha(opacity=1);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  visibility: visible;
}
.footerUp img {
  width: 16px;
}
.footerUp:hover {
  bottom: 75px;
}

.mobileFooter {
  background: var(--white);
  z-index: 8;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  border-top: 1px solid var(--border-color);
  height: 45px;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
.mobileFooter.show {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.mobileFooter__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  height: 100%;
}
.mobileFooter__list > * {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  width: 50%;
  text-align: center;
}
.mobileFooter .call {
  border-right: 1px solid var(--border-color);
}
.mobileFooter a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 400;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--black);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
}
.mobileFooter a:hover {
  background: var(--gray-dark);
  text-decoration: none;
}
.mobileFooter .label {
  margin-left: 10px;
}
.mobileFooter img {
  height: 16px;
  max-width: 16px;
}

.footerNews {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 !important;
}
.footerNews .pageItem {
  -ms-flex-preferred-size: 100% !important;
      flex-basis: 100% !important;
  width: 100% !important;
  margin: 0 0 15px 0 !important;
  background: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  border: 0;
}
.footerNews .pageItem:hover {
  -webkit-transform: none;
          transform: none;
}
.footerNews .pageItem .image {
  -ms-flex-preferred-size: 75px;
      flex-basis: 75px;
  width: 75px;
  border-radius: 10px;
}
.footerNews .pageItem .content {
  -ms-flex-preferred-size: calc(100% - 75px);
      flex-basis: calc(100% - 75px);
  width: calc(100% - 75px);
  padding: 0 0 0 20px !important;
}
.footerNews .pageItem .content .desc {
  display: none;
}
.footerNews .pageItem .content .title {
  font-size: 16px;
}
.footerNews .pageItem .content .title a {
  text-decoration: none !important;
}
.footerNews .pageItem .content .title a:hover {
  text-decoration: underline !important;
}
.footerNews .pageItem .footer {
  display: none;
}

@media (min-width: 768px) {
  .mobileFooter {
    display: none;
  }
  .mainFooter {
    padding-bottom: 0;
  }
  .mainFooter__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .mainFooter__info {
    margin: 0;
  }
  .mainFooter__bottom {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (min-width: 992px) {
  .mainFooter__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .mainFooter__column {
    -ms-flex-preferred-size: calc(50% - 20px);
        flex-basis: calc(50% - 20px);
    width: calc(50% - 20px);
  }
  .mainFooter .darkModeButton {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .footerMenu .menu_item {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    width: 100%;
  }
  .footerUp {
    position: absolute;
    background: transparent;
    left: calc(50% - 30px);
    cursor: pointer;
  }
  .footerUp.show {
    bottom: 20px;
  }
  .footerUp img {
    width: 15px;
    -webkit-filter: invert(1);
            filter: invert(1);
  }
  .footerUp:hover {
    bottom: 25px;
  }
}
.mainContainer {
  overflow: hidden;
  position: relative;
  margin: 0;
  padding: 0;
}

.mainBody {
  padding-top: 80px;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.mainContent {
  padding: 30px 0;
}

.blurEffect {
  -webkit-filter: blur(5px);
          filter: blur(5px);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$opacity)";
  filter: alpha(opacity=0.5);
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  opacity: 0.5;
  -webkit-transform: translateX(-50px);
          transform: translateX(-50px);
  pointer-events: none;
}

.pagination {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1;
}
.pagination li:first-child {
  border-left: 1px solid var(--border-color);
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.pagination li:last-child {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.pagination li.page-item {
  overflow: hidden;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
}
.pagination a.page-link {
  text-decoration: none;
  display: block;
  padding: 8px 12px;
  font-weight: 400;
  color: var(--gray-dark);
}
.pagination a.page-link:hover {
  background: var(--gray-light);
}
.pagination .active .page-link, .pagination .active .page-link:hover {
  background: var(--brand-dark);
  color: var(--gray-light);
}

.videoHeader {
  overflow: hidden;
  height: calc(100vh - 80px);
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  background: #000;
}
.videoHeader__background {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 80px;
  width: 100%;
  height: calc(100vh - 80px);
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$opacity)";
  filter: alpha(opacity=0.5);
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  opacity: 0.5;
  background: #000;
}
.videoHeader__content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 2;
  width: 90%;
  max-width: 960px;
  margin: -100px auto 0 auto;
  text-align: center;
}
.videoHeader__content h1 {
  font-size: 40px;
  margin-bottom: 20px;
  line-height: 1.2;
}
.videoHeader__content h1 small {
  display: block;
  font-weight: 300;
  font-size: 30px;
}
.videoHeader__content .more {
  margin-top: 20px;
}
.videoHeader__content .logo {
  width: 150px;
  margin-bottom: 20px;
}
.videoHeader__button {
  margin-top: 20px;
}
@-webkit-keyframes arrowBounce {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
    opacity: 0;
  }
}
@keyframes arrowBounce {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
    opacity: 0;
  }
}
.videoHeader__arrow {
  position: absolute;
  left: calc(50% - 30px);
  width: 60px;
  height: 60px;
  bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.videoHeader__arrow img {
  -webkit-filter: invert(1);
          filter: invert(1);
  height: 30px;
  -webkit-animation: arrowBounce 2s infinite ease-in-out;
          animation: arrowBounce 2s infinite ease-in-out;
}

.section {
  margin-bottom: 100px;
  position: relative;
}
.section__scroll {
  position: absolute;
  top: 0px;
}
.section__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.section__column {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  width: 100%;
}
.section__content {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.section__image {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.section__icon {
  margin-bottom: 25px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.section__icon img {
  width: 75px;
}
.section__header {
  margin-bottom: 30px;
}
.section__header .sygnetSeparator {
  margin-bottom: 20px;
}
.section__title {
  font-size: calc(1.3rem + 3vw);
  margin: 0;
  line-height: 1;
  font-family: "Oswald", sans-serif;
}
.section__subtitle {
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 0 15px 0;
}
.section__subtitle img {
  margin-right: 15px;
  width: 16px;
}
.section__subtitle small {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  width: 100%;
  display: block;
}
.section__subtitle a {
  text-decoration: underline;
}
.section__slogan {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
  margin: 0 0 10px 0;
  display: inline-block;
  font-weight: 500;
  color: var(--brand-dark);
  border-bottom: 1px solid var(--brand-dark);
}
.section__lead {
  margin: 15px 0 0 0;
  font-size: 18px;
  font-weight: 300;
}
.section__lead p {
  margin-bottom: 15px;
}
.section__desc {
  margin: 15px 0 0 0;
}
.section__desc p {
  margin-bottom: 15px;
}
.section__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.section__buttons a {
  margin: 0 15px 15px 0;
}

.pagesTree {
  margin-top: 10px;
  line-height: 1;
  font-size: 12px;
}
.pagesTree ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.pagesTree li {
  position: relative;
}
.pagesTree li a {
  text-decoration: none;
  display: block;
  padding: 0 0 0 25px;
  font-weight: 400;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$opacity)";
  filter: alpha(opacity=0.7);
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
  opacity: 0.7;
  text-decoration: none;
  text-transform: uppercase;
}
.pagesTree li a:hover {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$opacity)";
  filter: alpha(opacity=1);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}
.pagesTree li::after {
  width: 12px;
  height: 12px;
  background-image: url(../images/arrow.svg);
  background-size: 12px;
  background-position: center center;
  background-repeat: no-repeat;
  content: "";
  position: absolute;
  left: 7px;
  top: 0px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$opacity)";
  filter: alpha(opacity=0.5);
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  opacity: 0.5;
}
.pagesTree li:last-child {
  display: none;
}
.pagesTree li:first-child a {
  padding: 0;
}
.pagesTree li:first-child::after {
  display: none;
}

.profileAvatar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.profileAvatar .avatar {
  margin-right: 30px;
}
.profileAvatar h4 {
  margin-bottom: 8px;
}
.profileAvatar .content p {
  font-weight: 400;
}

.mainPage {
  position: relative;
  z-index: 1;
}
.mainPage__header {
  position: relative;
  padding: 30px 0;
  color: var(--black);
  margin: 0 auto;
  max-width: 1600px;
}
.mainPage__header_desc {
  font-size: 18px;
  font-weight: 400;
}
.mainPage__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.mainPage__content {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  width: 100%;
}
.mainPage__panel {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-top: 50px;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  width: 100%;
}
.mainPage__date {
  font-size: 15px;
  font-weight: 300;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$opacity)";
  filter: alpha(opacity=0.5);
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  opacity: 0.5;
  margin-top: 30px;
  border-top: 1px solid var(--border-color);
  padding-top: 15px;
}
.mainPage__date img {
  width: 14px;
  margin-right: 10px;
}
.mainPage__descShort {
  margin-bottom: 30px;
  font-size: 18px;
  font-weight: 300;
}
.mainPage__descFull {
  margin-bottom: 30px;
  font-size: 17px;
  font-weight: 300;
}
.mainPage__descFull hr {
  margin: 30px 0;
  border: 0;
  border-bottom: 1px solid var(--border-color);
}
.mainPage__descFull h3 {
  font-size: 23px;
  font-family: "Oswald", sans-serif;
  margin: 0 0 10px 0;
  color: var(--brand-dark);
}
.mainPage__descFull h2 {
  font-size: 30px;
  color: var(--brand-dark);
  font-family: "Oswald", sans-serif;
  margin: 0 0 15px 0;
  text-decoration: underline;
  text-decoration-color: var(--border-color);
}
.mainPage__descFull p {
  margin-bottom: 20px;
}
.mainPage__descFull ul, .mainPage__descFull ol {
  margin-bottom: 20px;
}

.widget_socialmedia img {
  -webkit-filter: invert(1);
          filter: invert(1);
}

.widget {
  background: #0a1600;
  padding: 30px;
  margin-bottom: 30px;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  overflow: hidden;
  color: #fff;
}
.widget a {
  color: #fff;
}
.widget__title {
  text-transform: uppercase;
  margin: -30px -30px 30px -30px;
  padding: 15px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 700;
  font-size: 23px;
  border-bottom: 2px solid #387c00;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.widget__title img {
  width: 16px;
  margin-right: 10px;
  -webkit-filter: invert(1);
          filter: invert(1);
}
.widget__title small {
  display: block;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  width: 100%;
}
.widget__title a {
  color: #fff;
  text-decoration: none;
}
.widget__menu {
  margin: -30px -30px -30px -30px;
}
.widget__link {
  display: block;
  padding: 12px 30px;
  font-size: 15px;
  font-weight: 300;
  text-decoration: none;
  border-bottom: 1px solid #214900;
  color: #f9f9f9;
}
.widget__link:hover {
  color: #fff;
  text-decoration: underline;
}
.widget__link.selected {
  color: #fff;
  border-left: 5px solid #1b6a17;
  background: #214900;
  font-weight: 700;
}
.widget__link:last-child {
  border-bottom: 0;
}

.darkModeButton {
  display: inline-block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
}
.darkModeButton .label {
  margin-left: 10px;
  font-size: 15px;
  font-weight: 300;
  display: none;
}
.darkModeButton label {
  border: 1px solid var(--border-color);
  border-radius: 10px;
  display: inline-block;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 54px;
  height: 32px;
  background: var(--bg-color);
}
.darkModeButton label::before {
  width: 22px;
  height: 22px;
  background: transparent;
  position: absolute;
  left: 4px;
  top: 4px;
  content: "";
  border-radius: 10px;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.darkModeButton label img {
  position: absolute;
  width: 10px;
  left: 10px;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  z-index: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$opacity)";
  filter: alpha(opacity=0.9);
  -moz-opacity: 0.9;
  -khtml-opacity: 0.9;
  opacity: 0.9;
}
.darkModeButton input:checked + label {
  background: #0a1600;
  border-color: #f6f7f4;
}
.darkModeButton input:checked + label img {
  left: 33px;
  -webkit-filter: invert(0);
          filter: invert(0);
}
.darkModeButton input:checked + label::before {
  left: 26px;
  background: #fff;
}
.darkModeButton input {
  display: none;
}

.alert {
  font-size: 18px;
  font-weight: 400;
  border-radius: 10px;
  margin: 20px 0;
  color: #fff;
  padding: 20px;
}
.alert-danger {
  background: red;
}
.alert-success {
  background: green;
}

.mainSlider {
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.mainSlider .owl-stage {
  background: var(--gray-dark);
}
.mainSlider .owl-item {
  -webkit-transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$opacity)";
  filter: alpha(opacity=0.2);
  -moz-opacity: 0.2;
  -khtml-opacity: 0.2;
  opacity: 0.2;
  -webkit-filter: grayscale(1) blur(3px);
          filter: grayscale(1) blur(3px);
}
.mainSlider .owl-item.active {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$opacity)";
  filter: alpha(opacity=1);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  -webkit-filter: grayscale(0) blur(0);
          filter: grayscale(0) blur(0);
}
.mainSlider__item {
  position: relative;
  min-height: 250px;
  max-height: 500px;
  height: 40vh;
  overflow: hidden;
}
.mainSlider .content {
  position: absolute;
  left: 0;
  right: 0;
  top: auto;
  bottom: 0;
  text-align: center;
  color: #fff;
  background: rgb(0, 0, 0);
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.7)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
  padding: 200px 0 75px 0;
  display: none;
}
.mainSlider .container {
  max-width: 800px;
}
.mainSlider .title {
  margin: 0;
  font-size: calc(1rem + 3vw);
  font-weight: 700;
  line-height: 1.2;
  font-family: "Oswald", sans-serif;
}
.mainSlider .title a {
  text-decoration: none;
  color: #fff;
}
.mainSlider .title a:hover {
  text-decoration: underline;
}
.mainSlider .desc {
  display: none;
  margin-top: 20px;
}
.mainSlider .more {
  margin-top: 10px;
  display: inline-block;
  color: #fff;
  font-weight: 400;
  font-size: 15px;
}
.mainSlider .image {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  background-color: black;
  background-position: center center;
  background-size: cover;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}
.mainSlider #slide_12 .image {
  background-position: bottom center;
}
.mainSlider__progress {
  display: none;
  width: 0;
  max-width: 100%;
  height: 3px;
  background: var(--brand);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  right: 0;
}
.mainSlider .owl-nav {
  display: none;
}
.mainSlider .owl-dots {
  height: 0;
  -webkit-transform: translateY(-50px);
          transform: translateY(-50px);
}
.mainSlider .owl-dots .owl-dot span {
  background: var(--gray-light);
}

.mainSliderBoxes {
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
  position: relative;
  z-index: 7;
}

.tablepress {
  width: 100%;
}
.tablepress td {
  padding: 5px;
  border: 1px solid var(--border-color);
  background: var(--brand-light);
}
.tablepress th {
  font-weight: 700;
  background: var(--brand-dark);
  color: var(--brand-light);
  padding: 5px;
}

.mainPageHeader {
  position: relative;
  padding: 50px 30px;
  overflow: hidden;
}
.mainPageHeader-bg {
  background: #000;
  color: #fff;
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}
.mainPageHeader-bg .mainPageHeader__title {
  border-color: #fff;
}
.mainPageHeader__background {
  background-position: center;
  background-size: cover;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$opacity)";
  filter: alpha(opacity=0.7);
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
  opacity: 0.7;
}
.mainPageHeader__icon {
  background: #f6f7f4;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.mainPageHeader__icon img {
  width: 60%;
}
.mainPageHeader .container {
  position: relative;
  z-index: 2;
}
.mainPageHeader .container-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mainPageHeader .container-flex .mainPageHeader__icon {
  -ms-flex-preferred-size: 75px;
      flex-basis: 75px;
  width: 75px;
  height: 75px;
}
.mainPageHeader .container-flex .mainPageHeader__content {
  -ms-flex-preferred-size: calc(100% - 75px);
      flex-basis: calc(100% - 75px);
  width: calc(100% - 75px);
  padding-left: 20px;
}
.mainPageHeader .container-flex .mainPageHeader__title {
  font-size: 23px;
}
.mainPageHeader__title {
  margin: 0;
  position: relative;
  line-height: 1.2;
  font-weight: 700;
  font-size: 40px;
  display: inline-block;
  border-bottom: 3px solid var(--brand-dark);
}
.mainPageHeader__desc {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 400;
}

#page-1 .mainBody {
  padding-top: 0;
  padding-top: 80px;
}

.sectionHero {
  position: relative;
  overflow: hidden;
}
.sectionHero__wrapper {
  padding: 70px 40px;
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
}
.sectionHero__title {
  margin-bottom: 30px;
}
.sectionHero__title .title {
  line-height: 1.2;
}
.sectionHero__title .title_1 {
  font-weight: 300;
  font-size: 23px;
  font-family: "Roboto", sans-serif;
  display: block;
  margin-top: 10px;
}
.sectionHero__title .title_2 {
  font-weight: 700;
  font-size: 40px;
  display: inline-block;
  color: var(--brand-dark);
  border-bottom: 3px solid var(--brand-dark);
}
.sectionHero__desc .desc {
  font-size: 18px;
  font-weight: 300;
}
.sectionHero__desc .more {
  margin-top: 20px;
}
.sectionHero__desc .more .link_underline {
  margin-left: 15px;
}

.sectionOffer {
  padding-top: 50px;
}

.sectionWelcome {
  margin-top: 50px;
}
.sectionWelcome .section__lead {
  margin-bottom: 10px;
}
.sectionWelcome__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 30px;
}
.sectionWelcome__row h4 {
  margin-bottom: 10px;
}
.sectionWelcome .section__header {
  margin-bottom: 30px !important;
}
.sectionWelcome .profileAvatar {
  margin-bottom: 50px;
}

.sectionCheck {
  background: #0a1600;
  color: #fff;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  border-bottom: 2px solid #319f2b;
}
.sectionCheck__content {
  padding: 50px 30px;
  margin: 0 auto;
  max-width: 600px;
}
.sectionCheck__image {
  background-color: #0a1600;
  background-image: url(../../../files/drodrew-doswiadczenie.jpg);
  background-size: cover;
  aspect-ratio: 4/3;
  background-position: center;
}
.sectionCheck .contactsList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.sectionCheck .contactsList .location, .sectionCheck .contactsList .phone2 {
  display: none;
}
.sectionCheck .contactsList li {
  margin: 0 20px 15px 0;
}

.sectionAboutUs .decor1::before {
  display: none;
}
.sectionAboutUs .checkList li::before {
  -webkit-filter: invert(1);
          filter: invert(1);
}
.sectionAboutUs .section__row .section__content {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
.sectionAboutUs .section__header {
  margin: 0;
}
.sectionAboutUs .section__content {
  padding: 40px 40px 40px 0;
}
.sectionAboutUs .container {
  color: #f9f9f9;
  position: relative;
}
.sectionAboutUs .container::before {
  background: #111;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  position: absolute;
  right: 20px;
  left: -999px;
  top: 100px;
  bottom: 0;
  content: "";
  z-index: -1;
}

.sectionClients {
  position: relative;
  padding-top: 100px;
  padding-bottom: 50px;
}
.sectionClients .container {
  position: relative;
}
.sectionClients__wrapper {
  position: relative;
}
.sectionClients__wrapper .section__header, .sectionClients__wrapper .section__slogan {
  color: #fff;
  border-color: #fff;
}
.sectionClients__bg {
  background-image: url(../images/clients-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #0a1600;
  top: 0;
  bottom: 200px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  position: absolute;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
.sectionClients__quotes .footer {
  position: relative;
}
.sectionClients__quotes .footer::before {
  position: absolute;
  background-image: url(../images/stars.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 50px;
  right: 30px;
  content: "";
  height: 15px;
  width: 53px;
}
.sectionClients__logos {
  position: relative;
}
.sectionClients__logos::before {
  background: var(--white);
  position: absolute;
  left: -999px;
  right: -999px;
  top: -100px;
  bottom: 0;
  content: "";
  z-index: -2;
  border-bottom: 1px solid var(--border-color);
  border-top: 1px solid var(--border-color);
}
.sectionClients .pageItem .title {
  font-size: 16px;
}
.sectionClients .pageItem .desc {
  -webkit-line-clamp: 6;
  font-size: 15px;
}
.sectionClients .pageItem:hover {
  -webkit-transform: none;
          transform: none;
}

.panel {
  margin-bottom: 40px;
}
.panel__title {
  font-family: "Oswald", sans-serif;
  font-size: 23px;
}

.panelHelp {
  background: #0a1600;
  color: #fff;
  border-radius: 10px;
  padding: 5px;
}
.panelHelp__content {
  padding: 30px;
}
.panelHelp .profileAvatar {
  margin-top: 30px;
}
.panelHelp .profileAvatar .signature {
  -webkit-filter: invert(1);
          filter: invert(1);
}

.logoSlider {
  padding: 50px 0;
}
.logoSlider__list {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.logoSlider .owl-dots {
  margin-top: 40px;
}
.logoSlider .galleryItem {
  border-radius: 0;
  text-align: center;
  padding: 0 30px;
}
.logoSlider .galleryItem__image {
  aspect-ratio: auto;
}
.logoSlider .galleryItem a {
  text-decoration: none;
}
.logoSlider .galleryItem__desc {
  position: relative;
  padding: 10px 0 0 0;
  text-align: center;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$opacity)";
  filter: alpha(opacity=0.7);
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
  opacity: 0.7;
}
.logoSlider .galleryItem__desc::before {
  background: none;
}
.logoSlider .galleryItem img {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  max-width: 175px;
  max-height: 45px;
  margin: 0 auto;
  min-width: 0;
  -o-object-fit: contain;
     object-fit: contain;
  min-height: 0;
  aspect-ratio: auto;
}

.sectionPortfolio {
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}
.sectionPortfolio__logos {
  position: relative;
}
.sectionPortfolio__logos::before {
  background: var(--white);
  position: absolute;
  left: -999px;
  right: -999px;
  top: -100px;
  bottom: 0;
  content: "";
  z-index: -1;
  border-bottom: 2px solid var(--gray-dark);
}

.sectionVideo {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
}
.sectionVideo__video {
  max-width: 1400px;
}
.sectionVideo__video iframe {
  margin-bottom: -6px;
  aspect-ratio: 16/9;
  width: 100%;
}
.sectionVideo__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
}
.sectionVideo__content a {
  height: auto !important;
}
.sectionVideo__button {
  font-weight: 700;
  font-weight: 700;
}

.helpCta__wrapper {
  background-image: url(../images/help-center-bg.jpg);
}
.helpCta .section__desc {
  font-weight: 400;
  font-size: 18px;
}

.helpForm .form-check-label, .helpForm .form-check-label a {
  color: #fff;
}

.sygnetSeparator {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.sygnetSeparator::before, .sygnetSeparator::after {
  height: 1px;
  width: 30%;
  -ms-flex-preferred-size: 30%;
      flex-basis: 30%;
  background: var(--border-color);
  content: "";
}
.sygnetSeparator img {
  margin: 0 40px;
  width: 30px;
}

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

.faqList {
  margin: 0;
  padding: 0;
  list-style: none;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  background: var(--white);
}
.faqList > li:not(:last-child) {
  border-bottom: 1px solid var(--border-color);
}

.faqItem .title {
  font-size: 18px;
}
.faqItem .title a {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-decoration: none;
}
.faqItem .title .icon {
  background-image: url(../images/arrow.svg);
  width: 16px;
  height: 16px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.faqItem .content {
  padding: 0 20px 20px 20px;
  display: none;
}
.faqItem.open .title a {
  color: var(--brand);
}
.faqItem.open .icon {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.faqItem.open .content {
  display: block;
}

.form-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 30px 0;
}

.form-title {
  text-transform: uppercase;
  margin: 0 0 15px 0;
  padding: 15px 0;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid var(--border-color);
}
.form-title img {
  width: 16px;
  margin-right: 10px;
}

.form-floating {
  position: relative;
  margin-bottom: 15px;
}
.form-floating .form-control, .form-floating .form-control:focus, .form-floating .form-control:active {
  background: #163000;
  border: 0;
  font-weight: 400;
  border-radius: 10px;
  border: 1px solid #214900;
  color: #fff;
  padding: 30px 25px 10px 25px;
  width: 100%;
  outline: none;
  display: block;
}
.form-floating .form-control:not(:-moz-placeholder-shown), .form-floating .form-control:focus:not(:-moz-placeholder-shown), .form-floating .form-control:active:not(:-moz-placeholder-shown) {
  border-color: #ddd;
}
.form-floating .form-control:not(:-ms-input-placeholder), .form-floating .form-control:focus:not(:-ms-input-placeholder), .form-floating .form-control:active:not(:-ms-input-placeholder) {
  border-color: #ddd;
}
.form-floating .form-control:not(:placeholder-shown), .form-floating .form-control:focus:not(:placeholder-shown), .form-floating .form-control:active:not(:placeholder-shown) {
  border-color: #ddd;
}
.form-floating label {
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  height: 20px;
  padding: 0 25px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  pointer-events: none;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  font-weight: 300;
  color: #f6f7f4;
}

.form-floating > .form-control-plaintext::-webkit-input-placeholder, .form-floating > .form-control::-webkit-input-placeholder {
  color: transparent;
}

.form-floating > .form-control-plaintext::-moz-placeholder, .form-floating > .form-control::-moz-placeholder {
  color: transparent;
}

.form-floating > .form-control-plaintext:-ms-input-placeholder, .form-floating > .form-control:-ms-input-placeholder {
  color: transparent;
}

.form-floating > .form-control-plaintext::-ms-input-placeholder, .form-floating > .form-control::-ms-input-placeholder {
  color: transparent;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: transparent;
}

form .form-floating > textarea.form-control {
  height: calc(7rem + 2px);
}
form .form-select {
  font-weight: 300;
  height: calc(3.5rem + 2px);
  color: #000;
  background-color: #fff;
}
form .form-select.selected {
  border-color: black;
}

.form-floating > .form-control-plaintext:-webkit-autofill, .form-floating > .form-control:-webkit-autofill {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}

.form-floating > .form-select {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}

.form-floating > .form-control:-webkit-autofill ~ label,
.form-floating > .form-control-plaintext ~ label, .form-floating > .form-control:focus ~ label, .form-floating > .form-control:not(:placeholder-shown) ~ label, .form-floating > .form-select ~ label {
  font-size: 13px;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$opacity)";
  filter: alpha(opacity=0.6);
  -moz-opacity: 0.6;
  -khtml-opacity: 0.6;
  opacity: 0.6;
  top: 10px;
}

.form-floating > .form-control-plaintext ~ label {
  border-width: 1px 0;
}

.form-check-input[type=checkbox] {
  border-radius: 0;
  border-color: var(--black);
}

.form-check {
  margin: 25px 0;
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form-check-input {
  margin-right: 10px;
}

.form-check-label {
  cursor: pointer;
  display: block;
}
.decor1 {
  position: relative;
}
.decor1::before {
  background: var(--border-color);
  z-index: 0;
  top: 30px;
  bottom: 30px;
  left: -10px;
  right: -10px;
  content: "";
  position: absolute;
  border-radius: 10px;
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.03);
  -webkit-box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.03);
  -moz-box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.03);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.decor1:hover::before {
  left: -15px;
  right: -15px;
  -webkit-filter: blur(3px);
          filter: blur(3px);
}

.imageColage {
  position: relative;
}
.imageColage img {
  border-radius: 10px;
  overflow: hidden;
}
.imageColage_1 {
  margin-bottom: 30px;
}
.link_underline {
  position: relative;
  text-decoration: none;
  font-weight: 400;
  cursor: pointer;
}
.link_underline::before {
  width: 0;
  height: 1px;
  position: absolute;
  bottom: -2px;
  left: 0;
  content: "";
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  background: #319f2b;
  z-index: 3;
}
.link_underline::after {
  z-index: 2;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: -2px;
  left: 0;
  content: "";
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  background: var(--gray);
}
.link_underline:hover {
  text-decoration: none;
  cursor: pointer;
}
.link_underline:hover::before {
  width: 100%;
}

.contactsList {
  margin: 0;
  padding: 0;
  list-style: none;
}
.contactsList li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.contactsList img {
  width: 14px;
  margin-right: 10px;
}
.contactsList .label {
  font-size: 13px;
  font-weight: 300;
  text-transform: uppercase;
  display: block;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  width: 100%;
}
.contactsList .value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 700;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.contactsList .value a {
  text-decoration: none;
}
.contactsList .value a:hover {
  text-decoration: underline;
}
.contactsList .phone1, .contactsList .phone2 {
  margin: 0 20px 10px 0;
}

.flagList {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.flagList li {
  margin: 5px 15px 0 0;
  cursor: pointer;
}
.flagList a {
  text-decoration: none;
}
.flagList img {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.socialMediaList {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.socialMediaList li {
  margin: 0 5px 0 0;
}
.socialMediaList img {
  width: 16px;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.socialMediaList .label {
  margin-left: 10px;
  font-weight: 400;
  display: none;
}
.socialMediaList .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 10px;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  width: 32px;
  height: 32px;
  position: relative;
}
.socialMediaList a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
}
.socialMediaList a:hover img {
  -webkit-filter: invert(1);
          filter: invert(1);
}
.socialMediaList .facebook a:hover .icon {
  background: #5472d2;
}
.socialMediaList .instagram a:hover .icon {
  background: #f09433;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f09433",endColorstr="#bc1888",GradientType=1);
}
.socialMediaList .messenger a:hover .icon {
  background: #0078ff;
  background: -webkit-gradient(linear, left bottom, left top, from(#0078ff), to(#00c6ff));
  background: linear-gradient(to top, #0078ff 0%, #00c6ff 100%);
}
.socialMediaList .youtube a:hover .icon {
  background: #fe0002;
}
.socialMediaList .twitter a:hover .icon {
  background: #1d9bf0;
}
.socialMediaList .tiktok a:hover .icon {
  background: rgb(37, 244, 237);
  background: linear-gradient(45deg, rgb(37, 244, 237) 0%, rgb(254, 43, 84) 100%);
}

.hours24 {
  font-weight: 400;
}
.hours24__dot {
  -webkit-animation: blinker 1.5s linear infinite;
          animation: blinker 1.5s linear infinite;
  background: green;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 10px;
}

@-webkit-keyframes blinker {
  50% {
    opacity: 0;
  }
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}
.hoursOpen {
  position: relative;
}
.hoursOpen__content {
  margin-bottom: 10px;
}
.hoursOpen__title {
  font-weight: 400;
  margin: 0;
}
.hoursOpen__open {
  background: green;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 10px;
  display: inline-block;
}
.hoursOpen__close {
  background: red;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 10px;
  display: inline-block;
}
.button {
  display: inline-block;
  padding: 14px 20px 14px 20px;
  color: #fff;
  border-radius: 10px;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid #10400e;
  outline: 0;
  position: relative;
  background-color: #1b6a17;
  line-height: 1;
  cursor: pointer;
}
.button img {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  width: 16px;
  margin-right: 10px;
  -webkit-filter: invert(1);
          filter: invert(1);
  display: inline-block;
}
.button:hover {
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.03);
  -webkit-box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.03);
  -moz-box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.03);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  cursor: pointer;
  color: #fff;
  background: #0b2b09;
}

.button-lg {
  padding: 20px 50px 20px 40px;
}

.button-border {
  border-color: var(--brand-dark);
  color: var(--brand-dark);
  background: transparent;
}
.button-border:hover {
  background: var(--brand-dark);
  color: var(--white);
}

.button-white {
  border-color: #fff;
  color: #fff;
  background: transparent;
}
.button-white:hover {
  background: #fff;
  color: #0a1600;
}

.files-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.files-list li {
  padding: 7px 0 7px 25px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.files-list li::before {
  width: 15px;
  height: 15px;
  left: 0;
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  background-image: url(../images/arrow.svg);
  background-position: center center;
  background-size: 15px;
  background-repeat: no-repeat;
  -webkit-transform: rotate(180deg) translateY(50%);
          transform: rotate(180deg) translateY(50%);
}
.files-list li a {
  font-weight: 500;
}
.files-list li p {
  font-size: 15px;
  color: var(--gray-dark);
  margin: 0 0 0 10px;
}
.files-list li:hover::before {
  top: calc(50% + 3px);
}

.documentList {
  margin: 0;
  padding: 0;
  list-style: none;
  margin: 15px 0 15px 0;
}
.documentList li {
  font-weight: 300;
  position: relative;
  margin: 0 0 0 15px;
  padding: 4px 0 4px 28px;
}
.documentList li::before {
  position: absolute;
  left: 0;
  top: 11px;
  width: 17px;
  height: 15px;
  background-image: url(../images/document.png);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 17px 15px;
  content: "";
}

.checkList {
  margin: 0;
  padding: 0;
  list-style: none;
  margin: 15px 0 15px 0;
}
.checkList li {
  font-weight: 300;
  position: relative;
  margin: 0 0 0 15px;
  padding: 4px 0 4px 28px;
}
.checkList li::before {
  position: absolute;
  left: 0;
  top: 11px;
  width: 17px;
  height: 15px;
  background-image: url(../images/check.png);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 17px 15px;
  content: "";
}

.pageContact {
  padding-bottom: 0;
}
.pageContact .contactsList li {
  margin-bottom: 40px;
}
.pageContact .contactsList li.location {
  margin-bottom: 20px;
}
.pageContact .contactsList .icon {
  width: 50px;
  height: 50px;
  -ms-flex-preferred-size: 50px;
      flex-basis: 50px;
  background: #0a1600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 10px;
  margin-right: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pageContact .contactsList .icon img {
  -webkit-filter: invert(1);
          filter: invert(1);
  margin: 0;
  width: 20px;
}
.pageContact .contactsList .content {
  -ms-flex-preferred-size: calc(100% - 70px);
      flex-basis: calc(100% - 70px);
  width: calc(100% - 70px);
}
.pageContact .hours24 {
  margin-bottom: 30px;
}
.pageContact .desc {
  margin-bottom: 30px;
}
.pageContact .desc h3 {
  margin-bottom: 10px;
}
.pageContact .hoursOpen {
  margin-bottom: 30px;
}
.pageContact .socialMediaList {
  margin: 20px 0 20px 0;
}
.pageContact .socialMediaList li {
  margin: 0 15px 15px 0;
}
.pageContact .socialMediaList .label {
  display: inline-block;
}
.pageContact__map {
  text-align: center;
  margin-bottom: -7px;
}
.pageContact__map_wrapper {
  background: #111;
  color: #fff;
  margin-top: 100px;
}
.pageContact__map .section__title {
  font-size: 23px;
  margin-bottom: 0;
}
.pageContact__map .section__desc {
  margin-top: 10px;
}
.pageContact__form {
  margin-top: 50px;
}

.popup {
  border-radius: 10px;
  padding: 30px;
  max-width: 856px;
  background: var(--white);
  color: var(--font-color);
  border: 2px solid #fff;
}
.popup__image {
  margin: 0 0 30px 0;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.popup__image img {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 100%;
  min-width: 100%;
}
.popup__image .icon {
  max-width: 300px;
  margin: 0 auto;
}
.popup__lead {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 15px;
}
.popup__title {
  font-size: 30px;
  margin-bottom: 20px;
}

.pagesList {
  margin: 0;
  padding: 0;
  list-style: none;
}
.pagesList.owl-carousel {
  margin-left: -20px;
  margin-right: -20px;
}

.pagesListSlider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: scroll;
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
  margin-left: -20px;
  margin-right: -20px;
  padding-bottom: 10px;
  padding-right: 20px;
}
.pagesListSlider .pageItem {
  scroll-snap-align: center;
  -ms-flex-preferred-size: 75%;
      flex-basis: 75%;
  min-width: 75%;
  width: 75%;
  margin: 0 0 0 20px;
}
.pagesListSlider .pageItem .desc {
  margin-top: 0;
}

.pageItem {
  margin: 0 0 50px 0;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--border-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.03);
  -webkit-box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.03);
  -moz-box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.03);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  position: relative;
  border-bottom: 2px solid #319f2b;
}
.pageItem .header {
  padding: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.pageItem .header_icon {
  -ms-flex-preferred-size: 75px;
      flex-basis: 75px;
  width: 75px;
  aspect-ratio: auto;
}
.pageItem .header_content {
  padding-left: 15px;
  -ms-flex-preferred-size: calc(100% - 75px);
      flex-basis: calc(100% - 75px);
  width: calc(100% - 75px);
}
.pageItem .image {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: var(--gray-dark);
  aspect-ratio: 4/3;
  border-radius: 10px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.pageItem .image img {
  aspect-ratio: 4/3;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 100%;
  min-width: 100%;
}
.pageItem .image a {
  display: block;
}
.pageItem .image:hover img {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$opacity)";
  filter: alpha(opacity=0.7);
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
  opacity: 0.7;
}
.pageItem .desc {
  padding: 0 25px 25px 25px;
}
.pageItem .category {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
  margin: 0 0 10px 0;
  display: inline-block;
  font-weight: 500;
  color: var(--brand-dark);
  border-bottom: 1px solid var(--brand-dark);
}
.pageItem .category a {
  text-decoration: none;
}
.pageItem .title {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  color: var(--brand-dark);
  line-height: 1.3;
}
.pageItem .title a {
  text-decoration: underline;
  text-decoration-color: var(--border-color);
  text-decoration-thickness: 1px;
}
.pageItem .desc {
  font-weight: 300;
  margin: 10px 0 0 0;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
.pageItem .desc p {
  margin: 0;
}
.pageItem .date {
  font-size: 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$opacity)";
  filter: alpha(opacity=0.7);
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
  opacity: 0.7;
}
.pageItem .date img {
  width: 14px;
  margin-right: 10px;
}
.pageItem .footer {
  margin-top: auto;
  padding: 0 30px 30px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.pageItem:hover {
  border-color: var(--brand-dark);
}

.d-none {
  display: none !important;
}

.offerList {
  margin-left: -20px;
  margin-right: -20px;
}
.offerList .pageItem {
  margin: 0;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
}
.offerList .pageItem::before {
  display: none;
}
.offerList .pageItem .title {
  font-size: 23px;
  font-family: "Oswald", sans-serif;
  margin-bottom: 10px;
}
.offerList .pageItem .header_icon {
  background: var(--brand-light);
  border-radius: 10px;
  width: 100px;
  -ms-flex-preferred-size: 100px;
      flex-basis: 100px;
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.offerList .pageItem .header_icon img {
  width: 55px;
}
.offerList .pageItem .header_content {
  padding-left: 25px;
}
.offerList .pageItem:hover {
  border-color: var(--brand-dark);
}

.gallery {
  margin: 0;
  padding: 0;
  list-style: none;
}
.gallery .owl-dots {
  margin-top: 20px;
}

.galleryList {
  margin-bottom: 30px;
}
.galleryList .galleryItem {
  margin: 0 0 15px 0;
}

.galleryItem {
  overflow: hidden;
  border-radius: 10px;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  position: relative;
}
.galleryItem a {
  position: relative;
  height: 100%;
  display: block;
}
.galleryItem__image img {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 100%;
  min-width: 100%;
}
.galleryItem__desc {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  overflow: hidden;
  padding: 30px 25px 25px 25px;
  z-index: 2;
}
.galleryItem__desc::before {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$opacity)";
  filter: alpha(opacity=0.5);
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  opacity: 0.5;
  content: "";
  z-index: -1;
}
.galleryItem:hover .galleryItem__desc::before {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$opacity)";
  filter: alpha(opacity=1);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}

.galleryGrid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -5px;
}
.galleryGrid .galleryItem {
  -ms-flex-preferred-size: calc(50% - 5px);
      flex-basis: calc(50% - 5px);
  width: calc(50% - 5px);
  margin: 0 5px 5px 0;
  border-radius: 0;
}
.galleryGrid .galleryItem__image {
  background: var(--gray-dark);
  aspect-ratio: 1;
}
.galleryGrid .galleryItem__image img {
  aspect-ratio: 1;
}
.galleryGrid .galleryItem:hover .galleryItem__image img {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$opacity)";
  filter: alpha(opacity=0.7);
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
  opacity: 0.7;
}

[data-theme=dark] .sectionClients__quotes .footer:before,
[data-theme=dark] .logoSlider .galleryItem img,
[data-theme=dark] .invertImg {
  -webkit-filter: invert(1) grayscale(100%) brightness(100);
          filter: invert(1) grayscale(100%) brightness(100);
}
[data-theme=dark] .darkModeButton label {
  background: var(--white);
}
[data-theme=dark] .mainHeader__logo .logo_dark {
  display: block;
}
[data-theme=dark] .mainHeader__logo .logo_light {
  display: none;
}
[data-theme=dark] .mainHeader.scroll {
  background-color: rgba(0, 0, 0, 0.5);
}
[data-theme=dark] .headerMenu .menu_arrow, [data-theme=dark] .sectionWelcome__contact img, [data-theme=dark] .socialMediaList img, [data-theme=dark] .contactsList img, [data-theme=dark] .pagesTree li:first-child::before, [data-theme=dark] .pagesTree li::after {
  -webkit-filter: invert(1);
          filter: invert(1);
}
[data-theme=dark] .headerMenu .menu_link {
  color: var(--black);
}
[data-theme=dark] .headerMenu .submenu_link {
  color: var(--border);
}
[data-theme=dark] .headerMenu .menu_item.selected .menu_arrow {
  -webkit-filter: invert(0);
          filter: invert(0);
}

@media (min-width: 578px) {
  .pagesListSlider:not(.sectionClients__quotes) {
    margin-left: 0;
    margin-right: 0;
  }
  .offerList {
    margin: 0;
  }
  .offerList .pageItem {
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin: 0 0 20px 0;
  }
  .pageItem:hover {
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
  }
  .contactsList .value {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    font-size: 18px;
  }
}
@media (min-width: 768px) {
  .pagesListSlider:not(.sectionClients__quotes) {
    overflow-x: inherit;
    padding: 0;
  }
  .sectionVideo .contactsList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .sectionVideo .contactsList li {
    margin: 0 20px 20px 20px;
  }
  .mainPageHeader__icon img {
    width: 60%;
  }
  .mainPageHeader .container-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .mainPageHeader .container-flex .mainPageHeader__icon {
    -ms-flex-preferred-size: 120px;
        flex-basis: 120px;
    width: 120px;
    height: 120px;
  }
  .mainPageHeader .container-flex .mainPageHeader__content {
    -ms-flex-preferred-size: calc(100% - 120px);
        flex-basis: calc(100% - 120px);
    width: calc(100% - 120px);
    padding-left: 30px;
  }
  .mainPageHeader .container-flex .mainPageHeader__title {
    font-size: 30px;
  }
  .pagesList:not(.owl-carousel) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-right: -25px;
  }
  .pagesList:not(.owl-carousel) .pageItem {
    width: calc(50% - 25px);
    -ms-flex-preferred-size: calc(50% - 25px);
        flex-basis: calc(50% - 25px);
    min-width: calc(50% - 25px);
    margin: 0 25px 25px 0;
  }
  .galleryGrid .galleryItem {
    width: calc(33.33% - 5px);
    -ms-flex-preferred-size: calc(33.33% - 5px);
        flex-basis: calc(33.33% - 5px);
    margin: 0 5px 5px 0;
  }
  .galleryGrid .galleryItem:nth-child(10) {
    display: none;
  }
}
@media (min-width: 992px) {
  .section {
    margin-bottom: 150px;
  }
  .section__desc {
    font-size: 18px;
  }
  .section__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .section__title {
    font-size: 40px;
  }
  .section__header {
    margin-bottom: 50px;
  }
  .section__column {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    width: 50%;
  }
  .section__content {
    -ms-flex-preferred-size: 60%;
        flex-basis: 60%;
    width: 60%;
    padding: 0 60px 0 0;
  }
  .section__image {
    -ms-flex-preferred-size: 40%;
        flex-basis: 40%;
    width: 40%;
  }
  .section__invert .section__content {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .videoHeader__content h1 {
    font-size: 40px;
  }
  .videoHeader__content p {
    font-size: 18px;
  }
  .imageColage {
    position: relative;
  }
  .imageColage img {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.03);
    -webkit-box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.03);
    -moz-box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.03);
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
  }
  .imageColage_1 {
    margin: 0;
    position: absolute;
    width: 80%;
    -webkit-transform: translateX(40%) translateY(-10%);
            transform: translateX(40%) translateY(-10%);
    z-index: 2;
  }
  .imageColage_2 {
    width: 80%;
    -webkit-transform: translateX(40px) translateY(10%);
            transform: translateX(40px) translateY(10%);
    z-index: 1;
  }
  .sectionWelcome .section__column:first-child {
    padding-right: 50px;
  }
  .sectionWelcome__contact {
    margin: 0;
    padding: 50px 0 50px 50px;
  }
  .sectionWelcome__contact::before {
    left: 0;
    right: -999px;
  }
  .mainSlider__item {
    height: 60vh;
  }
  .mainSlider .content {
    padding: 200px 0 100px 0;
  }
  .mainSlider .title {
    font-size: calc(2rem + 1vw);
  }
  .mainSlider .desc {
    display: block;
    font-size: 18px;
    font-weight: 300;
  }
  .mainSlider .owl-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .mainSlider .more {
    font-weight: 700;
    font-size: 16px;
  }
  .sectionAboutUs .container::before {
    top: 30px;
    bottom: 30px;
    right: -100px;
  }
  .sectionAboutUs .section__row:not(.section__invert) .section__content {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    padding: 0 60px 0 0;
  }
  .sectionAboutUs .section__invert {
    margin-bottom: 60px;
  }
  .sectionAboutUs .section__title {
    font-size: 30px;
  }
  .sectionAboutUs .section__content {
    padding: 0 0 0 60px;
  }
  .sectionFAQ {
    position: relative;
    z-index: 1;
  }
  .sectionFAQ .section__row {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .sectionFAQ .section__header {
    text-align: left;
  }
  .sectionFAQ__content {
    -ms-flex-preferred-size: 60%;
        flex-basis: 60%;
    width: 60%;
  }
  .sectionFAQ__head {
    -ms-flex-preferred-size: 40%;
        flex-basis: 40%;
    width: 40%;
  }
  .sectionContact {
    margin-bottom: 0;
  }
  .sectionContact::before {
    display: none;
  }
  .sectionContact__buttons {
    display: none;
  }
  .sectionContact__form form {
    padding: 0;
  }
  .sectionContact__socialmedia {
    display: block;
  }
  .sectionContact .section__header {
    text-align: left;
  }
  .sectionContact .section__row {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .sectionCheck {
    border-radius: 10px;
    overflow: hidden;
  }
  .sectionCheck__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .sectionCheck__content {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    width: 50%;
    padding: 50px;
    margin: 0 auto 0 0;
    max-width: 900px;
  }
  .sectionCheck__image {
    aspect-ratio: 4/3;
    -ms-flex-preferred-size: calc(50% - 50px);
        flex-basis: calc(50% - 50px);
    width: calc(50% - 50px);
    margin: 0 50px 0 0;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
  }
  .sectionHero {
    position: relative;
    z-index: 1;
  }
  .sectionHero__text {
    width: 120%;
    left: -10%;
  }
  .sectionHero__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .sectionHero__title {
    margin-bottom: 0;
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    width: 50%;
  }
  .sectionHero__title .title_1 {
    font-weight: 300;
    font-size: 30px;
  }
  .sectionHero__title .title_2 {
    font-weight: 700;
    font-size: 60px;
  }
  .sectionHero__desc {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    width: 50%;
  }
  .sectionHero__desc .desc {
    font-weight: 400;
  }
  .helpForm {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .helpForm .form-check {
    margin: 15px 0 0 0;
  }
  .helpForm .form-button {
    margin: 0;
  }
  .helpForm .button {
    padding: 25px;
  }
  .helpForm__input {
    -ms-flex-preferred-size: 40%;
        flex-basis: 40%;
    width: 40%;
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    padding-right: 30px;
  }
  .helpForm__button {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    -ms-flex-preferred-size: 20%;
        flex-basis: 20%;
    width: 20%;
  }
  .helpForm__check {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
    width: 100%;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}
@media (min-width: 1200px) {
  .mainBody {
    padding-top: 120px;
  }
  .section__title {
    font-size: 60px;
  }
  .section__scroll {
    top: -70px;
  }
  .mainContent {
    padding: 50px 0;
  }
  .mainPage__title {
    font-size: 40px;
  }
  .mainPage__panel + .mainPage__content {
    -ms-flex-preferred-size: calc(100% - 420px);
        flex-basis: calc(100% - 420px);
    width: calc(100% - 420px);
    padding-right: 60px;
  }
  .mainPage__panel {
    margin-top: 0;
    -ms-flex-preferred-size: 420px;
        flex-basis: 420px;
    width: 420px;
  }
  .videoHeader {
    height: calc(100vh - 120px);
  }
  .videoHeader__background {
    top: 120px;
    height: calc(100vh - 120px);
  }
  .videoHeader__content h1 {
    font-size: 60px;
    margin-bottom: 40px;
  }
  .videoHeader__content h1 small {
    font-size: 30px;
  }
  .videoHeader__content .more {
    margin-top: 40px;
  }
  .videoHeader__content .logo {
    width: 300px;
    margin-bottom: 40px;
  }
  .videoHeader__button {
    margin-top: 20px;
  }
  .videoHeader__arrow {
    bottom: 50px;
  }
  .mainPageHeader {
    overflow: hidden;
  }
  .mainPageHeader-bg {
    margin-top: 50px;
    padding: 150px 0;
    border-radius: 10px;
  }
  .mainPageHeader__title {
    font-size: 60px;
    line-height: 1.2;
  }
  .mainPageHeader__desc {
    font-size: 30px;
    font-weight: 400;
  }
  .mainPageHeader .container-flex .mainPageHeader__title {
    font-size: 40px;
  }
  .pageContact {
    padding-bottom: 0;
  }
  .pageContact__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .pageContact__content {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    width: 50%;
  }
  .pageContact__form {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    width: 50%;
    padding-left: 40px;
    margin-top: 0;
  }
  .sectionContact .section__scroll {
    top: -50px;
  }
  .pagesList:not(.pagesList-4) .pageItem {
    width: calc(33.33% - 25px);
    -ms-flex-preferred-size: calc(33.33% - 25px);
        flex-basis: calc(33.33% - 25px);
    min-width: calc(33.33% - 25px);
  }
  .mainPageNoPanel .galleryGrid .galleryItem {
    width: calc(25% - 5px);
    -ms-flex-preferred-size: calc(25% - 5px);
        flex-basis: calc(25% - 5px);
  }
  .blurEffect {
    -webkit-filter: blur(0);
            filter: blur(0);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$opacity)";
    filter: alpha(opacity=1);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    pointer-events: all;
  }
  .sectionClients__bg {
    border-radius: 10px;
  }
  .offerList .pageItem .title {
    font-size: 30px;
  }
  .offerList .pageItem .header_icon {
    width: 130px;
    -ms-flex-preferred-size: 130px;
        flex-basis: 130px;
    height: 130px;
  }
  .offerList .pageItem .header_icon img {
    width: 70px;
  }
}
@media (min-width: 1400px) {
  #page-1 .galleryGrid .galleryItem {
    width: calc(20% - 5px);
    -ms-flex-preferred-size: calc(20% - 5px);
        flex-basis: calc(20% - 5px);
  }
  #page-1 .galleryGrid .galleryItem:nth-child(9), #page-1 .galleryGrid .galleryItem:nth-child(10) {
    display: block;
  }
}
@media (min-width: 1600px) {
  .mainSlider__list {
    border-radius: 10px;
  }
}