/* STYLY */
/*======================*/
body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 100vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  position: relative;
  color: #4f586b;
  background: #ffffff;
  overflow-x: hidden;
}

h1, .h1, .sub-heading {
  font-size: 48px;
  font-weight: 700;
}
.html-content h2 {
  color: #e00129;
}

.text-red {
  color: #e00129;
}
.err::-webkit-input-placeholder { /* Edge */
  color: #e00129;
}
.err:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #e00129;
}
.err::placeholder {
  color: #e00129;
}

.text-darkBlue {
  color: #010e2a;
}

.text-white {
  color: white;
}

.red-first, .red-last {
  color: #000000;
}
.red-first span, .red-last span {
  color: #e00129;
}

a {
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}

a:hover {
  text-decoration: none;
}

p {
  line-height: 32px;
}

.cleaner {
  clear: both;
}

input {
  margin: 9px 0;
  width: 100%;
  height: 60px;
  padding: 0 25px;
  border: 1px solid #dfdfdf;
  border-radius: 5px;
  color: #676e7c;
  background-color: #f7f7f8;
  font-size: 16px;
  font-weight: 400;
}

input::-webkit-input-placeholder {
  color: #676e7c;
}

input:-ms-input-placeholder {
  color: #676e7c;
}

input::-ms-input-placeholder {
  color: #676e7c;
}

input::placeholder {
  color: #676e7c;
}

textarea {
  margin: 9px 0;
  width: 100%;
  padding: 15px 25px 15px 25px;
  border: 1px solid #dfdfdf;
  border-radius: 5px;
  resize: none;
  color: #676e7c;
  background-color: #f7f7f8;
  font-size: 16px;
  font-weight: 400;
}

textarea::-webkit-input-placeholder {
  color: #676e7c;
}

textarea:-ms-input-placeholder {
  color: #676e7c;
}

textarea::-ms-input-placeholder {
  color: #676e7c;
}

textarea::placeholder {
  color: #676e7c;
}

.backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100vw;
  height: 100vh;
  background-color: #000000;
  opacity: .7;
  cursor: pointer;
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

#hamburger {
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 33px;
  height: 60px;
  position: relative;
  background-color: transparent;
  cursor: pointer;
}

#hamburger:hover span {
  background: white;
}

#hamburger span {
  position: absolute;
  height: 3px;
  width: 29px;
  background: white;
  opacity: 1;
  right: 0;
  left: 0;
  margin: 7px auto;
  -webkit-transform: rotate(0);
          transform: rotate(0);
  -webkit-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

#hamburger span:nth-child(1) {
  top: 14px;
  -webkit-transform-origin: left center;
          transform-origin: left center;
}

#hamburger span:nth-child(2) {
  top: 22px;
  -webkit-transform-origin: left center;
          transform-origin: left center;
}

#hamburger span:nth-child(3) {
  top: 30px;
  -webkit-transform-origin: left center;
          transform-origin: left center;
}

#hamburger.open span {
  background: white;
}

#hamburger.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 12px;
  left: 0px;
}

#hamburger.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

#hamburger.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 32px;
  left: 0px;
}

.btn {
  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;
  color: white;
  background-color: #e00129;
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 700;
  border-radius: 40px;
  padding: 0 15px;
  width: 100%;
  min-width: 160px;
  max-width: 200px;
  height: 60px;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}

.btn:hover {
  background-color: #ff002f;
  color: white;
}

.more-btn .btn {
  display: inline-flex;
}

.btn-rectangle {
  border-radius: 8px;
  font-size: 30px;
  max-width: 270px;
  height: 70px;
}

.btn-white {
  color: #e00129;
  background-color: white;
  border: 2px solid white;
  height: 50px;
}

.btn-white:hover {
  background-color: #e00129;
  color: white;
}

.breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: unset;
  font-size: 16px;
  font-weight: 400;
  padding: 0;
  margin-top: 20px;
}

.breadcrumb .breadcrumb-item a {
  color: white;
  text-decoration: none;
}

.breadcrumb .breadcrumb-item a:hover {
  text-decoration: underline;
}

.breadcrumb .breadcrumb-item:before {
  color: white;
}

.breadcrumb .breadcrumb-item.active a {
  color: #ce042b;
  text-decoration: none;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "\2022";
}

.contact-strip {
  height: 60px;
  background-color: #ccdbed;
  z-index: 101;
}

.contact-strip .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: 100%;
  max-width: 1260px;
  padding-right: 30px;
  padding-left: 30px;
}

.contact-strip .contact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 30px;
}

.contact-strip .contact-item:hover .text {
  text-decoration: underline;
}

.contact-strip .contact-item .icon {
  margin-right: 20px;
  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;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #b6c8db;
}

.contact-strip .contact-item .text {
  color: #102e5d;
  font-size: 14px;
  font-weight: 600;
}

.contact-person {
	color: #010e2a;
	background: #f7f7f8;
	padding: 20px;
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
}

.contact-person a {
	color: #e00129;
	text-decoration: underline;
}

.contact-person a:hover {
	text-decoration: none;
}

.menu-wrap {
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #FFFFFF), color-stop(50%, #e00129));
  background: linear-gradient(90deg, #FFFFFF 50%, #e00129 50%);
}
.menu-wrap.fixed {
  z-index: 1001;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
}

menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1270px;
  margin: 0 auto;
  padding: 0;
  position: relative;
  /* height: 110px; */
  height: 80px;
  z-index: 101;
  background: white;
}

menu .logo-strip {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: white;
  padding-right: 120px;
  padding-top: 10px;
  padding-bottom: 10px;
  height: 100%;
  width: 30%;
  -webkit-transform: skewX(45deg) translateX(20%);
          transform: skewX(45deg) translateX(20%);
}

menu .logo {
  position: relative;
  z-index: 2;
  display: inline-block;
  width: 100%;
  max-width: 190px;
  height: 100%;
  -webkit-transform: skewX(-45deg) translateX(0%);
          transform: skewX(-45deg) translateX(0%);
}

menu .logo img {
  /* width: 100%; */
  /* min-width: 190px; */
  height: 100%;
}

menu .menu-strip {
  width: 100%;
  background: #e00129;
  height: 100%;
}

menu .menu-strip .container-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1170px;
  margin: 0 auto;
  height: 100%;
}

menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
  -ms-flex-item-align: center;
      align-self: center;
}

menu ul li {
  margin: 0 15px;
  position: relative;
}

menu ul li a {
  position: relative;
  text-transform: uppercase;
  color: white;
  padding: 10px 8px;
  font-size: 15px;
}

menu ul li a:hover {
  text-decoration: none;
  color: white;
}

menu ul li a:hover:after {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  content: "";
  width: 100%;
  height: 3px;
  background: white;
}

menu ul li .btn-white {
  font-size: 15px;
}

menu ul li .btn-white:hover:after {
  display: none;
}

menu ul li > ul {
  display: none !important;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-filter: drop-shadow(10px 6px 6px rgba(0, 0, 0, 0.35));
  filter: drop-shadow(10px 6px 6px rgba(0, 0, 0, 0.35));
}
menu ul li:hover > ul {
  display: block !important;
  margin-top: 15px;
  padding-top: 10px;
  background: #fff;
  border-radius: 7px;
}
menu ul li:hover > ul::before {
  display: block;
  content: "";
  width: 30px;
  height: 30px;
  background: #fff;
  position: absolute;
  top: 5px;
  left: 50%;
  transform: rotate(45deg) translateX(-50%);
}
menu ul li:hover > ul li {
  padding: 15px;
  margin: 0;
  text-align: center;
  background: #fff;
}
menu ul li:hover > ul li:hover {
  background: #e00129;
}
menu ul li:hover > ul a {
  white-space: nowrap;
  color: #000;
  font-size: 14px;
  text-transform: none;
}
menu ul li:hover > ul li:hover a {
  color: #fff;
}
menu ul li:hover > ul a::after {
  display: none;
}
menu ul li.has-submenu a::after {
  display: none;
}
menu ul li:hover > ul li:last-child {
  border-radius: 0px 0px 7px 7px;
}

header {
  position: relative;
  background-color: #102e5d;
}
header.scrolled {
  margin-top: 80px;
}

header .header-photo {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: bottom;
  object-position: bottom;
}

header .header-text {
  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;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  padding: 0 15px;
  max-width: 1170px;
  text-align: center;
}

header .header-text .claim-header {
  color: white;
  margin: 0 0 60px;
  font-size: 30px;
  font-weight: 500;
}

header .header-text p {
  color: white;
  font-size: 20px;
  font-weight: 100;
  margin: 0 0 60px;
}

header .header-text .btn {
  font-size: 24px;
  font-weight: 600;
}

header .scroll {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0px;
  width: 1vw;
  min-width: 7px;
  max-width: 15px;
  height: auto;
}

.header-subpage {
  min-height: 200px !important;
}

.header-subpage .header-photo {
  max-height: 350px;
  min-height: 200px !important;
}

main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

section {
  padding: 80px 0;
}

section .text-main {
  margin: 20px auto 30px;
  text-align: center;
  max-width: 770px;
  color: #010e2a;
  font-size: 16px;
}

section.contacts .heading-main {
  margin-bottom: 25px;
  display: block;
  color: #010e2a;
  font-size: 24px;
  font-weight: 700;
  line-height: 48px;
}

section.contacts p {
  color: #010e2a;
}

section.contacts .contact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}

section.contacts .contact-item .icon {
  margin-right: 20px;
  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;
  width: 50px;
  min-width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #e00129;
}

section.contacts .contact-item .no-ico {
  background: transparent;
}

section.contacts .contact-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;
}

section.contacts .contact-item .text .heading {
  color: #676e7c;
  font-size: 16px;
  line-height: 32px;
}

section.contacts .contact-item .text a {
  color: #010e2a;
  font-size: 17px;
  font-weight: 500;
  line-height: 30px;
  word-break: break-all;
}

section.contacts .contact-item .text a:hover {
  text-decoration: underline;
}

section.contacts .contact-item .text span {
  color: #010e2a;
  font-size: 17px;
  font-weight: 500;
  line-height: 30px;
  word-break: break-all;
}

.mapouter {
  position: relative;
  text-align: right;
  height: 580px;
  width: 100%;
}

.gmap_canvas {
  overflow: hidden;
  background: none !important;
  height: auto;
  width: 100%;
}

.gmap_canvas iframe {
  width: 100% !important;
  height: auto !important;
  min-height: 580px;
}

section.text h2 {
  font-size: 18px;
  line-height: 32px;
  font-weight: 700;
}

section.text .top .image {
  float: left;
  margin-right: 40px;
  margin-bottom: 10px;
}

section.text .top .image img {
  width: 100%;
  height: auto;
  max-width: 360px;
}

section.text .text-about .sub-heading {
  font-size: 30px;
  line-height: 32px;
  color: #e00129;
  margin-bottom: 30px;
}

section.text .text-about p {
  font-size: 20px;
  line-height: 32px;
  font-weight: 700;
  color: #676e7c;
}

section.text ul {
  list-style: none;
  padding: 0 25px 0;
}

section.text ul li {
  font-size: 16px;
  line-height: 32px;
}

section.text ul li:before {
  content: "\2022";
  color: #e00129;
  font-weight: bolder;
  display: inline-block;
  margin-top: -2px;
  vertical-align: middle;
  font-size: 26px;
  width: 1em;
  margin-left: -1em;
}

section.text .btn-rectangle {
  margin: auto;
  margin-top: 40px;
}

.block-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}

.block-bar .bar, .block-bar .inner {
  max-width: 95%;
  margin: 0 auto;
}

.block-bar .inner {
  padding: 35px 30px;
  background-color: #f2f2f2;
  height: 100%;
}

.block-bar .images img {
  width: 100%;
  height: 100%;
  margin-bottom: 30px;
  -o-object-fit: cover;
  object-fit: cover;
}

.block-bar .shadow-wrap {
  -webkit-filter: drop-shadow(10px 6px 6px rgba(0, 0, 0, 0.35));
  filter: drop-shadow(10px 6px 6px rgba(0, 0, 0, 0.35));
}

.bar {
  text-align: center;
  padding: 8px 15px;
  width: 100%;
}

.bar .title {
  display: inline-block;
  max-width: 700px;
  font-size: 25px;
  font-weight: 700;
  color: white;
}

.bar.red {
  background-color: #cd1719;
}

.bar.blue {
  background-color: #003f8b;
}

.polygon {
  -webkit-clip-path: polygon(100% 0%, 97.5% 50%, 100% 100%, 2.5% 97.5%, 0% 50%, 2.5% 0);
  clip-path: polygon(100% 0%, 97.5% 50%, 100% 100%, 2.5% 97.5%, 0% 50%, 2.5% 0);
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  color: white;
}

.polygon.red {
  background-color: #cd1719;
}

.polygon.blue {
  background-color: #003f8b;
}

section.claim h1 {
  text-align: center;
}

.claims {
  margin-top: 60px;
  height: 400px;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-right: 0;
  margin-left: 0;
}

.claims .claim-box {
  position: relative;
  text-align: center;
  background-color: #8aa9cc;
  padding: 30px 30px 20px;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  max-height: 400px;
}
.claims .claim-box:nth-child(even) {
  background-color: #819fc1;
}

.claims .claim-box:first-child {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.claims .claim-box:first-child:before {
  position: absolute;
  bottom: -54px;
  left: -25px;
  background-image: url("../images/claim-shadow.png");
  display: block;
  content: "";
  width: 100%;
  height: 80px;
  z-index: -1;
}

.claims .claim-box:nth-child(3) {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.claims .claim-box:nth-child(3):before {
  position: absolute;
  bottom: -54px;
  right: -25px;
  background-image: url("../images/claim-shadow.png");
  display: block;
  content: "";
  width: 100%;
  height: 80px;
  z-index: -1;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.claims .claim-box .image {
  margin-bottom: 20px;
}

.claims .claim-box .image img {
  width: 100px;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.claims .claim-box .claim-title {
  color: white;
  font-size: 20px;
  font-weight: 700;
  word-break: break-word;
}

.claims .claim-box p {
  margin-top: 10px;
  color: #dce5f0;
  font-size: 15px;
  line-height: 26px;
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.claims:not(:hover) .claim-box:nth-child(even),
.claims:hover .claim-box:hover {
  background-color: #c80327;
  margin-top: -4px;
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
  padding: 45px 30px 40px;
  border-radius: 5px;
  z-index: 1;
}

.claims:not(:hover) .claim-box:nth-child(even) p,
.claims:hover .claim-box:hover p {
  color: #efb4bf;
}

.article-left h1 {
  color: #ce042b;
  font-size: 20px;
  margin-bottom: 30px;
}
.article-left .perex {
  font-weight: bold;
}

.article-left .image {
  float: left;
  margin-right: 60px;
  margin-bottom: 40px;
  max-width: 50%;
}
.article-left.article-detail .image {
  max-width: 33%;
}
@media (max-width: 1199px) {
  .article-left .image {
    max-width: 100%;
  }
  .article-left.article-detail .image {
    max-width: 100%;
  }  
}

.article-left img {
  width: 100%;
  height: auto;
}

.article-left .btn {
  margin: 40px auto 0;
}

.article-right .image {
  float: right;
  margin-left: 60px;
  margin-bottom: 10px;
}

.article-right img {
  width: 100%;
  height: auto;
}

.article-right .btn {
  margin: 40px auto 0;
}

section.main-therap-areas {
  background-color: #c80227;
  background-image: url("../images/bg-oblasti.jpg");
  background-size: cover;
  padding: 110px 0;
}

section.main-therap-areas h1 {
  text-align: center;
}

section.main-therap-areas .text-main,
section.main-therap-areas .html-content
 {
  color: #f0b6c2;
}

.category {
  position: relative;
  display: block;
  padding: 35px 10px 40px;
  text-align: center;
  background: white;
  border-radius: 5px;
  height: 100%;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}

.row:not(:hover) div:nth-child(even) .category,
.row:hover div .category:hover {
  background: #8fa0c4;
}

.row:not(:hover) div:nth-child(even) .category .category-name, .row:not(:hover) div:nth-child(even) .category p,
.row:hover div .category:hover .category-name, .row:hover div .category:hover p {
  color: white;
}

.category .category-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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 85px;
  height: 80px;
  margin: 0 auto;
}

.category .category-icon img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.category .category-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  margin-top: 20px;
  height: 58px;
  color: #010e2a;
  font-size: 20px;
  line-height: 32px;
  font-weight: 700;
  text-transform: uppercase;
}

.category p {
  color: #676e7c;
  margin-top: 15px;
  font-size: 15px;
  line-height: 26px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}

.category .link-with-arrow {
  position: absolute;
  bottom: 15px;
  margin: 0 auto;
  left: 0;
  right: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.paging {
  margin-top: 20px;
  text-align: center;
}
.paging a {
  display: inline-block;
  margin-top: 10px;
  padding: 15px;
  min-width: 50px;
  color: #000;
  text-align: center;
  border: 1px solid #e9e9e9;
  border-radius: 5px;
}
.paging a.act {
  color: #fff;
  background: #e00129;
}

section.products {
  background-color: white;
}

section.products .container {
  max-width: 1040px;
}

section.products h1 {
  text-align: center;
}

.product:hover .product-image:after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  background: #9fb7d3;
  opacity: 0.6;
  width: 100%;
  height: 100%;
}

.product .product-image {
  position: relative;
  background: #E4E4E4;
  width: 100%;
  padding-top: 80%;
  overflow: hidden;
}

.product .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.product .product-name {
  display: block;
  margin-top: 20px;
  color: #050505;
  font-size: 17px;
  line-height: 30px;
  font-weight: 700;
  text-transform: uppercase;
}

.product .link-with-arrow:hover {
  text-decoration: none;
}

section.news {
  background-color: #f4f7fb;
}

section.news .container {
  max-width: 1470px;
}

section.news h1 {
  text-align: center;
}

.news-blok {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
}

.news-blok .news-image {
  height: 280px;
}

.news-blok .news-image img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.news-blok .news-blok-inner {
  position: relative;
  background-color: white;
  padding: 20px 30px 45px 30px;
  height: 100%;
}

.news-blok .date {
  display: block;
  color: #676e7c;
  font-size: 18px;
}

.news-blok .title {
  margin: 10px 0 20px;
  max-height: 96px;
  overflow: hidden;
  display: block;
  font-size: 18px;
  line-height: 32px;
  font-weight: 700;
  color: #010e2a;
}

.news-blok .title:hover {
  text-decoration: underline;
}

.news-blok .text {
  display: block;
  font-size: 16px;
  line-height: 30px;
  color: #676e7c;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}

.news-blok .link-with-arrow {
  position: absolute;
  left: 30px;
  bottom: 25px;
}

.articles-blok {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  border: 1px solid #e9e9e9;
  border-radius: 5px;
  overflow: hidden;
}

.articles-blok .articles-image {
  height: 280px;
}

.articles-blok .articles-image img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.articles-blok .articles-blok-inner {
  position: relative;
  background-color: white;
  padding: 20px 30px 45px 30px;
  height: 100%;
}

.articles-blok .date {
  display: block;
  color: #676e7c;
  font-size: 18px;
  margin-bottom: 15px;
}

.articles-blok .title {
  margin: 10px 0;
  max-height: 96px;
  overflow: hidden;
  display: block;
  font-size: 18px;
  line-height: 32px;
  font-weight: 700;
  color: #010e2a;

  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.articles-blok .title:hover {
  text-decoration: underline;
}

.articles-blok .text {
  display: block;
  font-size: 16px;
  line-height: 30px;
  color: #676e7c;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.articles-blok .link-with-arrow {
  position: absolute;
  left: 30px;
  bottom: 25px;
}

.link-with-arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #e00129;
  font-size: 16px;
  font-weight: 600;
}

.link-with-arrow:hover {
  text-decoration: underline;
  color: #e00129;
}

.link-with-arrow:after {
  margin-left: 10px;
  content: "";
  display: block;
  width: 14px;
  height: 6px;
  background-image: url("../images/arrow-red.png");
  background-repeat: no-repeat;
}

.form-contact .inputs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.form-contact .inputs input {
  width: 48.5%;
}

.form-contact textarea {
  height: 300px;
}

.form-contact button {
  margin-left: auto;
  margin-bottom: 10px;
  height: 50px;
  max-width: 160px;
  font-size: 15px;
}

section.districts .cezetmap {
  width: 600px !important;
  height: 346px !important;
}

section.districts .cezetmap .kraje {
    font-size: 600px !important;
}

section.districts .contacts-districts {
  display: none;
}
section.districts .contacts-districts .contact {
    padding: 30px;
    font-size: 18px !important;
    background: #f7f7f7;
    border: 1px solid #dedede;
    border-radius: 5px;
    margin-top: 30px;
}

section.districts .contacts-districts .contact:first-child {
  margin-top: 0;
} 

section.districts .contacts-districts .contact div:last-child {
  margin-bottom: 0;
}

section.districts .sub-heading {
  font-size: 30px;
}

@media (max-width: 1199px) {
    section.districts .cezetmap {
      width: 450px !important;
      height: 259px !important;
    }

    section.districts .cezetmap .kraje {
        font-size: 450px !important;
    }

    section.districts .contacts-districts .contact {
        padding: 25px;
        font-size: 15px !important;
    }

    section.districts .contact-item .text a {
      font-size: 15px !important;
    }
}

@media (max-width: 992px) {
    section.districts .cezetmap {
      width: 400px !important;
      height: 229px !important;
    }

    section.districts .cezetmap .kraje {
        font-size: 400px !important;
    }

    section.districts .contacts-districts .contact {
        padding: 20px;
        font-size: 14px !important;
    }

    section.districts .contact-item .text a {
      font-size: 14px !important;
    }
}

@media (max-width: 767px) {
    section.districts .cezetmap {
      width: 450px !important;
      height: 259px !important;
    }

    section.districts .cezetmap .kraje {
        font-size: 450px !important;
    }

section.districts .contacts-districts .contact:first-child {
  margin-top: 30px;
} 
}

@media only screen and (max-device-width: 480px) {
    section.districts .cezetmap {
      width: 300px !important;
      height: 173px !important;
    }

    section.districts .cezetmap .kraje {
        font-size: 300px !important;
    } 
}

footer {
  color: #f9f9f9;
  background-color: #02102e;
  background-image: url("../images/bg-footer.jpg");
  background-size: cover;
  padding: 70px 0 40px 0;
  line-height: 30px;
}

footer a {
  color: #f9f9f9;
}

footer img {
  max-width: 100%;
}

footer .block {
  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;
}

footer .block p {
  text-align: center;
  color: white;
  margin: 70px 0;
  font-size: 16px;
  line-height: 32px;
  font-weight: 400;
}

footer .block .socialni-site {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

footer .block .socialni-site a {
  margin-left: 20px;
  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;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #585858;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}

footer .block .socialni-site a:first-child {
  margin-left: 0;
}

footer .block .socialni-site a:hover {
  background: #dd042b;
  border: 1px solid #dd042b;
}

footer .heading {
  color: #e00129;
  font-weight: bolder;
  text-transform: uppercase;
  margin-bottom: 10px;
}

footer .menu a {
  text-transform: uppercase;
}

footer hr {
  margin: 60px 0 40px;
  background: #1f2d48;
}

footer .copyright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

footer .copyright span {
  color: #8e9199;
  font-size: 15px;
  font-weight: 400;
}

footer .copyright ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

footer .copyright ul li {
  margin: 0 9px;
}

footer .copyright ul li:last-child {
  margin-right: 0;
}

footer .copyright ul li a {
  color: #8e9199;
  font-size: 15px;
  font-weight: 400;
}

footer .copyright ul li a:hover {
  color: white;
}

/* MEDIA QUERIES */
@media (max-width: 1199px) {
  menu {
    height: 80px;
  }
  menu .logo-strip {
    width: 30%;
    min-width: 150px;
    padding-right: 70px;
  }
  menu .logo img {
    /*min-width: 110px;*/
  }
  menu ul li {
    margin: 0 8px;
  }
  menu ul li a {
    font-size: 14px;
  }
  header .header-text .claim-header {
    margin: 0 0 20px;
  }
  header .header-text p {
    margin: 0 0 20px;
  }
  header .header-text .btn {
    font-size: 18px;
    max-width: 160px;
  }
}

@media (min-width: 992px) {
  menu ul {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .backdrop {
    display: none !important;
  }
}

@media (max-width: 991px) {
  h1, .sub-heading {
    font-size: 38px;
  }
  section {
    padding: 40px 0 !important;
  }
  .contact-strip .container {
    padding-right: 15px;
    padding-left: 15px;
  }
  .contact-strip .contact-item {
    margin-left: 15px;
  }
  .contact-strip .contact-item .icon {
    margin-right: 10px;
  }
  menu {
    height: 60px;
  }
  menu .logo-strip {
    padding: 5px 25px 5px 15px;
  }
  menu .logo-strip .logo img {
    margin-left: -25px;
  }
  menu .menu-strip .container-menu {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding-right: 15px;
  }
  menu ul {
    display: none;
    width: 100%;
    position: absolute;
    left: 0;
    top: 60px;
    text-align: center;
    background: #e00129;
    padding: 30px 0;
  }
  menu ul li {
    margin: 25px 0;
  }
  menu ul li .btn-white {
    margin: 0 auto;
  }
  menu ul li.has-submenu > ul {
    display: none !important;
  }
  menu ul li.has-submenu a::after {
    display: unset;
  }
  #hamburger {
    display: block;
  }
  header .header-text .btn {
    height: 50px;
  }
  header .header-text p {
    display: none;
  }
  section.article-left .image, section.article-right .image {
    float: none;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 30px;
  }
  section.contacts .contact-item .text a, section.contacts .contact-item .text span {
    font-size: 16px;
  }
  section.contacts .contacts-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  section.contacts .contacts-mobile .contact-item {
    width: 50%;
  }
  .bar .title {
    font-size: 20px;
  }
  .polygon {
    font-size: 30px;
  }
}

.localizations a {
	color: #102e5d;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-right: 5px;
}
.localizations a::after {
	content: "/";
	font-size: 7px;
	margin-left: 5px;
	top: -2px;
    position: relative;
}
.localizations a:last-child::after {
	content: "";
}

@media (max-width: 767px) {
  .btn {
    font-size: 16px !important;
    height: 50px !important;
    max-width: 160px !important;
  }
  .contact-strip {
    display: none;
  }
  .menu-wrap {
    position: fixed;
    z-index: 1001;
    top: 0;
    left: 0;
    width: 100%;
  }
  header {
  	margin-top: 60px;
    min-height: 260px;
  }
  header .header-photo {
    min-height: 260px;
  }
  header .header-text p {
    display: none;
  }
  section .text-main {
    font-size: 15px;
    line-height: 32px;
  }
  section.text .top .image {
    float: none;
    margin-right: 0;
    margin-bottom: 30px;
  }
  .claims {
    margin-top: 40px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    height: auto;
    max-height: unset;
  }
  .claims .claim-box {
    max-width: 95%;
    margin: 8px auto !important;
    padding: 25px 30px 25px;
  }
  .claims .claim-box:before {
    display: none !important;
  }
  .claims .claim-box:first-child, .claims .claim-box:nth-child(3) {
    border-radius: 0px;
  }
  .claims .claim-box:first-child {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
  }
  .claims .claim-box:nth-child(3) {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
  }
  .claims .claim-box:hover {
    margin-top: 15px;
    -webkit-transform: none;
            transform: none;
    padding: 25px 30px 25px;
  }
  .claims .claim-box.main-claim {
    -webkit-transform: none;
            transform: none;
    max-width: 100%;
    border-radius: 5px;
    padding: 35px 30px 35px;
  }
  .category {
    padding: 25px 15px 40px;
  }
  .news-blok .news-image {
    height: 200px;
  }
  footer .block p {
    margin: 40px 0;
  }
  footer hr {
    margin: 40px 0;
  }
  footer .copyright {
    -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;
  }
  footer .copyright ul {
    margin-bottom: 25px;
  }
  footer .copyright ul li:last-child {
    margin-right: 9px;
  }
}

@media (max-width: 576px) {
  h1, .sub-heading {
    font-size: 28px;
  }
  section.text .top .image {
    text-align: center;
  }
  section.text .top .image img {
    max-width: 250px;
  }
  section.text .top .text-about {
    text-align: center;
  }
  section.text .top .text-about .sub-heading {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 15px;
  }
  section.text .top .text-about p {
    font-size: 18px;
    line-height: 30px;
  }
  section.contacts .contacts-mobile {
    display: block;
  }
  section.contacts .contacts-mobile .contact-item {
    width: 100%;
  }
  section.contacts p {
    text-align: center;
  }
  .form-contact .inputs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .form-contact .inputs input {
    width: 100%;
  }
  .form-contact button {
    margin: 0 auto 15px;
    max-width: 280px !important;
  }
  .claims .claim-box {
    max-width: 100%;
    margin: 0 auto;
    padding: 25px 15px 25px !important;
    border-radius: 0 !important;
  }
  .product .product-name {
    margin-top: 12px;
    font-size: 14px;
    line-height: 20px;
  }
  .bar .title {
    font-size: 18px;
  }
  .polygon {
    font-size: 24px;
  }
  footer {
    padding: 40px 0 20px 0;
  }
  footer hr {
    margin: 30px 0 20px;
  }
  footer .copyright ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  footer .copyright ul li:last-child {
    margin-right: 9px;
  }
}

.only-cat .breadcrumb li:last-child {
  display: none;
}

.only-cat .breadcrumb li:nth-last-child(2) a {
  color: #ce042b;
}

.html-content img {
  max-width: 100%;
  width: unset;
}
/*# sourceMappingURL=styles.css.map */