@charset "UTF-8";
@font-face {
  font-family: Bebas;
  src: url(fonts/Bebas.woff2) format("woff2"),url(fonts/Bebas.woff) format("woff"),url(fonts/Bebas.ttf) format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap
}
:root {
  --grey-gradient: linear-gradient(180deg, #FFFFFF 19.79%, rgba(255, 255, 255, 0.43) 100%);
  --blue-gradient: linear-gradient(90deg, rgba(69, 102, 197, 1) 2%, rgba(89, 130, 251, 1) 100%);
  --blue-gradient-search: linear-gradient(0deg, rgba(69,102,197,1) 0%, rgba(89,130,251,1) 65%);
  --red-gradient: linear-gradient(90deg, rgba(227, 30, 36, 1) 0%, rgba(255, 51, 57, 1) 100%);
  --white-gradient: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.12788865546218486) 100%);
  --background-page: #ECF0F3;
  --blue: #3E60C1;
  --light-blue: #5982FB;
  --dark-blue: #2D4583;
  --grey: #8E9092;
  --light-grey: #E3E6ED;
  --white: #fff;
  --red: #E31E24;
  --black: #231F20
}
:root {
  --header-max-width: 100rem;
  --crytical-z-index: 999;
  --default-border: 0.0625rem solid #E3E6ED;
  --default-border-radius: 1.25rem;
  --small-border-radius: 0.3125rem;
  --big-border-radius: 6.25rem
}
:root {
  --white-shadow-bars: 0rem 0.3125rem 0.625rem 0rem #FFF,0rem 0.8125rem 2.1875rem 0rem #FFF;
  --white-shadow-bottom: 0rem 0.3125rem 0.625rem 0rem #FFF,0rem 0.8125rem 2.1875rem 0rem #FFF;
  --white-shadow-top: 0rem -5px 0.625rem 0rem #FFF,0rem -15px 2.1875rem 0rem #FFF;
  --white-shadow-only-bottom: 0rem 0.5rem 1.4375rem 0.3125rem rgba(255, 255, 255, 1);
  --white-shadow-about: 0rem 0.3125rem 0.625rem 0rem #FFF,0rem 0.9375rem 2.1875rem 0rem #FFF;
  --black-shadow-top: 0rem -6px 2.25rem -23px rgba(0, 0, 0, 1);
  --black-shadow: 0rem 0.125rem 0.625rem 0 rgba(0, 0, 0, .5);
  --black-shadow-bottom: 0rem 1.625rem 3.3125rem -36px rgba(0,0,0,0.32);
  --black-shadow-dots: 0rem 0.1875rem 0.9375rem -4px rgba(0, 0, 0, 1);
  --black-shadow-arrows: 0rem 0.375rem 1.125rem -9px rgba(0, 0, 0, 1)
}
:root {
  --font-basic: "Arial",sans-serif;
  --font-bebas: "Bebas",sans-serif;
  --font-size-little: 0.75rem;
  --font-size-small: 1rem;
  --font-size-basic: 1.125rem;
  --font-size-medium: 1.25rem;
  --font-size-big: 1.875rem;
  --font-size-title: 2.1875rem
}
:root {
  --white-filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
  --grey-filter: brightness(0) saturate(100%) invert(94%) sepia(11%) saturate(105%) hue-rotate(184deg) brightness(97%) contrast(92%);
  --black-filter: brightness(0) saturate(100%) invert(0%) sepia(100%) saturate(7433%) hue-rotate(210deg) brightness(88%) contrast(88%);
  --dark-blue-filter: invert(74%) sepia(11%) saturate(3537%) hue-rotate(187deg) brightness(91%) contrast(86%)
}
@media screen and (max-width:1280px) {
  :root {
    --default-border-radius: 0.625rem
  }
}
@media screen and (max-width:967px) {
  :root {
    --font-size-medium: 1.0625rem;
    --font-size-title: 1.6875rem;
    --font-size-basic: 1rem;
    --font-size-small: 0.875rem;
    --big-border-radius: 0.625rem
  }
}
@media screen and (max-width:560px) {
  :root {
    --font-size-title: 1.4375rem;
    --white-shadow-bars: 0rem 0.625rem 0.625rem 0rem #FFF,0rem 0.8125rem 2.1875rem 0rem #FFF
  }
}
@media screen and (max-width:480px) {
  :root {
    --font-size-title: 1.25rem;
    --font-size-medium: 0.875rem;
    --font-size-basic: 0.875rem;
    --font-size-small: 0.75rem
  }
}
body {
  font-family: var(--font-basic);
  background-color: var(--background-page)
}
.wrapper {
  width: 100%;
  overflow: hidden;
  font-size: var(--font-size-medium)
}
header .container {
  padding: 1.5625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}
header .container img {
  cursor: pointer
}
header .container form {
  position: relative;
  width: 100%
}
.header-tel {
  font-size: var(--font-size-medium)
}
.header-socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
}
.header-socials-container {
  padding: 0 3.5625rem
}
.header-socials-container a img {
  -webkit-transition: .3s all ease-in-out;
  -o-transition: .3s all ease-in-out;
  transition: .3s all ease-in-out;
  height: 1.3125rem
}
.header-socials-container a:hover img {
  -webkit-filter: var(--white-filter);
  filter: var(--white-filter)
}
.header-socials-container a:nth-child(1) {
  margin-right: .9375rem
}
.header-search {
  margin-top: .625rem;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative
}
.header-search input {
  width: 100%;
  padding: .4375rem 3.125rem .4375rem 1.25rem;
  background: var(--grey-gradient);
  border: var(--default-border);
  font-size: var(--font-size-small);
  border-radius: var(--default-border-radius)
}
.header-search button {
  position: absolute;
  right: 1.25rem;
  top: .4375rem
}
.container {
  max-width: 103.125rem;
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding: 0 1.5625rem
}
@media screen and (max-width:967px) {
  .container {
    padding: .9375rem
  }
}
@media screen and (max-width:560px) {
  .container {
    padding: .625rem
  }
}
@media screen and (max-width:480px) {
  .container {
    padding: .625rem
  }
}
h2 {
  text-align: center;
  font-size: var(--font-size-title);
  font-weight: 400
}
.description {
  font-size: var(--font-size-medium);
  text-align: center;
  margin: .75rem auto 0 auto;
  padding: 0 1.5625rem;
  max-width: 80rem
}
@media screen and (max-width:967px) {
  .description {
    padding: 0 .9375rem
  }
}
@media screen and (max-width:767px) {
  .description {
    text-align: left;
    margin-top: 3.125rem
  }
}
@media screen and (max-width:560px) {
  .description {
    padding: 0 .625rem
  }
}
.link {
  color: var(--blue);
  -webkit-text-decoration: var(--grey) underline .0625rem;
  text-decoration: var(--grey) underline .0625rem;
  text-underline-offset: .3125rem;
  -webkit-text-decoration-color: var(--blue);
  text-decoration-color: var(--blue);
  text-decoration-thickness: .125rem
}
.filter-list-active .filter-list {
  display: block
}
.filter-list-active .filter-list-title img {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg)
}
.button {
  font-size: var(--font-size-basic);
  padding: 1rem;
  color: var(--white);
  border-radius: var(--big-border-radius);
  overflow: hidden;
  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;
  width: 100%;
  background: var(--blue-gradient);
  -webkit-transition: .3s all ease-in-out;
  -o-transition: .3s all ease-in-out;
  transition: .3s all ease-in-out;
  position: relative;
  z-index: 1
}
.button span {
  position: relative;
  z-index: 3
}
.button img {
  position: relative;
  z-index: 3
}
.button:after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: var(--red-gradient);
  opacity: 0;
  -webkit-transition: .3s all ease-in-out;
  -o-transition: .3s all ease-in-out;
  transition: .3s all ease-in-out
}
.button:hover:after {
  opacity: 1
}
.button-catalog {
  display: none;
  width: 11.25rem;
  margin: 2.5rem auto;
  text-align: center;
  padding: 0;
  height: 3rem;
  background: var(--red-gradient)
}
@media screen and (max-width:967px) {
  .button-catalog {
    display: block
  }
}
.item-go {
  letter-spacing: .04em;
  padding: .9375rem 1.875rem;
  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-transition: .3s all ease-in-out;
  -o-transition: .3s all ease-in-out;
  transition: .3s all ease-in-out;
  color: var(--white);
  background: var(--blue-gradient);
  position: relative;
  z-index: 1
}
.item-go span {
  position: relative;
  z-index: 3
}
.item-go img {
  position: relative;
  z-index: 3
}
.item-go:after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: var(--red-gradient);
  opacity: 0;
  -webkit-transition: .3s all ease-in-out;
  -o-transition: .3s all ease-in-out;
  transition: .3s all ease-in-out
}
.item-go:hover:after {
  opacity: 1
}
@media screen and (max-width:767px) {
  .item-go {
    padding: .625rem 1.25rem
  }
}
b {
  font-size: var(--font-size-medium)
}
.slider-arrow {
  min-width: 3rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--white);
  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;
  cursor: pointer;
  -webkit-box-shadow: var(--black-shadow-arrows);
  box-shadow: var(--black-shadow-arrows)
}
@media screen and (max-width:560px) {
  .slider-arrow {
    min-width: 2.5rem;
    width: 2.5rem;
    height: 2.5rem
  }
}
.slick-disabled img {
  -webkit-filter: var(--grey-filter);
  filter: var(--grey-filter)
}
.courses-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 75rem;
  margin: 0 auto;
  margin-top: 4.375rem;
  padding: 0 1.5625rem
}
@media screen and (max-width:1400px) {
  .courses-icons {
    padding: 0 .625rem
  }
}
@media screen and (max-width:560px) {
  .courses-icons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1.875rem;
    margin-top: 2.5rem
  }
}
.courses-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  gap: 1.25rem;
  text-align: center;
  max-width: 18.125rem
}
.courses-icon img {
  min-width: 3.75rem
}
@media screen and (max-width:560px) {
  .courses-icon {
    -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;
    text-align: left
  }
}
.description-alert {
  font-size: var(--font-size-medium);
  width: 100%;
  -webkit-box-shadow: var(--white-shadow-top);
  box-shadow: var(--white-shadow-top);
  background: var(--light-grey);
  border-radius: var(--default-border-radius);
  padding: 3.75rem 1.25rem;
  text-align: center;
  margin: 7.5rem 0 5.625rem 0
}
.description-alert a {
  color: var(--blue);
  -webkit-text-decoration: var(--grey) underline .0625rem;
  text-decoration: var(--grey) underline .0625rem;
  text-underline-offset: .3125rem;
  -webkit-text-decoration-color: var(--blue);
  text-decoration-color: var(--blue)
}
@media screen and (max-width:967px) {
  .description-alert {
    padding: 2.8125rem .9375rem
  }
}
@media screen and (max-width:767px) {
  .description-alert {
    margin: 3.125rem 0 3.125rem 0
  }
}
@media screen and (max-width:560px) {
  .description-alert {
    padding: 2.8125rem .625rem;
    width: calc(100% + 1.25rem);
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
    border-radius: 0
  }
}
@media screen and (max-width:1280px) {
  header .container {
    display: none
  }
}
.header-text {
  font-size: var(--font-size-small);
  padding-top: 1.25rem;
  padding-left: 17.5rem
}
@media (max-width:1580px) {
  .header-text {
    padding-left: 0
  }
}
.header-mobile {
  display: none;
  padding: .3125rem .9375rem
}
.header-mobile > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}
@media screen and (max-width:1280px) {
  .header-mobile {
    display: block
  }
}
@media screen and (max-width:560px) {
  .header-mobile {
    padding: .3125rem .625rem
  }
}
.header-mobile-logo {
  max-width: 9.375rem
}
@media screen and (max-width:480px) {
  .header-mobile-logo {
    max-width: 7.1875rem
  }
}
.header-mobile-logo img {
  width: 100%
}
.burger,
.popup-mobile-cancel,
.popup-mobile-catalog-cancel {
  cursor: pointer;
  z-index: 11;
  width: 1.875rem;
  height: 1.875rem;
  border-radius: var(--small-border-radius);
  background: var(--red);
  padding: .5625rem .5rem;
  -webkit-box-shadow: var(--black-shadow);
  box-shadow: var(--black-shadow);
  position: relative
}
.burger:last-child,
.popup-mobile-cancel:last-child,
.popup-mobile-catalog-cancel:last-child {
  margin: 0
}
.burger-stick {
  position: absolute;
  left: .5rem;
  width: .9375rem;
  height: .0625rem;
  background: var(--light-grey);
  -webkit-transition: .3s all ease-in-out;
  -o-transition: .3s all ease-in-out;
  transition: .3s all ease-in-out
}
.burger-stick:nth-child(1) {
  top: .625rem
}
.burger-stick:nth-child(2) {
  top: .9375rem
}
.burger-stick:nth-child(3) {
  top: 1.25rem
}
.burger-active {
  position: fixed;
  right: .625rem
}
.burger-active .burger-stick {
  top: .9375rem;
  width: 1.0625rem;
  left: .4375rem
}
.burger-active .burger-stick:nth-child(1) {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg)
}
.burger-active .burger-stick:nth-child(2) {
  opacity: 0
}
.burger-active .burger-stick:nth-child(3) {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg)
}
.burger-filter-active {
  right: 1.875rem
}
.popup-nav {
  background: rgba(0,0,0,.4);
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10
}
.popup-nav-active {
  display: block
}
.popup-nav-content {
  position: absolute;
  right: 0;
  width: 75%;
  padding: 4.375rem 1.25rem;
  background: var(--light-grey);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}
.popup-nav-content a {
  padding-bottom: 1.25rem
}
.header-mobile-text {
  font-size: var(--font-size-small);
  padding: 1.25rem 0
}
.header-mobile-tel {
  font-size: var(--font-size-medium)
}
.start-row {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}
.start-row > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: .625rem
}
.start-row > div a:nth-child(1) {
  margin-right: .625rem
}
.start-row > div a img {
  -webkit-filter: var(--white-filter);
  filter: var(--white-filter)
}
@media screen and (max-width:480px) {
  .start-row > div a:nth-child(1) {
    margin-right: .3125rem
  }
  .start-row > div a:nth-child(1) img {
    width: 1.3125rem
  }
  .start-row > div a:nth-child(2) img {
    width: 1.875rem
  }
}
.start-search {
  width: 15.625rem;
  position: relative
}
.start-search label input {
  font-size: var(--font-size-small);
  border-radius: var(--small-border-radius);
  padding: .5rem .3125rem;
  width: 100%;
  color: var(--light-grey);
  background: var(--blue-gradient-search)
}
.start-search label input::-webkit-input-placeholder {
  color: var(--light-grey)
}
.start-search label input::-moz-placeholder {
  color: var(--light-grey)
}
.start-search label input:-ms-input-placeholder {
  color: var(--light-grey)
}
.start-search label input::-ms-input-placeholder {
  color: var(--light-grey)
}
.start-search label input::placeholder {
  color: var(--light-grey)
}
.start-search button {
  position: absolute;
  right: .625rem;
  top: .375rem
}
.start-search button img {
  -webkit-filter: var(--white-filter);
  filter: var(--white-filter)
}
.button-feedback {
  display: none;
  padding: .9375rem 1.875rem;
  background: var(--red-gradient);
  font-size: var(--font-size-basic);
  margin: 3.125rem auto;
  border-radius: var(--default-border-radius);
  color: var(--white)
}
@media screen and (max-width:1280px) {
  .button-feedback {
    display: block
  }
}
.popup-catalog {
  overflow: auto;
  display: none;
  position: fixed;
  height: 100vh;
  width: 100vw;
  background: var(--light-grey);
  padding: .625rem 1.5625rem .625rem .625rem;
  z-index: 100
}
.popup-catalog-active {
  display: block
}
.popup-form {
  overflow: auto;
  display: none;
  position: fixed;
  height: 100vh;
  width: 100vw;
  background: var(--light-grey);
  padding: .625rem .625rem .625rem .625rem;
  z-index: 100
}
.popup-form textarea {
  margin-top: .625rem;
  height: 6.25rem
}
.popup-form button {
  width: 12.625rem;
  margin: 3.125rem auto 1.875rem;
  padding: .625rem;
  border-radius: var(--default-border-radius)
}
.popup-form-active {
  display: block
}
.popup-form-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 1.875rem
}
.popup-form-header img {
  max-width: 7.1875rem
}
.popup-form-item {
  margin-top: 1.25rem
}
.popup-form-item input {
  width: 100%;
  background: var(--white);
  margin-top: .625rem;
  padding: .3125rem .625rem;
  font-size: var(--font-size-medium);
  border-radius: var(--small-border-radius)
}
textarea {
  height: 10.875rem;
  width: 100%;
  outline: 0;
  resize: none;
  border: var(--default-border);
  font-size: var(--font-size-basic);
  font-family: var(--font-basic);
  padding: .3125rem;
  border-radius: var(--small-border-radius)
}
.popup-form-policy {
  color: var(--grey);
  text-align: center
}
.popup-form-policy a {
  color: var(--grey);
  -webkit-text-decoration: var(--grey) underline .0625rem;
  text-decoration: var(--grey) underline .0625rem;
  text-underline-offset: .3125rem
}
.purchase-button {
  border-radius: var(--default-border-radius)
}
@media (max-width:1670px) {
  .catalog-content-wrapper {
    max-width: 77.5rem
  }
}
@media (max-width:1260px) {
  .catalog-content-wrapper {
    max-width: 51.875rem
  }
}
@media (max-width:825px) {
  .catalog-content-wrapper {
    max-width: 23.125rem
  }
}
@media screen and (max-width:560px) {
  .catalog-content-wrapper {
    max-width: unset
  }
}
section {
  z-index: 1;
  position: relative
}
section.start {
  z-index: initial
}
.body-disabled {
  overflow: hidden
}
.header-404 {
  padding: 1.5625rem 10rem
}
@media screen and (max-width:1280px) {
  .header-404 {
    padding: .3125rem .625rem
  }
  .header-404 img {
    width: 9.375rem
  }
}
.content-404 {
  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-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: .625rem
}
@media screen and (max-width:767px) {
  .content-404 img {
    width: 100%
  }
}
.content-404 .description {
  text-align: center
}
.text-404 {
  padding: 7.5rem 0
}
@media screen and (max-width:1400px) {
  .text-404 {
    padding: 5.625rem 0
  }
}
@media screen and (max-width:767px) {
  .text-404 {
    padding: 3.125rem 0
  }
}
.button-404 {
  max-width: 21.875rem;
  margin: 3.75rem auto 0 auto;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}
@media screen and (max-width:767px) {
  .button-404 {
    width: 11.25rem;
    margin: 3.125rem auto 0 auto
  }
}
@media screen and (max-width:767px) {
  .button-404 span span {
    display: none
  }
}
.history .description {
  max-width: 80rem
}
.history-container {
  position: relative;
  margin: 0 auto;
  -webkit-box-shadow: var(--white-shadow-about);
  box-shadow: var(--white-shadow-about);
  clip-path: inset(0 -10px -50px 0)
}
@media screen and (max-width:1280px) {
  .history-container {
    padding: 0
  }
}
.history-shadow {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: -webkit-gradient(linear,left top,left bottom,from(rgba(227,230,237,0)),color-stop(69.03%,#e3e6ed));
  background: -o-linear-gradient(top,rgba(227,230,237,0) 0,#e3e6ed 69.03%);
  background: linear-gradient(180deg,rgba(227,230,237,0) 0,#e3e6ed 69.03%);
  height: 40%
}
.history-white-shadow {
  -webkit-box-shadow: var(--white-shadow-about);
  box-shadow: var(--white-shadow-about);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%
}
.history-slider {
  max-width: 102.5rem;
  padding: 0 1.25rem;
  margin: 6.25rem auto 0 auto
}
@media screen and (max-width:967px) {
  .history-slider {
    margin-top: 3.75rem
  }
}
@media screen and (max-width:767px) {
  .history-slider {
    display: none!important
  }
}
.history-item {
  position: relative;
  padding: 11.25rem .9375rem 2.5rem 0
}
.history-item .history-item-content img {
  max-width: 9.6875rem
}
.history-item-year {
  font-size: 2.5rem;
  font-family: var(--font-bebas);
  color: var(--white);
  position: absolute;
  top: 2.5rem;
  left: 1.875rem
}
.history-item-year-container {
  position: absolute;
  left: 0;
  bottom: 0
}
.history-item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 1.25rem;
  height: 8.125rem;
  max-width: 18.75rem;
  width: 18.75rem;
  min-width: 18.75rem;
  font-size: var(--font-size-basic);
  -webkit-transform: translateX(80px);
  -ms-transform: translateX(80px);
  transform: translateX(80px)
}
.big-year {
  max-width: 5rem;
  top: .9375rem;
  left: 1.75rem
}
.history-slider-arrows,
.history-slider-arrows-mobile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  gap: 2.5rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transform: translateY(40px);
  -ms-transform: translateY(40px);
  transform: translateY(40px);
  width: 100%
}
@media screen and (max-width:767px) {
  .history-slider-arrows,
  .history-slider-arrows-mobile {
    display: none
  }
}
.history-slider-arrows-mobile {
  display: none;
  -webkit-transform: translateY(-25px);
  -ms-transform: translateY(-25px);
  transform: translateY(-25px)
}
@media screen and (max-width:767px) {
  .history-slider-arrows-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
  }
}
.history-prev img {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg)
}
.history-next img {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg)
}
.container-championship {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
  margin-top: 6.875rem
}
@media screen and (max-width:1400px) {
  .container-championship {
    margin-top: 5rem
  }
}
@media screen and (max-width:767px) {
  .container-championship {
    margin-top: 3.125rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }
}
@media screen and (max-width:560px) {
  .container-championship {
    padding: 0
  }
}
.championship-item {
  padding: 1.875rem 1.25rem;
  border-radius: var(--default-border-radius);
  border: var(--default-border);
  border-color: var(--white);
  width: 100%
}
@media screen and (max-width:767px) {
  .championship-item img {
    height: 1.5rem
  }
}
@media screen and (max-width:767px) {
  .championship-item {
    border: none;
    -webkit-box-shadow: var(--white-shadow-top);
    box-shadow: var(--white-shadow-top);
    padding: 3.125rem .625rem 1.875rem .625rem
  }
}
@media screen and (max-width:560px) {
  .championship-item {
    border-radius: unset
  }
}
.championship-item:nth-child(1) {
  background: var(--white)
}
@media screen and (max-width:767px) {
  .championship-item:nth-child(1) {
    background: var(--light-grey)
  }
}
.championship-item:nth-child(2) {
  background: 0 0
}
@media screen and (max-width:767px) {
  .championship-item:nth-child(2) {
    background: var(--light-grey)
  }
}
.championship-item-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 1.25rem;
  margin-bottom: 1.5625rem
}
@media screen and (max-width:767px) {
  .championship-item-title {
    gap: .625rem
  }
}
.championship-item-text {
  font-size: var(--font-size-basic)
}
.participation {
  margin-top: 9.6875rem
}
@media screen and (max-width:1400px) {
  .participation {
    margin-top: 8.75rem
  }
}
@media screen and (max-width:767px) {
  .participation {
    margin-top: 1.875rem
  }
}
@media screen and (max-width:480px) {
  .participation {
    margin-top: 1.5625rem
  }
}
.achievements h2 {
  padding: 7.5rem 0
}
@media screen and (max-width:1400px) {
  .achievements h2 {
    padding: 5.625rem 0
  }
}
@media screen and (max-width:767px) {
  .achievements h2 {
    padding: 3.125rem 0
  }
}
.achievements-slider {
  max-width: 82.5rem
}
@media screen and (max-width:1800px) {
  .achievements-slider {
    max-width: 67.5rem
  }
}
@media screen and (max-width:1280px) {
  .achievements-slider {
    max-width: 50rem
  }
}
@media screen and (max-width:1024px) {
  .achievements-slider {
    max-width: 25rem
  }
}
@media screen and (max-width:560px) {
  .achievements-slider {
    max-width: 20rem;
    width: 100%
  }
}
@media screen and (max-width:480px) {
  .achievements-slider {
    max-width: 16.25rem
  }
}
@media (max-width:400px) {
  .achievements-slider {
    max-width: 13.75rem
  }
}
.achievements-slider img {
  width: 25rem;
  height: 35rem;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: .3125rem
}
@media screen and (max-width:1800px) {
  .achievements-slider img {
    width: 21.875rem;
    height: 30.625rem
  }
}
@media screen and (max-width:1280px) {
  .achievements-slider img {
    width: 15.625rem;
    height: 21.875rem
  }
}
@media screen and (max-width:1024px) {
  .achievements-slider img {
    width: 100%;
    max-width: 25rem;
    height: 35rem
  }
}
@media screen and (max-width:560px) {
  .achievements-slider img {
    max-width: 20rem;
    height: 28.125rem
  }
}
@media screen and (max-width:480px) {
  .achievements-slider img {
    max-width: 16.25rem;
    height: 22.5rem
  }
}
@media (max-width:400px) {
  .achievements-slider img {
    max-width: 13.75rem;
    height: 19.375rem
  }
}
.achievements-slider-wrapper {
  margin: 0 auto;
  max-width: 100rem;
  position: relative;
  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
}
@media screen and (max-width:560px) {
  .achievements-slider-wrapper {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
  }
}
.about-reviews-prev,
.achievements-prev {
  margin-right: 7rem
}
.about-reviews-prev img,
.achievements-prev img {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg)
}
@media screen and (max-width:1800px) {
  .about-reviews-prev,
  .achievements-prev {
    margin-right: 1.5625rem
  }
}
@media screen and (max-width:767px) {
  .about-reviews-prev,
  .achievements-prev {
    margin-right: .9375rem
  }
}
@media screen and (max-width:560px) {
  .about-reviews-prev,
  .achievements-prev {
    margin-left: .625rem;
    margin-right: 0
  }
}
.about-reviews-next,
.achievements-next {
  margin-left: 4.375rem
}
.about-reviews-next img,
.achievements-next img {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg)
}
@media screen and (max-width:1800px) {
  .about-reviews-next,
  .achievements-next {
    margin-left: 1.25rem
  }
}
@media screen and (max-width:767px) {
  .about-reviews-next,
  .achievements-next {
    margin-left: .9375rem
  }
}
@media screen and (max-width:560px) {
  .about-reviews-next,
  .achievements-next {
    margin-right: .625rem;
    margin-left: 0
  }
}
.about-reviews-slider {
  max-width: 82.5rem;
  width: 100%
}
@media (max-width:1500px) {
  .about-reviews-slider {
    max-width: 87%
  }
}
@media screen and (max-width:967px) {
  .about-reviews-slider {
    max-width: 100%
  }
}
.review-item-wrapper {
  position: relative;
  padding: 1.875rem 1.3125rem 1.125rem 1.125rem
}
@media screen and (max-width:767px) {
  .review-item-wrapper {
    padding: 0;
    padding-bottom: 1.5625rem
  }
}
.about-reviews {
  padding-bottom: .3125rem
}
.about-reviews .slick-dots {
  bottom: -57px
}
@media screen and (max-width:560px) {
  .about-reviews .slick-dots {
    bottom: -52px
  }
}
.about-reviews .slick-dots li {
  margin: 0 .75rem
}
.about-reviews .slick-dots li.slick-active button:before {
  opacity: 1
}
.about-reviews .slick-dots li button {
  -webkit-box-shadow: var(--black-shadow-dots);
  box-shadow: var(--black-shadow-dots);
  border-radius: 50%;
  overflow: hidden;
  width: .9375rem;
  height: .9375rem
}
.about-reviews .slick-dots li button:before {
  width: .9375rem;
  height: .9375rem;
  top: .0625rem;
  left: -2px;
  line-height: 1rem;
  color: var(--white);
  font-size: 1.1875rem;
  opacity: 1
}
.about-reviews .slick-dots li.slick-active button:before {
  color: var(--light-blue)
}
.about-reviews h2 {
  padding-top: 7.1875rem;
  padding-bottom: 5.625rem
}
@media screen and (max-width:1400px) {
  .about-reviews h2 {
    padding: 5.625rem 0 4.375rem 0
  }
}
@media screen and (max-width:967px) {
  .about-reviews h2 {
    padding: 3.125rem 0 0 0
  }
}
@media screen and (max-width:767px) {
  .about-reviews h2 {
    padding: 3.125rem 0
  }
}
.about-reviews-slider-wrapper {
  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
}
@media screen and (max-width:767px) {
  .about-reviews-slider-wrapper {
    padding-top: 0;
    background: -webkit-gradient(linear,left top,left bottom,from(rgba(227,230,237,0)),to(#e3e6ed));
    background: -o-linear-gradient(top,rgba(227,230,237,0) 0,#e3e6ed 100%);
    background: linear-gradient(180deg,rgba(227,230,237,0) 0,#e3e6ed 100%)
  }
}
.about-reviews-shadow {
  -webkit-box-shadow: var(--white-shadow-bottom);
  box-shadow: var(--white-shadow-bottom);
  width: 100%;
  position: absolute;
  bottom: 0;
  height: 3.125rem;
  z-index: -1;
  display: none
}
@media screen and (max-width:767px) {
  .about-reviews-shadow {
    display: block
  }
}
.about-reviews-prev {
  margin-right: 5.8125rem
}
@media screen and (max-width:1800px) {
  .about-reviews-prev {
    margin-right: .625rem
  }
}
@media screen and (max-width:967px) {
  .about-reviews-prev {
    display: none!important
  }
}
.about-reviews-next {
  margin-left: 5.5rem
}
@media screen and (max-width:1800px) {
  .about-reviews-next {
    margin-left: .625rem
  }
}
@media screen and (max-width:967px) {
  .about-reviews-next {
    display: none!important
  }
}
.review-item {
  background: var(--light-grey);
  -webkit-box-shadow: .125rem -14px 1.4375rem .125rem rgba(255,255,255,.71);
  box-shadow: .125rem -14px 1.4375rem .125rem rgba(255,255,255,.71);
  border-radius: var(--default-border-radius);
  padding: 3.75rem
}
@media screen and (max-width:967px) {
  .review-item {
    padding: 1.875rem 1.25rem
  }
}
@media screen and (max-width:767px) {
  .review-item {
    border-radius: unset;
    background: 0 0;
    -webkit-box-shadow: unset;
    box-shadow: unset;
    padding: 0
  }
}
.review-item-text {
  font-size: var(--font-size-medium)
}
.review-item-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding-top: 2.5rem;
  gap: 1.25rem
}
.history-slider-mobile {
  display: none;
  padding-bottom: 1.875rem
}
@media screen and (max-width:767px) {
  .history-slider-mobile {
    display: block
  }
}
.history-slider-mobile .history-item {
  min-width: unset;
  max-width: unset;
  width: 100%;
  display: -webkit-box!important;
  display: -ms-flexbox!important;
  display: flex!important;
  -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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
  padding-top: 3.125rem
}
.history-slider-mobile .history-item-year-container {
  position: relative;
  left: 0;
  bottom: 0;
  max-width: 12.5rem;
  -webkit-transform: translateX(43px);
  -ms-transform: translateX(43px);
  transform: translateX(43px);
  width: 100%
}
.history-slider-mobile .history-item-year-container img {
  width: 100%;
  -webkit-transform: translateX(-10px);
  -ms-transform: translateX(-10px);
  transform: translateX(-10px)
}
.history-slider-mobile .history-item-year {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  height: 2.875rem;
  top: 2.5625rem;
  left: 1.25rem;
  z-index: 1
}
.history-slider-mobile .big-year {
  -webkit-transform: translate(79%,56%);
  -ms-transform: translate(79%,56%);
  transform: translate(79%,56%)
}
@media screen and (max-width:767px) {
  .history-slider-mobile .big-year {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    height: 5.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    top: 1.25rem;
    left: 1.1875rem
  }
}
.history-slider-mobile .history-item-content {
  padding-top: 1.5625rem;
  max-width: 18.75rem;
  text-align: center;
  -webkit-transform: unset;
  -ms-transform: unset;
  transform: unset;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}
* {
  margin: 0;
  padding: 0
}
*,
:after,
:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}
html {
  min-height: 100vh
}
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}
li,
ul {
  list-style: none
}
a {
  text-decoration: none;
  cursor: pointer;
  color: #000
}
button {
  border: none;
  background: 0 0;
  cursor: pointer;
  padding: 0
}
input {
  border: none;
  outline: 0
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none
}
input[type=number],
input[type=number]:focus,
input[type=number]:hover {
  -webkit-appearance: none;
  appearance: none;
  -moz-appearance: textfield
}
svg {
  width: 100%
}
.catalog .description {
  max-width: 80rem
}
.catalog-content-wrapper {
  padding-left: 2.5rem
}
@media screen and (max-width:967px) {
  .catalog-content-wrapper {
    padding: 0
  }
}
.catalog-content-wrapper.container {
  padding: 7.5rem 1.5625rem 0 1.5625rem
}
@media screen and (max-width:1280px) {
  .catalog-content-wrapper.container {
    padding: 5rem 1.5625rem 0 1.5625rem
  }
}
@media screen and (max-width:967px) {
  .catalog-content-wrapper.container {
    padding: 3.125rem .9375rem 0 .9375rem
  }
}
@media screen and (max-width:560px) {
  .catalog-content-wrapper.container {
    padding: 3.125rem .625rem 0 .625rem
  }
}
.catalog-link-more {
  display: block;
  font-size: var(--font-size-basic);
  width: 100%;
  margin-top: 3.125rem
}
@media screen and (max-width:767px) {
  .catalog-link-more {
    margin-bottom: 0;
    margin-top: 1.875rem
  }
}
.filter-main .filter-section:last-child {
  border: none
}
.catalog-wrapper {
  padding: 7.5rem 1.5625rem 0 1.5625rem;
  max-width: 103.125rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative
}
@media screen and (max-width:1400px) {
  .catalog-wrapper {
    padding: 5.625rem 1.5625rem 0 1.5625rem
  }
}
@media screen and (max-width:967px) {
  .catalog-wrapper {
    padding: .9375rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
  }
  .catalog-wrapper .filter {
    display: none
  }
}
@media screen and (max-width:560px) {
  .catalog-wrapper {
    padding: .625rem
  }
}
.filter {
  -webkit-box-shadow: var(--white-shadow-only-bottom);
  box-shadow: var(--white-shadow-only-bottom);
  min-width: 23.125rem;
  width: 23.125rem;
  border-radius: var(--default-border-radius);
  overflow: hidden;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content
}
.filter .button {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 15rem;
  margin: 0 auto;
  padding: 1.125rem
}
@media screen and (max-width:967px) {
  .filter {
    -webkit-box-shadow: none;
    box-shadow: none
  }
}
.filter-header {
  background: var(--blue-gradient);
  padding: 1rem 1.875rem;
  text-align: start;
  color: var(--white);
  font-size: var(--font-size-medium)
}
.filter-section {
  background: var(--light-grey);
  padding: 3.125rem 1.875rem;
  border-bottom: var(--default-border);
  border-color: var(--white)
}
.filter-section[data-section=filter] .filter-list-title {
  cursor: pointer
}
.filter-list-title {
  font-size: var(--font-size-medium);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}
.filter-list {
  margin-top: 2.1875rem;
  display: none
}
.filter-list-item {
  padding-bottom: .9375rem
}
.filter-list-item label {
  cursor: pointer
}
.filter-search-input {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1.0625rem .9375rem;
  background: var(--white-gradient);
  border-radius: var(--small-border-radius);
  border: .0625rem solid var(--white)
}
.filter-search-input input {
  width: 100%;
  font-size: var(--font-size-basic);
  background: 0 0
}
.filter-search-input button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
}
.filter-reset {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 1.875rem auto 0 auto;
  font-size: var(--font-size-basic)
}
.catalog-item {
  max-width: 23.125rem;
  width: 100%;
  border-radius: var(--default-border-radius);
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  cursor: pointer;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content
}
@media screen and (max-width:560px) {
  .catalog-item {
    max-width: unset
  }
}
.catalog-item > img {
  max-height: 12.5rem;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: .3s all ease-in-out;
  -o-transition: .3s all ease-in-out;
  transition: .3s all ease-in-out
}
@media screen and (max-width:480px) {
  .catalog-item > img {
    width: 100%
  }
}
.catalog-item:hover > img {
  -webkit-filter: brightness(.5);
  filter: brightness(.5)
}
.catalog-item:hover .catalog-item-more .item-go:after {
  opacity: 1
}
.catalog-item-content {
  padding: 2.1875rem 1.625rem 1.875rem 1.625rem;
  background: var(--white)
}
@media screen and (max-width:767px) {
  .catalog-item-content {
    padding: .625rem .3125rem 1.4375rem .3125rem
  }
}
.catalog-item-text {
  height: 12.5rem;
  margin-bottom: .9375rem;
  overflow: hidden;
  font-size: var(--font-size-medium)
}
@media screen and (max-width:560px) {
  .catalog-item-text {
    height: 7.5rem
  }
}
.catalog-item-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.875rem
}
.catalog-item-info > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: .625rem
}
.filter-list-item label {
  display: block;
  position: relative;
  padding-left: 2.1875rem;
  margin-bottom: .75rem;
  cursor: pointer;
  font-size: var(--font-size-medium);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none
}
.filter-list-item label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0
}
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 1.5rem;
  width: 1.5rem;
  background-color: transparent;
  border: var(--default-border);
  border-color: var(--white);
  border-radius: var(--small-border-radius)
}
.filter-list-item input:checked ~ .checkmark {
  background-color: var(--light-blue)
}
.checkmark:after {
  content: "";
  position: absolute;
  display: none
}
.filter-list-item input:checked ~ .checkmark:after {
  display: block
}
.filter-list-item .checkmark:after {
  left: .5rem;
  top: .25rem;
  width: .375rem;
  height: .625rem;
  border: solid #fff;
  border-width: 0 .1875rem .1875rem 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg)
}
.filter-radio .filter-list-item .checkmark {
  border-radius: 50%;
  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
}
.filter-radio .filter-list-item input:checked ~ .checkmark {
  background-color: transparent;
  border-color: var(--light-blue)
}
.filter-radio .filter-list-item .checkmark:after {
  position: unset;
  width: .875rem;
  height: .875rem;
  border: none;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  border-radius: 50%;
  background: var(--light-blue)
}
.catalog-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 2.5rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content
}
@media screen and (max-width:967px) {
  .catalog-content {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
  }
}
@media screen and (max-width:767px) {
  .catalog-content {
    padding: 0
  }
}
.popup-catalog .filter {
  width: 100%
}
.popup-catalog .filter .checkmark {
  top: -3px
}
.popup-catalog .filter-list {
  display: block
}
.popup-catalog .filter-list-title {
  font-weight: 700
}
.popup-catalog .filter-list-title img {
  display: none
}
.popup-catalog .filter-header {
  display: none
}
.popup-catalog .filter-section {
  padding: 1.875rem 0
}
.contacts .vacancy-title {
  padding-bottom: 5.625rem;
  padding-top: 7.5rem
}
@media screen and (max-width:1400px) {
  .contacts .vacancy-title {
    padding-top: 5.625rem;
    padding-bottom: 3.75rem
  }
}
@media screen and (max-width:767px) {
  .contacts .vacancy-title {
    padding: 3.125rem 0
  }
}
.contacts .container {
  padding-bottom: 0
}
.contacts .container .vacancy:last-child .description-alert {
  margin-bottom: 0
}
.contacts h2 {
  padding-bottom: 7.5rem
}
@media screen and (max-width:767px) {
  .contacts h2 {
    padding-bottom: 2.5rem
  }
}
.contacts .description {
  margin-top: 0;
  max-width: 80rem;
  padding-bottom: 7.5rem
}
@media screen and (max-width:767px) {
  .contacts .description {
    padding-bottom: 3.125rem
  }
}
@media screen and (max-width:560px) {
  .contacts .description {
    padding: 0;
    padding-bottom: 3.125rem
  }
}
.map-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem
}
@media screen and (max-width:1400px) {
  .map-container {
    gap: 1.25rem
  }
}
@media screen and (max-width:767px) {
  .map-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }
}
.map {
  width: 100%;
  border-radius: var(--default-border-radius)
}
.map-contacts {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2.5rem
}
.map-addresses,
.map-info {
  background: var(--white);
  padding: 1.875rem 1.5625rem;
  border-radius: var(--default-border-radius);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.25rem
}
@media screen and (max-width:639px) {
  .map-addresses,
  .map-info {
    background: unset;
    padding: 0
  }
}
.map-info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start
}
.map-info-item-row {
	display: flex;
	justify-content: flex-start;
	width: 100%;
}
.map-info-item-row .map-info-item-new {
	width: 50%;
}
.map-info-item-new {
	font-size: 18px;
}
.map-info-item-new .map-info-item-text {
	padding-left: 10px;
}
.map-info-item-new span {
	font-size: 18px;
}
.map-info-item-new b.mb21 {
	margin: 0 0 21px;
}
.map-info-item-new b {
	font-size: 18px;
	display: block;
	margin: 0 0 6px;
}
@media screen and (max-width:639px) {
	.map-info-item-row {
		flex-direction: column;
		gap: 30px;
	}
	.map-info-item-row .map-info-item-new {
		width: 100%;
	}
	.map-info-item-new, .map-info-item-new span, .map-info-item-new b {
		font-size: 14px;
	}
}
.map-info-item img {
  -webkit-filter: var(--black-filter);
  filter: var(--black-filter)
}
.map-info-item-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 1.25rem
}
@media screen and (max-width:639px) {
  .map-info-item-text {
    padding-left: .75rem
  }
}
.map-addresses-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 1.25rem
}
@media screen and (max-width:639px) {
  .map-addresses-title {
    gap: .75rem
  }
}
.map-addresses-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.25rem
}
.vacancy-requirements {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.75rem
}
@media screen and (max-width:767px) {
  .vacancy-requirements {
    gap: 1.875rem
  }
}
@media screen and (max-width:639px) {
  .vacancy-requirements {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }
}
.vacancy-requirements-list {
  width: 100%;
  max-width: 48.75rem
}
.vacancy-requirements-list ul {
  margin-top: .625rem;
  padding-left: 1.875rem
}
.vacancy-requirements-list ul li {
  list-style: disc
}
.vacancy-requirements-expectations-conditions {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2.5rem
}
.contacts-description-alert {
  margin-top: 5.625rem;
  margin-bottom: 7.5rem
}
@media screen and (max-width:767px) {
  .contacts-description-alert {
    margin: 3.125rem 0 3.125rem 0
  }
}
.web-footer {
  margin-top: 29.375rem
}
@media screen and (max-width:1280px) {
  .web-footer {
    display: none
  }
}
.web-footer {
  background-image: -webkit-gradient(linear,right top,left top,from(#3e60c1),color-stop(#3858ac),color-stop(#335098),color-stop(#2f4884),color-stop(#2c4070),color-stop(#2e4375),color-stop(#304579),color-stop(#32487e),color-stop(#3a569c),color-stop(#4365bb),color-stop(#4e73db),to(#5a82fc));
  background-image: -o-linear-gradient(right,#3e60c1,#3858ac,#335098,#2f4884,#2c4070,#2e4375,#304579,#32487e,#3a569c,#4365bb,#4e73db,#5a82fc);
  background-image: linear-gradient(to left,#3e60c1,#3858ac,#335098,#2f4884,#2c4070,#2e4375,#304579,#32487e,#3a569c,#4365bb,#4e73db,#5a82fc);
  height: 43.75rem
}
@media screen and (max-width:1800px) {
  .web-footer {
    padding: 0 5.625rem
  }
}
@media (max-width:1500px) {
  .web-footer {
    height: 50rem
  }
}
@media screen and (max-width:1400px) {
  .web-footer {
    padding: 0 4.0625rem
  }
}
.form-container {
  -webkit-transform: translateY(-350px);
  -ms-transform: translateY(-350px);
  transform: translateY(-350px)
}
@media screen and (max-width:1400px) {
  .form-container {
    padding: 0
  }
}
.web-footer form {
  padding: 3.75rem;
  border-radius: var(--default-border-radius);
  background: var(--white)
}
.web-footer form h2 {
  padding-bottom: 5.4375rem
}
.web-footer form .field > span {
  display: block;
  margin-bottom: 1.25rem
}
.web-footer form .field input {
  border-radius: var(--small-border-radius);
  padding-left: .625rem;
  width: 100%;
  height: 3.5rem;
  border: var(--default-border);
  font-size: var(--font-size-basic)
}
.form-alert {
  font-size: var(--font-size-small);
  color: var(--grey);
  margin-bottom: 2.8125rem
}
.form-star {
  color: var(--red)
}
.form-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5.625rem;
  font-size: var(--font-size-basic)
}
@media screen and (max-width:1400px) {
  .form-content {
    gap: 1.875rem
  }
}
.form-left {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem
}
@media screen and (max-width:1400px) {
  .form-left {
    gap: 1.25rem
  }
}
.form-left-1,
.form-left-2 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.3125rem
}
.form-right {
  width: 91%
}
.form-right p {
  padding-top: 1.3125rem;
  padding-bottom: 3.75rem;
  width: 90%
}
@media screen and (max-width:1400px) {
  .form-right {
    width: 70%
  }
}
.form-address-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  font-size: var(--font-size-basic);
  gap: 1.25rem;
  padding: .625rem;
  padding-left: 0;
  padding-bottom: .25rem
}
.form-address-item b {
  font-size: var(--font-size-basic)
}
.form-address-item img {
  width: 1.875rem;
  -webkit-transform: translateX(-2px);
  -ms-transform: translateX(-2px);
  transform: translateX(-2px)
}
.form-address-item:nth-child(3) {
  width: 100%;
  margin-top: 2.5rem
}
.form-address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 95%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: .25rem
}
.form-send {
  margin-top: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2.5rem
}
.form-send .button {
  width: 21.25rem;
  padding: .6875rem 1.25rem .6875rem 1rem
}
.form-policy {
  max-width: 24.375rem;
  color: var(--grey);
  font-size: var(--font-size-little)
}
.form-policy a {
  color: var(--grey);
  -webkit-text-decoration: var(--grey) underline .0625rem;
  text-decoration: var(--grey) underline .0625rem;
  text-underline-offset: .3125rem
}
.footer-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  color: var(--white)
}
.footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8.125rem
}
@media screen and (max-width:1400px) {
  .footer-nav {
    gap: 5.3125rem
  }
}
.footer-nav > div {
  min-width: 6.9375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: .5rem
}
.footer-nav > div a {
  color: var(--white);
  -webkit-transition: .3s all ease-in-out;
  -o-transition: .3s all ease-in-out;
  transition: .3s all ease-in-out
}
.footer-nav > div a:hover {
  color: var(--blue)
}
.form-content-container {
  -webkit-transform: translateY(-300px);
  -ms-transform: translateY(-300px);
  transform: translateY(-300px);
  position: relative
}
.footer-desc {
  max-width: 30.625rem;
  padding-right: 1.25rem
}
.footer-socials {
  margin-bottom: 2.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end
}
.footer-socials img {
  -webkit-filter: var(--white-filter);
  filter: var(--white-filter)
}
.footer-dipol {
  padding-left: .9375rem;
  text-align: right
}
.footer-go {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: absolute;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: .75rem;
  right: -80px;
  top: -150px;
  cursor: pointer
}
.footer-go div {
  border-radius: 50%;
  background: var(--white)
}
.footer-go div:nth-child(1) {
  width: 3rem;
  height: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}
.footer-go div:nth-child(2) {
  width: .5rem;
  height: .5rem
}
.footer-go div:nth-child(3) {
  width: .25rem;
  height: .25rem
}
@media screen and (max-width:1400px) {
  .footer-go {
    right: -60px
  }
}
.mobile-footer {
  display: none;
  position: relative;
  background: var(--light-grey);
  -webkit-box-shadow: var(--white-shadow-top);
  box-shadow: var(--white-shadow-top);
  margin-top: 4.6875rem
}
@media screen and (max-width:1280px) {
  .mobile-footer {
    display: block
  }
}
.mobile-footer .button-feedback {
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: 3.125rem auto 0
}
.mobile-footer .footer-go {
  top: -25px;
  right: .625rem
}
.mobile-footer .footer-go div:nth-child(1) img {
  -webkit-filter: var(--black-filter);
  filter: var(--black-filter)
}
.mobile-footer .footer-go div:nth-child(2) {
  display: none
}
.mobile-footer .footer-go div:nth-child(3) {
  display: none
}
.mobile-footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: .9375rem .9375rem 1.875rem .9375rem;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end
}
.mobile-footer-nav > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: .625rem
}
.mobile-footer-nav > div a {
  -webkit-text-decoration: var(--grey) underline .0625rem;
  text-decoration: var(--grey) underline .0625rem;
  text-underline-offset: .3125rem;
  -webkit-text-decoration-color: var(--black);
  text-decoration-color: var(--black)
}
@media screen and (max-width:767px) {
  .mobile-footer-nav {
    padding: .9375rem .625rem 1.875rem .625rem
  }
  .mobile-footer-nav img {
    max-width: 7.1875rem
  }
}
.mobile-footer-black {
  background: var(--black);
  color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: .9375rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}
.mobile-footer-black .footer-socials {
  margin: 0
}
@media screen and (max-width:560px) {
  .mobile-footer-black {
    padding: .625rem
  }
}
.news {
  position: relative;
  z-index: 1
}
.news .news-tags {
  margin-top: 3.125rem;
  max-width: 23.125rem;
  background: var(--white);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  -webkit-box-shadow: var(--black-shadow-top);
  box-shadow: var(--black-shadow-top);
  border-radius: var(--default-border-radius);
  overflow: hidden
}
@media screen and (max-width:1400px) {
  .news .news-tags {
    display: none
  }
}
.news .news-tags-header {
  color: var(--white);
  padding: 1rem 1.875rem;
  font-size: var(--font-size-medium);
  background: var(--blue-gradient)
}
.news .news-tag {
  cursor: pointer;
  padding: .3125rem .625rem;
  font-size: var(--font-size-small);
  border-radius: var(--default-border-radius);
  border: var(--default-border);
  -webkit-transition: .3s all ease-in-out;
  -o-transition: .3s all ease-in-out;
  transition: .3s all ease-in-out
}
.news .news-tag:hover {
  background: var(--light-grey)
}
.news .news-tags-content {
  padding: 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: .3125rem;
  background: var(--white)
}
.news .news-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 3.75rem;
  padding-right: 1.25rem
}
@media screen and (max-width:1400px) {
  .news .news-content {
    padding-right: 0
  }
}
@media screen and (max-width:560px) {
  .news .news-content {
    padding-top: 1.875rem
  }
}
.news .news-container {
  padding: 0 2.5rem 0 1.25rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0
}
@media screen and (max-width:1400px) {
  .news .news-container {
    padding: 0 1.5625rem
  }
}
@media screen and (max-width:967px) {
  .news .news-container {
    padding: 0 .9375rem
  }
}
@media screen and (max-width:560px) {
  .news .news-container {
    padding: 0 .625rem
  }
}
.news .description {
  max-width: 48.75rem
}
.news .item-go {
  display: none
}
@media screen and (max-width:967px) {
  .news .item-go {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
  }
}
.news .news-item {
  -webkit-box-shadow: none;
  box-shadow: none;
  max-width: 74.375rem;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  padding: 3.75rem 0;
  border-bottom: .0625rem solid var(--white);
  border-radius: 0
}
.news .news-item:last-child {
  border-bottom: none;
  padding-bottom: 0
}
.news .news-item p {
  height: 6.875rem
}
@media screen and (max-width:967px) {
  .news .news-item {
    border-radius: var(--default-border-radius);
    max-width: 23.125rem;
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border: none;
    margin: .9375rem 0;
    background: var(--light-grey);
    -webkit-box-shadow: var(--white-shadow-only-bottom);
    box-shadow: var(--white-shadow-only-bottom)
  }
}
@media screen and (max-width:639px) {
  .news .news-item {
    max-width: unset
  }
}
.news .news-item-content {
  padding: 0 2.5rem;
  background: 0 0
}
@media screen and (max-width:967px) {
  .news .news-item-content {
    padding: .625rem .3125rem
  }
}
.news .news-item-img {
  height: unset;
  max-width: 23.4375rem;
  width: 100%;
  max-height: 12.5rem;
  border-radius: var(--default-border-radius)
}
@media screen and (max-width:639px) {
  .news .news-item-img {
    max-width: unset
  }
}
.news_item .container {
  max-width: 83.125rem;
  padding-bottom: 0
}
.news_item h2 {
  padding-bottom: 7.5rem
}
.news_item img {
  max-width: 40rem;
  /*width: 100%;*/
  margin-bottom: 2.5rem;
  border-radius: var(--default-border-radius)
}
.news_item p {
  padding-bottom: 3.125rem
}
@media screen and (max-width:1280px) {
  .news_item h2 {
    padding-bottom: 3.75rem
  }
}
.news_item .description-alert {
  max-width: 100rem;
  margin: 0 auto
}
@media screen and (max-width:967px) {
  .news_item .description-alert {
    border-radius: unset
  }
}
.description-alert-container {
  padding: 0 7.5rem
}
@media screen and (max-width:1400px) {
  .description-alert-container {
    padding: 0 4.0625rem
  }
}
@media screen and (max-width:967px) {
  .description-alert-container {
    padding: 0
  }
}
.niocr .description {
  max-width: 103.125rem
}
.niocr .last-year-span {
  display: block;
  font-weight: 700;
  margin-top: 3.125rem
}
.niocr h2 {
  padding: 0 .625rem
}
.niocr-content {
  padding-top: 7.5rem
}
@media screen and (max-width:1280px) {
  .niocr-content {
    padding: 3.125rem 0 0 0
  }
}
.niocr-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  margin-bottom: 3.75rem;
  border-bottom: var(--default-border);
  padding-bottom: 3.75rem;
  border-color: var(--white);
  gap: 2.5rem
}
.niocr-item:last-child {
  clip-path: inset(-50px 0 0 0);
  border: none;
  padding-bottom: 0
}
@media screen and (max-width:967px) {
  .niocr-item:last-child {
    -webkit-box-shadow: 0 -19px .625rem 0 #fff,0 -48px 2.1875rem 0 #fff;
    box-shadow: 0 -19px .625rem 0 #fff,0 -48px 2.1875rem 0 #fff;
    clip-path: inset(0 -10px -50px 0)
  }
}
.niocr-item ul {
  padding-left: 2.1875rem
}
.niocr-item li {
  list-style: disc
}
.niocr-item img {
  max-width: 23.125rem;
  width: 100%;
  max-height: 15.625rem;
  border-radius: var(--default-border-radius)
}
@media screen and (max-width:1280px) {
  .niocr-item img {
    margin-bottom: 1.875rem
  }
}
@media screen and (max-width:767px) {
  .niocr-item img {
    max-width: unset;
    max-height: unset;
    width: 100%
  }
}
.niocr-item b {
  font-size: var(--font-size-basic)
}
@media screen and (max-width:1280px) {
  .niocr-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
    background: -webkit-gradient(linear,left top,left bottom,from(#e3e6ed),color-stop(60%,rgba(236,240,243,0)));
    background: -o-linear-gradient(top,#e3e6ed 0,rgba(236,240,243,0) 60%);
    background: linear-gradient(180deg,#e3e6ed 0,rgba(236,240,243,0) 60%);
    padding: 3.125rem .9375rem 3.125rem .9375rem;
    -webkit-box-shadow: var(--white-shadow-top);
    box-shadow: var(--white-shadow-top);
    margin: 0;
    border: none
  }
}
@media screen and (max-width:560px) {
  .niocr-item {
    padding: 3.125rem .625rem 3.125rem .625rem
  }
}
.niocr-item-title {
  padding-bottom: 1.5625rem;
  font-weight: 700
}
.niocr-item-text {
  font-size: var(--font-size-basic)
}
.niocr-item-title-mobile {
  display: none
}
@media screen and (max-width:1280px) {
  .niocr-item-title-mobile {
    display: block
  }
}
.niocr-item-title-desktop {
  display: block
}
@media screen and (max-width:1280px) {
  .niocr-item-title-desktop {
    display: none
  }
}
.product {
  font-size: var(--font-size-medium)
}
.product .hide-desktop {
  display: none
}
@media screen and (max-width:967px) {
  .product .hide-desktop {
    display: block
  }
}
.product .h2-disabled-top {
  padding-top: 0
}
.product h2 {
  padding-top: 7.5rem;
  padding-bottom: 7.5rem
}
@media screen and (max-width:967px) {
  .product h2 {
    padding: 3.75rem 0
  }
}
@media screen and (max-width:560px) {
  .product h2 {
    padding: 2.5rem 0
  }
}
@media screen and (max-width:767px) {
  .product .product-advantages-title {
    padding-bottom: 1.25rem
  }
}
.product .description-alert {
  background: var(--light-grey);
  margin: 0
}
@media screen and (max-width:967px) {
  .product .description-alert {
    margin-top: 2.5rem
  }
}
.product-left {
  width: 50%
}
@media screen and (max-width:1400px) {
  .product-left {
    width: 60%
  }
}
@media screen and (max-width:1280px) {
  .product-left {
    width: 75%
  }
}
@media screen and (max-width:767px) {
  .product-left {
    width: 90%
  }
}
@media screen and (max-width:639px) {
  .product-left {
    width: 100%
  }
}
.product-presentation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem
}
@media screen and (max-width:1400px) {
  .product-presentation {
    gap: 1.25rem
  }
}
@media screen and (max-width:1280px) {
  .product-presentation {
    -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
  }
}
.product-slider-item {
  border-radius: var(--default-border-radius)
}
.product-slider {
  padding-bottom: 1.25rem;
  max-width: 48.75rem
}
.product-slider .product-slider-item {
  max-width: 48.75rem;
  width: 100%;
  height: 25rem
}
@media screen and (max-width:560px) {
  .product-slider .product-slider-item {
    height: 18.75rem
  }
}
@media screen and (max-width:480px) {
  .product-slider .product-slider-item {
    height: 15.625rem
  }
}
.product-slider-wrapper {
  max-width: 48.75rem;
  width: 100%;
  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;
  gap: 2.5rem;
  border-bottom: var(--default-border);
  border-top: var(--default-border);
  border-color: var(--white);
  padding: 1.875rem 1.25rem;
  margin-top: 1.875rem
}
@media screen and (max-width:1400px) {
  .product-slider-wrapper {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 1.875rem 0
  }
}
@media screen and (max-width:767px) {
  .product-slider-wrapper {
    gap: .625rem
  }
}
@media screen and (max-width:560px) {
  .product-slider-wrapper {
    padding: .625rem 0;
    margin: 0;
    border: none
  }
}
.product-slider-nav {
  width: 32.5rem
}
.product-slider-nav .product-slider-item {
  cursor: pointer;
  max-width: 11.875rem;
  height: 5.625rem;
  padding: 0 1.25rem
}
@media screen and (max-width:767px) {
  .product-slider-nav .product-slider-item {
    padding: 0 .625rem
  }
}
@media screen and (max-width:560px) {
  .product-slider-nav .product-slider-item {
    height: 3.75rem
  }
}
@media screen and (max-width:1400px) {
  .product-slider-nav {
    width: 28.125rem
  }
}
@media screen and (max-width:767px) {
  .product-slider-nav {
    width: 26.25rem
  }
}
@media screen and (max-width:560px) {
  .product-slider-nav {
    width: 16.25rem
  }
}
.product-prev img {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg)
}
@media screen and (max-width:560px) {
  .product-prev {
    background: 0 0;
    -webkit-box-shadow: none;
    box-shadow: none
  }
}
.product-next img {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg)
}
@media screen and (max-width:560px) {
  .product-next {
    background: 0 0;
    -webkit-box-shadow: none;
    box-shadow: none
  }
}
.product-right {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between
}
.product-right .description-alert {
  display: none;
  margin-bottom: 0
}
@media screen and (max-width:967px) {
  .product-right .description-alert {
    display: block
  }
}
.product-right .description-alert .product-cost {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  text-align: left;
  gap: 1.25rem;
  padding-bottom: 1.875rem
}
@media screen and (max-width:560px) {
  .product-right .description-alert .product-cost {
    gap: .625rem
  }
}
.product-right .description-alert .product-cost-ruble {
  color: unset;
  top: -5px;
  position: relative
}
.product-right .description-alert .product-cost-ruble img {
  -webkit-filter: var(--black-filter);
  filter: var(--black-filter)
}
@media screen and (max-width:560px) {
  .product-right .description-alert .product-cost-ruble {
    top: -4px;
    font-size: 1.875rem
  }
  .product-right .description-alert .product-cost-ruble img {
    width: .6875rem
  }
}
.product-right .button {
  background: var(--red-gradient);
  margin: 0 auto;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 11.25rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}
@media screen and (max-width:1400px) {
  .product-right {
    width: 40%
  }
}
@media screen and (max-width:1280px) {
  .product-right {
    width: 100%
  }
}
.product-right-cost {
  padding-top: 1.5625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: .625rem;
  padding-bottom: 1.5625rem
}
.product-right-cost > div {
  max-width: 45%
}
@media screen and (max-width:1400px) {
  .product-right-cost {
    padding-bottom: 0
  }
}
@media screen and (max-width:967px) {
  .product-right-cost {
    display: none
  }
}
.product-cost {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: .625rem;
  font-size: var(--font-size-small)
}
.product-cost-ruble {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  font-size: 2.5rem;
  color: var(--blue);
  gap: .5rem
}
@media screen and (max-width:560px) {
  .product-cost-ruble {
    gap: .3125rem
  }
}
.product-cost-ruble img {
  margin-top: .5rem;
  width: 1.0625rem;
  -webkit-filter: brightness(0) saturate(100%) invert(38%) sepia(93%) saturate(378%) hue-rotate(181deg) brightness(90%) contrast(101%);
  filter: brightness(0) saturate(100%) invert(38%) sepia(93%) saturate(378%) hue-rotate(181deg) brightness(90%) contrast(101%)
}
@media screen and (max-width:560px) {
  .product-cost-ruble img {
    margin-top: .3125rem
  }
}
.product-about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem
}
@media screen and (max-width:967px) {
  .product-about {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 0
  }
}
.product-about-left {
  max-width: 23.125rem;
  min-width: 23.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0 auto;
  gap: 2.5rem
}
@media screen and (max-width:560px) {
  .product-about-left .description-alert {
    border-radius: unset
  }
}
.product-about-left .hide-desktop ul {
  padding-left: 0;
  margin-top: .625rem
}
.product-about-left .hide-desktop ul li {
  padding: 0
}
@media screen and (max-width:560px) {
  .product-about-left .hide-desktop ul li {
    padding: .125rem 0
  }
}
.product-about-left .hide-desktop ul li:last-child {
  padding-bottom: 2.5rem
}
.product-about-left .button {
  background: var(--red-gradient)
}
.product-about-left .mobile-order {
  background: var(--red-gradient);
  margin: 0 auto;
  -webkit-transform: translateY(-70%);
  -ms-transform: translateY(-70%);
  transform: translateY(-70%);
  width: 11.25rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}
@media screen and (max-width:967px) {
  .product-about-left {
    max-width: unset;
    min-width: unset;
    gap: .625rem
  }
}
@media screen and (max-width:560px) {
  .product-about-left {
    margin: 0
  }
}
.product-about-card {
  text-align: left;
  background: var(--white);
  padding: 2.5rem 1.5625rem;
  border-radius: var(--default-border-radius);
  position: relative;
  overflow: hidden
}
.product-about-card ul {
  margin-top: 2.5rem;
  padding-left: .9375rem
}
.product-about-card ul li {
  padding: .75rem 0
}
.product-about-card ul li:first-child {
  padding-top: 0
}
.product-about-card ul li:last-child {
  padding-bottom: 0
}
@media screen and (max-width:480px) {
  .product-about-card ul {
    margin-top: 1.875rem
  }
  .product-about-card ul li {
    padding: .5rem 0
  }
}
@media screen and (max-width:560px) {
  .product-about-card {
    padding: 1.875rem .9375rem
  }
}
@media screen and (max-width:480px) {
  .product-about-card {
    padding: 1.5625rem .625rem
  }
}
.border {
  width: 100%;
  margin: 2.5rem 0;
  border-bottom: var(--default-border)
}
@media screen and (max-width:560px) {
  .border {
    margin: 1.875rem 0
  }
}
.product-about-card-header {
  background: var(--blue-gradient);
  color: var(--white);
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  padding: 1.25rem
}
.blue-header {
  padding-top: 6.25rem;
  padding-bottom: 2.5rem;
  -webkit-box-shadow: var(--black-shadow-top);
  box-shadow: var(--black-shadow-top)
}
@media screen and (max-width:480px) {
  .blue-header {
    padding: 5rem .3125rem 3.125rem .3125rem
  }
}
.blue-header li a {
  cursor: pointer;
  -webkit-text-decoration: var(--grey) underline .0625rem;
  text-decoration: var(--grey) underline .0625rem;
  text-underline-offset: .3125rem;
  text-underline-offset: .3125rem;
  line-height: 125%;
  -webkit-transition: .3s all ease-in-out;
  -o-transition: .3s all ease-in-out;
  transition: .3s all ease-in-out
}
.blue-header li a:hover {
  -webkit-text-decoration-color: var(--blue);
  text-decoration-color: var(--blue);
  color: var(--blue)
}
.mobile-order {
  display: none
}
@media screen and (max-width:967px) {
  .mobile-order {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
  }
}
@media screen and (max-width:967px) {
  .hide-mobile {
    display: none
  }
}
.product-advantages {
  max-width: 80rem;
  margin: 0 auto
}
.product-advantages ul {
  padding-left: 1.875rem;
  padding-bottom: .625rem
}
.product-advantages ul li {
  list-style: disc
}
.product-advantages-item {
  padding: 0 1.5625rem
}
@media screen and (max-width:967px) {
  .product-advantages-item {
    padding: 0 .9375rem
  }
}
@media screen and (max-width:767px) {
  .product-advantages-item {
    margin-top: 3.125rem;
    padding: 0 .625rem 3.125rem .625rem;
    -webkit-box-shadow: var(--white-shadow-top);
    box-shadow: var(--white-shadow-top);
    background: var(--light-grey)
  }
  .product-advantages-item h2 {
    padding-top: 3.125rem;
    text-align: left;
    padding-bottom: 1.25rem;
    font-size: var(--font-size-medium);
    font-weight: 700
  }
}
.product-advantages-title {
  padding: 2.5rem 0
}
@media screen and (max-width:767px) {
  .product-advantages-title {
    text-align: left;
    padding-bottom: 1.25rem;
    font-size: var(--font-size-medium);
    font-weight: 700
  }
}
.product_cases .description {
  max-width: 80rem
}
.product_cases .catalog-item-content {
  height: 21.6875rem
}
@media screen and (max-width:560px) {
  .product_cases .catalog-item-content {
    height: 13.4375rem;
    padding-bottom: .8125rem
  }
}
.product_cases .catalog-item-info {
  margin: .625rem 0
}
.product_cases .catalog-item-info > div {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start
}
.catalog-item-text-first {
  height: 8.375rem;
  overflow: hidden
}
@media screen and (max-width:560px) {
  .catalog-item-text-first {
    height: 5.625rem
  }
}
.catalog-item-text-second {
  height: 9.375rem;
  overflow: hidden
}
.catalog-item-text-second .catalog-item-info {
  font-weight: 700
}
@media screen and (max-width:560px) {
  .catalog-item-text-second {
    height: 6.25rem
  }
}
.search-page h2 {
  padding-bottom: 7.5rem
}
@media screen and (max-width:1280px) {
  .search-page h2 {
    padding: 0 1.25rem 3.75rem 1.25rem
  }
}
.search-content {
  padding: 0 .9375rem
}
@media screen and (max-width:560px) {
  .search-content {
    padding: 0 .625rem
  }
}
.search-item {
  margin: 0 auto;
  max-width: 80rem;
  border-bottom: var(--default-border);
  border-bottom-color: var(--white);
  padding-bottom: 3.75rem;
  margin-bottom: 3.75rem
}
@media screen and (max-width:767px) {
  .search-item {
    padding-bottom: 1.875rem;
    margin-bottom: 1.875rem
  }
}
.search-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0
}
.search-item-title {
  font-weight: 700;
  padding-bottom: 1.5625rem
}
.start {
  position: relative;
  z-index: -1;
  margin-bottom: 8.4375rem
}
@media screen and (max-width:967px) {
  .start {
    margin-bottom: 0
  }
}
.start::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 81%;
  z-index: -1;
  background: url(img/start-background.jpg) no-repeat top;
  background-size: cover
}
@media screen and (max-width:767px) {
  .start::after {
    height: 94%;
    background: -o-linear-gradient(315deg,#3e60c1 40%,#5a82fc 100%);
    background: linear-gradient(135deg,#3e60c1 40%,#5a82fc 100%)
  }
}
@media screen and (max-width:767px) {
  .start {
    margin-bottom: 5rem
  }
}
@media screen and (max-width:560px) {
  .start {
    margin-bottom: 4.375rem
  }
}
.start-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-height: 33.75rem;
  padding: 0 0 0 1.5625rem
}
@media screen and (max-width:967px) {
  .start-container {
    display: none
  }
}
.start-computer {
  height: 100%;
  max-height: 53.125rem;
  -webkit-transform: translate(4%,6%);
  -ms-transform: translate(4%,6%);
  transform: translate(4%,6%)
}
@media screen and (max-width:1400px) {
  .start-computer {
    -webkit-transform: translate(-3%,5%);
    -ms-transform: translate(-3%,5%);
    transform: translate(-3%,5%)
  }
}
@media screen and (max-width:1280px) {
  .start-computer {
    -webkit-transform: translate(8%,5%);
    -ms-transform: translate(8%,5%);
    transform: translate(8%,5%)
  }
}
.start-text {
  -webkit-transform: translateY(-5%);
  -ms-transform: translateY(-5%);
  transform: translateY(-5%);
  width: 35%
}
@media screen and (max-width:1280px) {
  .start-text {
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset;
    width: 40%
  }
}
.start-about-mincifra {
	display: none;
}
@media screen and (max-width:967px) {
	.start-about-mincifra {
		display: block;
		width: 100%;
		color: #000;
		background: #E3E6ED;
		min-height: 148px;
		display: flex;
		justify-content: center;
		align-items: center;
		text-align: center;
		margin-bottom: 50px;
		line-height: 120%;
	}
	.start-about-mincifra a {
		color: #3E60C1;
		text-decoration: underline;
		
	}
	.start-about-mincifra span span {
		white-space: nowrap;
		display: block;
	}
}
.start-mincifra {
	position: absolute;
	bottom: 35px;
	left: 25px;
	color: #fff;
	font-size: 20px;
	font-style: italic;
	line-height: 100%;
	font-weight: 400;
}
.start-mincifra a {
	color: #fff;
	text-decoration: underline;
}
.start-mincifra a:hover {
	opacity: .85;
	text-decoration: none;
}
.start-nav {
  position: absolute;
  right: 0;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 63%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1.875rem 1.25rem
}
.nav-item {
  -webkit-transition: .3s all ease-in-out;
  -o-transition: .3s all ease-in-out;
  transition: .3s all ease-in-out;
  font-size: var(--font-size-medium);
  color: var(--white)
}
.nav-item:hover {
  color: var(--light-blue)
}
.nav-active, .nav-item[aria-current="page"] {
  color: var(--light-blue);
  -webkit-text-decoration: var(--grey) underline .0625rem;
  text-decoration: var(--grey) underline .0625rem;
  text-underline-offset: .3125rem;
  -webkit-text-decoration-color: var(--light-blue);
  text-decoration-color: var(--light-blue);
  text-decoration-thickness: .125rem
}
.start-bars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 2.5rem
}
@media screen and (max-width:967px) {
  .start-bars {
    gap: 1.25rem
  }
}
@media screen and (max-width:767px) {
  .start-bars {
    gap: .625rem
  }
}
@media screen and (max-width:480px) {
  .start-bars {
    gap: .5rem
  }
}
.start-bar {
  width: 100%;
  aspect-ratio: 1.5;
  background: var(--light-grey);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  padding: .625rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-family: var(--font-bebas);
  text-transform: uppercase;
  font-size: var(--font-size-big);
  border-radius: var(--default-border-radius);
  position: relative;
  z-index: 1;
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease
}
.start-bar span {
  position: relative;
  z-index: 3
}
.start-bar img {
  position: relative;
  z-index: 3
}
.start-bar:after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: var(--red-gradient);
  opacity: 0;
  -webkit-transition: .3s all ease-in-out;
  -o-transition: .3s all ease-in-out;
  transition: .3s all ease-in-out
}
.start-bar:hover:after {
  opacity: 1
}
.start-bar:before {
  content: "";
  position: absolute;
  background: var(--light-grey);
  bottom: 0;
  left: 0;
  width: 100%;
  height: 64%;
  border-radius: var(--default-border-radius);
  -webkit-box-shadow: var(--white-shadow-bars);
  box-shadow: var(--white-shadow-bars);
  -webkit-transition: .3s all ease-in-out;
  -o-transition: .3s all ease-in-out;
  transition: .3s all ease-in-out;
  clip-path: inset(10px -20px -42px -20px)
}
@media (max-width:1100px) {
  .start-bar:before {
    height: 76%
  }
}
@media screen and (max-width:967px) {
  .start-bar:before {
    height: 65%
  }
}
@media screen and (max-width:560px) {
  .start-bar:before {
    height: 70%
  }
}
.start-bar br {
  display: none
}
@media (max-width:1100px) {
  .start-bar br {
    display: block
  }
}
.start-bar span {
  -webkit-transition: .3s all ease-in-out;
  -o-transition: .3s all ease-in-out;
  transition: .3s all ease-in-out;
  -webkit-text-decoration: var(--grey) underline .0625rem;
  text-decoration: var(--grey) underline .0625rem;
  text-underline-offset: .3125rem;
  -webkit-text-decoration-color: transparent;
  text-decoration-color: transparent;
  text-decoration-thickness: .125rem
}
@media screen and (max-width:767px) {
  .start-bar span {
    text-underline-offset: .125rem
  }
}
.start-bar:hover {
  -webkit-box-shadow: var(--black-shadow-bottom);
  box-shadow: var(--black-shadow-bottom)
}
.start-bar:hover:before {
  -webkit-box-shadow: none;
  box-shadow: none
}
.start-bar:hover span {
  -webkit-text-decoration-color: #000;
  text-decoration-color: #000
}
.start-bar:after {
  border-radius: var(--default-border-radius);
  background: -webkit-gradient(linear,left top,left bottom,from(#e3e6ed),color-stop(55%,#fff));
  background: -o-linear-gradient(top,#e3e6ed 0,#fff 55%);
  background: linear-gradient(180deg,#e3e6ed 0,#fff 55%)
}
@media screen and (max-width:967px) {
  .start-bar {
    font-size: calc(var(--font-size-big) - .3125rem)
  }
}
@media screen and (max-width:767px) {
  .start-bar {
    font-size: var(--font-size-medium)
  }
}
@media screen and (max-width:480px) {
  .start-bar {
    border-radius: .4375rem;
    min-width: 4.9375rem;
    padding: .9375rem .25rem
  }
}
@media (max-width:359px) {
  .start-bar {
    min-width: unset
  }
}
.bars-container {
  -webkit-transform: translateY(4%);
  -ms-transform: translateY(4%);
  transform: translateY(4%)
}
@media screen and (max-width:1400px) {
  .bars-container {
    -webkit-transform: translateY(-12%);
    -ms-transform: translateY(-12%);
    transform: translateY(-12%)
  }
}
@media screen and (max-width:1280px) {
  .bars-container {
    -webkit-transform: translateY(-17%);
    -ms-transform: translateY(-17%);
    transform: translateY(-17%)
  }
}
@media screen and (max-width:967px) {
  .bars-container {
    -webkit-transform: translateY(-72%);
    -ms-transform: translateY(-72%);
    transform: translateY(-72%)
  }
}
@media screen and (max-width:767px) {
  .bars-container {
    position: absolute
  }
}
.start-about-text {
  text-align: left
}
@media screen and (max-width:767px) {
  .start-about-text {
    margin: 0 auto
  }
}
@media screen and (max-width:560px) {
  .container-start-achievements {
    padding: 0
  }
}
.start-achievements {
  border-radius: var(--default-border-radius);
  overflow: hidden;
  margin: 7.5rem 0;
  width: 100%;
  text-transform: uppercase;
  color: var(--white);
  display: grid;
  grid-template-areas: "ages courses geography partners" "simulators simulators geography accreditations" "clients licence licence accreditations";
  font-family: var(--font-bebas);
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 12.5rem 12.5rem 12.5rem;
  -webkit-box-shadow: var(--white-shadow-top);
  box-shadow: var(--white-shadow-top)
}
@media screen and (max-width:1280px) {
  .start-achievements {
    grid-template-areas: "ages courses geography" "simulators simulators geography" "clients licence licence" "partners partners accreditations";
    grid-template-rows: 12.5rem 12.5rem 12.5rem 12.5rem;
    grid-template-columns: 1fr 1fr 1fr;
    margin: 5.625rem auto
  }
}
@media screen and (max-width:767px) {
  .start-achievements {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 9.375rem 9.375rem 9.375rem 9.375rem 9.375rem;
    grid-template-areas: "ages geography" "partners geography" "courses simulators" "licence licence" "clients accreditations"
  }
}
@media screen and (max-width:639px) {
  .start-achievements {
    margin: 3.125rem auto
  }
}
@media screen and (max-width:560px) {
  .start-achievements {
    text-transform: lowercase;
    grid-template-rows: 5rem 5rem 5rem 5rem 5rem;
    border-radius: unset
  }
}
.start-achievements svg {
  width: unset
}
.start-achievements > div {
  font-size: 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 1.875rem
}
@media screen and (max-width:1024px) {
  .start-achievements > div {
    font-size: 1.5625rem;
    padding: 0 1.5625rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center
  }
}
@media screen and (max-width:767px) {
  .start-achievements > div {
    font-size: 1.25rem;
    padding: 0 .9375rem
  }
}
@media screen and (max-width:560px) {
  .start-achievements > div {
    font-size: 1rem;
    padding: 0 .9375rem;
    text-align: left;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
  }
}
@media screen and (max-width:480px) {
  .start-achievements > div {
    font-size: .875rem
  }
}
@media screen and (max-width:767px) {
  .start-achievements span svg {
    height: 2.5rem
  }
}
@media screen and (max-width:560px) {
  .start-achievements span svg {
    height: 1.25rem
  }
}
.start-achievements .number-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-bottom: .3125rem
}
.start-achievements .ages {
  grid-area: ages;
  background: var(--light-grey);
  color: var(--dark-blue)
}
.start-achievements .ages svg {
  fill: var(--dark-blue)
}
@media screen and (max-width:767px) {
  .start-achievements .ages {
    background: var(--blue);
    color: var(--white)
  }
  .start-achievements .ages svg {
    fill: var(--white)
  }
}
.start-achievements .courses {
  grid-area: courses;
  color: var(--white);
  background: var(--dark-blue)
}
.start-achievements .courses svg {
  fill: var(--white)
}
.start-achievements .geography {
  grid-area: geography;
  background: var(--light-grey) url(img/start-about.png) no-repeat center center;
  color: var(--dark-blue)
}
.start-achievements .geography svg {
  fill: var(--dark-blue)
}
.start-achievements .geography > div {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 3.75rem 0
}
@media screen and (max-width:560px) {
  .start-achievements .geography > div {
    padding: 1.875rem 0
  }
}
@media screen and (max-width:560px) {
  .start-achievements .geography-1 div:nth-child(1) {
    display: none
  }
}
.start-achievements .geography-1 div:nth-child(2) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: .625rem;
  width: 110%
}
@media screen and (max-width:560px) {
  .start-achievements .geography-1 div:nth-child(2) {
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
  }
}
.start-achievements .geography-2 {
  -webkit-transform: translateY(25px);
  -ms-transform: translateY(25px);
  transform: translateY(25px)
}
@media screen and (max-width:1400px) {
  .start-achievements .geography-2 {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none
  }
}
.start-achievements .geography-2 div:nth-child(1) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: .625rem;
  width: 110%
}
@media screen and (max-width:1400px) {
  .start-achievements .geography-2 div:nth-child(1) {
    display: none
  }
}
.start-achievements .geography-2 div:nth-child(2) {
  text-align: end;
  -webkit-transform: translate(10%,-65%);
  -ms-transform: translate(10%,-65%);
  transform: translate(10%,-65%)
}
@media screen and (max-width:1400px) {
  .start-achievements .geography-2 div:nth-child(2) {
    display: none
  }
}
.start-achievements .geography-2 div:nth-child(3) {
  display: none
}
@media screen and (max-width:1400px) {
  .start-achievements .geography-2 div:nth-child(3) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }
}
@media screen and (max-width:560px) {
  .start-achievements .geography-2 div:nth-child(3) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    text-align: left;
    gap: .625rem
  }
}
.start-achievements .partners {
  grid-area: partners;
  color: var(--white);
  background: var(--blue)
}
.start-achievements .partners svg {
  fill: var(--white)
}
@media screen and (max-width:767px) {
  .start-achievements .partners {
    color: var(--dark-blue);
    background: var(--white)
  }
  .start-achievements .partners svg {
    fill: var(--dark-blue)
  }
}
.start-achievements .simulators {
  grid-area: simulators;
  color: var(--white);
  background: var(--blue);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}
.start-achievements .simulators svg {
  fill: var(--white)
}
@media screen and (max-width:560px) {
  .start-achievements .simulators div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: .625rem
  }
  .start-achievements .simulators div > div p {
    display: none
  }
}
.start-achievements .clients {
  grid-area: clients;
  background: var(--white);
  color: var(--dark-blue)
}
.start-achievements .clients svg {
  fill: var(--dark-blue)
}
@media screen and (max-width:767px) {
  .start-achievements .clients {
    background: var(--blue);
    color: var(--white)
  }
  .start-achievements .clients svg {
    fill: var(--white)
  }
}
.start-achievements .licence {
  grid-area: licence;
  background: var(--dark-blue);
  color: var(--white);
  padding: 0 .8125rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}
.start-achievements .licence svg {
  fill: var(--white)
}
@media screen and (max-width:767px) {
  .start-achievements .licence {
    background: var(--light-grey);
    color: var(--dark-blue)
  }
  .start-achievements .licence svg {
    fill: var(--dark-blue)
  }
}
@media screen and (max-width:560px) {
  .start-achievements .licence div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -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;
    gap: .625rem
  }
}
.start-achievements .accreditations {
  grid-area: accreditations;
  color: var(--dark-blue);
  background: var(--white) url(img/logo-light.svg) no-repeat center center;
  background-size: 90%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}
@media screen and (max-width:1400px) {
  .start-achievements .accreditations {
    background-size: 80%
  }
}
@media screen and (max-width:767px) {
  .start-achievements .accreditations {
    background-size: 50%
  }
}
.start-hand {
  margin-top: 3.75rem;
  margin-bottom: 7.5rem;
  position: relative;
  height: 22.5rem
}
.start-hand img {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1
}
@media screen and (max-width:1280px) {
  .start-hand img {
    display: none
  }
}
@media screen and (max-width:1400px) {
  .start-hand {
    padding-right: .625rem
  }
}
@media screen and (max-width:1280px) {
  .start-hand {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: .625rem
  }
}
@media screen and (max-width:967px) {
  .start-hand {
    padding: 0 .9375rem
  }
}
@media screen and (max-width:767px) {
  .start-hand {
    margin-bottom: 1.25rem
  }
}
@media screen and (max-width:560px) {
  .start-hand {
    padding: 0
  }
}
.start-hand .button-feedback {
  margin: 0 auto;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%)
}
.start-hand-text {
  font-size: var(--font-size-medium);
  height: 18.75rem;
  width: 85%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: var(--light-grey);
  border-radius: var(--default-border-radius);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 18%;
  text-align: center;
  position: absolute;
  bottom: 0;
  padding-right: 8%;
  margin-left: 7%;
  -webkit-box-shadow: var(--white-shadow-top);
  box-shadow: var(--white-shadow-top)
}
@media screen and (max-width:1800px) {
  .start-hand-text {
    padding-right: 5%
  }
}
@media (max-width:1500px) {
  .start-hand-text {
    padding-right: 3%;
    padding-left: 20%;
    margin-left: 8%
  }
}
@media screen and (max-width:1280px) {
  .start-hand-text {
    position: unset;
    width: 100%;
    padding: 1.25rem;
    margin: 0
  }
}
@media screen and (max-width:560px) {
  .start-hand-text {
    border-radius: 0
  }
}
.trust-container {
  padding: 7.5rem .9375rem 2.5rem .9375rem;
  display: grid;
  gap: 1.25rem;
  grid-template-rows: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr
}
@media screen and (max-width:1400px) {
  .trust-container {
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding: 1.875rem .9375rem 3.125rem .9375rem
  }
}
@media screen and (max-width:1024px) {
  .trust-container {
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr
  }
}
@media screen and (max-width:767px) {
  .trust-container {
    padding-top: 0
  }
}
@media screen and (max-width:560px) {
  .trust-container {
    padding: 2.5rem .625rem 3.125rem .625rem
  }
}
@media (max-width:380px) {
  .trust-container {
    gap: .625rem
  }
}
.trust-container > div {
  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;
  padding-bottom: 5rem
}
@media screen and (max-width:1024px) {
  .trust-container > div {
    padding-bottom: 2.1875rem
  }
}
@media screen and (max-width:767px) {
  .trust-container > div img {
    width: 100%
  }
}
@media screen and (max-width:560px) {
  .trust-container > div {
    padding-bottom: 0
  }
  .trust-container > div img {
    max-width: 6.25rem;
    width: unset;
    max-height: 2.6875rem
  }
}
.news-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 7.5rem 1.5625rem 0 1.5625rem
}
@media screen and (max-width:1280px) {
  .news-container {
    padding: 3.125rem .9375rem 0 .9375rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
  }
}
@media screen and (max-width:967px) {
  .news-container {
    padding: 3.125rem .9375rem 0 .9375rem
  }
}
@media screen and (max-width:560px) {
  .news-container {
    padding: 3.125rem .625rem 0 .625rem
  }
}
.news-item {
  max-width: 23.125rem;
  width: 100%;
  border-radius: var(--default-border-radius);
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-shadow: var(--white-shadow-bottom);
  box-shadow: var(--white-shadow-bottom)
}
@media screen and (max-width:560px) {
  .news-item {
    max-width: unset
  }
}
.news-item img {
  -webkit-transition: .3s all ease-in-out;
  -o-transition: .3s all ease-in-out;
  transition: .3s all ease-in-out
}
.news-item b {
  display: block;
  padding-bottom: 1.25rem;
  font-size: var(--font-size-medium)
}
.news-item p {
  display: block;
  height: 10.625rem;
  overflow: hidden
}
@media screen and (max-width:560px) {
  .news-item p {
    height: 5rem
  }
}
.news-item:hover > img {
  -webkit-filter: brightness(.5);
  filter: brightness(.5)
}
.news-item:hover .item-go:after {
  opacity: 1
}
.news-item-img {
  width: 100%;
  height: 12.5rem;
  -o-object-fit: cover;
  object-fit: cover
}
.news-item-content {
  padding: 1.875rem 1.25rem;
  height: 100%;
  overflow: hidden;
  background: var(--light-grey)
}
@media screen and (max-width:560px) {
  .news-item-content {
    padding: .9375rem .625rem;
    height: unset
  }
}
.news-item-statistic {
  margin-top: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
  font-size: var(--font-size-small)
}
.news-item-date,
.news-item-eye {
  color: var(--blue);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: .3125rem
}
.start-container-mobile {
  overflow: hidden;
  padding: 1.25rem .9375rem 0 .9375rem;
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}
@media screen and (max-width:967px) {
  .start-container-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
  }
}
@media screen and (max-width:560px) {
  .start-container-mobile {
    overflow: hidden;
    padding: 1.25rem .625rem 0 .625rem
  }
}
.start-mobile-computer {
  -webkit-transform: translate(-1.5%,27%);
  -ms-transform: translate(-1.5%,27%);
  transform: translate(-1.5%,27%);
  width: 110%
}
.start-mobile-text {
  width: 100%;
  -webkit-transform: translateY(90%);
  -ms-transform: translateY(90%);
  transform: translateY(90%)
}
.start-about-text-mobile-hide {
  margin-top: 0
}
@media screen and (max-width:1280px) {
  .start-about-text-mobile-hide {
    display: none
  }
}
.start-about-text-mobile-show {
  display: none;
  margin-top: 0;
  margin-bottom: 5.625rem
}
@media screen and (max-width:1280px) {
  .start-about-text-mobile-show {
    display: block
  }
}
@media screen and (max-width:1400px) {
  .start-about-text-mobile-show {
    margin-bottom: 3.125rem
  }
}
.support {
  font-size: var(--font-size-medium)
}
.support .mobile-footer {
  margin: 0
}
.support .description {
  padding: 7.5rem .625rem;
  max-width: 50rem
}
@media screen and (max-width:967px) {
  .support .description {
    padding: 0 .9375rem;
    margin: 3.125rem 0
  }
}
@media screen and (max-width:560px) {
  .support .description {
    padding: 0 .625rem
  }
}
.support h2 {
  padding-bottom: 7.5rem
}
@media screen and (max-width:1400px) {
  .support h2 {
    padding-bottom: 5.625rem
  }
}
@media screen and (max-width:767px) {
  .support h2 {
    padding-bottom: 3.125rem
  }
}
.support-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem
}
@media screen and (max-width:967px) {
  .support-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
  }
}
.support-documentation {
  border-radius: var(--default-border-radius);
  -webkit-box-shadow: var(--black-shadow-top);
  box-shadow: var(--black-shadow-top);
  overflow: hidden;
  max-width: 23.125rem;
  width: 100%
}
@media screen and (max-width:767px) {
  .support-documentation {
    max-width: 100%
  }
}
.support-documentation-header {
  color: var(--white);
  background: var(--blue-gradient);
  text-align: start;
  padding: 1rem 1.5625rem
}
.support-documentation-inner {
  padding: 2.5rem 1.5625rem;
  border-bottom: var(--default-border);
  background: var(--white);
  -webkit-text-decoration: var(--grey) underline .0625rem;
  text-decoration: var(--grey) underline .0625rem;
  text-underline-offset: .3125rem;
  line-height: 120%;
  -webkit-transition: .3s all ease-in-out;
  -o-transition: .3s all ease-in-out;
  transition: .3s all ease-in-out
}
.support-documentation-inner:hover {
  -webkit-text-decoration-color: var(--blue);
  text-decoration-color: var(--blue);
  color: var(--blue)
}
.support-info-text {
  padding-bottom: 3.75rem
}
@media screen and (max-width:767px) {
  .support-info-text {
    padding-bottom: 1.875rem
  }
}
.support-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start
}
.support-contact img {
  -webkit-filter: var(--black-filter);
  filter: var(--black-filter)
}
.support-faq {
  max-width: 80rem;
  margin: 0 auto
}
.support-faq-item {
  margin-bottom: 1.25rem;
  padding: 0 1.5625rem
}
@media screen and (max-width:967px) {
  .support-faq-item {
    padding: 0 .9375rem;
    background: var(--light-grey);
    -webkit-box-shadow: var(--white-shadow-top);
    box-shadow: var(--white-shadow-top);
    margin: 0
  }
}
@media screen and (max-width:560px) {
  .support-faq-item {
    padding: 0 .625rem
  }
}
.support-faq-question {
  background: var(--grey-gradient);
  border-radius: var(--small-border-radius);
  border: .0625rem solid #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: .9375rem 1.5625rem;
  gap: 1.25rem;
  cursor: pointer
}
@media screen and (max-width:967px) {
  .support-faq-question {
    background: 0 0;
    color: unset;
    padding: 1.25rem 0 1.875rem 0;
    border: none
  }
}
@media screen and (max-width:480px) {
  .support-faq-question {
    padding: .625rem 0 1.875rem 0
  }
}
.support-faq-arrow {
  -ms-flex-item-align: self-start;
  align-self: self-start;
  min-width: 1.875rem;
  min-height: 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}
@media screen and (max-width:967px) {
  .support-faq-arrow {
    background: var(--white);
    border-radius: var(--small-border-radius)
  }
}
.support-faq-arrow img {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-filter: var(--black-filter);
  filter: var(--black-filter)
}
@media screen and (max-width:967px) {
  .support-faq-arrow img {
    width: .75rem
  }
}
.support-faq-active {
  margin-bottom: 3.75rem
}
.support-faq-active .support-faq-question {
  color: var(--white);
  background: -webkit-gradient(linear,left top,left bottom,from(#3e60c1),to(#5a82fc));
  background: -o-linear-gradient(top,#3e60c1 0,#5a82fc 100%);
  background: linear-gradient(180deg,#3e60c1 0,#5a82fc 100%)
}
.support-faq-active .support-faq-question .support-faq-arrow img {
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
  -webkit-filter: var(--white-filter);
  filter: var(--white-filter)
}
@media screen and (max-width:967px) {
  .support-faq-active .support-faq-question .support-faq-arrow img {
    -webkit-filter: var(--black-filter);
    filter: var(--black-filter)
  }
}
@media screen and (max-width:967px) {
  .support-faq-active .support-faq-question {
    background: 0 0;
    color: unset
  }
}
.support-faq-active .support-faq-answer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
}
.support-faq-answer {
  display: none;
  padding: 3.75rem 1.25rem 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 63.75rem;
  margin: 0 auto
}
.support-faq-answer ul li {
  list-style: auto
}
@media screen and (max-width:967px) {
  .support-faq-answer {
    padding: 0 1.25rem 1.875rem 1.25rem
  }
}
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent
}
.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0
}
.slick-list:focus {
  outline: 0
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand
}
.slick-slider .slick-list,
.slick-slider .slick-track {
  -webkit-transform: translate3d(0,0,0);
  -ms-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0)
}
.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto
}
.slick-track:after,
.slick-track:before {
  content: "";
  display: table
}
.slick-track:after {
  clear: both
}
.slick-loading .slick-track {
  visibility: hidden
}
.slick-slide {
  float: left;
  height: 100%;
  min-height: .0625rem;
  display: none
}
[dir=rtl] .slick-slide {
  float: right
}
.slick-slide img {
  display: block
}
.slick-slide.slick-loading img {
  display: none
}
.slick-slide.dragging img {
  pointer-events: none
}
.slick-initialized .slick-slide {
  display: block
}
.slick-loading .slick-slide {
  visibility: hidden
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: .0625rem solid transparent
}
.slick-arrow.slick-hidden {
  display: none
}
.slick-loading .slick-list {
  background: #fff url(img/ajax-loader.gif) center center no-repeat
}
@font-face {
  font-family: slick;
  src: url(fonts/slick.eot);
  src: url(fonts/slick.eot?#iefix) format("embedded-opentype"),url(fonts/slick.woff) format("woff"),url(fonts/slick.ttf) format("truetype"),url(fonts/slick.svg#slick) format("svg");
  font-weight: 400;
  font-style: normal
}
.slick-next,
.slick-prev {
  position: absolute;
  display: block;
  height: 1.25rem;
  width: 1.25rem;
  line-height: 0;
  font-size: 0;
  cursor: pointer;
  background: 0 0;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0,-50%);
  -ms-transform: translate(0,-50%);
  transform: translate(0,-50%);
  padding: 0;
  border: none;
  outline: 0
}
.slick-next:focus,
.slick-next:hover,
.slick-prev:focus,
.slick-prev:hover {
  outline: 0;
  background: 0 0;
  color: transparent
}
.slick-next:focus:before,
.slick-next:hover:before,
.slick-prev:focus:before,
.slick-prev:hover:before {
  opacity: 1
}
.slick-next.slick-disabled:before,
.slick-prev.slick-disabled:before {
  opacity: .25
}
.slick-next:before,
.slick-prev:before {
  font-family: slick;
  font-size: 1.25rem;
  line-height: 1;
  color: #fff;
  opacity: .75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}
.slick-prev {
  left: -25px
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px
}
.slick-prev:before {
  content: "←"
}
[dir=rtl] .slick-prev:before {
  content: "→"
}
.slick-next {
  right: -25px
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto
}
.slick-next:before {
  content: "→"
}
[dir=rtl] .slick-next:before {
  content: "←"
}
.slick-dotted.slick-slider {
  margin-bottom: 1.875rem
}
.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 1.25rem;
  width: 1.25rem;
  margin: 0 .3125rem;
  padding: 0;
  cursor: pointer
}
.slick-dots li button {
  border: 0;
  background: 0 0;
  display: block;
  height: 1.25rem;
  width: 1.25rem;
  outline: 0;
  line-height: 0;
  font-size: 0;
  color: transparent;
  padding: .3125rem;
  cursor: pointer
}
.slick-dots li button:focus,
.slick-dots li button:hover {
  outline: 0
}
.slick-dots li button:focus:before,
.slick-dots li button:hover:before {
  opacity: 1
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 1.25rem;
  height: 1.25rem;
  font-family: slick;
  font-size: .375rem;
  line-height: 1.25rem;
  text-align: center;
  color: #000;
  opacity: .25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}
.slick-dots li.slick-active button:before {
  color: #000;
  opacity: .75
}

.page-template-page-mincifra #start {display: none;}