@import url("/assets/fonts/fonts.css");
html,
body {
  height: 100%
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100%;
  font-family: 'Gilroy';
  background-color: #f9f9f9
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}

main {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  margin-top: 105px
}

ul,
ol {
  list-style: none
}

img {
  display: block;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover
}

a {
  color: inherit;
  text-decoration: none
}

button {
  cursor: pointer;
  border: none;
  background: transparent
}

footer {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto
}

svg,
path,
circle,
rect {
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear
}

.container-fluid {
  padding-left: 30px;
  padding-right: 30px
}

@media (min-width: 1440px) {
  .container-fluid {
    max-width: 1920px
  }
}

@media (max-width: 768px) {
  .container-fluid {
    padding-left: 15px;
    padding-right: 15px
  }
}

@media (max-width: 575px) {
  main {
    margin-top: 80px
  }
}

.float-results {
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  border: 1px solid #dbdbdb;
  background-color: #fff
}

.float-results__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease
}

.float-results__link img {
  width: 50px;
  height: auto
}

.float-results__link span {
  font-weight: 400;
  font-size: 16px;
  margin-left: 10px
}

.float-results__link:hover {
  background-color: #dbdbdb
}

.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  padding: 0 15px;
  background-color: #ffffff;
  z-index: 10
}

.header__search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: fixed;
  top: -100%;
  right: 0;
  width: 100%;
  height: 200px;
  z-index: 120;
  background-color: #ffffff;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear
}

.header__search--active {
  top: 0
}

.header__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 105px;
  position: relative;
  padding-left: 0;
  padding-right: 0
}

.header__row::after {
  content: '';
  display: block;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(43, 43, 49, 0.8);
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear
}

.header__row.layer-active::after {
  opacity: 1;
  visibility: visible
}

.header__logo {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%)
}

.logo {
  display: inline-block
}

.logo svg,
.logo img {
  width: 100px;
  height: 62px;
  -o-object-fit: contain;
  object-fit: contain
}

.nav {
  width: 100%
}

.nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%
}

.nav-list__item {
  margin-right: 50px
}

.nav-list__item:nth-child(5) {
  margin-left: auto
}

.nav-list__item:last-child {
  margin-right: 10px
}

.nav-list__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  font-weight: 500;
  font-size: 13px;
  line-height: 15px;
  padding: 8px 0;
  letter-spacing: 0.1em;
  color: #000000;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear
}

.nav-list__link:hover .mask__container {
  -webkit-transform: translateY(-15px);
  -ms-transform: translateY(-15px);
  transform: translateY(-15px)
}

.nav-list__link:hover .mask__container .mask__text-1 {
  -webkit-transform: rotate(20deg);
  -ms-transform: rotate(20deg);
  transform: rotate(20deg)
}

.nav-list__link:hover .mask__container .mask__text-2 {
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg)
}

.search-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 8px;
  border-radius: 4px;
  background-color: transparent;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear
}

.search-btn:hover {
  background-color: #f5f5f5
}

.search-btn__icon {
  width: 20px;
  height: 20px;
  fill: #1d1d1d
}

.mask {
  height: 15px;
  overflow: hidden
}

.mask__container {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear
}

.mask__text-1 {
  -webkit-transform-origin: right center;
  -ms-transform-origin: right center;
  transform-origin: right center;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  -o-transition: transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease
}

.mask__text-2 {
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
  -webkit-transform: rotate(20deg);
  -ms-transform: rotate(20deg);
  transform: rotate(20deg);
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  -o-transition: transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease
}

.burger-hitbox {
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 8px;
  border-radius: 4px;
  background-color: transparent;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear
}

.burger-hitbox:hover {
  background-color: #f5f5f5
}

.burger {
  display: inline-block;
  position: relative;
  width: 30px;
  height: 22px;
  cursor: pointer
}

.burger::before,
.burger::after,
.burger__sausage {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: #1d1d1d;
  position: absolute;
  right: 0;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear
}

.burger__sausage {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%)
}

.burger::before {
  top: 0;
  width: 70%
}

.burger::after {
  bottom: 0;
  width: 70%
}

.burger--active .burger__sausage {
  width: 0;
  opacity: 0;
  visibility: hidden
}

.burger--active::before {
  width: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg)
}

.burger--active::after {
  width: 100%;
  bottom: 50%;
  -webkit-transform: translateY(50%) rotate(-45deg);
  -ms-transform: translateY(50%) rotate(-45deg);
  transform: translateY(50%) rotate(-45deg)
}

.search-form-close {
  cursor: pointer;
  padding: 8px;
  margin-right: 15px;
  border-radius: 4px;
  background-color: transparent;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  margin-bottom: 10px
}

.search-form-close:hover {
  background-color: #f5f5f5
}

.search-form-close svg {
  width: 20px;
  height: 20px;
  fill: #1d1d1d
}

@media (max-width: 1399.98px) {
  .nav-list__item {
    margin-right: 25px
  }
}

@media (max-width: 1199.98px) {
  .search-btn {
    display: none
  }
  .nav-list__item {
    margin-right: 20px;
    white-space: nowrap
  }
  .nav-list__item:last-child {
    display: none
  }
}

@media (max-width: 1170px) {
  .header__row {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
  }
  .header__logo {
    position: static;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0)
  }
  .nav-list {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    width: auto;
    margin: 0 0 0 auto
  }
  .nav-list__item {
    margin-right: 0
  }
  .nav-list__item:not(:last-child) {
    margin-right: 35px
  }
  .nav-list__item:nth-child(7) {
    margin: 0 !important
  }
  .nav-list__item:nth-child(5) {
    margin-left: 0
  }
  .search-btn {
    margin-left: 0px
  }
}

@media (max-width: 1100px) {
  .header {
    z-index: 100
  }
  .header__row {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
  }
  .nav {
    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;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    overflow-y: auto;
    max-height: 100%;
    z-index: -1
  }
  .nav--active {
    right: 0
  }
  .nav-list {
    width: 100%;
    -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;
    min-height: 535px
  }
  .nav-list__item {
    width: 100%
  }
  .nav-list__item:not(:last-child) {
    margin-right: 0
  }
  .nav-list__item:last-child {
    display: block
  }
  .nav-list__link {
    width: 100%;
    padding: 15px 0;
    font-size: 15px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
  }
  .burger-hitbox {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex
  }
  .search-btn {
    display: block;
    margin-left: auto;
    margin-right: 40px
  }
}

@media (max-width: 768px) {
  .header {
    padding-left: 15px;
    padding-right: 15px
  }
  .header__search {
    height: 125px
  }
  .header__logo img,
  .header__logo svg {
    width: 100px;
    height: 42px
  }
}

@media (max-width: 575px) {
  .header__logo {
    width: 100px;
    height: 40px
  }
  .header__logo img {
    width: 100%;
    height: 100%
  }
  .header__row {
    height: 80px
  }
  .search-btn {
    margin-right: 20px
  }
}

@media (max-width: 992px) and (orientation: landscape) {
  .nav {
    top: 105px
  }
}

@media (max-width: 575px) and (orientation: landscape) {
  .nav {
    top: 80px
  }
}

.footer__inner {
  padding: 30px 0px 0px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(43, 43, 49, 0.9)), to(rgba(43, 43, 49, 0.9))), url("/assets/images/footer.jpg");
  background: -webkit-linear-gradient(bottom, rgba(43, 43, 49, 0.9), rgba(43, 43, 49, 0.9)), url("/assets/images/footer.jpg");
  background: -o-linear-gradient(bottom, rgba(43, 43, 49, 0.9), rgba(43, 43, 49, 0.9)), url("/assets/images/footer.jpg");
  background: linear-gradient(0deg, rgba(43, 43, 49, 0.9), rgba(43, 43, 49, 0.9)), url("/assets/images/footer.jpg");
  background-repeat: no-repeat;
  background-size: cover
}

.footer__heading {
  display: block;
  margin-bottom: 15px;
  color: #ffffff
}

.footer__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 500;
  line-height: 150%;
  color: #ffffff
}

.footer__text--bold {
  font-weight: bold
}

.footer__text svg {
  width: 16px;
  height: 16px;
  margin-right: 10px;
  fill: #ca920c
}

.footer__text:not(:last-child) {
  margin-bottom: 15px
}

.footer__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  padding: 30px 150px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 1px solid #4e4e4e
}

.footer__logo {
  display: inline-block;
  margin-bottom: 10px
}

.footer__logo svg {
  width: 150px;
  height: 65px;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1)
}

.footer__logo-container {
  max-width: 250px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}

.footer__logo-caption {
  color: #bababa
}

.footer-nav__item:not(:last-child) {
  margin-bottom: 15px
}

.footer-nav__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0.1em;
  color: #ffffff;
  padding: 8px 0;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear
}

.footer-nav__link:first-child {
  padding-top: 0
}

.footer-nav__link:hover .mask__container {
  -webkit-transform: translateY(-15px);
  -ms-transform: translateY(-15px);
  transform: translateY(-15px)
}

.footer-nav__link:hover .mask__container .mask__text-1 {
  -webkit-transform: rotate(20deg);
  -ms-transform: rotate(20deg);
  transform: rotate(20deg)
}

.footer-nav__link:hover .mask__container .mask__text-2 {
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg)
}

.footer-socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.footer-socials__item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.footer-socials__item:not(:last-child) {
  margin-right: 25px
}

.footer-socials__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.footer-socials__link:hover svg {
  fill: #ffffff
}

.footer-socials__link svg {
  width: 24px;
  height: 24px;
  fill: #7e7e7e
}

.developer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px 0px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: transparent;
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #8f8f8f
}

.footer-categories {
  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;
  padding: 0 150px 30px;
  border-bottom: 1px solid #4e4e4e
}

.footer-categories__item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.footer-categories__item::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #ffffff;
  margin-right: 15px
}

.footer-categories__link {
  font-weight: 600;
  font-size: 16px;
  line-height: 135%;
  color: #ffffff
}

@media (max-width: 1200px) {
  .footer__row {
    padding-left: 30px;
    padding-right: 30px;
    width: 100%
  }
  .footer-categories {
    padding-left: 30px;
    padding-right: 30px
  }
}

@media (max-width: 992px) {
  .footer__logo-container {
    display: none
  }
  .footer-categories__link {
    font-size: 14px
  }
  .footer-socials__item:not(:last-child) {
    margin-right: 15px
  }
}

@media (max-width: 768px) {
  .footer__inner {
    padding-top: 0px;
    padding-bottom: 0px
  }
  .footer__row {
    padding-left: 15px;
    padding-right: 15px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
  }
  .footer__col--last {
    margin-top: 30px;
    -webkit-box-flex: 0 !important;
    -ms-flex: 0 0 100% !important;
    flex: 0 0 100% !important
  }
  .footer-categories {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 30px 15px 15px
  }
  .footer-categories__item {
    margin-bottom: 15px
  }
  .footer-categories__item:not(:last-child) {
    margin-right: 25px
  }
  .footer-socials {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
  }
}

@media (max-width: 575px) {
  .footer__inner {
    padding-top: 0px;
    padding-bottom: 0px
  }
  .footer__col--second {
    margin-left: auto;
    margin-right: 50px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto
  }
  .footer__col--third {
    margin-right: auto;
    margin-left: 50px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto
  }
  .footer__col--first {
    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-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    margin-top: 20px
  }
  .footer__text {
    text-align: center
  }
  .footer-categories__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%
  }
  .footer-categories__item:nth-child(odd) {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%
  }
  .footer-categories__item:not(:last-child) {
    margin-right: 0
  }
}

@media (max-width: 375px) {
  .footer__col--second {
    margin-left: 0;
    margin-right: 0
  }
  .footer__col--third {
    margin-right: 0;
    margin-left: 0
  }
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 20px
}

.page-item:not(:last-child) {
  margin-right: 15px
}

.active .page-link {
  border-color: #1d1d1d;
  background-color: #1d1d1d;
  color: #ffffff
}

.page-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #8f8f8f;
  font-weight: normal;
  font-size: 17px;
  line-height: 150%;
  color: #8f8f8f;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear
}

.page-link:hover {
  border-color: #1d1d1d;
  background-color: #1d1d1d;
  color: #ffffff
}

.page-link--prev::after {
  content: '';
  display: block;
  width: 7px;
  height: 12px;
  background-image: url(/assets/icons/chewron-left.svg);
  background-position: center;
  background-repeat: no-repeat
}

.page-link--prev:hover::after {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1)
}

.page-link--next::after {
  content: '';
  display: block;
  width: 7px;
  height: 12px;
  background-image: url(/assets/icons/chewron-right.svg);
  background-position: center;
  background-repeat: no-repeat
}

.page-link--next:hover::after {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1)
}

@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg)
  }
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg)
  }
}

@keyframes rotate {
  from {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg)
  }
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg)
  }
}

@-webkit-keyframes spinner {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg)
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg)
  }
}

@keyframes spinner {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg)
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg)
  }
}

.button {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #1d1d1d;
  border: none;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid transparent;
  padding: 8px 8px 8px 24px;
  z-index: 1;
  z-index: 1;
  position: relative;
  border: 1px solid transparent;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear
}

.button__text {
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  color: #ffffff;
  margin-right: 50px;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear
}

.button__circle {
  width: 40px;
  height: 40px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid transparent;
  background-color: #ffffff;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear
}

.button__icon {
  width: 14px;
  height: 16px
}

.button::after {
  position: absolute;
  content: '';
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  background-color: #ffffff;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  border-radius: 30px
}

.button:hover {
  color: #1d1d1d;
  background-color: #ffffff;
  border-color: #1d1d1d
}

.button:hover .button__text {
  color: #1d1d1d
}

.button:hover .button__circle {
  background-color: #1d1d1d
}

.button:hover .button__icon {
  fill: #ffffff
}

.button:hover::after {
  left: 0;
  width: 100%
}

.button--filled-white {
  background-color: #fff
}

.button--filled-white .button__text {
  color: #1d1d1d
}

.button--filled-white .button__circle {
  background-color: #d2a22e
}

.button--filled-white .button__icon {
  fill: #fff
}

.button--filled-white:hover {
  border: 1px solid #fff
}

.button--filled-gold {
  background-color: #d2a22e
}

.button--filled-gold .button__text {
  color: #fff
}

.button--filled-gold .button__circle {
  background-color: #fff
}

.button--text {
  padding: 0;
  border: none;
  background-color: transparent
}

.button--text::after {
  display: none
}

.button--text .button__text {
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  color: #1d1d1d;
  margin-right: 5px
}

.button--text .button__icon {
  width: 20px;
  height: 18px
}

.button--text:hover {
  background-color: transparent
}

.nav-buttons {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.nav-buttons__item {
  height: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0px 20px;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear
}

.nav-buttons__item--prev span {
  margin-left: 8px
}

.nav-buttons__item--next span {
  margin-right: 8px
}

.nav-buttons__item span {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #1d1d1d
}

.nav-buttons__item svg {
  width: 20px;
  height: 16px
}

.nav-buttons__item:hover {
  background-color: #ffffff
}

@media (max-width: 992px) {
  .button__text {
    font-size: 16px
  }
  .button__circle {
    width: 35px;
    height: 35px
  }
}

@media (max-width: 768px) {
  .button__text {
    margin-right: 35px
  }
  .nav-buttons {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-left: -15px;
    margin-right: -15px
  }
  .nav-buttons__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    height: 100%;
    padding: 0;
    margin: 0
  }
  .nav-buttons__item--prev {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding-right: 30px
  }
  .nav-buttons__item--next {
    padding-left: 30px
  }
}

@media (max-width: 575px) {
  .button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 55%
  }
  .button__text {
    margin-right: 18px
  }
  .button--w-100 {
    width: 100%
  }
}

@media (max-width: 375px) {
  .button {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
  }
}

.modal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #fbfbfb;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  z-index: 1000
}

.modal__close {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: 50px;
  right: 50px;
  border: 2px solid transparent;
  padding: 5px;
  cursor: pointer;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear
}

.modal__close:hover {
  border-color: #8f8f8f
}

.modal__close:hover svg {
  fill: #8f8f8f
}

.modal__close svg {
  width: 25px;
  height: 25px;
  fill: #1d1d1d
}

.modal__title {
  font-weight: 500;
  font-size: 34px;
  line-height: 110%;
  color: #313335;
  text-align: center;
  margin: 10px
}

.modal__subtitle {
  display: block;
  font-size: 20px;
  line-height: 150%;
  color: #505050;
  text-align: center;
  margin-bottom: 25px
}

.modal--active {
  opacity: 1;
  visibility: visible
}

.modal-media {
  margin: auto 0;
  height: 600px;
  position: relative
}

.modal-media__item {
  width: 100%;
  height: 100%;
  border: none;
  -o-object-fit: cover;
  object-fit: cover
}

@media (max-width: 1200px) {
  .modal-media {
    height: 500px
  }
}

@media (max-width: 768px) {
  .modal__close {
    top: 30px;
    right: 15px
  }
  .modal__title {
    font-size: 28px
  }
  .modal__subtitle {
    font-size: 18px
  }
  .modal-media {
    height: 400px
  }
}

@media (max-width: 575px) {
  .modal__close svg {
    width: 20px;
    height: 20px
  }
  .modal__title {
    font-size: 24px
  }
  .modal__subtitle {
    font-size: 16px
  }
  .modal-media {
    height: 250px
  }
}

.breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.breadcrumbs__item:not(:last-child)::after {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #8f8f8f;
  vertical-align: middle;
  margin-left: 10px;
  margin-right: 10px
}

.breadcrumbs__text {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #8f8f8f
}

.breadcrumbs__text--current {
  color: #1d1d1d;
  cursor: default
}

@media (max-width: 768px) {
  .breadcrumbs {
    display: none
  }
}

.text-right {
  text-align: right
}

.text-left {
  text-align: left
}

.text-center {
  text-align: center
}

.no-scroll {
  overflow: hidden
}

.text-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.text-link--about {
  margin-top: 10px
}

.text-link__text {
  font-weight: 500;
  font-size: 24px;
  line-height: 150%;
  color: #1d1d1d
}

.text-link__icon {
  width: 28px;
  height: 18px;
  stroke: #1d1d1d;
  margin-left: 15px;
  margin-top: 5px;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear
}

.text-link:hover .text-link__icon {
  -webkit-transform: translateX(8px);
  -ms-transform: translateX(8px);
  transform: translateX(8px)
}

.bg-black {
  background-color: #1d1d1d
}

.br-0 {
  border-radius: 0
}

.br-0::after,
.br-0::before {
  border-radius: 0
}

@media (max-width: 1200px) {
  .max-xl-overflow-auto {
    overflow-x: auto;
    overflow-y: hidden
  }
}

@media (max-width: 992px) {
  .max-lg-overflow-auto {
    overflow-x: auto;
    overflow-y: hidden
  }
}

@media (max-width: 768px) {
  .text-link__text {
    font-size: 18px
  }
  .text-link__icon {
    width: 25px;
    height: 12px;
    margin-top: 2px
  }
}

@media (max-width: 575px) {
  .text-link {
    margin-top: 0
  }
}

@media (max-width: 375px) {
  .max-xsm-w-100 {
    width: 100%
  }
}

.tabs-nav {
  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;
  margin-bottom: 35px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none
}

.tabs-nav__item {
  white-space: nowrap;
  font-weight: 500;
  font-size: 15px;
  line-height: 150%;
  text-align: center;
  color: #8f8f8f;
  cursor: pointer;
  -webkit-transition: color 0.2s linear;
  -o-transition: color 0.2s linear;
  transition: color 0.2s linear
}

.tabs-nav__item:not(:last-child) {
  margin-right: 40px
}

.tabs-nav__item:hover {
  color: #1d1d1d
}

.tabs-nav__item--active {
  color: #1d1d1d
}

.tabs-content__item {
  display: none
}

.tabs-content__item--active {
  display: block
}

@media (max-width: 768px) {
  .tabs-nav__item {
    font-size: 14px
  }
  .tabs-nav__item:not(:last-child) {
    margin-right: 25px
  }
}

@media (max-width: 575.98px) {
  .tabs-nav {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
  }
}

.page-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 75px
}

.relative {
  position: relative
}

.form__field:not(:last-child) {
  margin-bottom: 25px
}

.form__label {
  display: block;
  font-weight: 500;
  font-size: 16px;
  line-height: 175%;
  letter-spacing: 0.02em;
  color: #1d1d1d;
  margin-bottom: 5px
}

.form__input {
  width: 100%;
  font-size: 16px;
  height: 50px;
  padding: 0 15px;
  outline-color: #1d1d1d;
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear
}

.form__input::-webkit-input-placeholder {
  font-weight: 500;
  font-size: 16px;
  line-height: 175%;
  letter-spacing: 0.02em;
  color: #8f8f8f
}

.form__input:-ms-input-placeholder {
  font-weight: 500;
  font-size: 16px;
  line-height: 175%;
  letter-spacing: 0.02em;
  color: #8f8f8f
}

.form__input::-ms-input-placeholder {
  font-weight: 500;
  font-size: 16px;
  line-height: 175%;
  letter-spacing: 0.02em;
  color: #8f8f8f
}

.form__input::placeholder {
  font-weight: 500;
  font-size: 16px;
  line-height: 175%;
  letter-spacing: 0.02em;
  color: #8f8f8f
}

.form__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  color: #ffffff;
  padding: 10px 0;
  background-color: #1d1d1d;
  z-index: 1;
  position: relative;
  border: 1px solid transparent;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear
}

.form__button::after {
  position: absolute;
  content: '';
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  background-color: #ffffff;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  border-radius: 30px
}

.form__button:hover {
  color: #1d1d1d;
  background-color: #ffffff;
  border-color: #1d1d1d
}

.form__button:hover .button__text {
  color: #1d1d1d
}

.form__button:hover .button__circle {
  background-color: #1d1d1d
}

.form__button:hover .button__icon {
  fill: #ffffff
}

.form__button:hover::after {
  left: 0;
  width: 100%
}

.form__button::after {
  border-radius: 0
}

.form__button--gold {
  background-color: #ca920c
}

.form__button--gold:hover {
  color: #ca920c;
  border: 1px solid #ca920c
}

.section {
  margin-bottom: 50px
}

.section__title {
  font-weight: 600;
  font-size: 34px;
  line-height: 135%;
  color: #1d1d1d;
  margin-bottom: 40px
}

.section__title--white {
  color: #ffffff
}

.section__subtitle {
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  color: #8f8f8f
}

.section__subtitle--black {
  color: #1d1d1d
}

.search-form__field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #eeeeee;
  border: 1px solid #d5d5d5;
  border-radius: 30px;
  position: relative
}

.search-form__input {
  width: 100%;
  height: 45px;
  border: none;
  font-size: 16px;
  border-radius: 30px;
  padding: 8px 50px 8px 25px
}

.search-form__input::-webkit-input-placeholder {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #8f8f8f
}

.search-form__input:-ms-input-placeholder {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #8f8f8f
}

.search-form__input::-ms-input-placeholder {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #8f8f8f
}

.search-form__input::placeholder {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #8f8f8f
}

.search-form__button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #1d1d1d;
  position: absolute;
  right: 8px
}

.search-form__button svg {
  width: 16px;
  height: 16px;
  fill: #ffffff
}

.search-form--gray .search-form__input {
  background-color: #eeeeee
}

.catalog-card {
  display: block;
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 10px 30px rgba(209, 213, 223, .5);
}

.catalog-card__img {
  overflow: hidden;
  position: relative;
  padding-bottom: calc(5% / 8 * 110);
}

.catalog-card__img img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear
}

.catalog-card__bottom {
  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;
  padding: 20px
}

.catalog-card__name {
  font-weight: 600;
  font-size: 20px;
  line-height: 135%;
  color: #1d1d1d
}

.catalog-card__icon {
  width: 20px;
  height: 16px
}

.catalog-card:hover .catalog-card__img img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05)
}

.catalog-card:hover .catalog-card__icon {
  -webkit-transform: translateX(5px);
  -ms-transform: translateX(5px);
  transform: translateX(5px)
}

.product-card {
  display: block
}

.product-card--sm .product-card__img img {
  height: 285px
}

.product-card__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0px 10px 30px rgba(209, 213, 223, .5);
}

.product-card__img img {
  width: 100%;
  height: 350px;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear
}

.product-card__details {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}

.product-card__name {
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  color: #1d1d1d;
  display: inline-block;
  margin-bottom: 8px
}

.product-card__item-number {
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  color: #949494
}

.product-card:hover .product-card__img img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05)
}

.pdf-card {
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0px 10px 30px rgba(209, 213, 223, .5);
}

.pdf-card__icon {
  width: 50px;
  height: 50px;
  fill: #8f8f8f;
  margin: 0 auto 30px
}

.pdf-card__name {
  display: inline-block;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 20px;
  line-height: 135%;
  text-align: center;
  color: #1d1d1d
}

.pdf-card__action {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  color: #1d1d1d
}

.pdf-card__action svg {
  margin-left: 8px;
  width: 15px;
  height: 18px;
  fill: #1d1d1d
}

.client {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 120px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #ffffff
}

.client__logo img {
  width: 130px;
  height: 80px;
  -o-object-fit: contain;
  object-fit: contain
}

.news-card__layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(43, 43, 49, 0.7)), to(rgba(43, 43, 49, 0.7)));
  background: -webkit-linear-gradient(bottom, rgba(43, 43, 49, 0.7), rgba(43, 43, 49, 0.7));
  background: -o-linear-gradient(bottom, rgba(43, 43, 49, 0.7), rgba(43, 43, 49, 0.7));
  background: linear-gradient(0deg, rgba(43, 43, 49, 0.7), rgba(43, 43, 49, 0.7));
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  transition: all 0.15s linear
}

.news-card__layer svg {
  width: 30px;
  height: 25px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
  -ms-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear
}

.news-card__layer::after {
  content: '';
  display: inline-block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate(-50%, -50%) scale(0);
  -ms-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear
}

.news-card__img {
  overflow: hidden;
  position: relative;
  border-radius: 10px;
  box-shadow: 0px 10px 30px rgba(209, 213, 223, .5);
}

.news-card__img img {
  width: 100%;
  height: 400px;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear
}

.news-card__bottom {
  padding-top: 20px
}

.news-card__title {
  display: inline-block;
  margin-bottom: 10px;
  font-weight: normal;
  font-size: 24px;
  line-height: 130%;
  color: #141414
}

.news-card__date {
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 16px;
  line-height: 175%;
  letter-spacing: 0.02em;
  color: #1d1d1d
}

.news-card__excerpt {
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #8f8f8f
}

.news-card:hover .news-card__img img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05)
}

.news-card:hover .news-card__layer {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0)
}

.news-card:hover .news-card__layer::after,
.news-card:hover .news-card__layer svg {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1)
}

.partners-marquee {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.partners-marquee .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  -o-transition-timing-function: linear !important;
  transition-timing-function: linear !important
}

.partners-marquee .swiper-slide {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.partners-marquee__item {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-negative: 0;
  flex-shrink: 0
}

.partners-marquee svg {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 120px;
  height: 70px;
  margin: 0 30px;
  fill: #6a6a6a
}

.partners {
  padding: 50px 0;
  background-color: #1d1d1d
}

.partners__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.partners__item {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 80%;
  flex: 0 0 80%
}

.collection-items {
  margin-bottom: 60px
}

.collection-item {
  display: block;
  position: relative;
  margin: 0 auto;
  overflow: hidden
}

.collection-item--short {
  width: 90%;
  height: 595px
}

.collection-item--long {
  width: 80%;
  height: 720px
}

.collection-item--gallery {
  height: 675px
}

.collection-item__img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover
}

.collection-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-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  height: 100%;
  position: relative;
  z-index: 1;
  padding: 50px;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease
}

.collection-item__content::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-color: #2b2b31e6;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1
}

.collection-item__title {
  font-weight: 600;
  font-size: 34px;
  line-height: 135%;
  color: #ffffff;
  margin-bottom: 30px
}

.collection-item__subtitle {
  font-weight: 500;
  font-size: 18px;
  line-height: 175%;
  letter-spacing: 0.02em;
  color: #ffffff;
  margin-bottom: 30px
}

.collection-item__line {
  display: inline-block;
  width: 50%;
  height: 1.5px;
  background-color: #ffffff;
  margin-bottom: 30px
}

.collection-item__icon {
  width: 40px;
  height: 18px;
  stroke: #ffffff
}

.collection-item__title,
.collection-item__line,
.collection-item__subtitle,
.collection-item__icon {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-150px);
  -ms-transform: translateY(-150px);
  transform: translateY(-150px);
  -webkit-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear
}

.collection-item:hover .collection-item__content {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0)
}

.collection-item:hover .collection-item__title,
.collection-item:hover .collection-item__subtitle,
.collection-item:hover .collection-item__line,
.collection-item:hover .collection-item__icon {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0)
}

.results__text {
  display: block;
  text-align: center;
  font-weight: 500;
  font-size: 20px;
  line-height: 110%;
  color: #313335;
  margin-bottom: 40px
}

.lazy-loaded {
  position: relative;
  overflow: hidden
}

.lazy-loaded::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(/assets/images/lazy-plug.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-animation: loadingPlaceholder 0.7s linear 0s infinite alternate;
  animation: loadingPlaceholder 0.7s linear 0s infinite alternate
}

.spinner,
.spinner:after {
  border-radius: 50%;
  width: 50px;
  height: 50px
}

.spinner {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-top: 4px solid #1d1d1d;
  border-right: 4px solid #1d1d1d;
  border-bottom: 4px solid #1d1d1d;
  border-left: 4px solid #ffffff;
  -webkit-animation: spinner 1.1s infinite linear;
  animation: spinner 1.1s infinite linear;
  z-index: 10000
}

.countdown__title {
  font-weight: 600;
  font-size: 34px;
  line-height: 135%;
  text-align: center;
  color: #1d1d1d;
  margin-bottom: 15px
}

.countdown__row {
  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
}

.countdown__block {
  width: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}

.countdown__block:not(:last-child) {
  margin-right: 55px
}

.countdown__dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #d2a22e;
  margin-right: 55px;
  -ms-flex-negative: 0;
  flex-shrink: 0
}

.countdown__digit {
  font-weight: bold;
  font-size: 54px;
  line-height: 67px;
  color: #1d1d1d
}

.countdown__caption {
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
  color: #1d1d1d
}

.showroom__details {
  max-width: 90%;
  margin-bottom: 40px
}

.showroom__title {
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  color: #1d1d1d;
  margin-bottom: 24px
}

.showroom__subtitle {
  display: block;
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  color: #8f8f8f;
  margin-bottom: 10px
}

.showroom__text {
  display: inline-block;
  font-weight: 500;
  font-size: 24px;
  line-height: 120%;
  color: #1d1d1d
}

.showroom__photo img {
  width: 100%
}

.showroom .button--filled-gold {
  padding: 4px 8px 4px 24px
}

.eshkere__title {
  margin-bottom: 30px
}

.eshkere__text {
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  color: #1d1d1d
}

.eshkere__quote {
  font-style: italic;
  font-weight: 300;
  font-size: 34px;
  line-height: 125%;
  color: #141414
}

.eshkere__photos {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around
}

.eshkere__img {
  width: 100%
}

.eshkere__img:first-child {
  width: 125%
}

.eshkere__img:first-child img {
  height: 100%
}

.eshkere__img:not(:last-child) {
  margin-right: 25px
}

.eshkere__img:nth-child(2),
.eshkere__img:nth-child(4) {
  padding-top: 55px
}

.eshkere__img:nth-child(3) {
  padding-top: 100px
}

.eshkere__img img {
  width: 100%
}

@media (max-width: 1300px) {
  .partners__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%
  }
  .marquee {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
  }
  .marquee svg {
    margin: 0 25px
  }
  .product-card__img img {
    height: 300px
  }
  .product-card--sm .product-card__img img {
    height: 250px
  }
  /* .catalog-card__img img {
    height: 240px
  } */
  .news-card__img img {
    height: 350px
  }
  .collection-item {
    width: 100%
  }
  .collection-item--long {
    height: 620px
  }
  .collection-item--short {
    height: 495px
  }
}

@media (max-width: 1200px) {
  .collection-item {
    width: 100%
  }
  .collection-item--long {
    height: 520px
  }
  .collection-item--short {
    height: 425px
  }
}

@media (max-width: 1170px) {
  .marquee svg {
    margin: 0 20px
  }
  .showroom__details {
    margin-bottom: 20px
  }
  .showroom__title {
    margin-bottom: 15px
  }
  .showroom__subtitle {
    margin-bottom: 10px
  }
  .showroom__text {
    color: #1d1d1d
  }
}

@media (max-width: 1100px) {
  .collection-item--gallery {
    height: 550px
  }
  .eshkere__img:not(:last-child) {
    margin-right: 15px
  }
  .eshkere__img:nth-child(3) {
    margin-right: 0
  }
  .eshkere__img:nth-child(4) {
    display: none
  }
}

@media (max-width: 992px) {
  .partners__row {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
  }
  .partners__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 70%;
    flex: 0 0 70%
  }
  .marquee {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
  }
  .marquee svg {
    -ms-flex-negative: 0;
    flex-shrink: 0
  }
  .product-card__img img {
    height: 220px
  }
  .product-card--sm .product-card__img img {
    height: 200px
  }
  /* .catalog-card__img img {
    height: 240px
  } */
  .news-card__img img {
    height: 300px
  }
  .collection-item--gallery {
    height: 450px
  }
  .countdown__title {
    font-size: 28px;
    margin-bottom: 10px
  }
  .countdown__block:not(:last-child) {
    margin-right: 35px
  }
  .countdown__dot {
    margin-right: 35px
  }
  .showroom__title {
    margin-bottom: 15px
  }
  .showroom__subtitle {
    margin-bottom: 5px
  }
  .showroom__text {
    font-size: 18px;
    color: #1d1d1d
  }
  .showroom__photo {
    margin-bottom: 30px
  }
  .showroom__photo img {
    width: 100%
  }
  .eshkere__quote {
    font-size: 28px
  }
}

@media (max-width: 768px) {
  .page-top {
    display: block
  }
  .page-top--child-based {
    margin-top: 25px;
    overflow: hidden;
    height: 0 !important
  }
  .section {
    margin-bottom: 40px
  }
  .section__title {
    font-size: 24px;
    margin-bottom: 25px
  }
  .product-card__img {
    padding: 15px;
    margin-bottom: 15px
  }
  .product-card__name {
    line-height: 24px;
    font-size: 16px
  }
  .product-card__item-number {
    font-size: 12px
  }
  /* .catalog-card__img img {
    height: 300px;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: right;
    object-position: right
  } */
  .news-card__title {
    font-size: 20px;
    margin-bottom: 5px
  }
  .news-card__excerpt {
    font-size: 16px
  }
  .collection-items {
    margin-bottom: 0
  }
  .collection-item {
    width: 100%;
    margin-bottom: 30px
  }
  .collection-item--gallery {
    height: 325px
  }
  .collection-item__content {
    padding: 25px
  }
  .collection-item__title {
    font-size: 24px;
    margin-bottom: 15px
  }
  .collection-item__subtitle {
    font-size: 16px;
    margin-bottom: 15px
  }
  .collection-item__line {
    margin-bottom: 15px
  }
  .results__text {
    font-size: 18px;
    margin-bottom: 25px
  }
  .countdown__title {
    font-size: 24px
  }
  .countdown__block:not(:last-child) {
    margin-right: 20px
  }
  .countdown__dot {
    margin-right: 20px
  }
  .countdown__digit {
    font-size: 34px;
    line-height: 40px
  }
  .showroom__details {
    max-width: 100%
  }
  .showroom__title {
    font-size: 18px
  }
  .showroom .button--filled-gold {
    margin-right: 0 !important
  }
  .showroom .button--text {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-left: 24px
  }
  .eshkere__title {
    margin-bottom: 10px
  }
  .eshkere__text {
    margin-bottom: 20px
  }
  .eshkere__photos {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 30px
  }
  .eshkere__img:nth-child(1) img {
    height: 450px
  }
  .eshkere__img:nth-child(2) {
    padding-top: 0;
    margin-right: 0
  }
  .eshkere__img:nth-child(3) {
    display: none
  }
}

@media (max-width: 575px) {
  .page-top {
    height: 50px
  }
  .marquee svg {
    width: 70px;
    height: 60px
  }
  .product-card__img img {
    height: 200px
  }
  .product-card--sm .product-card__img img {
    height: 200px
  }
  /* .catalog-card__img img {
    height: 220px
  } */
  .catalog-card__name {
    font-size: 18px
  }
  .news-card__bottom {
    padding-top: 15px
  }
  .news-card__title {
    font-size: 16px;
    margin-bottom: 5px
  }
  .news-card__date {
    font-size: 14px;
    margin-bottom: 5px
  }
  .news-card__excerpt {
    font-size: 14px
  }
  .collection-item {
    width: 100%;
    margin-bottom: 10px
  }
  .collection-item--long,
  .collection-item--short {
    height: 520px
  }
  .collection-item--gallery {
    min-height: 500px
  }
  .collection-item__content {
    padding: 15px
  }
  .collection-item__title {
    font-size: 18px
  }
  .collection-item__title,
  .collection-item__subtitle,
  .collection-item__line,
  .collection-item__icon {
    -webkit-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    transform: translateY(-50px)
  }
  .collection-item__icon {
    width: 30px;
    height: 15px
  }
  .results__text {
    font-size: 16px
  }
  .countdown__title {
    font-size: 22px
  }
  .countdown__block:not(:last-child) {
    margin-right: 15px
  }
  .countdown__dot {
    margin-right: 15px
  }
  .countdown__digit {
    font-size: 28px;
    line-height: 40px
  }
  .countdown__caption {
    font-size: 14px
  }
  .partners-marquee svg {
    width: 90px;
    height: 40px;
    margin: 0 15px
  }
  li.page-item {
    display: none
  }
  .page-item:first-child,
  .page-item:last-child,
  .page-item:nth-child(3),
  .page-item:nth-child(4),
  .page-item:nth-child(5),
  .page-item.active {
    display: block
  }
  .showroom__subtitle {
    font-size: 16px
  }
  .showroom .button--filled-gold {
    width: 65%;
    margin-bottom: 20px
  }
  .eshkere__title {
    text-align: center
  }
  .eshkere__text {
    text-align: center;
    font-size: 16px
  }
  .eshkere__quote {
    display: block;
    text-align: center;
    font-size: 24px
  }
  .eshkere__photos {
    margin-top: 25px
  }
  .eshkere__img:nth-child(1) img {
    height: 300px
  }
  .eshkere__img:nth-child(2) img {
    height: 250px
  }
}

@media (max-width: 375px) {
  .news-card__img img {
    height: 250px
  }
  .collection-item {
    width: 100%;
    margin-bottom: 10px
  }
  .collection-item--long,
  .collection-item--short {
    height: 320px
  }
  .collection-item--gallery {
    min-height: 225px
  }
  .partners-marquee svg {
    width: 70px;
    height: 60px;
    margin: 0 15px
  }
  .showroom .button--filled-gold {
    width: 100%
  }
  .showroom .button--text {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: 0
  }
  .eshkere__text {
    font-size: 14px
  }
  .eshkere__img:nth-child(1) img {
    height: 250px
  }
  .eshkere__img:nth-child(2) img {
    height: 180px
  }
}

div.partners__item {
  flex: 0 0 10%;
}

.error {
  margin-top: 10px;
  display: block;
  color: red;
  font-size: 14px;
}

.main__card {
  background-color: #ffffff;
  position: fixed;
  z-index: 999;
  left: 20px;
  bottom: 0;
  width: 345px;
  height: 151px;
  border: 1px solid #E5E5E5;
  border-radius: 6px;
  box-shadow: 0px 10px 30px rgba(209, 213, 223, .5)
}

.icon__x {
  position: absolute;
  right: 0;
  background-color: white;
  top: 3px;
  padding: 5px;
  cursor: pointer;
}

.main__card .d-flex {
  height: 151px;
}

.card-title {
  width: 140px;
  padding-left: 25px;
}

.card__img {
  width: 170px;
}

.card-title p {
  font-style: normal;
  font-weight: 600;
  font-size: 15px;
  line-height: 140%;
  text-align: left;
  color: #1e1e1e;
  padding-bottom: 5px;
}

.sidebar .search-form__input,
.sidebar .search-form__field {
  border-radius: 6px;
}

.sidebar .search-form__button {
  border-radius: 4px
}

.sidebar .float-results {
  border-radius: 10px !important
}


.share {
    display: flex;
    margin-top: 25px;
    align-items: center;
}
.share span {
    margin-right: 10px;
    font-size: 20px;
    font-weight: 500;
}
.share a {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 16px;
    margin-right: 10px;
    background-color: transparent;
    position: relative;
    transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}
.share a:after {
    transition-delay: 0.4s;
    transform: scale(0, 1);
}
.share img {
    width: 25px;
}

.share a:hover {
    background-color: #fff;
    border-color: rgba(0, 0, 0, 0.3);
    transform: scale(1.2, 1.2);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.callbtn {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 11;
}

.callbtn a {
    width: 65px;
    height: 65px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: #ca920c;
    border-radius: 100%;
    -webkit-animation: breathing 3s ease-out infinite normal;
    animation: breathing 3s ease-out infinite normal;
}

.callbtn a img {
    -webkit-filter: brightness(10);
    filter: brightness(10);
    width: 35%;
    height: 35%;
    z-index: 2;
}

.callbtn a::after {
    content: "";
    width: 140%;
    height: 140%;
    background: rgba(202, 146, 12, 0.2);
    position: absolute;
    border-radius: 100%;
    -webkit-animation: breathing 3s ease-out infinite normal;
    animation: breathing 3s ease-out infinite normal;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

@-webkit-keyframes breathing {
    0% {
        -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
        transform: scale(0.9);
    }
    25% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
    60% {
        -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
        transform: scale(0.9);
    }
    100% {
        -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
        transform: scale(0.9);
    }
}
@keyframes breathing {
    0% {
        -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
        transform: scale(0.9);
    }
    25% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
    60% {
        -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
        transform: scale(0.9);
    }
    100% {
        -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
        transform: scale(0.9);
    }
}