@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap");

* {
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
  font-size: 17px;
}

:root {
  --blue: #140080;
  --blue-hslf: hsl(249,100%,25%);
  --blue-hsl: 249,100%,25%;
  --blue-hslwl: 249,100%;

  --red: #e30404;
  --red-hslf: hsl(0,97%,45%);
  --red-hsl: 0,97%,45%;
  --red-hslwl: 0,97%;

  --green: #00a715;
  --green-hslf: hsl(128,100%,33%);
  --green-hsl: 128,100%,33%;
  --green-hslwl: 128,100%;

  --gray-light: #f2f2f2;
}

body,
header ul,
footer ul {
  padding: 0;
  margin: 0;
}

.form,
.form_submit,
div {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  box-sizing: border-box;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

h1,
h2 {
  color: #140080;
  font-size: 3rem;
  width: 100%;
  line-height: 72px;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.7rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.3rem;
}

h1,
h2,
h3,
h4 {
  line-height: 1.05;
}

b,
strong {
  font-weight: 600;
}

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

iframe {
  max-width: 100%;
}

#lightbox img {
  max-width: none;
}

#small_menu {
  display: none;
}

a {
  color: black;
}

a:hover {
  text-decoration: none;
}

a img {
  border: none;
}

.cta-header {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 15px;
}

@media(min-width: 1200px) {
  .cta-header {
    flex-direction: row;
    align-items: center;
  }
}

.cta-header .header_button {
  width: fit-content;
  border-radius: 8px;
  flex: 0 0 auto;
  padding: 15px 20px;
  font-size: 1rem;
  line-height: 1;
}

#mobile-menu {
  display: none;
}

.cta-mobile-header {
  display: none;
}

.cta-mobile-box {
  display: none;
}

#cookie_eu_bar{
  z-index: 99999 !important;
}



.gallery_container {
  display: flex;
  gap: 20px;
  width: 100%;
  flex-wrap: wrap;

  margin: 2rem 0;
}

.gallery_container .gallery_item{
  width: calc(25% - 15px);
}
.gallery_container a,
.gallery_container picture,
.gallery_container img
{
  display: flex;
  width: 100%;
}
.gallery_container img{
  border: 1px solid var(--gray-light);
  background: var(--gray-light);
}


.gallery_container.logo-gallery {
  display: flex;
  gap: 0px;
  align-items: center;
  justify-content: center;
}

.gallery_container.logo-gallery .gallery_item {
  text-align: center;
  float: none;
  width: 16.66%;
  padding: 0 20px;
  display: flex;
  align-items: center;
}

.gallery_container.logo-gallery .gallery_text,
.gallery_container.logo-gallery .gallery_text h3 {
  flex: 0 0 100%;
  max-width: 100%;
  color: #140080;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .gallery_container.logo-gallery .gallery_item {
    width: 33.333%;
  }
}

@media (max-width: 400px) {
  .gallery_container.logo-gallery .gallery_item {
    width: 50%;
  }
}

.gallery_container.logo-gallery .gallery_item img {
  filter: grayscale(100%);
  transition: 0.3s;
  opacity: 0.8;
}

.gallery_container.logo-gallery .gallery_item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

#contact_map {
  float: right;
}





figcaption{
  text-align: center;
  font-style: italic;
  line-height: 1.1;
  text-wrap: balance;
  margin: 10px 0;
}
figcaption p{
  margin: 0px;
}


figure.map-img {
  width: auto;
  max-width: fit-content;
  max-width: 100%;
  text-wrap: balance;
  margin: 16px 0;
}
figure.map-img img{
  max-width: 100%;
  line-height: 0.8;
  position: relative;
  height: 100%;
  width: 100%;
  object-fit: contain;
  display: block;
}



figure.item_gallery {
  margin: 0;
}

figure.item_gallery figcaption {
  text-align: center;
  font-style: italic;
}

.lb-loader {
  display: block !important;
  top: 0 !important;
}

.lb-cancel {
  position: absolute;
  display: block;
  width: 30px;
  height: 30px;
  top: 0;
  background: rgba(255, 255, 255, 0.5);
  z-index: 99999;
  right: 0;
  cursor: pointer;
}

.lb-cancel:before {
  content: "x";
  color: black;
  font-weight: bold;
  line-height: 30px;
}

.button_container,
.articles_list_link {
  width: 100%;
  text-align: center;
  margin: 2rem 0;
}

.articles_list_link {
  text-align: right;
}

.button,
.articles_list_link a {
  display: inline-block;
  padding: 1rem 3rem;
  text-transform: uppercase;
  background: #140080;
  color: white;
  cursor: pointer;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  box-shadow: 2px 3px 6px 0px rgba(0, 0, 0, 0.4);
  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  -ms-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}

.button:hover,
.articles_list_link a:hover {
  background: #00a715;
}

.articles_list_link a {
  padding: 0.5rem 1.5rem;
}

.content {
  margin: 0 auto;
  width: 60%;
  padding: 2rem;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

header {
  justify-content: space-between;
}

header a {
  text-decoration: none;
}

#logo {
  padding: 0;
}

#logo,
.header_button {
  float: left;
  width: 15%;
  text-align: center;
  
  float: none;
	flex: 0 0 15%;
	transition: ease-in-out .3s;
}

.header-left {
  display: flex;
  gap: 80px;
}

.header_button {
  background: #00a715;
  color: white;
  text-transform: uppercase;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 22px;
  transition: background-color 0.25s ease-out;
}

.header_button:hover {
  background-color: #009112;
}

.header_main {
  justify-content: flex-end;
  font-weight: 600;
  font-size: 18px;
  
  flex: 1 1 auto;
  display: flex;
  flex-wrap: wrap;
}

.header_contact {
  width: 100%;
  margin-bottom: 1rem;
  justify-content: flex-end;
  
	flex: 0 0 100%;
}

header {
	display: flex;
	align-items: stretch;
  padding: 0 20px;
}

header #logo {
	flex: 0 0 15%;
  display: flex;
  align-items: center;
}

header #logo {
	flex: 0 0 15%;
}

#menu {
  display: flex;
  align-content: center;
  width: 100%;
  justify-content: space-between;
	gap: 10px;
}

@media (min-width: 1200px) {
  #menu {
    gap: 50px;
    height: 100%;
  }

  #menu li {
    height: 100%;
  }

  #menu li a {
    height: 100%;
  }
}

#menu li {
  display: inline-block;
  position: relative;
}

#menu > li {
  margin-right: 10px;
	margin-right: 0;
  position: relative;
}

#menu > li:last-child {
  margin-right: 0;
}

#menu li .sub_1 {
  position: absolute;
  top: 100%;
  background: white;
  left: 0;
  width: 220px;
  z-index: 2;
  text-align: center;
  display: none;
  border-bottom: 3px solid #120171;
}

#menu li .sub_1 li {
  padding: 0;
  width: 100%;
  font-size: 16px;
  border-bottom: 1px solid #f0f0f0;
}

#menu li .sub_1 li a {
  padding: 15px 10px;
  display: inline-block;
  font-weight: 500;
  width: 100%;
  text-align: left;
  text-transform: none;
}

#menu li:hover .sub_1 {
  display: block;
}

#menu li a {
  color: #000;
  font-weight: 600;
	line-height: 1.3;
	display: flex;
	justify-content: center;
	align-items: center;
  font-size: 15px;
  text-transform: uppercase;
}

#menu li a.sub_0_a {
  text-wrap: nowrap;
}

#menu li a:hover,
#menu li a.active,
#menu li a.parent {
  color: #f97929;
}

#menu li a.open {
  padding-right: 30px;
  position: relative;
}

#menu li a.open::after {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  background-image: url('/gfx/svg/chevron-down-icon.svg');
  background-repeat: no-repeat;
  background-position: 100% 50%;
  background-size: 100% auto;
  content: " ";
  opacity: .15;
  transition: ease-in-out .3s;
}

#menu li:hover a.open::after {
  opacity: 1;
  transform: translateY(-50%) rotate(180deg);
}

#menu li a#menu_1_a {
  content: url(ico_home.svg);
}

.header_contact_phone {
  min-height: 46px;
  color: #000;
  padding-left: 60px;
  background: url('/gfx/svg/call-icon.svg') no-repeat 0 50%;
  margin-left: 1rem;
  display: flex;
  align-items: center;
  font-weight: 600;
}

.header_contact_phone:hover {
  color: #fb6801;
}

footer {
  background: #140080;
  color: white;
  position: relative;
  clear: both;
}

footer a {
  color: white;
  text-decoration: none;
}

footer .content {
  padding-top: 0;
}

footer #footer_menu {
  display: flex;
  justify-content: space-between;
  padding: 2rem 0;
}

footer #footer_menu li {
  list-style: none;
}

footer #footer_menu li a {
  color: #b2aadd;
  font-weight: bold;
}

.footer_text {
  padding: 2rem 0;
  border-top: 1px solid #b2aadd;
  border-bottom: 1px solid #b2aadd;
}

.footer_block {
  padding: 2rem 0;
}

.footer_block {
  width: 32%;
}

.footer_block:nth-child(2) {
  text-align: left;
  padding-left: 10%;
  width: 40%;
}

.footer_block:last-child {
  text-align: right;
  align-self: flex-end;
  font-size: 14px;
  color: #b2aadd;
  width: 20%;
}

.footer_block:last-child a,
.footer_text {
  color: #b2aadd;
}

.pd_30 {
  font-size: 22px;
  font-weight: bold;
  margin: 0.5rem 0;
}

.pd_30 a,
.footer_block:first-child .pd_30 {
  padding-left: 40px;
  background: no-repeat left center;
  display: inline-block;
  min-height: 29px;
}

.pd_30 a[href^="tel:"] {
  background-image: url("ico_phone_white.png");
}

.pd_30 a[href^="mailto:"] {
  background-image: url("ico_email_white.png");
}

.footer_block:first-child .pd_30 {
  background-image: url("ico_home_white.png");
  background-position: left top;
}

.pd_30 span {
  font-size: 16px;
  font-weight: 400;
  display: block;
  margin-top: 2rem;
}

.arrow_top_link {
  position: absolute;
  left: calc(80% + 48px + 2rem);
  bottom: 100%;
  z-index: 2;
  color: #140080;
  font-weight: bold;
  text-decoration: none;
  padding: 1rem;
}

.arrow_top_link:before {
  background: #140080 url("ico_arrow_top_white.png") no-repeat center center;
  content: " ";
  width: calc(48px + 2rem);
  height: calc(28px + 2rem);
  position: absolute;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  right: 100%;
  bottom: 0;
}

/*Uvodka slider*/
.bx-wrapper {
  position: relative;
}

.sliderbx_container ul,
.sliderbx_container ol {
  padding: 0;
  margin: 0;
  width: 100%;
}

.sliderbx_container ul li .sliderbx_data_li_sizer {
  padding-bottom: 35%;
  width: 100%;
  display: block;
}

.sliderbx_container ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
}

.sliderbx_container ul li::before {
  position: absolute;
  height: 100%;
  content: " ";
  background: linear-gradient(220deg,rgba(20,0,128,0.8) 0%,rgba(125,185,232,0.01) 75%);
  width: 100%;
  right: 0;
  top: 0;
}

.sliderbx_data_li_container {
  font-size: 16px;
  color: white;
  max-width: 30%;
  position: absolute;
  padding: 2rem;
  font-weight: 600;
  right: 50px;
}

.sliderbx_data_li_header {
  font-size: 48px;
  margin-bottom: 20px;
  line-height: 1.05;
}

.sliderbx_data_li_container:after {
  content: "Více zde";
  font-size: 18px;
  display: block;
  margin: 0;
  padding: 20px 30px;
  width: fit-content;
  background-color: #fb6801;
  border-radius: 12px;
  margin-top: 30px;
  line-height: 1;
  font-weight: 600;
}

.sliderbx_data_li_link,
.sliderbx_data_li_link a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.bx-controls {
  position: absolute;
  bottom: 0;
  right: 0;
  background: white;
  border-top-left-radius: 10px;
  display: flex;
  padding: 2rem 6rem;
  padding: calc(0.25rem + 34px) calc(3rem + 20px);
}

.bx-pager {
  display: flex;
}

.bx-controls-direction {
  position: absolute;
  width: 100%;
  width: calc(100% - 3rem);
  left: 1.5rem;
  top: 0;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.bx-next,
.bx-prev {
  width: 20px;
  height: 34px;
  display: block;
}

.bx-pager-item a {
  width: 6px;
  height: 6px;
  background: black;
  border-radius: 50%;
  display: block;
  font-size: 0;
  text-indent: -99999px;
  color: transparent;
  margin: 0 0.5rem;
  z-index: 950;
  position: relative;
  top: 3px;
}

.bx-pager-item a.active {
  width: 12px;
  height: 12px;
  background: transparent;
  border: 1px solid #1e0b85;
  top: 0;
}

/*Uvodka prvni sekce*/
.intro .content {
  margin-top: 4rem;
  background: url("back_pattern.webp");
  justify-content: space-between;
  padding-right: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.intro .content.hp-claim-wrap {
  display: flex;
  gap: 40px;
  flex-wrap: nowrap;
  align-items: flex-start;
}

.intro .content .advantage-wrap {
  background: #f8690f url("back_advantages.webp");
  color: #fff;
  font-size: 20px;
  padding: 3rem 4rem;
  margin-top: 0;
  border-radius: 20px;
  flex: 0 0 380px;
}

.intro .content .claim-text {
  flex: 1 1 auto;
}

.intro .content .claim-text h2 {
  text-align: left;
}

.intro .content ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.intro .content ul li {
  list-style: none;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 1.25rem;
  padding-left: calc(32px + 1rem);
  background: url("ico_checked.svg") no-repeat left center;
}

.intro .content h1,
.intro .content h2 {
  width: 60%;
  text-align: center;
  align-self: flex-start;
}

.homepage_items_list .content {
  padding-left: 0;
  padding-right: 0;
  margin-top: 40px;
}


.items_list.flex{
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px 0;
}
.items_list.flex .item{
  width: calc(33.333% - 14px);
  margin: 0px;
}

.item {
  float: left;
  width: 32%;
  position: relative;
  color: white;
  margin-bottom: 2%;
  overflow: hidden;
  margin-right: 1.5%;
  text-decoration: none;

  max-height: 500px;

}

.item::after {
  content: "+";
  font-size: 78px;
  color: white;
  position: absolute;
  top: 15%;
  right: 5%;
  font-weight: 300;

  content: none;
}

.item:nth-child(3) {
  border-top-right-radius: 20px;
}

.item:nth-child(4) {
  border-bottom-left-radius: 20px;
}

.item:nth-child(3n + 3) {
  margin-right: 0;
}

.item:first-child {
  border-top-left-radius: 20px;
}

.item:last-child {
  border-bottom-right-radius: 20px;
}

.item:nth-last-child {
  border-bottom-left-radius: 20px;
}

h2.item_name {
  position: absolute;
  color: white;
  z-index: 1;
  top: 0;
  padding: 1em;
  margin: 0;
  width: 100%;
  font-size: 36px;
  line-height: 1.25;
}

.item_image img {
  display: block;
  width: 100%;
}

.item:hover .item_image:before {
  /* Permalink - use to edit and share this gradient: https: //colorzilla.com/gradient-editor/#f8690f+0, 7db9e8+75&0.8+0, 0+76 */
  background: -moz-linear-gradient(
    top,
    rgba(248, 105, 15, 0.8) 0%,
    rgba(125, 185, 232, 0.01) 75%,
    rgba(125, 185, 232, 0) 76%
  );
  /* FF3.6-15 */
  background: -webkit-linear-gradient(
    top,
    rgba(248, 105, 15, 0.8) 0%,
    rgba(125, 185, 232, 0.01) 75%,
    rgba(125, 185, 232, 0) 76%
  );
  /* Chrome10-25, Safari5.1-6 */
  background: linear-gradient(
    to bottom,
    rgba(248, 105, 15, 0.8) 0%,
    rgba(125, 185, 232, 0.01) 75%,
    rgba(125, 185, 232, 0) 76%
  );
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#ccf8690f', endColorstr='#007db9e8',GradientType=0 );
  /* IE6-9 */
}

.item_image:before {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#140080+0, 7db9e8+75&0.8+0, 0+76 */
  background: -moz-linear-gradient(
    top,
    rgba(20, 0, 128, 0.8) 0%,
    rgba(125, 185, 232, 0.01) 75%,
    rgba(125, 185, 232, 0) 76%
  );
  /* FF3.6-15 */
  background: -webkit-linear-gradient(
    top,
    rgba(20, 0, 128, 0.8) 0%,
    rgba(125, 185, 232, 0.01) 75%,
    rgba(125, 185, 232, 0) 76%
  );
  /* Chrome10-25, Safari5.1-6 */
  background: linear-gradient(
    to bottom,
    rgba(20, 0, 128, 0.8) 0%,
    rgba(125, 185, 232, 0.01) 75%,
    rgba(125, 185, 232, 0) 76%
  );
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#cc140080', endColorstr='#007db9e8',GradientType=0 );
  /* IE6-9 */
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  -ms-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}

.about {
  position: relative;
  background: url("back_about_pattern.webp");
  background-size: 100%;
}

.about_image {
  background: no-repeat right top;
  background-size: 100%;
  position: absolute;
  width: 100%;
  padding-top: 55%;
}

.about .content {
  /*line-height: 200%;*/
  z-index: 950;
  position: relative;
  padding-top: 27%;
  width: 50%;
  left: -5%;
}

.reasons {
  background: url("back_pattern.webp");
}

.reasons ul {
  background: white;
  margin: 0;
  padding: 0;
  border: 1px solid #e1e1e1;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
  margin-bottom: 4rem;
}

.reasons ul li {
  float: left;
  list-style: none;
  width: 20%;
  text-align: center;
  font-weight: 600;
  position: relative;
  padding: 2rem;
  display: flex;
  flex-wrap: wrap;
  background: white;
}

.reasons ul li:before {
  content: url("ico_advantage_realization.png");
  display: block;
  margin-bottom: 1rem;
  width: 100%;
  left: 0;
}

.reasons ul li span {
  display: block;
  align-self: flex-end;
}

.reasons ul li:nth-child(2):before {
  content: url("ico_advantage_certification.png");
}

.reasons ul li:nth-child(3):before {
  content: url("ico_advantage_design.png");
}

.reasons ul li:nth-child(4):before {
  content: url("ico_advantage_project.png");
}

.reasons ul li:nth-child(5):before {
  content: url("ico_advantage_finish.png");
}

.reasons ul li:after {
  left: 100%;
  top: 0;
  height: 100%;
  width: 1px;
  background: #e1e1e1;
  content: "";
  position: absolute;
  z-index: 2;
}

.reasons ul li:last-child:after {
  content: none;
}

.reasons .button {
  background: #fb6801;
}

.reasons .button:hover {
  background: #e15f00;
}

.realization h2 {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.realization .content {
  /*width: 100%;*/
}

.realization .button {
  background-color: #fb6801;
}

.realization .button:hover {
  background-color: #e15f00;
}

.realization_list {
  justify-content: space-between;
}

.realization_list .item {
  width: 31%;
  color: black;
  padding-bottom: 15px;
  text-decoration: none;

  width: 48%;
  padding: 10px;
  box-shadow: 0px 15px 30px rgba(23,46,84,0.1);
  background-color: #fff;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
}

.realization_list .item::after {
  display: none;
}

.frontpage .realization_list .item {
  /*width: 31%;*/
}

.realization_list .item .item_image {
  width: 100%;
  aspect-ratio: 5 / 3;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  overflow: hidden;
}

.realization_list .item .item_image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.realization_list .item .item_info {
  margin-top: 0;
  width: 100%;
  left: 0;
  box-shadow: none;
  padding-top: 30px;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
}

.realization_list .item:hover .item_image:before {
  /*content: " ";*/
}

.realization_list .item .item_image:before {
  content: none;
}

.realization_list .item:first-child,
.realization_list .item:nth-last-child(3),
.realization_list .item:nth-child(3),
.realization_list .item:last-child {
  border-radius: 0;
}

.item_info {
  background: white;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  left: 0;
  position: relative;
  padding: 20px;
}

.realization_list h2.item_name {
  position: relative;
  color: black;
  font-size: 18px;
  width: 100%;
  line-height: 24px;
  padding: 0;
  position: relative;
  padding-right: 35px;
  transition: ease-in-out .3s;
}

.realization_list .item:hover h2.item_name {
  color: #f97929;
}

.realization_list h2.item_name::after {
  width: 20px;
  height: 20px;
  background-image: url('/gfx/svg/arrow-right.svg');
  content: " ";
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: 0 50%;
  position: absolute;
  transition: ease-in-out .3s;
}

.realization_list .item:hover h2.item_name::after {
  right: -10px;
}

.item_info_place {
  width: 50%;
}

.item_info_place span {
  width: 100%;
  display: block;
  color: #140080;
  font-weight: bold;
}

.subpage_main_section {
  clear: both;
}

.main_section_image {
  width: 100%;
  background: url("back_default.webp") no-repeat center center;
  background-size: cover;
  height: 22vw;
}

.subpage_main_section .content {
  background: white;
  border-radius: 12px;
}

.subpage_main_section .content.first {
  margin-top: -10%;
}

.subpage h1 {
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

.subpage .content {
  padding: 3rem;
}

.page_text {
  line-height: 200%;
}

.special_block {
  width: 100%;
  clear: both;
  margin-bottom: 4rem;
  float: left;
}

.special_block_text {
  width: 55%;
  float: left;
}

.special_block_text .gallery_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.special_block_text .item_gallery {
  flex: 0 0 48%;
  max-width: 48%;
  margin-bottom: 20px;
  text-align: center;
}

.reversed .special_block_text {
  float: right;
}

.special_block_image {
  float: right;
  width: 80%;
  margin-right: calc(-40% - 1.5rem);
  text-align: right;
}

.reversed .special_block_image {
  float: left;
  text-align: left;
  margin-left: calc(-40% - 1.5rem);
}

.reversed .special_block_image img {
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.special_block_image img {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

.c2a_block {
  float: right;

  background: #f97929;
  color: white;
  padding: 2rem;
  clear: both;
  width: 40%;
  border-radius: 20px;
  font-size: 28px;
  line-height: 36px;

  max-width: 450px;
  margin-left: 2rem;
  margin-bottom: 2rem;
}


.mod_insecat_item .c2a_block {
  float: none;
}

.c2a_block h3 {
  padding-left: 40px;
  font-weight: 400;
}

.c2a_block a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.c2a_block li {
  list-style: none;
  margin-bottom: 1rem;
}

.c2a_block li a {
  padding-left: 40px;
  background: no-repeat left center;
  background-image: url("ico_home_white.png");

  background-size: 28px;
}

.c2a_block li a[href^="tel:"] {
  background-image: url("ico_phone_white.png");
  background-size: 28px;
}

.c2a_block li a[href^="mailto:"] {
  background-image: url("ico_email_white.png");
  background-size: 28px;
}

.service_intro_text {
  width: 60%;
}

.service_intro .c2a_block {
  margin-right: -50%;
  width: 50%;
  position: relative;
  left: 15%;
  align-self: flex-start;
}

.realization_photos {
  justify-content: space-between;
}

.realization_photo_item {
  float: left;
  width: 49%;
  margin-bottom: 2%;
  position: relative;
}

.realization_photo_item img,
.realization_photo_item a {
  width: 100%;
  display: block;
}

.realization_photo_item img {
  border-radius: 20px;
}

.realization_photo_item figure {
  margin: 0;
}

.realization_photo_item figcaption {
  margin: 0;
  position: absolute;
  bottom: 0;
  font-weight: bold;
  background: white;
  background: rgba(255, 255, 255, 0.75);
  display: block;
  width: 100%;
  padding: 0.5rem 2rem;
  font-size: 18px;
}

.realization_service_list {
  padding: 3rem 0;
  font-weight: bold;
}

.realization_service_list a {
  color: #140080;
  margin-left: 2rem;
}

.realization_bottom {
  justify-content: space-between;
  margin: 4rem 0;
}

.realization_bottom_text {
  width: 45%;
}

#order_wrapper {
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: @cerna;
  background: rgba(0, 0, 0, 0.81);
  color: @bila;
  z-index: 999;
  max-width: 100%;
  display: none;
}

#order_wrapper_outline {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}

#order_slide {
  position: relative;
}

#order_wrapper_container {
  display: table;
  width: 25%;
  height: 100%;
  margin: 0 auto;
  z-index: 1111;

  max-width: 500px;
}

#order_wrapper #order_wrapper_inner {
  display: table-cell;
  vertical-align: middle;
}

#order_wrapper #order_wrapper_inner_top {
  background: #fff;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#order_wrapper #order_wrapper_inner_top img {
  max-width: 60%;
  margin: 0px auto;
  display: block;
}

.cform_container {
  clear: both;
  background: #0d0056;
  background: rgba(13,0,86,0.9);
  color: #ffffff;
}

.cform_container form {
  padding: 5% 10%;
  max-width: 400px;
  max-width: 480px;
  margin: 0 auto;
}

.cform_name {
  text-align: center;
  padding: 5% 0px 0px 0px;
}


#order_wrapper .cform_container{
  padding: 35px 50px;
}

#order_wrapper .cform_infotext {
  padding: 0;
  text-align: left;
  text-wrap: balance;
}

.cform_infotext {
  text-align: center;
}

textarea{
  min-height: 35px;
}


#order_wrapper .cform_name {
  color: #fff;
  padding: 0;
  margin: 0;
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 1rem;
}


#order_wrapper input,
#order_wrapper textarea {
  width: 100%;
  height: 35px;
  padding: 5px;
}

/*
#order_wrapper input.form_submit {
  cursor: pointer;
  Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#29ce47+0, 1d991b+100
  background: #29ce47;

  background: -moz-linear-gradient(top, #29ce47 0%, #1d991b 100%);

  background: -webkit-linear-gradient(top, #29ce47 0%, #1d991b 100%);

  background: linear-gradient(to bottom, #29ce47 0%, #1d991b 100%);

  filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#29ce47', endColorstr='#1d991b',GradientType=0 );


  border: 0;
  color: white;
  border-radius: 4px;
  width: 80%;
  left: 10%;
  position: relative;
  font-size: 16px;
}
 */

.cform_form_submit{
  display: flex;
  justify-content: flex-end;
}
#order_wrapper input.form_submit{
  height: unset;
  width: fit-content;
  padding: 15px 30px;
  cursor: pointer;
  background: #29ce47;
  background: linear-gradient(to bottom, #29ce47 0%, #1d991b 100%);
  border: 0;
  color: #fff;
  border-radius: 4px;
  position: relative;
  font-size: 16px;
  font-weight: 600;
}

#order_wrapper input.form_submit:hover {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1d991b+0, 29ce47+100 */
  background: #1d991b;
  /* Old browsers */
  background: -moz-linear-gradient(top, #1d991b 0%, #29ce47 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #1d991b 0%, #29ce47 100%);
  /* Chrome10-25, Safari5.1-6 */
  background: linear-gradient(to bottom, #1d991b 0%, #29ce47 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#1d991b', endColorstr='#29ce47',GradientType=0 );
  /* IE6-9 */
}

#order_wrapper textarea {
  height: 70px;
  resize: vertical;
}

#order_wrapper_close {
  background-color: #545454;

  width: 50px;
  height: 50px;
  background-color: #fff;
  position: absolute;
  right: 15px;
  top: 15px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: .3s background-color;
  z-index: 10;
  background-color: #fff;
}
#order_wrapper_close:hover{
  background-color: #f97929;
}

#order_wrapper #order_wrapper_close img {
  max-width: unset;
  margin: 0;
  object-fit: contain;
  max-width: 100%;
  width: auto;
  height: auto;
  display: block;
  line-height: 0.8;
  position: relative;
}


#order_wrapper .cform_item {
  margin-bottom: 1rem;
  width: 100%;
}

#order_wrapper .cform_container form {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}
#order_wrapper .cform_item.cform_item_type_submit{
  width: 60%;
  order: 1;
  margin-bottom: unset;
}
#order_wrapper .cform_item.cform_item_type_infotext {
  margin: 0;

  font-size: .8rem;
  width: 40%;
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

/*
#order_wrapper_close:hover {
  background: white;
  color: #545454;
}

 */


/* Submitted forms better info */
.cform_submitted_text {
  border: 1px solid var(--green);

  color: var(--green);
  background-color: hsl(var(--green-hslwl), 97%);

  padding: 2rem;
  border-radius: 24px;

  font-size: 2rem;
  line-height: 1.25;
  font-weight: 600;
  margin-top: 1rem;
  margin-bottom: 10rem;
}
.cform_submitted_text.saving{
  border-color: var(--blue);
  color: var(--blue);
  background-color: hsl(var(--blue-hslwl), 97%);
}
.cform_submitted_text.error{
  border-color: var(--red);
  color: var(--red);
  background-color: hsl(var(--red-hslwl), 97%);
}



.articles_list_item h2 {
  margin-bottom: 1rem;
}

.articles_list_item h2 a {
  font-size: 36px;
  color: #140080;
  display: block;
}

.lb-container {
  padding: 0 !important;
}

#user_sitemap_secondary {
  display: none;
}

@media only screen and (max-width: 1800px) {
  .header_main {
    font-size: 16px;
    line-height: 34px;
  }

  h2.item_name {
    font-size: 28px;
    line-height: 36px;
  }

  .header-left {
    gap: 40px;
  }
}

@media only screen and (max-width: 1600px) {
  .content {
    width: 80%;
  }

  .header-left {
    gap: 35px;
  }
}

@media only screen and (max-width: 1400px) {
  #order_wrapper_container {
    width: 50%;
  }

  h1,
  h2 {
    font-size: 36px;
    line-height: 48px;
  }

  .sliderbx_data_li_container {
    max-width: 40%;
  }

  .intro .content ul {
    padding: 2rem;
  }

  .header_main {
    font-size: 14px;
    line-height: 34px;
  }


  .content {
    width: 85%;
    width: 84%;
  }

  .c2a_block {
    font-size: 24px;
    line-height: 32px;
  }

  .service_intro .c2a_block {
    left: 10%;
    width: 40%;
    /* padding: 0.5rem; */
  }

  .c2a_block h3,
  .c2a_block ul {
    padding-left: 1rem;
  }

  .about .content {
    width: 70%;
    margin-left: 5%;
  }

  .reasons ul li:before {
    bottom: 85px;
  }

  .item_info {
    width: 90%;
    left: 5%;
  }
}

@media only screen and (max-width: 1200px) {



  .header_main {
    transition: all 0.25s ease-out;
    width: 75%;
    font-size: 13px;
  }

  .header_button {
    width: 10%;
    font-size: 17px;
  }

  .pd_30 {
    font-size: 20px;
  }

  .c2a_block {
    font-size: 18px;
    line-height: 28px;
  }
}

.gallery_container.flex {
  margin: 0 -20px;
}

.flex figure {
  margin: 10px;
  flex: 0 0 calc(25% - 20px);
  max-width: calc(25% - 20px);
  width: auto;
  text-align: center;
}



.gallery_container.gallery-three{
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 2rem 0;
}
.gallery_container.gallery-three figure{
  float: unset;
  margin: 0;
  width: calc(33.333% - 14px);
}
.gallery_container.gallery-three .gallery_img a,
.gallery_container.gallery-three .gallery_img picture,
.gallery_container.gallery-three .gallery_img img
{
  display: flex;
  width: 100%;
}


.realization_photos figure {
  flex: 0 0 calc(100% - 20px);
  max-width: calc(100% - 20px);
}
.realization_photo_item figcaption {
  padding: 2rem;
}

/* FAQ */
.news_item {
  padding: 15px 30px;
  margin-bottom: 5px;
  background-color: rgba(20, 0, 128, 0.1);
}

.news_item p {
  margin: 0;
}

.news_item h3 {
  margin: 0;
  font-size: 18px;
  cursor: pointer;
  position: relative;
}

.news_item h3::after {
  position: absolute;
  right: 0;
  content: "›";
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-size: 30px;
  color: #140080;
  transition: 0.3s;
}

.news_item.active h3::after {
  transform: translateY(-50%) rotate(-90deg);
  right: 5px;
}

.news_item .news_text {
  display: none;
  margin-top: 15px;
}

.news_text_answer :last-child {
  margin-bottom: 0;
}

#news_item_1_15,
#news_item_1_16,
#news_item_1_17 {
  display: none;
}

.id_page_84 #news_item_1_15,
.id_page_84 #news_item_1_16,
.id_page_84 #news_item_1_17 {
  display: block;
}




.page-scoll-menu-wrap {
  position: sticky;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 99;
  background-color: #fff;
  border-bottom: 3px solid #fb6801;
}

.page-scoll-menu-wrap .content {
  padding: 0;
}

.page-scoll-menu-wrap ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  width: 100%;
  text-align: center;
  justify-content: center;
  font-weight: 700;
}

.page-scoll-menu-wrap ul a {
  display: block;
  padding: 15px 25px;
  text-decoration: none;
  transition: ease-in-out .3s;
}

.page-scoll-menu-wrap ul a:hover {
  color: #140080;
}

.footer-cta-cont {
  padding: 0 50px;
}

.footer-cta-cont .inner-cont-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 200px;
}

.footer-cta-cont .inner-cont-wrap::after {
  background: linear-gradient(0deg,rgba(20, 0, 128, 0.25) 0%, rgba(20, 0, 128, 0) 100%);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: " ";
}

.footer-cta-cont .inner-cont-wrap img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 0;
}

.footer-cta-cont .inner-cont-wrap .content {
  position: relative;
  padding: 0;
  z-index: 5;
  height: 100%;
}

.footer-cta-cont .inner-cont-wrap .content .text {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 400px;
  background-color: #140080;
  font-weight: 700;
  color: #fff;
  font-size: 18px;
  text-align: center;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  padding: 10px 20px;
  top: 0;
  line-height: 1.25;
}

.footer-cta-cont .inner-cont-wrap .content .text span {
  font-size: 1.7em;
  display: block;
}

.footer-cta-cont .inner-cont-wrap .footer-cta-wrap {
  display: flex;
  align-items: flex-end;
  height: 100%;
  justify-content: center;
  padding-bottom: 30px;
}

.cta-box {
  display: flex;
  gap: 30px;
  align-items: center;
}

.cta-box .btn {
  text-transform: uppercase;
  background-color: #00a715;
  color: #fff;
  font-weight: 700;
  padding: 15px 20px;
  font-size: 1rem;
  line-height: 1;
  border-radius: 8px;
  width: 184px;
  flex: 0 0 184px;
}

.cta-box .btn:hover {
  background-color: #009112;
}

.cta-box .header_contact_phone {
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  background-color: #fb6801;
  border-radius: 8px;
  margin-left: 0;
  padding-right: 15px;
  transition: ease-in-out .3s;
}

.cta-box .header_contact_phone:hover {
  background-color: #e15f00;
}

body {
	padding-top: 113px;
}

header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
	background-color: #fff;
	border-bottom: 1px solid #ccc;
}

footer.white {
  background: #fff;
  color: #000;
  margin-top: 40px;
}

footer.white a {
  color: #000;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

.footer-col-address {
  display: flex;
  flex-direction: column;
}

.footer-col-address .logo-wrap {
  margin-bottom: 20px;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 20px;
  gap: 10px;
}

.footer-contacts a.phone {
  padding-left: 40px;
  background-image: url('/gfx/svg/call-icon.svg');
  background-repeat: no-repeat;
  background-position: 0 50%;
  background-size: 30px auto;
  display: inline-block;
  line-height: 30px;
  transition: ease-in-out .3s;
}

.footer-contacts a.phone:hover {
  color: #fb6801;
}

.footer-contacts a.mail {
  padding-left: 40px;
  background-image: url('/gfx/svg/email-icon.svg');
  background-repeat: no-repeat;
  background-position: 0 50%;
  background-size: 30px auto;
  display: inline-block;
  line-height: 30px;
  transition: ease-in-out .3s;
}

.footer-contacts a.mail:hover {
  color: #00a715;
}

.footer-col-menu {
  display: flex;
  gap: 60px;
  padding-top: 100px;
}

.footer-col-menu ul {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style-type: none;
  gap: 5px;
}

.footer-col-menu ul a {
  transition: color ease-in-out .3s;
}

.footer-col-menu ul a:hover {
  color: #fb6801;
}

.submenu_parent_name_div {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 20px;
}

.submenu_parent_name_div a {
  color: inherit;
  transition: color ease-in-out .3s;
  display: inline-block;
}

.submenu_parent_name_div a:hover,
footer .footer-col-menu #footer_menu li a:hover {
  color: #fb6801;
}

footer .footer-col-menu #footer_menu {
  padding: 0;
}

footer .footer-col-menu #footer_menu li a {
  font-weight: 400;
  color: inherit;
  text-align: left;
  display: block;
}

.footer-text-wrap {
  padding: 30px 0;
  border-top: 1px solid #d0d0d0;
  border-bottom: 1px solid #d0d0d0;
  margin-top: 80px;
  text-align: center;
  font-size: 16px;
}

.copy-wrap {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
}

.comerto-copy img {
  filter: brightness(0);
  opacity: .4;
  transition: ease-in-out .3s;
}

.comerto-copy a:hover img {
  opacity: .7;
}

@media(min-width: 1025px) {
  header {
    height: 110px;
  }

  body {
    padding-top: 110px;
  }
}

header.scrolled {
	flex-wrap: nowrap;
}

.header_main {
	width: auto;
}

/*header.scrolled .header_main {
	flex-wrap: nowrap;
}*/

header #logo {
	transition: ease-in-out .3s;
}

/*header.scrolled #logo {
	width: 150px;
	flex: 0 0 150px;
	transition: ease-in-out .3s;
}*/

header #logo img {
	transition: ease-in-out .3s;
}

/*header.scrolled #menu li a {
	font-size: 14px;
	text-align: center;
	justify-content: center;
	line-height: 1.3;
}*/

/*header.scrolled .header_contact_phone {
	font-size: 14px;
	align-items: center;
	display: flex;
}*/

/*header.scrolled .header_contact {
	width: auto;
	flex: 0 0 auto;
	order: 2;
	margin-bottom: 0;
}

header.scrolled #menu {
	width: auto;
	flex: 1 1 auto;
	padding: 0 50px;
}

header.scrolled #menu > li {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 45px;
}*/

@media(min-width: 1024px) {
  .sliderbx_container ul li {
    position: relative;
  }
}

@media(max-width: 1600px) {
	header #logo {
    flex: 0 0 160px;
    width: 160px;
  }

  #menu {
    gap: 20px;
  }
}

@media(max-width: 1400px) {
   header #logo {
    flex: 0 0 130px;
    width: 130px;
  }

	#menu li a {
    font-size: 14px;
  }

  .header_contact_phone {
    margin-left: 0;
    min-height: 36px;
    font-size: 16px;
    padding-left: 46px;
  }

  .cta-header .header_button {
    height: 36px;
    font-size: 15px;
    padding: 0 15px;
    line-height: 36px;
  }

  #menu li a.open {
    padding-right: 20px;
  }

  #menu li a.open::after {
    width: 12px;
    height: 12px;
  }
}

@media(max-width: 1280px) {
	header.scrolled #menu {
		padding: 0 15px;
	}
	
	.header_main {
		padding-right: 10px;
	}
	
	header.scrolled .header_contact {
		flex-direction: column;
		justify-content: center;
	}
	
	header.scrolled .header_button {
		flex: 0 0 100px;
	}
	
	header.flex {
		flex-wrap: nowrap;
	}

  .footer-cta-cont {
    padding: 0 20px;
  }
}

@media(max-width: 1250px) {
  .cta-header {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 15px;
  }

  #menu > li {
    display: flex;
    align-items: center;
  }
}

@media (max-width: 1200px) {
  .cta-header{
    display: none;
  }

  .cta-mobile-box,
  .cta-mobile-header{
    display: flex;
    gap: 15px;
  }

  .cta-mobile-header{
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  .cta-mobile-header a{
    display: flex;
  }


  .c2a_block li a,
  .c2a_block li a[href^="mailto:"],
  .c2a_block li a[href^="tel:"] {
    background-size: 22px;
  }
}

@media (max-width: 1024px) {
  .service_intro .c2a_block{
    margin-right: unset;
    left: 0;
  }

  .cta-mobile-header{
    flex-direction: row;
    gap: 15px;
  }

  .service_intro .c2a_block,
  .c2a_block{
    width: 80%;
    left: 10%;
    position: relative;
  }
}


@media(max-width: 900px) {
  .item {
    border-radius: 20px;
  }

  .items_list.flex .item{
    width: calc(50% - 10px);
    margin: 0px;
  }
}


@media(max-width: 800px) {
  .gallery_container .gallery_item,
  .gallery_container.gallery-three figure{
    width: calc(50% - 10px);
  }
}


@media(max-width: 700px) {
  .service_intro .c2a_block,
  .c2a_block{
    margin-left: auto;
    float: unset;

    left: 0px;
    margin-top: 1rem;
    margin-right: unset;
  }
  .c2a_block h3{
    margin-top: unset;
  }
  .c2a_block ul,
  .c2a_block ul li:last-child{
    margin-bottom: unset;
  }
  .c2a_block h3,
  .c2a_block ul{
    padding-left: 0px;
  }
}




@media(max-width: 600px) {
  #order_wrapper .cform_item.cform_item_type_infotext,
  #order_wrapper .cform_item.cform_item_type_submit{
    width: 100%;
  }

  #order_wrapper .cform_item.cform_item_type_infotext{
    margin-bottom: 1rem;
  }

  #order_wrapper .cform_container{
    padding: 35px;
  }

}


@media(max-width: 500px) {
  .item,
  .items_list.flex .item{
    width: 100%;
  }

  .gallery_container.gallery-three figure{
    width: 100%;
  }
}

@media(max-width: 450px) {
  #order_wrapper_close{
    right: 8px;
  }
}
