:root{
  --mainColor: #E9022B;
  --mainColorLight: #ff96a0;
  --secondaryColor: #d40e1e;
  --textColor: #555;

}

@font-face {
  font-family: 'Satoshi-Regular';
  src: url('../fonts/Satoshi-Regular.woff2') format('woff2'),
       url('../fonts/Satoshi-Regular.woff') format('woff'),
       url('../fonts/Satoshi-Regular.ttf') format('truetype');
       font-weight: 400;
       font-display: swap;
       font-style: normal;
}
@font-face {
  font-family: 'Satoshi-Italic';
  src: url('../fonts/Satoshi-Italic.woff2') format('woff2'),
       url('../fonts/Satoshi-Italic.woff') format('woff'),
       url('../fonts/Satoshi-Italic.ttf') format('truetype');
       font-weight: 400;
       font-display: swap;
       font-style: italic;
}
@font-face {
  font-family: 'Satoshi-Bold';
  src: url('../fonts/Satoshi-Bold.woff2') format('woff2'),
       url('../fonts/Satoshi-Bold.woff') format('woff'),
       url('../fonts/Satoshi-Bold.ttf') format('truetype');
       font-weight: 700;
       font-display: swap;
       font-style: normal;
}

* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: 'Satoshi-Regular';
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--textColor);
  overflow-x: hidden;
}

body::-webkit-scrollbar {
  width: 8px;
}
 
body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
 
body::-webkit-scrollbar-thumb {
  background-color: var(--mainColor);
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

textarea {
  resize: vertical;
}

a {
  color: var(--textColor);
}
a:hover {
  color: var(--mainColor);
}

p {
  margin: 0 0 16px;
}

strong {
  font-family: 'Satoshi-Bold';
}

i {
  font-family: 'Satoshi-Italic';
}

h1,h2,h3,h4,h5,h6 {
  margin: 0 0 24px;
  font-family: 'Satoshi-Bold';
}

img.lazy {
  width: 24px;
  height: 24px;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;

  background: url(../img/loader.svg);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  /*background-size: contain;*/
}

.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}

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

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1180px;
  }
}

@media (min-width: 1440px) {
  .container {
    max-width: 1420px;
  }
}

@media (min-width: 1600px) {
  .container {
    max-width: 1580px;
  }
}

.preloader {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 999999;
}
.preloader svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;

  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.preloader .st1 {
  fill: #EE3524;
  fill-opacity: 0;
  animation-timing-function: ease-in;
  animation-fill-mode: forwards;
  animation-direction: alternate;
  animation-iteration-count: 1;

  animation-name: StrokeIn, FillIn;
  animation-duration: 2s, 2s;
  animation-delay: 0s, 0s;

  stroke:#EE3524;
  stroke-miterlimit:1;
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
}
.preloader .st2 {
  fill: #717073;
  fill-opacity: 0;
  animation-timing-function: ease-in;
  animation-fill-mode: forwards;
  animation-direction: alternate;
  animation-iteration-count: 1;

  animation-name: StrokeIn, FillIn;
  animation-duration: 1s, 1s;
  animation-delay: .5s, .5s;

  stroke:#717073;
  stroke-miterlimit:1;
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
}
.preloader .st3 {
  fill: #717073;
  fill-opacity: 0;
  animation-timing-function: ease-in;
  animation-fill-mode: forwards;
  animation-direction: alternate;
  animation-iteration-count: 1;

  animation-name: FillIn;
  animation-duration: 1s;
  animation-delay: .5s;
}

@-webkit-keyframes FillIn {
  from { fill-opacity: 0; }
  to { fill-opacity: 1; }
}

@-webkit-keyframes StrokeIn {
  0% {
      stroke-dashoffset: 500;
  }
  100% {
      stroke-dashoffset: 0;
  }
}

.btn {
  position: relative;
  display: inline-block;
  padding: 8px 24px;
  background: var(--mainColor);
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  border: none;
  outline: none;
  overflow: hidden;
/*  border-radius: 3px;*/
  transition: all .2s ease-in-out;
}
.btn:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--secondaryColor);
  transition: all .2s ease-in-out;
}
.btn:hover:after {
  width: 100%;
}
.btn span {
  position: relative;
  z-index: 1;
  transition: all .2s ease-in-out .1s;
}
.btn:hover span {
  color: #fff;
}

/*HEADER*/
header {

}
header .container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  z-index: 999;
}
.logo {

}
.logo img {
  width: 200px;
  height: auto;
}

.nav__search {
  display: flex;
  align-items: center;
}
.main__nav {

}
.main__nav-ul {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.main__nav-li {
  position: relative;
}
.main__nav-li a {
  padding: 8px 16px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .2s ease-in-out;
}
.main__nav-li a:hover {
  color: var(--mainColor);
}
.main__nav-li.active > a {
/*  border-radius: 4px;*/
  color: var(--mainColor);
  background: #f5f5f5;
}
.main__nav-li.active > a:after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 50px;
}
.main__nav-sub {
  position: absolute;
  top: 75px;
  left: 0;
  width: 320px;
  background: #fff;
  padding: 16px 16px 0;
  margin: 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.3);
  transform: translateY(-24px);
  transition: all .2s ease-in-out;
}
.main__nav-li:hover .main__nav-sub {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.main__nav-sub-li {
  margin-bottom: 16px;
}
.main__nav-sub-li a {
  padding: 0;
}

.search {
  margin-left: 32px;
}
.search__toggle {
  width: 16px;
  cursor: pointer;
}
.search form {
  position: absolute;
  top: 20%;
  right: 0;
  width: 66.666%;
  height: 60%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0);
  transition: all .2s ease-in-out;
}
.search.active form {
  opacity: 1;
  visibility: visible;
}
.search input[type="text"] {
  width: 100%;
  height: 100%;
  padding: 8px 32px;
  font-size: 24px;
  border: 1px solid #ddd;
  outline: none;
}
.search__close {
  position: absolute;
  top: 50%;
  right: 24px;
  width: 16px;
  height: 16px;
  cursor: pointer;
  transform: translateY(-50%);
}

.menu__btn {
  display: none;
  height: 20px;
  margin-left: 16px;
}
.menu__btn svg {
  width: 24px;
  margin-left: 8px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 400ms;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;

  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
.menu__btn.active .line {
  stroke: var(--mainColor);
}
.menu__btn.active .btnRotate {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}
.line {
  fill:none;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke:#444;
  stroke-width:4;
}
.menu__btn svg .top {
  stroke-dasharray: 40 82;
}
.menu__btn svg .middle {
  stroke-dasharray: 40 111;
}
.menu__btn svg .bottom {
  stroke-dasharray: 40 161;
}
.menu__btn.active svg .top {
  stroke-dasharray: 17 82;
  stroke-dashoffset: -62px;
}
.menu__btn.active svg .middle {
  stroke-dashoffset: 23px;
}
.menu__btn.active svg .bottom {
  stroke-dashoffset: -83px;
}

/*page components*/
.page__master {
  width: 100%;
  height: calc(50vh);
  padding: 40px 80px;
}
.page__master-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
/*  border-radius: 4px;*/
}
.page__master-inner:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(33,33,33);
  background: linear-gradient(0deg, rgba(33,33,33,0.8) 0%, rgba(33,33,33,0) 100%);
}
.page__master img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page__master h1 {
  position: absolute;
  bottom: 40px;
  left: 50px;
  width: 50%;
  margin: 0;
  line-height: 1;
  font-size: 56px;
  color: #fff;
  z-index: 1;
}

.page__info {
  padding: 40px 0;
}
.page__desc {
  width: 960px;
  max-width: 100%;
  margin: 0 auto;
  font-size: 20px;
}
.page__desc p {
  font-size: 20px;
}

table {
  margin: 40px 0;
  border: 1px solid #ddd;
  border-collapse: collapse;
}
tr {
  border: 1px solid #ddd;
}
td, th {
  padding: 8px 16px;
  border-right: 1px solid #ddd;
}

/*homepage*/
.slider {
  width: 100%;
  height: 50vh;
  padding: 0px 80px 24px;
  position: relative;
}
.slick-list,
.slick-track,
.slick-slide {
  height: 100%;
}
.slick-slide {
  position: relative;
  overflow: hidden;
/*  border-radius: 4px;*/
}
.slick-slide:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(33,33,33);
  background: linear-gradient(0deg, rgba(33,33,33,0.8) 0%, rgba(33,33,33,0) 100%);
}
.slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slider__info {
  position: absolute;
  bottom: 40px;
  left: 60px;
  width: 70%;
  z-index: 1;
}
.slider__info h1 {
  font-size: 40px;
  color: #fff;
  margin: 0;
}
.slick-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  display: flex;
  height: 16px;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  transform: translateX(-50%);
}
.slick-dots li.slick-active button {
  background: var(--mainColor);
}
.slick-dots li button {
  width: 16px;
  height: 16px;
  text-indent: -9999px;
  background: #cecece;
  border: none;
/*  border-radius: 100%;*/
  transition: all .2s ease-in-out;
  cursor: pointer;
}
.slick-dots li button:hover {
  background: rgb(238 53 36 / 15%);
}
.slick-arrow {
  position: absolute;
  top: 50%;
  left: 40px;
  background: none;
  border: none;
  transform: translateX(-50%);
  cursor: pointer;
}
.slick-arrow svg {
  width: 24px;
}
.slick-arrow svg path {
  transition: all .2s ease-in-out;
}
.slick-arrow:hover svg path {
  fill: var(--mainColor);
}
.slick-next {
  left: auto;
  right: 40px;
  background: none;
  border: none;
  transform: translateX(50%);
}

/*home services*/
.home__services {
  position: relative;
  margin-top: 24px;
}
.service__tabs {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.service__tabs-li {
  width: 100%;
  padding: 16px;
  text-align: center;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: .2s all ease-in-out;
}
.service__tabs-li:hover {
  border-bottom: 2px solid var(--mainColorLight);
}
.service__tabs-li.active {
  border-bottom: 2px solid var(--mainColor);
}
.service__tabs-li span {
  text-transform: uppercase;
}

.home__service-tabcontent {
  padding: 80px 20px 80px 20px;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.home__service-tabcontent.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transition: all .2s ease-in-out;
}
.home__service-tabcontent .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}
.home__service-item {
  position: relative;
  width: 25%;
  padding: 0 20px 40px;
  align-self: stretch;
  border-right: 1px solid #ddd;
}
.home__service-item:after {
  content: '';
  position: absolute;
  bottom: 24px;
  right: -20px;
  width: 40px;
  height: 1px;
  background: #ddd;
}
.home__service-item:nth-child(4n+4) {
  border: none;
}
.home__service-item:nth-child(4n+4):after {
  display: none;
}
.home__service-inner {
  position: relative;
  height: 100%;
  background: #fff;
  overflow: hidden;
  transition: all .2s ease-in-out;
}
.home__service-inner:hover .home__service-img {
  border: 2px solid var(--mainColor);
}
.home__service-img {
  width: 100% !important;
  height: 240px !important;
  object-fit: cover;
  display: block;
  border: 2px solid transparent;
  transition: all .2s ease-in-out;
}
.home__service-info {
  padding: 24px;
}
.home__service-title {
  margin: 0 0 16px;
}
.home__service-desc {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;
}
.home__service-desc p {
  margin: 0;
}
.home__service-link {
  position: relative;
  display: block;
  margin: 24px 0 0;
  text-decoration: none;
  color: var(--mainColor);
  text-transform: uppercase;
  font-size: 14px;
}
.home__service-link:after {
  content: '>';
  position: absolute;
  top: 50%;
  right: -8px;
  color: var(--mainColor);
  opacity: 0;
  transform: translate(-10px, -50%);
  transition: all .2s ease-in-out;
}
.home__service-link:hover:after {
  opacity: 1;
  transform: translate(0px, -50%);
}

.home__service-viewall {
  position: absolute;
  bottom: 40px;
  left: 50%;
  color: #212121;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 16px;
  padding: 8px 24px;
  margin-top: 40px;
/*  border-radius: 3px;*/
  transition: all .2s ease-in-out;
  transform: translateX(-50%);
}
.home__service-viewall:hover {
  color: var(--mainColor);
  background: #fff;
}

/*services*/
.service {

}
.service .container {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ddd;
  padding: 40px 0;
}
.service:nth-child(even) .service__img {
  order: 2;
}
.service__img {
  position: relative;
  width: 50%;
}
.service__img img {
  position: relative;
  display: block;
  width: 600px;
  height: 600px;
  margin: 0 auto;
  object-fit: cover;
/*  border-radius: 4px;*/
  box-shadow: 0 4px 8px 2px rgba(0,0,0,0.15);
  z-index: 1;
}
.service__info {
  width: 50%;
  padding: 0 80px;
}
.service__info h2 {
  font-size: 40px;
  line-height: 1;
  margin: 0 0 24px;
}
.service__desc {
/*  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;*/
}
.service__desc p {
  
}
.service__list {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}
.service__list li {
  margin: 0 0 8px;
}
.service__list a {
  text-decoration: none;
}
.service__list a:after {
  content: '>';
  margin-left: 16px;
  color: var(--mainColor);
  font-size: 14px;
}
.service .btn {
  margin-top: 40px;
}

/*service single*/
.service__page {
  padding: 80px 0;
}
.service__page-list {
  width: 960px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
.service__page-list li {
  width: 50%;
  padding: 0 24px;
  margin: 0 0 16px;
  text-align: center;
}
.service__page-list li a {
  text-decoration: none;
  text-transform: uppercase;
}
.service__page-list li a:after {
  content: '>';
  margin-left: 16px;
  color: var(--mainColor);
}

.service__transactions {
  margin: 80px 0 0;
}
.service__transactions h2 {
  text-align: center;
  margin: 0 0 40px;
}
.service__transaction-list {
  display: flex;
  flex-wrap: wrap;
  width: 960px;
  max-width: 100%;
  margin: 0 auto;
}
.service__transaction-item {
  width: 33.333%;
  padding: 0 40px;
}
.service__transaction-item-inner {
  
}
.service__transaction-item img {
  width: 100%;
  height: auto;
  display: block;
}
.service__transaction-desc {
  margin-top: 24px;
  text-align: center;
}

/*pagination*/
.pagination {
  width: 100%;
  margin: 40px 0;
}
.pagination a {
  text-decoration: none;
}
.pagination__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0;
  padding: 0;
}
.pagination__prev {
  cursor: pointer;
}
.pagination__next {
  cursor: pointer;
}
.pagination__numbers {
  display: flex;
  align-items: center;
/*  border-radius: 3px;*/
  border: 1px solid #ddd;
}
.pagination__nr {
  border-right: 1px solid #ddd;
  padding: 8px 16px;
/*  border-radius: 3px;*/
  cursor: pointer;
}
.pagination__nr:last-child {
  border-right: 0;
}
.pagination__nr.active {
  background: var(--mainColor);
  color: #fff;
}

/*about*/
.about {
  width: 960px;
  max-width: 100%;
  margin: 0 auto;
}
.about h2 {
  margin-bottom: 40px;
}
.about__desc {
  margin-bottom: 80px;
  line-height: 1.4;
}
.about__desc p {
  max-width: 100%;
}

/*transactions*/
.transactions {
  margin: 40px 0;
}
.transaction__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.transaction__item {
  width: 370px;
  padding: 0 8px;
  margin: 0 0 16px;
/*  align-self: stretch;*/
}
.transaction__item-inner {
  position: relative;
  width: 100%;
  height: 490px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #ddd;
  transition: all .2s ease-in-out;
  overflow-y: auto;
}
.transaction__item-inner:hover {
  background: #ddd;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
}
.transaction__desc {
  text-align: center;
}
.transaction__desc img {
  /* margin: 0 0 40px; */
  width: 50%;
  height: auto;
  object-fit: contain;
}
.transaction__desc p {
  margin: 0 0 8px;
}
.transaction__akin {
  font-size: 14px;
  margin-top: 8px;
  text-align: center;
}
.transaction__akin p {
  margin: 0 0 8px;
  font-size: 14px;
}
.transaction__akin p:last-child {
  margin: 0;
}
/* .transaction__akin > p {
  font-style: italic;
} */
.transaction__akin img {
  display: inline-block;
  width: 40%;
  height: auto;
  margin: 8px 0;
}
.transaction__akin h3 {
  margin: 0 0 8px;
  font-size: 14px;
}

.transaction__details {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 24px;
  opacity: 0;
  overflow: auto;
  visibility: hidden;
  background: #f5f5f5;
  border: 1px solid #ddd;
  transition: all .2s ease-in-out;
}
.transaction__item-inner:hover .transaction__details {
  opacity: 1;
  visibility: visible;
}
.transaction__details img {
  width: 200px;
  height: auto;
  margin-bottom: 0;
}
.transaction__details-info {
  margin-top: 24px;
}
.transaction__details-info p {
  margin: 0;
  line-height: 1.2;
}
.transaction__details-info span {
  display: block;
  font-family: 'Satoshi-Bold';
  margin: 0 0 4px;
  line-height: 1;
}

.transactions--historic {

}
.transactions--historic .transaction__item {
  width: 50%;
}
.transactions--historic .transaction__item-inner {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 40px;
}
.transactions--historic .transaction__item-inner:hover {
  background: none;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
}
.historic__transaction-img {
  width: 200px;
  flex-shrink: 0;
}
.historic__transaction-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.historic__transaction-img h3 {
  font-size: 16px;
  color: var(--mainColor);
  text-align: center;
}
.transactions--historic .transaction__desc {
  text-align: left;
  padding-left: 40px;
  border-left: 1px solid #ddd;
}


/*filter*/
.filters {
  padding: 0 20px;
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}
.filters span {

}
.filters select {
  padding: 8px 16px;
  border: 1px solid #ddd;
  outline: none;
}

/*news*/
.news {
  margin: 40px 0 80px;
}
.news .container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.news__item {
  display: flex;
  gap: 24px;
  width: calc(50% - 24px);
  border: 1px solid #ddd;
  padding: 24px;
}
.news__item-img {
  width: 45%;
  height: 240px;
/*  border-radius: 4px;*/
  flex-shrink: 0;
}
.news__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news__info {
  flex-shrink: 1;
  width: auto;
}
.news__info h2 {
  margin: 0 0 16px;
  font-size: 20px;
}
.news__info-desc {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;  
  overflow: hidden;
  word-break: break-word;
}
.news__info-desc p,
.news__info-desc em {
  font-style: normal;
  margin: 0 0 4px;
}
.news__item a {
  text-decoration: none;
}
.news__item-link {
  display: block;
  margin-top: 24px;
}

/*brochures*/
.brochures {
  margin: 40px 0 80px;
}
.brochures .container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.brochure__item {
  position: relative;
  width: calc(25% - 18px);
  height: 400px;
/*  border-radius: 4px;*/
  overflow: hidden;
}
.brochure__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.brochure__info {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgb(0,0,0);
  background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.5032606792717087) 50%, rgba(0,0,0,0) 100%);
}
.brochure__info h2 {
  position: absolute;
  bottom: 16px;
  left: 16px;
  color: #fff;
  margin: 0;
  font-size: 24px;
}

/*industries*/
.industries {
  margin: 40px 0 80px;
}
.industry__item {
  position: relative;
  padding: 40px 0;
}
.industry__item .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 1px solid #ddd;
  padding-bottom: 40px;
}
.industry__item-img {
  position: relative;
  width: 50%;
  height: 480px;
}
.industry__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
/*  border-radius: 4px;*/
  box-shadow: 0 4px 8px 4px rgba(0, 0, 0, 0.1);
}
.industry__item:nth-child(odd) .industry__item-img {
  order: 2;
}
.industry__item-info {
  width: 50%;
  padding: 24px 48px;
}
.industry__item-info h2 {
  font-size: 24px;
  margin: 0 0 24px;
}
.industry__item-info ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.industry__item-info ul li {
  margin-bottom: 8px;
}

/*contact*/
.contact {
  margin-bottom: 80px;
}
.contact__info {
  width: 960px;
  max-width: 100%;
  margin: 0 auto 40px;
}
.contact__info h2 {

}
.contact__address {
  display: flex;
}
.contact__txt {
  margin-right: 80px;
}
.contact__txt p {
  margin-bottom: 8px;
}

.contact__map {

}
.map__iframe {
  display: none;
  overflow: hidden;
/*  border-radius: 4px;*/
}
.map__iframe.active {
  display: block;
}
.map__iframe iframe {
  width: 100%;
  height: 560px;
}

.map__links {
  display: flex;
  align-items: center;
  margin-top: 24px;
  line-height: 1;
}
.map__links h3 {
  font-size: 18px;
  margin: 0 16px 0 0;
}
.map__links span {
  margin-right: 16px;
  cursor: pointer;
}
.map__link.active {
  color: var(--mainColor);
} 

/*search*/
.search__page {
  margin: 80px 0;
}
.search__page form {
  position: relative;
  width: 300px;
}
.search__page form input {
  width: 100%;
  height: 40px;
  padding: 8px 16px;
/*  border-radius: 4px;*/
  border: 1px solid #ddd;
}
.search__page form input:focus {
  border-color: var(--mainColor);
}

.search__page-results {
  margin: 40px 0;
}
.search__page-result {
  margin-bottom: 40px;
}
.search__page-result h3 {
  margin-bottom: 16px;
}
.search__items a {
  display: block;
}


/*footer*/
footer {
  padding: 80px 0;
  background: #f5f5f5;
}
footer .container {
  display: flex;
  justify-content: space-between;
}
.footer__item {
  font-size: 16px;
  padding: 0 16px;
}
.footer__item:first-child {
  padding-right: 160px;
}
.footer__item:first-child a {
  
}
.footer__item:last-child ul {
  display: flex;
  flex-wrap: wrap;
}
.footer__item:last-child li {
  width: 50%;
}
.footer__item:last-child li:nth-child(even) {
  padding-left: 40px;
}
.footer__logo {
  display: block;
  margin-bottom: 40px;
}
.footer__item h3 {
  font-size: 24px;
  
}
.footer__item ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer__item li {
  margin-bottom: 8px;
}
.footer__item li a {
  
  text-decoration: none;
}

/*error 404*/
.error__404 {
  height: calc(100vh - 580px);
}
.error__404 .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.error__info {
  text-align: center;
}
.error__info h1 {
  color: var(--mainColor);
  font-size: 48px;
}
.error__info a {
  color: var(--mainColor);
}

/*privacy popup*/
.privacy__popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  z-index: 99999;
}
.privacy__popup-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 480px;
  background: #fff;
/*  border-radius: 4px;*/
  padding: 24px;
  transform: translate(-50%, -50%);
}
.privacy__popup p {

}
.privacy__popup p a {

}
.privacy__popup .btn {
  
}





