@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap");

* {
  font-family: "Roboto", sans-serif;
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

body {
  padding: 0;
  margin: 0;
  background-color: #f5f5f5;
  color: #1A202C;
}

h1 {
  font-family: "Noto Sans", sans-serif;
  font-weight: bold;
  font-size: 30px;
  line-height: 120%;
  color: #003366;
}

@media only screen and (max-width: 1024px) {
  h1 {
    font-size: 24px;
  }
}

h2.title {
  font-weight: 900;
  font-size: 30px;
  line-height: 120%;
  color: #003366;
}

@media only screen and (max-width: 1024px) {
  h2.title {
    font-size: 17px;
  }
}

ul li::marker {
  color: #003366;
}

.animate {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  -webkit-transition: ease 0.3s;
  transition: ease 0.3s;
}

.animate:after {
  content: "";
  display: block;
  width: 30px;
  height: 300px;
  margin-left: 60px;
  background: #fff;
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0.7) 0%, white 50%, rgba(255, 255, 255, 0.7) 100%);
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.7) 0%, white 50%, rgba(255, 255, 255, 0.7) 100%);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7) 0%, white 50%, rgba(255, 255, 255, 0.7) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#b3ffffff", endColorstr="#b3ffffff",GradientType=0 );
  position: absolute;
  left: -40px;
  top: -150px;
  z-index: 1;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
  -webkit-animation-name: slideme;
  animation-name: slideme;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-delay: 0.05s;
  animation-delay: 0.05s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

@-webkit-keyframes slideme {
  0% {
    left: -30px;
    margin-left: 0px;
  }
  30% {
    left: 110%;
    margin-left: 80px;
  }
  100% {
    left: 110%;
    margin-left: 80px;
  }
}

/* --- ОСТАЛЬНЫЕ СТИЛИ БЕЗ ИЗМЕНЕНИЙ --- */

article h2 {
  font-weight: 500;
  font-size: 24px;
  line-height: 28px;
  color: #367e41;
}
@media only screen and (max-width: 1024px) {
  article h2 {
    font-size: 15px;
    line-height: 16px;
  }
}
@media only screen and (max-width: 600px) {
  article h2 {
    font-size: 18px;
  }
}
article h3 {
  color: #179EFF;
  font-size: 18px;
  font-weight: bold;
}
@media only screen and (max-width: 1024px) {
  article h3 {
    font-size: 14px;
    line-height: 16px;
  }
}
article p {
  font-weight: 300;
  font-size: 18px;
  line-height: 21px;
}
@media only screen and (max-width: 1024px) {
  article p {
    font-size: 14px;
    line-height: 16px;
  }
}
article ul li {
  font-weight: 300;
  font-size: 18px;
  line-height: 21px;
}
@media only screen and (max-width: 1024px) {
  article ul li {
    font-size: 14px;
    line-height: 16px;
  }
}

.container {
  max-width: 1170px;
  width: 100%;
  display: block;
  margin: 0 auto;
}
@media only screen and (max-width: 1024px) {
  .container {
    max-width: 730px;
  }
}
@media only screen and (max-width: 600px) {
  .container {
    max-width: 425px;
  }
}
@media only screen and (max-width: 425px) {
  .container {
    max-width: 400px;
  }
}
@media only screen and (max-width: 424px) {
  .container {
    max-width: 370px;
  }
}
@media only screen and (max-width: 375px) {
  .container {
    max-width: 350px;
  }
}
@media only screen and (max-width: 320px) {
  .container {
    max-width: 300px;
  }
}

.container.sticky-nav {
  display: none;
  position: sticky;
  top: 0;
  z-index: 100;
}
.container.sticky-nav.show {
  display: block;
}

#navSidebar.nav-sidebar {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #FFFFFF;
  overflow-x: hidden;
  padding-top: 60px;
  transition: 0.5s;
}
#navSidebar.nav-sidebar .left-sidebar {
  display: block !important;
}
@media only screen and (max-width: 425px) {
  #navSidebar.nav-sidebar .left-sidebar {
    padding: 30px;
  }
}
@media only screen and (max-width: 375px) {
  #navSidebar.nav-sidebar .left-sidebar {
    padding: 20px 15px;
  }
}
#navSidebar.nav-sidebar .left-sidebar .accordionMenu .accordion {
  font-size: 18px !important;
}
#navSidebar.nav-sidebar .left-sidebar .accordionMenu .panel a:last-child {
  padding-bottom: 15px !important;
}
#navSidebar.nav-sidebar .left-sidebar a {
  font-size: 18px !important;
  padding-bottom: 0 !important;
  padding-top: 0 !important;
}
#navSidebar.nav-sidebar a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
  transition: 0.3s;
}
@media only screen and (max-width: 600px) {
  #navSidebar.nav-sidebar a {
    padding: 8px 8px 8px 8px;
  }
}
#navSidebar.nav-sidebar a:hover {
  color: #f1f1f1;
}
#navSidebar.nav-sidebar .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

/* Style page content - use this if you want to push the page content to the right when you open the side navigation */
.breadcrumbs {
  margin: 30px 0;
}
.breadcrumbs ol {
  list-style: none;
  display: flex;
  padding: 0;
}
.breadcrumbs ol li {
  margin: 0;
}
@media only screen and (max-width: 1024px) {
  .breadcrumbs ol li {
    font-size: 12px;
  }
}

.accordion-title {
  width: 100%;
  margin: 0;
  font-size: 24px;
  line-height: 120%;
  text-align: left;
  color: #179EFF;
  cursor: pointer;
  border: none;
  outline: none;
  transition: 0.4s;
  background-color: #ECF2F7;
}

.accordion-body {
  padding: 0px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

header .topline {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}
@media only screen and (max-width: 600px) {
  header .topline {
    display: none;
  }
}
header .topline div.logo {
  margin-left: 20px;
}
header .topline div.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #179EFF;
}
header .topline div.logo a img {
  width: 80px;
  height: 92px;
  margin-right: 10px;
}
@media only screen and (max-width: 1024px) {
  header .topline div.logo a img {
    width: 47px;
    height: 56px;
  }
}
@media only screen and (max-width: 600px) {
  header .topline div.logo a img {
    width: 62px;
    height: 72px;
  }
}
header .topline div.logo a span {
  line-height: 18px;
  font-weight: 900;
  text-transform: uppercase;
  width: 220px;
}
@media only screen and (max-width: 1024px) {
  header .topline div.logo a span {
    width: 155px;
    font-size: 10px;
    line-height: 11px;
  }
}
@media only screen and (max-width: 600px) {
  header .topline div.logo a span {
    font-size: 14px;
    line-height: 16px;
  }
}
header .topline > div:not(:first-child) {
  display: flex;
  align-items: flex-end;
}
header .topline > div:not(:first-child) > div {
  margin-bottom: 20px;
}
@media only screen and (max-width: 1024px) {
  header .topline > div:not(:first-child) > div {
    margin-bottom: 9px;
  }
}
header .topline > div:not(:first-child) > div:not(:first-child) {
  margin-left: 25px;
}
header .topline > div:not(:first-child) div.location i {
  color: #FF9100;
  margin-right: 10px;
  font-size: 16.7342px;
  line-height: 21px;
}
@media only screen and (max-width: 1024px) {
  header .topline > div:not(:first-child) div.location i {
    font-size: 10.5px;
    line-height: 13px;
  }
}
header .topline > div:not(:first-child) div.location span {
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-size: 16.7342px;
  line-height: 21px;
  text-decoration-line: underline;
  color: #179EFF;
}
@media only screen and (max-width: 1024px) {
  header .topline > div:not(:first-child) div.location span {
    font-weight: bold;
    font-size: 10.5px;
    line-height: 13px;
  }
}
header .topline > div:not(:first-child) div.search {
  position: relative;
}
header .topline > div:not(:first-child) div.search input[type=text] {
  width: 220px;
  height: 24px;
  border: solid 1px #C4C4C4;
  padding-left: 7px;
  padding-right: 30px;
}
@media only screen and (max-width: 1024px) {
  header .topline > div:not(:first-child) div.search input[type=text] {
    width: 130px;
    height: 15px;
  }
}
@media only screen and (max-width: 1024px) {
  header .topline > div:not(:first-child) div.search input[type=text]::placeholder {
    font-size: 9px;
  }
}
header .topline > div:not(:first-child) div.search i {
  position: absolute;
  top: 3px;
  right: 7px;
  color: ##053c64EFF;
}
@media only screen and (max-width: 1024px) {
  header .topline > div:not(:first-child) div.search i {
    font-size: 7px;
    top: 7px;
  }
}
header .topline > div:not(:first-child) div.phone a:link, header .topline > div:not(:first-child) div.phone a:visited {
  font-weight: 900;
  font-size: 29px;
  line-height: 34px;
  color: #000000;
  text-decoration: none;
}
@media only screen and (max-width: 1024px) {
  header .topline > div:not(:first-child) div.phone a:link, header .topline > div:not(:first-child) div.phone a:visited {
    font-size: 18px;
    line-height: 21px;
  }
}
header .topline.mobile {
  display: none;
}
@media only screen and (max-width: 600px) {
  header .topline.mobile {
    display: block;
  }
}
header .topline.mobile div.header {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 5px;
}
header .topline.mobile div.header a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #053c64;
}
header .topline.mobile div.header a img {
  width: 80px;
  height: 92px;
  margin-right: 10px;
}
header .topline.mobile div.header a span {
  line-height: 18px;
  font-weight: 900;
  text-transform: uppercase;
  width: 220px;
}
header .topline.mobile div.header div.location i {
  color: #FF9100;
  margin-right: 0px;
  font-size: 12px;
  line-height: 21px;
}
header .topline.mobile div.header div.location span {
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-size: 9px;
  line-height: 21px;
  text-decoration-line: underline;
  color: #053c64;
}
header .topline.mobile div.header div.menu-btn {
  position: absolute;
  right: 15px;
  bottom: 0px;
  margin-bottom: 15px;
}
header .topline.mobile div.header div.menu-btn button {
  width: 90px;
  height: 25px;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  line-height: 16px;
  color: #FFFFFF;
  background-color: #E42442;
}
header .topline.mobile div.search {
  position: relative;
  width: 98%;
  margin: 10px auto 0;
}
header .topline.mobile div.search form {
  width: 100%;
}
header .topline.mobile div.search form input[type=text] {
  width: 100%;
  height: 22.5px;
  border: solid 1px #C4C4C4;
  padding-right: 30px;
}
header .topline.mobile div.search form i {
  position: absolute;
  top: 3px;
  right: 7px;
  color: #053c64;
}
@media only screen and (max-width: 1024px) {
  header .topline.mobile div.search form i {
    font-size: 10px;
    top: 5px;
  }
}
header .navigation {
  display: flex;
  justify-content: space-between;
  border-radius: 10px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
@media only screen and (max-width: 600px) {
  header .navigation {
    display: none;
  }
}
header .navigation div.nav {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0 20px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  background-color: #053c64;
}
header .navigation div.nav a:link, header .navigation div.nav a:visited {
  font-size: 18px;
  font-weight: 500;
  color: #FFFFFF;
  text-transform: uppercase;
  text-decoration: none;
}
@media only screen and (max-width: 1024px) {
  header .navigation div.nav a:link, header .navigation div.nav a:visited {
    font-size: 11px;
    line-height: 13px;
  }
}
header .navigation div.nav a.link-home {
  font-size: 150%;
  margin-right: 20px;
}
@media only screen and (max-width: 1024px) {
  header .navigation div.nav a.link-home {
    font-size: 16px;
  }
}
header .navigation div.nav ul {
  list-style: none;
  display: flex;
  padding: 0;
  margin: 10px 0;
}
header .navigation div.nav ul li {
  padding: 0 20px;
}
@media only screen and (max-width: 1024px) {
  header .navigation div.nav ul li {
    padding: 0 10px;
  }
}
header .navigation div.callback {
  min-width: 250px;
  width: 250px;
  padding: 10px 0;
  text-align: center;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #E42442;
}
@media only screen and (max-width: 1024px) {
  header .navigation div.callback {
    min-width: 160px;
    width: 160px;
  }
}
header .navigation div.callback a:link, header .navigation div.callback a:visited {
  font-weight: bold;
  font-size: 24px;
  line-height: 28px;
  color: #FFFFFF;
  text-transform: lowercase;
  text-decoration: none;
}
@media only screen and (max-width: 1024px) {
  header .navigation div.callback a:link, header .navigation div.callback a:visited {
    font-size: 15px;
    line-height: 18px;
  }
}

.navigation {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: space-between;
  border-radius: 10px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
@media only screen and (max-width: 600px) {
  .navigation {
    display: none;
  }
}
.navigation div.nav {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0 20px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  background-color: #053c64;
}
.navigation div.nav a:link, .navigation div.nav a:visited {
  font-size: 18px;
  font-weight: 500;
  color: #FFFFFF;
  text-transform: uppercase;
  text-decoration: none;
}
@media only screen and (max-width: 1024px) {
  .navigation div.nav a:link, .navigation div.nav a:visited {
    font-size: 11px;
    line-height: 13px;
  }
}
.navigation div.nav a.link-home {
  font-size: 150%;
  margin-right: 20px;
}
@media only screen and (max-width: 1024px) {
  .navigation div.nav a.link-home {
    font-size: 16px;
  }
}
.navigation div.nav ul {
  list-style: none;
  display: flex;
  padding: 0;
  margin: 10px 0;
}
.navigation div.nav ul li {
  padding: 0 20px;
}
@media only screen and (max-width: 1024px) {
  .navigation div.nav ul li {
    padding: 0 10px;
  }
}
.navigation div.callback {
  min-width: 250px;
  width: 250px;
  padding: 10px 0;
  text-align: center;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #E42442;
}
@media only screen and (max-width: 1024px) {
  .navigation div.callback {
    min-width: 160px;
    width: 160px;
  }
}
.navigation div.callback a:link, .navigation div.callback a:visited {
  font-weight: bold;
  font-size: 24px;
  line-height: 28px;
  color: #FFFFFF;
  text-transform: lowercase;
  text-decoration: none;
}
@media only screen and (max-width: 1024px) {
  .navigation div.callback a:link, .navigation div.callback a:visited {
    font-size: 15px;
    line-height: 18px;
  }
}

.card .card-overlay {
  display: none;
  position: absolute;
  padding: 10px;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.65);
  overflow-y: scroll;
}
.card .card-overlay p {
  position: relative;
}

#s01 {
  margin: 25px 0px 50px;
}
@media only screen and (max-width: 600px) {
  #s01 {
    margin: 5px 0px 50px;
  }
}
#s01 div.container {
  display: grid;
  grid-template-columns: 260px 1fr 265px;
  grid-gap: 30px;
}
@media only screen and (max-width: 1024px) {
  #s01 div.container {
    grid-template-columns: 175px 1fr 175px;
    grid-gap: 15px;
  }
}
@media only screen and (max-width: 600px) {
  #s01 div.container {
    display: block;
  }
}
@media only screen and (max-width: 600px) {
  #s01 div.container .left-sidebar {
    display: none;
  }
}
#s01 div.container .left-sidebar .accordionMenu,
#navSidebar .left-sidebar .accordionMenu {
  margin-bottom: 15px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
#s01 div.container .left-sidebar .accordionMenu .accordion,
#navSidebar .left-sidebar .accordionMenu .accordion {
  width: 100%;
  margin: 0;
  padding: 18px;
  font-size: 24px;
  line-height: 120%;
  text-align: left;
  color: #179EFF;
  cursor: pointer;
  border: none;
  outline: none;
  transition: 0.4s;
  background-color: #ECF2F7;
}
@media only screen and (max-width: 1024px) {
  #s01 div.container .left-sidebar .accordionMenu .accordion {
    font-size: 15px;
    line-height: 120%;
    padding: 12px;
  }
}
#s01 div.container .left-sidebar .accordionMenu .accordion:before,
#navSidebar .left-sidebar .accordionMenu .accordion:before {
  content: "➕";
  font-size: 13px;
  color: #179EFF;
  float: left;
  padding-right: 10px;
  margin-left: 5px;
}
#s01 div.container .left-sidebar .accordionMenu .accordion.active:before,
#navSidebar .left-sidebar .accordionMenu .accordion.active:before {
  content: "➖";
}
#s01 div.container .left-sidebar .accordionMenu .panel,
#navSidebar .left-sidebar .accordionMenu .panel {
  padding: 0px 15px;
  max-height: 0;
  overflow: hidden;
  background-color: #ECF2F7;
  transition: max-height 0.2s ease-out;
}
#s01 div.container .left-sidebar .accordionMenu .panel a:link, #s01 div.container .left-sidebar .accordionMenu .panel a:visited
#navSidebar .left-sidebar .accordionMenu .panel a:link, #navSidebar .left-sidebar .accordionMenu .panel a:visited {
  display: block;
  padding: 5px 0px 5px 30px;
  color: #000000;
  text-decoration: none;
}
#s01 div.container .left-sidebar .corona,
#navSidebar .left-sidebar .corona {
  margin-top: 30px;
}
#s01 div.container .left-sidebar .org, 
#navSidebar .left-sidebar .org {
  margin-bottom: 30px;
}
#s01 div.container .left-sidebar .b-block,
#navSidebar .left-sidebar .b-block {
  display: flex;
  align-items: center;
  height: 65px;
  margin-bottom: 15px;
  padding: 18px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  background-color: #179EFF;
}
@media only screen and (max-width: 1024px) {
  #s01 div.container .left-sidebar .b-block,
  #navSidebar .left-sidebar .b-block {
    height: 50px;
    padding: 18px;
  }
}
#s01 div.container .left-sidebar .b-block a:link, #s01 div.container .left-sidebar .b-block a:visited,
#navSidebar .left-sidebar .b-block a:link, #navSidebar .left-sidebar .b-block a:visited {
  font-size: 24px;
  font-weight: bold;
  line-height: 120%;
  color: #FFFFFF;
  text-decoration: none;
}
@media only screen and (max-width: 1024px) {
  #s01 div.container .left-sidebar .b-block a:link, #s01 div.container .left-sidebar .b-block a:visited {
    font-size: 16px;
    line-height: 120%;
  }
}
#s01 div.container .left-sidebar .prepare .lr-block,
#navSidebar .left-sidebar .prepare .lr-block {
  display: flex;
  align-items: center;
  height: 65px;
  margin-bottom: 15px;
  padding: 15px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  background-color: #f7c8bb;
}
@media only screen and (max-width: 1024px) {
  #s01 div.container .left-sidebar .prepare .lr-block,
  #navSidebar .left-sidebar .prepare .lr-block {
    height: 50px;
  }
}
#s01 div.container .left-sidebar .prepare .lr-block img,
#navSidebar .left-sidebar .prepare .lr-block img{
  margin-right: 5px;
}
#s01 div.container .left-sidebar .prepare .lr-block a:link, #s01 div.container .left-sidebar .prepare .lr-block a:visited,
#navSidebar .left-sidebar .prepare .lr-block a:link, #navSidebar .left-sidebar .prepare .lr-block a:visited {
  font-weight: bold;
  font-size: 18px;
  line-height: 120%;
  color: #8C2813;
  text-decoration: none;
}
@media only screen and (max-width: 1024px) {
  #s01 div.container .left-sidebar .prepare .lr-block a:link, #s01 div.container .left-sidebar .prepare .lr-block a:visited {
    font-size: 14px;
  }
}
#s01 div.container .left-sidebar .order .r-block,
#navSidebar .left-sidebar .order .r-block {
  display: flex;
  align-items: center;
  height: 65px;
  margin-bottom: 15px;
  padding: 18px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  background-color: #E42442;
}
@media only screen and (max-width: 1024px) {
  #s01 div.container .left-sidebar .order .r-block,
  #navSidebar .left-sidebar .order .r-block {
    height: 50px;
    padding: 12px 5px 12px 10px;
  }
}
#s01 div.container .left-sidebar .order .r-block img,
#navSidebar .left-sidebar .order .r-block img {
  margin-right: 7px;
}
@media only screen and (max-width: 1024px) {
  #s01 div.container .left-sidebar .order .r-block img {
    width: 16px;
    height: 14px;
  }
}
#s01 div.container .left-sidebar .order .r-block a:link, #s01 div.container .left-sidebar .order .r-block a:visited,
#navSidebar .left-sidebar .order .r-block a:link, #navSidebar .left-sidebar .order .r-block a:visited{
  font-weight: bold;
  font-size: 18px;
  line-height: 120%;
  color: #FFFFFF;
  text-decoration: none;
}
@media only screen and (max-width: 1024px) {
  #s01 div.container .left-sidebar .order .r-block a:link, #s01 div.container .left-sidebar .order .r-block a:visited {
    font-size: 14px;
  }
}
#s01 div.container .left-sidebar .vk-block {
  margin: 30px 0;
}
#s01 div.container .left-sidebar .vk-block img {
  max-width: 100%;
}
#s01 div.container .left-sidebar .chemical .b-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: none;
}
#s01 div.container .left-sidebar .chemical .b-block p {
  margin: 0;
  font-size: 18px;
  line-height: 120%;
  padding-right: 15px;
  color: #FFFFFF;
  font-weight: bold;
}
@media only screen and (max-width: 1024px) {
  #s01 div.container .left-sidebar .chemical .b-block p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1024px) {
  #s01 div.container .left-sidebar .chemical .b-block img {
    width: 28px;
    height: 28px;
  }
}
#s01 div.container .left-sidebar .chemical .content {
  margin-top: -15px;
  padding: 15px 10px;
  border: solid 1px #C4C4C4;
  border-top: none;
}
#s01 div.container .left-sidebar .chemical .content > p {
  font-size: 12px;
  font-style: italic;
  line-height: 14px;
  text-align: center;
  color: #4E4E4E;
  margin-top: 0;
}
@media only screen and (max-width: 1024px) {
  #s01 div.container .left-sidebar .chemical .content > p {
    font-size: 10px;
  }
}
#s01 div.container .left-sidebar .chemical .content .card {
  position: relative;
  border: solid 1px #C4C4C4;
}
#s01 div.container .left-sidebar .chemical .content .card .card-img img {
  display: block;
  margin: auto;
  padding: 10px 0;
}
#s01 div.container .left-sidebar .chemical .content .card .card-body {
  background-color: #B7C2CA;
}
#s01 div.container .left-sidebar .chemical .content .card .card-body p {
  font-weight: bold;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  color: #FFFFFF;
  margin: 0;
  padding: 6px 5px;
}
@media only screen and (max-width: 1024px) {
  #s01 div.container .left-sidebar .chemical .content .card .card-body p {
    font-size: 12px;
  }
}
#s01 div.container .main-content .offsite {
  position: relative;
  width: 100%;
  height: 465px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  padding: 20px 10px 0;
}
@media only screen and (max-width: 1024px) {
  #s01 div.container .main-content .offsite {
    height: 290px;
  }
}
@media only screen and (max-width: 600px) {
  #s01 div.container .main-content .offsite {
    height: 265px;
  }
}
#s01 div.container .main-content .offsite div.offsite-title {
  display: flex;
  align-items: center;
}
#s01 div.container .main-content .offsite div.offsite-title img {
  width: 95px;
  height: 95px;
  margin-right: 10px;
}
@media only screen and (max-width: 1024px) {
  #s01 div.container .main-content .offsite div.offsite-title img {
    width: 60px;
    height: 60px;
  }
}
#s01 div.container .main-content .offsite div.offsite-title h2 {
  margin: 0;
  font-weight: 900;
  font-size: 23.5px;
  line-height: 28px;
  color: #FFFFFF;
}
@media only screen and (max-width: 1024px) {
  #s01 div.container .main-content .offsite div.offsite-title h2 {
    font-size: 12px;
    line-height: 14px;
  }
}
#s01 div.container .main-content .offsite div.offsite-advantages {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.55);
}
#s01 div.container .main-content .offsite div.offsite-advantages > div {
  display: flex;
  align-items: center;
  padding: 10px 20px;
}
@media only screen and (max-width: 1024px) {
  #s01 div.container .main-content .offsite div.offsite-advantages > div {
    flex-direction: column;
    padding: 5px 15px;
  }
}
@media only screen and (max-width: 320px) {
  #s01 div.container .main-content .offsite div.offsite-advantages > div {
    padding: 5px 10px;
  }
}
#s01 div.container .main-content .offsite div.offsite-advantages > div img {
  margin-right: 7px;
}
@media only screen and (max-width: 1024px) {
  #s01 div.container .main-content .offsite div.offsite-advantages > div img {
    margin: 5px;
  }
}
@media only screen and (max-width: 600px) {
  #s01 div.container .main-content .offsite div.offsite-advantages > div img {
    width: 18px;
    height: 18px;
    margin-bottom: 5px;
  }
}
#s01 div.container .main-content .offsite div.offsite-advantages > div p {
  width: 60px;
  font-size: 11px;
  line-height: 120%;
  color: #FFFFFF;
}
@media only screen and (max-width: 1024px) {
  #s01 div.container .main-content .offsite div.offsite-advantages > div p {
    width: 50px;
    font-size: 10px;
    font-weight: bold;
    text-align: center;
    margin: 0;
  }
}
@media only screen and (max-width: 600px) {
  #s01 div.container .main-content .offsite div.offsite-advantages > div p {
    font-size: 9px;
  }
}
#s01 div.container .main-content .buttons {
  display: none;
}
@media only screen and (max-width: 600px) {
  #s01 div.container .main-content .buttons {
    display: block; /* flex */
    justify-content: space-between;
    margin: 10px 0;
  }
}
#s01 div.container .main-content .buttons a {
  display: block;
  width: 100%; /*50%*/
  margin: 0; /*0 10px*/
  text-decoration: none;
}
#s01 div.container .main-content .buttons a .b-block {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  background-color: #179EFF;
  border-radius: 6px;
}
#s01 div.container .main-content .buttons a .b-block p {
  font-size: 13px;
  font-weight: 500;
  color: #FFFFFF;
}
#s01 div.container .main-content .buttons a .b-block img {
  width: 32px;
  height: 32px;
}
#s01 div.container .main-content .b-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 7px;
  padding: 10px;
  height: 70px;
  background-color: #179EFF;
}
#s01 div.container .main-content .b-block p {
  margin: 0;
  font-size: 18px;
  line-height: 120%;
  padding-right: 5px;
  color: #FFFFFF;
  font-weight: bold;
}
#s01 div.container .main-content .b-block img {
  width: 40px;
  height: 40px;
}
#s01 div.container .main-content .content {
  margin-top: -7px;
  padding: 15px;
  border: solid 1px #C4C4C4;
  border-top: none;
}
#s01 div.container .main-content .our-works {
  display: none;
}
@media only screen and (max-width: 600px) {
  #s01 div.container .main-content .our-works {
    display: block;
    margin-bottom: 10px;
  }
}
#s01 div.container .main-content .our-works .content .card {
  margin-bottom: 10px;
  padding: 15px 10px;
  border-radius: 10px;
  background: #EFEFEF;
}
#s01 div.container .main-content .our-works .content .card img {
  width: 100%;
}
#s01 div.container .main-content .our-works .content .card .card-body h3 {
  margin: 10px 0 0;
  font-size: 18px;
  line-height: 150%;
  text-align: center;
}
@media only screen and (max-width: 425px) {
  #s01 div.container .main-content .our-works .content .card .card-body h3 {
    font-size: 14px;
    line-height: 16px;
  }
}
#s01 div.container .main-content .our-works .content .card .card-body p {
  font-size: 16px;
  line-height: 150%;
  margin: 0;
  text-align: center;
}
@media only screen and (max-width: 425px) {
  #s01 div.container .main-content .our-works .content .card .card-body p {
    font-size: 12px;
    line-height: 14px;
  }
}
#s01 div.container .main-content .equipments {
  display: none;
}
@media only screen and (max-width: 600px) {
  #s01 div.container .main-content .equipments {
    display: block;
    margin-bottom: 10px;
  }
}
#s01 div.container .main-content .equipments .content {
  padding: 15px 10px;
}
#s01 div.container .main-content .equipments .content > p {
  font-size: 12px;
  font-style: italic;
  line-height: 14px;
  text-align: center;
  color: #4E4E4E;
  margin-top: 0;
}
@media only screen and (max-width: 1024px) {
  #s01 div.container .main-content .equipments .content > p {
    font-size: 11px;
    line-height: 13px;
  }
}
#s01 div.container .main-content .equipments .content .card {
  border: solid 1px #C4C4C4;
}
#s01 div.container .main-content .equipments .content .card .card-img img {
  display: block;
  margin: auto;
  padding: 10px 0;
}
#s01 div.container .main-content .equipments .content .card .card-body {
  background-color: #B7C2CA;
}
#s01 div.container .main-content .equipments .content .card .card-body p {
  font-size: 16px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
  color: #FFFFFF;
  text-transform: uppercase;
  margin: 0;
  padding: 6px 15px;
}
#s01 div.container .main-content .specialists {
  display: none;
}
@media only screen and (max-width: 600px) {
  #s01 div.container .main-content .specialists {
    display: block;
    margin-bottom: 10px;
  }
}
#s01 div.container .main-content .specialists .content {
  padding: 15px 10px;
}
#s01 div.container .main-content .specialists .content > p {
  font-size: 12px;
  font-style: italic;
  line-height: 14px;
  text-align: center;
  color: #4E4E4E;
  margin-top: 0;
}
#s01 div.container .main-content .specialists .content .card {
  border: solid 1px #179EFF;
}
#s01 div.container .main-content .specialists .content .card .card-header {
  display: flex;
  align-items: flex-end;
  padding: 10px 5px 10px 15px;
  background-color: #EFEFEF;
}
#s01 div.container .main-content .specialists .content .card .card-header div.photo {
  display: block;
  width: 100px;
  height: 100px;
  padding: 0;
  margin-right: 7px;
  background-size: cover;
  background-position: center;
}
#s01 div.container .main-content .specialists .content .card .card-header div p.name {
  font-weight: bold;
  font-size: 14px;
  line-height: 16px;
  color: #179EFF;
  margin: 0;
}
#s01 div.container .main-content .specialists .content .card .card-header div p.experience {
  font-weight: bold;
  font-size: 10px;
  line-height: 12px;
  color: #FF8F00;
  margin: 0;
}
#s01 div.container .main-content .specialists .content .card .card-body {
  padding: 10px;
  background-color: #FFFFFF;
}
#s01 div.container .main-content .specialists .content .card .card-body ul {
  padding-left: 10px;
}
#s01 div.container .main-content .specialists .content .card .card-body ul li {
  font-size: 12px;
  line-height: 150%;
  color: #4E4E4E;
  margin-bottom: 10px;
}
#s01 div.container .main-content .specialists .content .card .card-body ul li::marker {
  color: orange;
}
#s01 div.container .main-content .chemical {
  display: none;
}
@media only screen and (max-width: 600px) {
  #s01 div.container .main-content .chemical {
    display: block;
    margin-bottom: 10px;
  }
}
#s01 div.container .main-content .chemical .b-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: none;
}
#s01 div.container .main-content .chemical .b-block p {
  margin: 0;
  font-size: 18px;
  line-height: 120%;
  padding-right: 15px;
  color: #FFFFFF;
  font-weight: bold;
}
#s01 div.container .main-content .chemical .b-block img {
  width: 45px;
  height: 40px;
}
#s01 div.container .main-content .chemical .content {
  margin-top: -15px;
  padding: 15px 10px;
  border: solid 1px #C4C4C4;
  border-top: none;
}
#s01 div.container .main-content .chemical .content > p {
  font-size: 14px;
  font-style: italic;
  line-height: 16px;
  text-align: center;
  color: #4E4E4E;
  margin-top: 0;
}
#s01 div.container .main-content .chemical .content .card {
  border: solid 1px #C4C4C4;
}
#s01 div.container .main-content .chemical .content .card .card-img img {
  display: block;
  margin: auto;
  padding: 10px 0;
}
#s01 div.container .main-content .chemical .content .card .card-body {
  background-color: #B7C2CA;
}
#s01 div.container .main-content .chemical .content .card .card-body p {
  font-weight: bold;
  font-size: 14px;
  line-height: 16px;
  text-align: center;
  color: #FFFFFF;
  margin: 0;
  padding: 6px 5px;
}
@media only screen and (max-width: 320px) {
  #s01 div.container .main-content .chemical .content .card .card-body p {
    font-size: 12px;
  }
}
#s01 div.container .main-content .vk-block {
  display: none;
}
@media only screen and (max-width: 600px) {
  #s01 div.container .main-content .vk-block {
    display: block;
    margin-bottom: 30px;
  }
}
#s01 div.container .main-content .q-form {
  padding: 20px;
  background-color: #179EFF;
}
@media only screen and (max-width: 1024px) {
  #s01 div.container .main-content .q-form {
    padding: 15px;
  }
}
@media only screen and (max-width: 600px) {
  #s01 div.container .main-content .q-form {
    display: none;
  }
}
#s01 div.container .main-content .q-form h2 {
  font-weight: 900;
  font-size: 23.6375px;
  line-height: 120%;
  text-align: center;
  color: #FFFFFF;
}
@media only screen and (max-width: 1024px) {
  #s01 div.container .main-content .q-form h2 {
    font-size: 15px;
    margin-top: 0;
  }
}
@media only screen and (max-width: 600px) {
  #s01 div.container .main-content .q-form h2 {
    font-size: 18px;
    line-height: 22px;
  }
}
#s01 div.container .main-content .q-form form {
  width: 90%;
  margin: auto;
}
@media only screen and (max-width: 1024px) {
  #s01 div.container .main-content .q-form form {
    width: 95%;
  }
}
#s01 div.container .main-content .q-form form input[type=tel] {
  width: 100%;
  height: 60px;
  font-size: 24px;
  color: #179EFF;
}
@media only screen and (max-width: 1024px) {
  #s01 div.container .main-content .q-form form input[type=tel] {
    height: 37px;
  }
}
@media only screen and (max-width: 600px) {
  #s01 div.container .main-content .q-form form input[type=tel] {
    height: 60px;
  }
}
#s01 div.container .main-content .q-form form input[type=tel]::placeholder {
  font-size: 24px;
  color: #179EFF;
}
@media only screen and (max-width: 1024px) {
  #s01 div.container .main-content .q-form form input[type=tel]::placeholder {
    font-size: 15px;
  }
}
@media only screen and (max-width: 600px) {
  #s01 div.container .main-content .q-form form input[type=tel]::placeholder {
    font-size: 24px;
  }
}
#s01 div.container .main-content .q-form form p {
  font-weight: 300;
  font-size: 14px;
  line-height: 150%;
  text-align: center;
  color: #FFFFFF;
}
@media only screen and (max-width: 1024px) {
  #s01 div.container .main-content .q-form form p {
    font-size: 11px;
  }
}
@media only screen and (max-width: 600px) {
  #s01 div.container .main-content .q-form form p {
    font-size: 14px;
  }
}
#s01 div.container .main-content .q-form form button {
  display: block;
  width: 350px;
  height: 60px;
  margin: auto;
  font-weight: 900;
  font-size: 18px;
  line-height: 21px;
  color: #FFFFFF;
  text-align: center;
  text-transform: uppercase;
  border: none;
  background-color: #E42442;
}
@media only screen and (max-width: 1024px) {
  #s01 div.container .main-content .q-form form button {
    width: 80%;
    height: 36px;
    font-size: 11px;
    line-height: 13px;
  }
}
@media only screen and (max-width: 600px) {
  #s01 div.container .main-content .q-form form button {
    height: 42px;
    font-size: 18px;
    line-height: 21px;
  }
}
@media only screen and (max-width: 600px) {
  #s01 div.container .right-sidebar {
    display: none;
  }
}
#s01 div.container .right-sidebar .b-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  height: 70px;
  background-color: #179EFF;
}
@media only screen and (max-width: 1024px) {
  #s01 div.container .right-sidebar .b-block {
    height: 45px;
  }
}
#s01 div.container .right-sidebar .b-block p {
  margin: 0;
  font-size: 18px;
  line-height: 120%;
  padding-right: 15px;
  color: #FFFFFF;
  font-weight: bold;
}
@media only screen and (max-width: 1024px) {
  #s01 div.container .right-sidebar .b-block p {
    font-size: 14px;
    padding-right: 5px;
  }
}
@media only screen and (max-width: 1024px) {
  #s01 div.container .right-sidebar .b-block img {
    width: 25px;
    height: 25px;
  }
}
#s01 div.container .right-sidebar .content {
  margin-top: -7px;
  padding: 15px 10px;
  border: solid 1px #C4C4C4;
  border-top: none;
}
#s01 div.container .right-sidebar .calc {
  margin-bottom: 7px;
}
#s01 div.container .right-sidebar .calc .content {
  background-color: #F2F2F2;
}
@media only screen and (max-width: 1024px) {
  #s01 div.container .right-sidebar .calc .content {
    padding: 5px;
  }
}
#s01 div.container .right-sidebar .calc .content p {
  font-style: italic;
  font-weight: normal;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  color: #415A6B;
}
#s01 div.container .right-sidebar .calc .content form {
  width: 100%;
  padding: 0 10px;
}
@media only screen and (max-width: 1024px) {
  #s01 div.container .right-sidebar .calc .content form {
    padding: 0;
  }
}
#s01 div.container .right-sidebar .calc .content form input, #s01 div.container .right-sidebar .calc .content form select, #s01 div.container .right-sidebar .calc .content form button {
  width: 100%;
  height: 36px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 0;
  border: solid 1px #c4c4c4;
}
@media only screen and (max-width: 1024px) {
  #s01 div.container .right-sidebar .calc .content form input, #s01 div.container .right-sidebar .calc .content form select, #s01 div.container .right-sidebar .calc .content form button {
    padding-left: 5px;
  }
}
@media only screen and (max-width: 1024px) {
  #s01 div.container .right-sidebar .calc .content form input::placeholder {
    font-size: 12px;
  }
}
#s01 div.container .right-sidebar .calc .content form select {
  color: grey;
  background: #fff;
}
@media only screen and (max-width: 1024px) {
  #s01 div.container .right-sidebar .calc .content form select {
    font-size: 12px;
  }
}
#s01 div.container .right-sidebar .calc .content form button {
  font-weight: bold;
  font-size: 17.8537px;
  line-height: 120%;
  color: #fff;
  background-color: #E42442;
  height: 45px;
}
#s01 div.container .right-sidebar .calc .content form .field {
  margin-bottom: 10px;
}
#s01 div.container .right-sidebar .calc a {
  text-decoration: none;
}
#s01 div.container .right-sidebar .news {
  margin-bottom: 7px;
}
#s01 div.container .right-sidebar .news .content .card {
  margin-bottom: 10px;
  padding: 10px 10px;
  border-radius: 10px;
  background: #EFEFEF;
}
#s01 div.container .right-sidebar .news .content .card .card-body h3 {
  margin: 0 0 5px;
  font-size: 18px;
  line-height: 100%;
  text-align: left;
  color: #179EFF;
  font-weight: normal;
}
@media only screen and (max-width: 1024px) {
  #s01 div.container .right-sidebar .news .content .card .card-body h3 {
    font-size: 13px;
    line-height: 15px;
  }
}
#s01 div.container .right-sidebar .news .content .card .card-body p {
  font-size: 12px;
  line-height: 14px;
  margin: 0;
  text-align: left;
  color: rgba(0, 0, 0, 0.65);
}
@media only screen and (max-width: 1024px) {
  #s01 div.container .right-sidebar .news .content .card .card-body p {
    font-size: 12px;
    line-height: 14px;
  }
}
#s01 div.container .right-sidebar .news a:link, #s01 div.container .right-sidebar .news a:visited, #s01 div.container .right-sidebar .news a:hover {
  color: #179EFF;
  text-decoration: none;
}
#s01 div.container .right-sidebar .our-works {
  margin-bottom: 7px;
}
#s01 div.container .right-sidebar .our-works .content .card {
  margin-bottom: 10px;
  padding: 15px 10px;
  border-radius: 10px;
  background: #EFEFEF;
}
#s01 div.container .right-sidebar .our-works .content .card img {
  width: 100%;
}
#s01 div.container .right-sidebar .our-works .content .card .card-body h3 {
  margin: 10px 0 0;
  font-size: 18px;
  line-height: 21px;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  #s01 div.container .right-sidebar .our-works .content .card .card-body h3 {
    font-size: 13px;
    line-height: 15px;
  }
}
#s01 div.container .right-sidebar .our-works .content .card .card-body p {
  font-size: 16px;
  line-height: 19px;
  margin: 0;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  #s01 div.container .right-sidebar .our-works .content .card .card-body p {
    font-size: 12px;
    line-height: 14px;
  }
}
#s01 div.container .right-sidebar .equipments {
  margin-bottom: 7px;
}
#s01 div.container .right-sidebar .equipments .content {
  padding: 15px 10px;
}
#s01 div.container .right-sidebar .equipments .content > p {
  font-size: 12px;
  font-style: italic;
  line-height: 14px;
  text-align: center;
  color: #4E4E4E;
  margin-top: 0;
}
@media only screen and (max-width: 1024px) {
  #s01 div.container .right-sidebar .equipments .content > p {
    font-size: 11px;
    line-height: 13px;
  }
}
#s01 div.container .right-sidebar .equipments .content .card {
  border: solid 1px #C4C4C4;
}
#s01 div.container .right-sidebar .equipments .content .card .card-img img {
  display: block;
  margin: auto;
  padding: 10px 0;
}
#s01 div.container .right-sidebar .equipments .content .card .card-body {
  background-color: #B7C2CA;
}
#s01 div.container .right-sidebar .equipments .content .card .card-body p {
  font-size: 16px;
  font-weight: bold;
  line-height: 19px;
  text-align: center;
  color: #FFFFFF;
  text-transform: uppercase;
  margin: 0;
  padding: 6px 15px;
}
@media only screen and (max-width: 1024px) {
  #s01 div.container .right-sidebar .equipments .content .card .card-body p {
    font-size: 10px;
    line-height: 12px;
  }
}
#s01 div.container .right-sidebar .specialists {
  margin-bottom: 7px;
}
#s01 div.container .right-sidebar .specialists .content {
  padding: 15px 10px;
}
#s01 div.container .right-sidebar .specialists .content > p {
  font-size: 12px;
  font-style: italic;
  line-height: 14px;
  text-align: center;
  color: #4E4E4E;
  margin-top: 0;
}
#s01 div.container .right-sidebar .specialists .content .card {
  border: solid 1px #179EFF;
}
#s01 div.container .right-sidebar .specialists .content .card .card-header {
  display: flex;
  align-items: flex-end;
  padding: 10px 5px 10px 15px;
  background-color: #EFEFEF;
}
#s01 div.container .right-sidebar .specialists .content .card .card-header div.photo {
  display: block;
  width: 90px;
  height: 90px;
  padding: 0;
  margin-right: 7px;
  background-size: cover;
  background-position: center;
}
@media only screen and (max-width: 1024px) {
  #s01 div.container .right-sidebar .specialists .content .card .card-header div.photo {
    min-width: 43px;
    width: 43px;
    height: 70px;
  }
}
#s01 div.container .right-sidebar .specialists .content .card .card-header div p.name {
  font-weight: bold;
  font-size: 12.8694px;
  line-height: 15px;
  color: #179EFF;
  margin: 0;
}
@media only screen and (max-width: 1024px) {
  #s01 div.container .right-sidebar .specialists .content .card .card-header div p.name {
    font-size: 14px;
    line-height: 16px;
  }
}
#s01 div.container .right-sidebar .specialists .content .card .card-header div p.experience {
  font-weight: bold;
  font-size: 10.2955px;
  line-height: 12px;
  color: #FF8F00;
  margin: 0;
}
@media only screen and (max-width: 1024px) {
  #s01 div.container .right-sidebar .specialists .content .card .card-header div p.experience {
    font-size: 12px;
    line-height: 14px;
  }
}
#s01 div.container .right-sidebar .specialists .content .card .card-body {
  padding: 10px;
  background-color: #FFFFFF;
}
#s01 div.container .right-sidebar .specialists .content .card .card-body ul {
  padding-left: 10px;
}
@media only screen and (max-width: 1024px) {
  #s01 div.container .right-sidebar .specialists .content .card .card-body ul {
    margin: 0;
  }
}
#s01 div.container .right-sidebar .specialists .content .card .card-body ul li {
  font-size: 12px;
  line-height: 150%;
  color: #4E4E4E;
}
@media only screen and (max-width: 1024px) {
  #s01 div.container .right-sidebar .specialists .content .card .card-body ul li {
    line-height: 100%;
    margin-bottom: 10px;
  }
}
#s01 div.container .contacts h1 {
  margin-bottom: 5px;
}
@media only screen and (max-width: 1024px) {
  #s01 div.container .contacts p {
    font-size: 11px;
    line-height: 13px;
  }
}
@media only screen and (max-width: 1024px) {
  #s01 div.container .contacts ul li {
    font-size: 11px;
    line-height: 13px;
  }
}
#s01 div.container .contacts address {
  font-style: normal;
  margin-bottom: 20px;
}
#s01 div.container .contacts address p {
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
  margin: 0;
}
@media only screen and (max-width: 1024px) {
  #s01 div.container .contacts address p {
    font-size: 12px;
  }
}
#s01 div.container .contacts address p span {
  font-weight: bold;
  color: #179EFF;
}
#s01 div.container .contacts h2 {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: bold;
  margin: 0;
}
@media only screen and (max-width: 1024px) {
  #s01 div.container .contacts h2 {
    font-size: 12px;
  }
}
#s01 div.container .contacts h2.contacts-title {
  font-size: 30px;
  margin: 50px 0 15px;
}
#s01 div.container .contacts .map img {
  width: 100%;
  margin: 15px 0;
}
#s01 div.container .contacts .feedback-form {
  margin-top: 20px;
  padding: 20px;
  background: #179EFF;
}
@media only screen and (max-width: 600px) {
  #s01 div.container .contacts .feedback-form {
    margin-bottom: 30px;
  }
}
#s01 div.container .contacts .feedback-form h2 {
  font-weight: bold;
  font-size: 18px;
  line-height: 22px;
  text-align: center;
  color: #FFFFFF;
  text-transform: none;
  margin: 0 0 20px 0;
}
#s01 div.container .contacts .feedback-form form .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 25px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 600px) {
  #s01 div.container .contacts .feedback-form form .grid {
    grid-template-columns: 1fr;
    grid-gap: 10px;
  }
}
#s01 div.container .contacts .feedback-form form input {
  background: #FFFFFF;
  border: 1px solid #DEDEDE;
  width: 100%;
  height: 30px;
  padding-left: 15px;
  padding-right: 15px;
}
@media only screen and (max-width: 600px) {
  #s01 div.container .contacts .feedback-form form input {
    height: 50px;
  }
}
#s01 div.container .contacts .feedback-form form input::placeholder {
  font-size: 11px;
  color: #928C89;
}
@media only screen and (max-width: 600px) {
  #s01 div.container .contacts .feedback-form form input::placeholder {
    font-size: 14px;
  }
}
#s01 div.container .contacts .feedback-form form textarea {
  width: 100%;
  padding: 15px;
}
@media only screen and (max-width: 1024px) {
  #s01 div.container .contacts .feedback-form form textarea {
    height: 110px;
  }
}
@media only screen and (max-width: 600px) {
  #s01 div.container .contacts .feedback-form form textarea {
    height: 205px;
  }
}
#s01 div.container .contacts .feedback-form form textarea::placeholder {
  font-size: 11px;
  line-height: 13px;
  color: #928C89;
}
@media only screen and (max-width: 600px) {
  #s01 div.container .contacts .feedback-form form textarea::placeholder {
    font-size: 14px;
  }
}
#s01 div.container .contacts .feedback-form form button {
  border: none;
  width: 150px;
  display: block;
  margin: auto;
  font-weight: bold;
  font-size: 14px;
  text-align: center;
  color: #FFFFFF;
  padding: 8px 0;
  margin-top: 12px;
  background: #E42442;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

#s02 {
  margin-top: 100px;
  margin-bottom: 60px;
}
#s02 .faq {
  position: relative;
  width: 100%;
  padding: 25px 40px;
  border: solid 1px #C4C4C4;
}
@media only screen and (max-width: 600px) {
  #s02 .faq {
    padding: 10px;
  }
}
#s02 .faq:after {
  content: "";
  position: absolute;
  top: -50px;
  right: 5%;
  display: block;
  width: 110px;
  height: 110px;
  background-image: url("../images/question-icon.svg");
  background-repeat: no-repeat;
  background-size: 95%;
  z-index: 50;
}
@media only screen and (max-width: 1024px) {
  #s02 .faq:after {
    width: 75px;
    height: 75px;
    top: -35px;
  }
}
@media only screen and (max-width: 600px) {
  #s02 .faq:after {
    display: none;
  }
}
#s02 .faq h2 {
  text-transform: uppercase;
}
@media only screen and (max-width: 600px) {
  #s02 .faq h2 {
    font-size: 18px;
  }
}
#s02 .faq .accordion-question {
  margin-bottom: 15px;
}
#s02 .faq .accordion-question .accordion {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 18px;
  font-size: 24px;
  line-height: 120%;
  text-align: left;
  color: #333;
  cursor: pointer;
  border: none;
  outline: none;
  transition: 0.4s;
  background-color: #ECF2F7;
}
@media only screen and (max-width: 1024px) {
  #s02 .faq .accordion-question .accordion {
    font-size: 14px;
  }
}
#s02 .faq .accordion-question .accordion.active {
  background-color: #FFFFFF;
  border: solid 3px #EFEFEF;
  border-bottom: none;
}
#s02 .faq .accordion-question .accordion:before {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  content: "";
  font-size: 26px;
  color: #FFFFFF;
  margin-right: 15px;
  background-color: #179EFF;
}
@media only screen and (max-width: 1024px) {
  #s02 .faq .accordion-question .accordion:before {
    width: 26px;
    height: 26px;
    font-size: 15px;
  }
}
@media only screen and (max-width: 600px) {
  #s02 .faq .accordion-question .accordion:before {
    width: 30 px;
    height: 18px;
    font-size: 14px;
  }
}
#s02 .faq .accordion-question .accordion.active:before {
  content: "";
}
#s02 .faq .accordion-question .panel {
  padding: 0px 15px;
  max-height: 0;
  overflow: hidden;
  border: solid 3px #EFEFEF;
  border-top: none;
  transition: max-height 0.2s ease-out;
}
@media only screen and (max-width: 1024px) {
  #s02 .faq .accordion-question .panel p {
    font-size: 14px;
    line-height: 150%;
  }
}

#s03 {
  margin: 120px 0 150px;
}
@media only screen and (max-width: 600px) {
  #s03 {
    margin: 40px 5px;
  }
}
@media only screen and (max-width: 600px) {
  #s03 h2 {
    font-weight: 900;
    font-size: 19px;
    line-height: 120%;
    text-transform: uppercase;
  }
}
@media only screen and (max-width: 600px) {
  #s03 h2.clients {
    margin-top: 50px;
  }
}
#s03 .container > div {
  display: flex;
  padding: 20px;
  border: solid 2px #179EFF;
}
@media only screen and (max-width: 600px) {
  #s03 .container > div {
    flex-direction: column;
    border: 1px solid #c4c4c4;
  }
}
@media only screen and (max-width: 600px) {
  #s03 .container > div > div {
    border: none !important;
    padding: 0 !important;
    width: 100% !important;
  }
}
#s03 .container > div > div:first-child {
  width: 50%;
  padding-right: 20px;
  border-right: solid 1px #179EFF;
}
#s03 .container > div > div:last-child {
  width: 50%;
  padding-left: 20px;
}
#s03 .container > div > div:last-child div.clients {
  height: 65%;
  display: flex;
  align-items: center;
}
#s03 .container > div > div:last-child .slick-track {
  display: flex;
  align-items: center;
}
#s03 .container > div .carouselCertificates {
  padding: 0 20px;
}
@media only screen and (max-width: 1024px) {
  #s03 .container > div .carouselCertificates {
    padding: 0 15px;
  }
}
#s03 .container > div .carouselCertificates .owl-nav {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 15px;
  left: -50px;
}
@media only screen and (max-width: 1024px) {
  #s03 .container > div .carouselCertificates .owl-nav {
    top: 20px;
    left: -35px;
  }
}
@media only screen and (max-width: 600px) {
  #s03 .container > div .carouselCertificates .owl-nav {
    top: 72px;
    left: -35px;
  }
}
#s03 .container > div .carouselCertificates .owl-nav.disabled {
  display: none;
}
#s03 .container > div .carouselCertificates .owl-nav button.owl-prev {
  width: 50px;
  height: 50px;
  margin-bottom: 30px;
  border-radius: 50px;
  background: #EEEFF0 !important;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.25);
}
@media only screen and (max-width: 1024px) {
  #s03 .container > div .carouselCertificates .owl-nav button.owl-prev {
    width: 30px;
    height: 30px;
    margin-bottom: 17px;
  }
}
#s03 .container > div .carouselCertificates .owl-nav button.owl-prev:before {
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  font-size: 18px;
  content: "";
  color: #179EFF;
}
@media only screen and (max-width: 1024px) {
  #s03 .container > div .carouselCertificates .owl-nav button.owl-prev:before {
    font-size: 12px;
  }
}
#s03 .container > div .carouselCertificates .owl-nav button.owl-prev span {
  display: none;
}
#s03 .container > div .carouselCertificates .owl-nav button.owl-next {
  width: 50px;
  height: 50px;
  border-radius: 50px;
  background: #EEEFF0 !important;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.25);
}
@media only screen and (max-width: 1024px) {
  #s03 .container > div .carouselCertificates .owl-nav button.owl-next {
    width: 30px;
    height: 30px;
  }
}
#s03 .container > div .carouselCertificates .owl-nav button.owl-next:before {
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  font-size: 18px;
  content: "";
  color: #179EFF;
}
@media only screen and (max-width: 1024px) {
  #s03 .container > div .carouselCertificates .owl-nav button.owl-next:before {
    font-size: 12px;
  }
}
#s03 .container > div .carouselCertificates .owl-nav button.owl-next span {
  display: none;
}
#s03 .container > div .carouselClients {
  padding: 0;
}
#s03 .container > div .carouselClients .owl-item {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 150px;
}
@media only screen and (max-width: 1024px) {
  #s03 .container > div .carouselClients .owl-item {
    height: 80px;
  }
}
#s03 .container > div .carouselClients .owl-item img {
  max-width: 100%;
  height: 75px;
}

#page {
  margin-bottom: 30px;
}
#page .news {
  display: flex;
}
@media only screen and (max-width: 600px) {
  #page .news {
    flex-direction: column;
  }
}
#page .news .sidebar {
  min-width: 385px;
  width: 385px;
  padding-right: 30px;
}
@media only screen and (max-width: 1024px) {
  #page .news .sidebar {
    min-width: 230px;
    width: 230px;
  }
}
@media only screen and (max-width: 600px) {
  #page .news .sidebar {
    width: 100%;
  }
}
@media only screen and (max-width: 425px) {
  #page .news .sidebar {
    min-width: 100%;
    padding-right: 0;
  }
}
#page .news .sidebar .last-news {
  border: 2px solid #C4C4C4;
}
@media only screen and (max-width: 600px) {
  #page .news .sidebar .last-news {
    border: solid 2px #179EFF;
    margin-bottom: 30px;
  }
}
#page .news .sidebar .last-news .title {
  background: #179EFF;
}
#page .news .sidebar .last-news .title h2 {
  font-weight: 900;
  font-size: 24px;
  line-height: 120%;
  color: #FFFFFF;
  padding: 35px;
  margin: 0;
}
@media only screen and (max-width: 1024px) {
  #page .news .sidebar .last-news .title h2 {
    font-size: 15px;
    padding: 20px;
  }
}
#page .news .sidebar .last-news .list-news {
  padding: 25px;
}
@media only screen and (max-width: 1024px) {
  #page .news .sidebar .last-news .list-news {
    padding: 15px;
  }
}
#page .news .sidebar .last-news .list-news .toggle {
  display: none;
}
@media only screen and (max-width: 600px) {
  #page .news .sidebar .last-news .list-news .toggle {
    display: block;
    text-align: center;
    height: 25px;
  }
}
#page .news .sidebar .last-news .list-news .toggle:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  content: "";
}
#page .news .sidebar .last-news .list-news .toggle.active:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  content: "";
}
#page .news .sidebar .last-news .list-news a {
  display: flex;
  align-items: center;
  background: #EFEFEF;
  margin-bottom: 18px;
  padding-left: 35px;
  padding-right: 10px;
  height: 90px;
  text-decoration: none;
}
@media only screen and (max-width: 1024px) {
  #page .news .sidebar .last-news .list-news a {
    padding-left: 15px;
    padding-right: 10px;
    height: 57px;
    margin-bottom: 15px;
    line-height: 100%;
  }
}
#page .news .sidebar .last-news .list-news a.active {
  background: #179EFF;
}
#page .news .sidebar .last-news .list-news a.active .news-card span {
  color: #FFFFFF;
}
@media only screen and (max-width: 600px) {
  #page .news .sidebar .last-news .list-news a:nth-of-type(n+4) {
    display: none;
  }
}
#page .news .sidebar .last-news .list-news a.show {
  display: flex !important;
}
#page .news .sidebar .last-news .list-news a .news-card span {
  font-weight: bold;
  font-size: 14px;
  line-height: 150%;
  color: #333333;
}
@media only screen and (max-width: 1024px) {
  #page .news .sidebar .last-news .list-news a .news-card span {
    font-size: 9px;
  }
}
#page .news .sidebar .last-news .show-more {
  padding: 0 25px 25px;
}
@media only screen and (max-width: 1024px) {
  #page .news .sidebar .last-news .show-more {
    padding: 0 15px 25px;
  }
}
@media only screen and (max-width: 600px) {
  #page .news .sidebar .last-news .show-more {
    display: none;
  }
}
#page .news .sidebar .last-news .show-more a.btn-red {
  display: block;
  text-align: center;
  width: 185px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  padding: 10px;
  text-decoration: none;
  background: #C81E51;
}
@media only screen and (max-width: 1024px) {
  #page .news .sidebar .last-news .show-more a.btn-red {
    width: 115px;
    height: 30px;
    font-size: 11px;
    padding: 7px;
  }
}
#page .news .content article h1 {
  font-family: "Noto Sans", sans-serif;
  font-weight: bold;
  font-size: 30px;
  line-height: 150%;
  color: #179EFF;
  margin-top: 0;
}
@media only screen and (max-width: 1024px) {
  #page .news .content article h1 {
    font-size: 15px;
  }
}
@media only screen and (max-width: 600px) {
  #page .news .content article h1 {
    font-size: 18px;
  }
}
#page .news .content article img {
  max-width: 470px;
  /* height: 200px; */
  height: auto;
}
@media only screen and (max-width: 1024px) {
  #page .news .content article img {
    max-width: 330px;
    /* height: 155px; */
    height: auto;
  }
}
@media only screen and (max-width: 600px) {
  #page .news .content article img {
    width: 100%;
    height: auto;
  }
}
@media only screen and (max-width: 425px) {
  #page .news .content article img {
    width: 100%;
    height: auto;
  }
}
#page .news .content article p {
  font-family: "Noto Sans", sans-serif;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
  font-weight: normal;
}
@media only screen and (max-width: 1024px) {
  #page .news .content article p {
    font-size: 12px;
    line-height: 16px;
  }
}
@media only screen and (max-width: 600px) {
  #page .news .content article p {
    font-size: 14px;
    line-height: 24px;
  }
}
#page .news .content article h3 {
  font-family: "Noto Sans", sans-serif;
  font-weight: bold;
  font-size: 20px;
  line-height: 35px;
}
@media only screen and (max-width: 1024px) {
  #page .news .content article h3 {
    font-size: 12px;
    margin-bottom: 5px;
  }
}
@media only screen and (max-width: 600px) {
  #page .news .content article h3 {
    font-size: 16px;
  }
}
#page .news .content article table {
  width: 100%;
  color: #179EFF;
}
#page .news .content article table tr {
  height: 65px;
}
@media only screen and (max-width: 1024px) {
  #page .news .content article table tr {
    height: 40px;
  }
}
#page .news .content article table th, #page .news .content article table td {
  padding: 10px;
}
#page .news .content article table thead tr {
  background: #D9F1FF;
}
#page .news .content article table thead th, #page .news .content article table thead td {
  font-weight: bold;
}
@media only screen and (max-width: 1024px) {
  #page .news .content article table thead th, #page .news .content article table thead td {
    font-size: 12px;
  }
}
@media only screen and (max-width: 600px) {
  #page .news .content article table thead th, #page .news .content article table thead td {
    font-size: 14px;
    line-height: 24px;
  }
}
#page .news .content article table tbody tr:nth-child(2n) {
  background-color: #F0F0F0;
}
@media only screen and (max-width: 1024px) {
  #page .news .content article table tbody td {
    font-size: 11px;
  }
}
@media only screen and (max-width: 600px) {
  #page .news .content article table tbody td {
    font-size: 14px;
    line-height: 24px;
  }
}
#page .news .content article ul li {
  font-family: "Noto Sans", sans-serif;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
  font-weight: normal;
}
@media only screen and (max-width: 1024px) {
  #page .news .content article ul li {
    font-size: 12px;
  }
}
@media only screen and (max-width: 600px) {
  #page .news .content article ul li {
    font-size: 14px;
    line-height: 24px;
  }
}

.reviews {
  border-top: 1px solid #D1D1D1;
  margin: 30px 0 80px;
}
@media only screen and (max-width: 1024px) {
  .reviews .container {
    max-width: 100%;
    width: 100%;
  }
}
.reviews h2 {
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .reviews h2 {
    font-size: 20px;
  }
}
.reviews .carouselReviews {
  width: 95%;
  margin: auto;
}
.reviews .review-card {
  padding: 20px;
  border: 1px solid #D1D1D1;
  border-radius: 15px;
}
.reviews .review-card h5 {
  font-weight: bold;
  font-size: 16px;
  line-height: 150%;
  display: flex;
  align-items: center;
  color: #333333;
  margin-top: 0;
  margin-bottom: 12px;
}
@media only screen and (max-width: 1024px) {
  .reviews .review-card h5 {
    font-size: 13px;
  }
}
.reviews .review-card p {
  font-size: 12px;
  line-height: 150%;
  color: #4E4E4E;
  margin: 0;
  padding-right: 8px;
  height: 110px;
  overflow-y: scroll;
  scrollbar-color: #d9d9d9 #eee;
  scrollbar-width: thin;
}
.reviews .owl-nav {
  width: 100%;
  position: absolute;
  top: 75px;
}
@media only screen and (max-width: 1024px) {
  .reviews .owl-nav {
    top: 70px;
  }
}
@media only screen and (max-width: 600px) {
  .reviews .owl-nav {
    top: 72px;
  }
}
.reviews .owl-nav button.owl-prev {
  position: absolute;
  left: -2.5%;
}
@media only screen and (max-width: 1024px) {
  .reviews .owl-nav button.owl-prev {
    left: 0;
  }
}
.reviews .owl-nav button.owl-prev:before {
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  font-size: 60px;
  content: "";
  color: #179EFF;
}
@media only screen and (max-width: 1024px) {
  .reviews .owl-nav button.owl-prev:before {
    font-size: 60px;
  }
}
.reviews .owl-nav button.owl-prev span {
  display: none;
}
.reviews .owl-nav button.owl-next {
  position: absolute;
  right: -2.5%;
}
@media only screen and (max-width: 1024px) {
  .reviews .owl-nav button.owl-next {
    right: 0;
  }
}
.reviews .owl-nav button.owl-next:before {
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  font-size: 60px;
  content: "";
  color: #179EFF;
}
@media only screen and (max-width: 1024px) {
  .reviews .owl-nav button.owl-next:before {
    font-size: 60px;
  }
}
.reviews .owl-nav button.owl-next span {
  display: none;
}

#articles h1 {
  text-align: center;
}
#articles .listArticles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}
@media only screen and (max-width: 1024px) {
  #articles .listArticles {
    grid-gap: 15px;
  }
}
@media only screen and (max-width: 600px) {
  #articles .listArticles {
    grid-gap: 15px;
    grid-template-columns: repeat(1, 1fr);
  }
}
#articles .listArticles .card {
  padding: 20px;
  border: 2px solid #C4C4C4;
  border-radius: 0;
}
@media only screen and (max-width: 1024px) {
  #articles .listArticles .card {
    padding: 12px;
  }
}
#articles .listArticles .card .card-header h3 {
  height: 73px;
  font-weight: bold;
  font-size: 22px;
  line-height: 110%;
  color: #179EFF;
  margin: 0;
}
@media only screen and (max-width: 1024px) {
  #articles .listArticles .card .card-header h3 {
    height: 32px;
    font-size: 14px;
  }
}
@media only screen and (max-width: 600px) {
  #articles .listArticles .card .card-header h3 {
    height: auto;
    font-size: 18px;
  }
}
#articles .listArticles .card .card-header h3 a {
  text-decoration: none;
  color: #179EFF;
}
#articles .listArticles .card .card-header p {
  font-weight: 300;
  font-size: 12px;
  line-height: 110%;
  color: #000000;
}
@media only screen and (max-width: 1024px) {
  #articles .listArticles .card .card-header p {
    font-size: 7.5px;
  }
}
@media only screen and (max-width: 600px) {
  #articles .listArticles .card .card-header p {
    font-size: 14px;
  }
}
#articles .listArticles .card .card-body {
  margin-bottom: 30px;
}
@media only screen and (max-width: 1024px) {
  #articles .listArticles .card .card-body {
    margin-bottom: 15px;
  }
}
#articles .listArticles .card .card-body div.image {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 1024px) {
  #articles .listArticles .card .card-body div.image {
    height: 120px;
  }
}
@media only screen and (max-width: 600px) {
  #articles .listArticles .card .card-body div.image {
    height: 200px;
  }
}
@media only screen and (max-width: 375px) {
  #articles .listArticles .card .card-body div.image {
    height: 160px;
  }
}
@media only screen and (max-width: 320px) {
  #articles .listArticles .card .card-body div.image {
    height: 120px;
  }
}
#articles .listArticles .card .card-body p {
  font-size: 18px;
  line-height: 20px;
  font-weight: 300;
  color: #000000;
}
@media only screen and (max-width: 1024px) {
  #articles .listArticles .card .card-body p {
    font-size: 11px;
    line-height: 110%;
  }
}
@media only screen and (max-width: 600px) {
  #articles .listArticles .card .card-body p {
    font-size: 14px;
    line-height: 110%;
  }
}
#articles .listArticles .card .card-footer a.btn-red {
  width: 175px;
  padding: 10px;
  background: #C81E51;
  font-size: 18px;
  line-height: 20px;
  text-align: center;
  color: #FFFFFF;
  text-decoration: none;
  margin-left: auto;
  display: block;
}
@media only screen and (max-width: 1024px) {
  #articles .listArticles .card .card-footer a.btn-red {
    font-size: 11px;
    width: 110px;
    padding: 5px;
  }
}
@media only screen and (max-width: 600px) {
  #articles .listArticles .card .card-footer a.btn-red {
    font-size: 14px;
  }
}

#q-form {
  margin: 50px 0;
}
#q-form .q-form {
  display: none;
  padding: 20px;
  background-color: #179EFF;
}
@media only screen and (max-width: 600px) {
  #q-form .q-form {
    display: block;
  }
}
#q-form .q-form h2 {
  font-weight: 900;
  font-size: 23.6375px;
  line-height: 120%;
  text-align: center;
  color: #FFFFFF;
}
@media only screen and (max-width: 600px) {
  #q-form .q-form h2 {
    font-size: 24px;
    line-height: 22px;
  }
}
#q-form .q-form form {
  width: 90%;
  margin: auto;
}
#q-form .q-form form input[type=tel] {
  width: 100%;
  height: 60px;
  font-size: 24px;
  color: #179EFF;
}
#q-form .q-form form input[type=tel]::placeholder {
  font-size: 24px;
  color: #179EFF;
}
@media only screen and (max-width: 600px) {
  #q-form .q-form form input[type=tel]::placeholder {
    font-size: 24px;
  }
}
#q-form .q-form form p {
  font-weight: 300;
  font-size: 14px;
  line-height: 150%;
  text-align: center;
  color: #FFFFFF;
}
#q-form .q-form form button {
  display: block;
  width: 350px;
  height: 60px;
  margin: auto;
  font-weight: 900;
  font-size: 18px;
  line-height: 21px;
  color: #FFFFFF;
  text-align: center;
  text-transform: uppercase;
  border: none;
  background-color: #E42442;
}
@media only screen and (max-width: 600px) {
  #q-form .q-form form button {
    width: 100%;
    height: 42px;
    font-size: 18px;
    line-height: 21px;
  }
}

#modalWindow, #modalPolicy, #modalCalc {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 1;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: black;
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.6);
  /* Black w/ opacity */
}
#modalWindow .modal-dialog, #modalPolicy .modal-dialog, #modalCalc .modal-dialog {
  max-width: 900px;
  margin: 100px auto;
  border-radius: 0px;
}
#modalWindow .modal-dialog .modal-content, #modalPolicy .modal-dialog .modal-content, #modalCalc .modal-dialog .modal-content {
  background: #179EFF;
  border: 1px solid #fff;
  border-radius: 0px;
  background-position: -200px 11%;
  padding: 20px 15px;
}
#modalWindow .modal-dialog .modal-content .modal-header, #modalPolicy .modal-dialog .modal-content .modal-header, #modalCalc .modal-dialog .modal-content .modal-header {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #dee2e6;
}
#modalWindow .modal-dialog .modal-content .modal-header h5, #modalPolicy .modal-dialog .modal-content .modal-header h5, #modalCalc .modal-dialog .modal-content .modal-header h5 {
  color: #fff;
  font-size: 30px;
  margin: 0 0 20px;
}
#modalWindow .modal-dialog .modal-content .modal-header span, #modalPolicy .modal-dialog .modal-content .modal-header span, #modalCalc .modal-dialog .modal-content .modal-header span {
  color: #fff;
}
#modalWindow .modal-dialog .modal-content .modal-body form, #modalPolicy .modal-dialog .modal-content .modal-body form, #modalCalc .modal-dialog .modal-content .modal-body form {
  margin: 30px;
}
#modalWindow .modal-dialog .modal-content .modal-body form .form-group, #modalPolicy .modal-dialog .modal-content .modal-body form .form-group, #modalCalc .modal-dialog .modal-content .modal-body form .form-group {
  margin-bottom: 15px;
}
#modalWindow .modal-dialog .modal-content .modal-body form .form-group input, #modalPolicy .modal-dialog .modal-content .modal-body form .form-group input, #modalCalc .modal-dialog .modal-content .modal-body form .form-group input {
  margin-bottom: 15px;
  width: 100%;
  height: 50px;
  border: none;
  border-radius: 0px;
  padding-left: 15px;
  padding-right: 15px;
}
#modalWindow .modal-dialog .modal-content .modal-footer, #modalPolicy .modal-dialog .modal-content .modal-footer, #modalCalc .modal-dialog .modal-content .modal-footer {
  padding-top: 20px;
  border-top: 1px solid #dee2e6;
}
#modalWindow .modal-dialog .modal-content .modal-footer button, #modalPolicy .modal-dialog .modal-content .modal-footer button, #modalCalc .modal-dialog .modal-content .modal-footer button {
  display: block;
  min-width: 250px;
  width: 250px;
  padding: 10px 0;
  margin-left: auto;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  color: #fff;
  border: none;
  border-radius: 10px;
  background-color: #E42442;
}
#modalWindow .close, #modalPolicy .close, #modalCalc .close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}
#modalWindow .close:hover, #modalWindow .close:focus, 
#modalPolicy .close:hover, #modalPolicy .close:focus,
#modalCalc .close:hover, #modalCalc .close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

footer {
  background-color: #367e41;
  padding-bottom: 40px;
}

footer .footer {
  display: grid;
  grid-template-columns: 25% 1fr 40%;
}
@media only screen and (max-width: 1024px) {
  footer .footer {
    grid-template-columns: 22% 1fr 35%;
  }
}
@media only screen and (max-width: 600px) {
  footer .footer {
    grid-template-columns: 1fr;
    padding-bottom: 30px;
  }
}
footer .footer h5 {
  font-weight: bold;
  font-size: 32px;
  line-height: 150%;
  color: #FFFFFF;
  margin-bottom: 0;
  text-transform: uppercase;
}
@media only screen and (max-width: 1024px) {
  footer .footer h5 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 600px) {
  footer .footer h5 {
    font-size: 24.5px;
    margin-top: 15px;
  }
}
@media only screen and (max-width: 600px) {
  footer .footer div.menu {
    order: 2;
  }
}
footer .footer div.menu ul {
  list-style: none;
  padding: 0;
}
@media only screen and (max-width: 600px) {
  footer .footer div.menu ul {
    margin-top: 0;
  }
}
footer .footer div.menu ul li {
  padding: 7px 0;
}
@media only screen and (max-width: 1024px) {
  footer .footer div.menu ul li {
    padding: 3px 0;
  }
}
footer .footer div.menu ul li a:link, footer .footer div.menu ul li a:visited {
  font-weight: bold;
  font-size: 20px;
  line-height: 23px;
  color: #FFFFFF;
  text-decoration: none;
}
@media only screen and (max-width: 1024px) {
  footer .footer div.menu ul li a:link, footer .footer div.menu ul li a:visited {
    font-size: 12.5px;
  }
}
@media only screen and (max-width: 600px) {
  footer .footer div.menu ul li a:link, footer .footer div.menu ul li a:visited {
    font-size: 15.5px;
    line-height: 19px;
  }
}
@media only screen and (max-width: 600px) {
  footer .footer div.contacts {
    order: 3;
  }
}
footer .footer div.contacts p {
  font-weight: bold;
  font-size: 18.6099px;
  line-height: 150%;
  color: #FFFFFF;
  margin-bottom: 0px;
}
@media only screen and (max-width: 1024px) {
  footer .footer div.contacts p {
    font-size: 12.5px;
  }
}
footer .footer div.contacts p:nth-child(n+3) {
  margin-top: 10px;
}
@media only screen and (max-width: 1024px) {
  footer .footer div.contacts p:nth-child(n+3) {
    margin-top: 5px;
  }
}
@media only screen and (max-width: 600px) {
  footer .footer div.contacts > div.address p {
    font-size: 14px;
    line-height: 150%;
  }
}
@media only screen and (max-width: 600px) {
  footer .footer div.contacts > div.phone {
    padding: 15px 0;
  }
}
@media only screen and (max-width: 600px) {
  footer .footer div.contacts > div.phone p.desktop {
    display: none;
    font-size: 18px;
    line-height: 150%;
    margin: 0;
  }
}
footer .footer div.contacts > div.phone p.mobile {
  display: none;
}
@media only screen and (max-width: 600px) {
  footer .footer div.contacts > div.phone p.mobile {
    display: block;
    font-size: 18px;
    line-height: 150%;
    margin: 0;
  }
}
footer .footer div.contacts > div.phone p.mobile a {
  display: block;
  color: #FFFFFF;
  text-decoration: none;
}
footer .footer div.contacts > div.phone p.time {
  margin: 0 0 15px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}
@media only screen and (max-width: 1024px) {
  footer .footer div.contacts > div.phone p.time {
    font-size: 10px;
  }
}
@media only screen and (max-width: 600px) {
  footer .footer div.contacts > div.phone p.time {
    font-size: 14px;
    line-height: 150%;
    margin: 0;
  }
}
footer .footer div.contacts > div.email a:link, footer .footer div.contacts > div.email a:visited {
  font-weight: bold;
  line-height: 150%;
  color: #FFFFFF;
}
@media only screen and (max-width: 1024px) {
  footer .footer div.contacts > div.email a:link, footer .footer div.contacts > div.email a:visited {
    font-size: 11.5px;
  }
}
@media only screen and (max-width: 600px) {
  footer .footer div.contacts > div.email a:link, footer .footer div.contacts > div.email a:visited {
    font-size: 16.5px;
  }
}
footer .footer div.requisites-block {
  margin-top: 25px;
}
@media only screen and (max-width: 600px) {
  footer .footer div.requisites-block {
    display: flex;
    flex-direction: column;
    order: 1;
  }
}
@media only screen and (max-width: 600px) {
  footer .footer div.requisites-block .logo {
    order: 1;
  }
}
footer .footer div.requisites-block .logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #FFFFFF;
}
footer .footer div.requisites-block .logo a img {
  width: 80px;
  height: 92px;
  margin-right: 10px;
}
@media only screen and (max-width: 1024px) {
  footer .footer div.requisites-block .logo a img {
    width: 55px;
    height: 65px;
    margin-right: 5px;
  }
}
@media only screen and (max-width: 600px) {
  footer .footer div.requisites-block .logo a img {
    width: 88px;
    height: 104px;
    margin-right: 10px;
  }
}
footer .footer div.requisites-block .logo a span {
  font-size: 22px;
  line-height: 25px;
  font-weight: 900;
  text-transform: uppercase;
  width: 220px;
}
@media only screen and (max-width: 1024px) {
  footer .footer div.requisites-block .logo a span {
    font-size: 14px;
    line-height: 16px;
  }
}
@media only screen and (max-width: 600px) {
  footer .footer div.requisites-block .logo a span {
    font-size: 16px;
    line-height: 30px;
  }
}
footer .footer div.requisites-block .requisites {
  padding: 20px 0;
}
@media only screen and (max-width: 600px) {
  footer .footer div.requisites-block .requisites {
    order: 3;
    padding: 5px 0;
  }
}
footer .footer div.requisites-block .requisites p {
  font-size: 14px;
  line-height: 150%;
  color: #FFFFFF;
  margin: 0;
}
@media only screen and (max-width: 1024px) {
  footer .footer div.requisites-block .requisites p {
    font-size: 9px;
  }
}
@media only screen and (max-width: 600px) {
  footer .footer div.requisites-block .requisites p {
    font-size: 11px;
    font-weight: bold;
  }
}
footer .footer div.requisites-block .social {
  margin-bottom: 5px;
  width: 150px;
}
@media only screen and (max-width: 1024px) {
  footer .footer div.requisites-block .social {
    margin-bottom: 0px;
    width: 100px;
  }
}
@media only screen and (max-width: 600px) {
  footer .footer div.requisites-block .social {
    width: 115px;
    margin-top: 15px;
    order: 2;
  }
}
footer .footer div.requisites-block .social a:not(:last-child) {
  margin-right: 18px;
}
@media only screen and (max-width: 1024px) {
  footer .footer div.requisites-block .social a:not(:last-child) {
    margin-right: 15px;
  }
}
footer .footer div.requisites-block .social a img {
  margin-bottom: 5px;
}
@media only screen and (max-width: 1024px) {
  footer .footer div.requisites-block .social a img {
    width: 20px;
    height: 20px;
  }
}
@media only screen and (max-width: 600px) {
  footer .footer div.requisites-block .social a img {
    width: 25px;
    height: 25px;
  }
}
footer .footer div.requisites-block .policy a:link, footer .footer div.requisites-block .policy a:visited {
  font-size: 14px;
  line-height: 150%;
  color: #FFFFFF;
}
@media only screen and (max-width: 1024px) {
  footer .footer div.requisites-block .policy a:link, footer .footer div.requisites-block .policy a:visited {
    font-size: 9px;
  }
}
@media only screen and (max-width: 600px) {
  footer .footer div.requisites-block .policy a:link, footer .footer div.requisites-block .policy a:visited {
    display: none;
  }
}

#sitemap .title {
  padding: 0 1rem;
}

#sitemap h1 {
  font-size: 30px;
  font-weight: bold;
  color: #179EFF;
  margin-bottom: 30px;
}
#sitemap .sitemap {
  padding: 0 1rem;
}
#sitemap li {
  line-height: 1.5;
}
#sitemap li.l0 a {
  font-size: 30px;
  font-weight: bold;
  color: #179EFF;
}
#sitemap li.l1 {
  margin-left: 30px;
}
#sitemap li.l1 a {
  font-size: 24px;
  font-weight: bold;
  color: #179EFF;
}
#sitemap ul.u2 li a {
  font-size: 14px;
  color: #179EFF;
}

.search h3 {
  margin-bottom: 5px;
}
.search h3 a {
  color: #179EFF;
}
.search .extract p {
  margin-top: 5px;
}

.ymap-container {
  position: relative;
  margin: 1em 0 2em 0;
  overflow: hidden;
  cursor: pointer;
  background: url("../images/ymap.png") #ffffff no-repeat;
  background-position: center center;
  background-size: cover;
  /* box-shadow: 0 0 2em  0 rgba(0,0,0,.2); */
}

/* Блок, в котором появится Яндекс.Карта */
#map-yandex {
  position: relative;
  z-index: 7;
  width: 100%;
  height: 400px;
  cursor: pointer;
  background-color: transparent;
}

.loader {
  position: absolute;
  z-index: 15;
  top: -100%;
  left: 0;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  overflow: hidden;
  color: #000000;
  transition: opacity 0.7s ease;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.55);
}

.loader:after,
.loader:before {
  box-sizing: border-box;
}

.loader.is-active {
  top: 0;
  opacity: 1;
  z-index: 5;
}

.loader-default:after {
  position: absolute;
  top: calc(50% - 24px);
  left: calc(50% - 24px);
  width: 48px;
  height: 48px;
  content: "";
  animation: rotation 1s linear infinite;
  border: solid 8px #ffffff;
  border-left-color: transparent;
  border-radius: 50%;
}

@keyframes rotation {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(359deg);
  }
}
@keyframes blink {
  from {
    opacity: 0.5;
  }
  to {
    opacity: 1;
  }
}

#modalCalc .modal-body .content p {
    color: #ddd;
}

#modalCalc .modal-body .content form {
    margin: 0 !important;
    width: 100%;
}

#modalCalc .modal-body .content form div.field {
    margin-bottom: 10px;
}

#modalCalc .modal-body .content form input,
#modalCalc .modal-body .content form select,
#modalCalc .modal-body .content form textarea {
    width: 100%;
}

#modalCalc .modal-body .content form button {
    display: block;
    width: 100%;
    height: 50px;
    border: none;
    margin: auto;
    font-weight: bold;
    font-size: 17.8537px;
    line-height: 120%;
    color: #fff;
    background-color: #E42442;
    height: 45px;
}

#s01 .buttons .calc .accordion-body {
    margin-top: -7px;
}

#s01 .buttons .calc .accordion-body .content p {
    font-size: 14px;
}

#s01 .buttons .calc .accordion-body .content form div.field {
    margin-bottom: 10px;
}

#s01 .buttons .calc .accordion-body .content form input,
#s01 .buttons .calc .accordion-body .content form select,
#s01 .buttons .calc .accordion-body .content form textarea {
    width: 100%;
}

#s01 .buttons .calc .accordion-body .content form .field button {
    display: block;
    width: 100%;
    height: 50px;
    border: none;
    margin: auto;
    font-weight: bold;
    font-size: 17.8537px;
    line-height: 120%;
    color: #fff;
    background-color: #E42442;
    height: 45px;
}

#s01 .buttons .news .accordion-body {
    margin-top: -7px;
}

#s01 .buttons .news .accordion-body .content .card {
    margin-bottom: 10px;
    padding: 10px 10px;
    border-radius: 10px;
    background: #EFEFEF;
}

#s01 .buttons .news .accordion-body .content h3 {
    margin-top: 0;
    margin-bottom: 7px;
}

#s01 .buttons .news .accordion-body .content h3 a:link,
#s01 .buttons .news .accordion-body .content h3 a:visited{
    color: #179EFF;
    text-decoration: none;
}

#s01 .buttons .news .accordion-body .content p {
    font-size: 14px;
    margin-bottom: 0;
}

#s01 article.accordion {
    /* height: 550px; */
    height: 510px;
    overflow: hidden;
}

@media only screen and (max-width: 1024px) {
    #s01 article.accordion {
        height: 535px;
    }
}

@media only screen and (max-width: 600px) {
    #s01 article.accordion {
        /* height: 445px; */
        height: 410px;
    }
}

@media only screen and (max-width: 425px) {
    #s01 article.accordion {
        /* height: 485px; */
        height: 455px;
    }
}

@media only screen and (max-width: 393px) {
    #s01 article.accordion {
        height: 515px;
    }
}

@media only screen and (max-width: 375px) {
    #s01 article.accordion {
        height: 535px;
    }
}

@media only screen and (max-width: 320px) {
    #s01 article.accordion {
        height: 595px;
    }
}

#s01 button.article-show-more {
    display: block;
    width: 100%;
    height: 50px;
    border: none;
    margin: 0 auto 20px;
    font-weight: bold;
    font-size: 17.8537px;
    line-height: 120%;
    color: #fff;
    background-color: #E42442;
    height: 45px;
}

#s01 article.accordion.preview {
    height: auto;
}

ul.pagination {
    display: flex;
    justify-content: center;
    list-style: none;
}

ul.pagination li.page-item {
    margin: 0 7px;
    padding: 7px 12px;
    background: #179eff;
}

ul.pagination li.page-item a:link,
ul.pagination li.page-item a:visited,
ul.pagination li.page-item a:hover {
    color: #fff;
    text-decoration: none;
}
/*# sourceMappingURL=main.css.map */


.shine-btn {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    -webkit-transition: ease 0.3s;
    transition: ease 0.3s;
}
.shine-btn:after {
    content: "";
    display: block;
    width: 30px;
    height: 300px;
    margin-left: 60px;
    background: #fff;
    background: -moz-linear-gradient(top, rgba(255,255,255,0.7) 0%, rgba(255,255,255,1) 50%, rgba(255,255,255,0.7) 100%);
    background: -webkit-linear-gradient(top, rgba(255,255,255,0.7) 0%,rgba(255,255,255,1) 50%,rgba(255,255,255,0.7) 100%);
    background: linear-gradient(to bottom, rgba(255,255,255,0.7) 0%,rgba(255,255,255,1) 50%,rgba(255,255,255,0.7) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b3ffffff', endColorstr='#b3ffffff',GradientType=0 );
    position: absolute;
    left: -40px;
    top: -150px;
    z-index: 1;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.1s;
    transition: all 0.1s;
    -webkit-animation-name: slideme;
    animation-name: slideme;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-delay: 0.05s;
    animation-delay: 0.05s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}
 
@-webkit-keyframes slideme {
    0% { left: -30px; margin-left: 0px; }
    30% { left: 110%; margin-left: 80px; }
    100% { left: 110%; margin-left: 80px; }
}		

@media screen and (min-width: 1280px)
.quiz-form {
    max-width: 1260px;
}
.quiz-form {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: auto;
    max-width: none;
    min-height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 20px;
    background-color: #fff;
    box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.15);
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.div-block-403 {
    margin-bottom: 35px;
}
.d-block {
    display: contents;
    position: static;
}
#showcity {
    display: inline;
    background-image: linear-gradient(180deg, #ff903e, #e66403);
    padding: 10px 20px;
    color: #fff;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 600;
}
.allcity-wrap{
    text-align: center;
    padding-bottom: 45px;
}
.quiz-form .cfcity_list{
    text-align: left;
}
/*ÐœÐ¾Ð´Ð°Ð»ÑŒÐ½Ð¾Ðµ Ð¾ÐºÐ½Ð¾*/
#modal_form{width:450px;padding:19px 20px;border:5px solid #00ff95;background-color:#FFF;height:330px;background:#fff;position:fixed;top:45%;left:50%;margin-top:-165px;margin-left:-225px;display:none;opacity:0;z-index:5;}
#overlay{z-index:3;position:fixed;background-color:#000;opacity:0.8;-moz-opacity:0.8;filter:alpha(opacity=80);width:100%;height:100%;top:0;left:0;cursor:pointer;display:none;}
#modal_form input[type="text"]{background-color:#fff;border:1px solid #DFDFDF;border-radius:6px;color:#555;display:block;font-size:1em;height:35px;padding:5px;margin-bottom:17px;width:95%;float:left;}
#modal_form input[type="text"].error{border:1px solid red;}
#modal_form h3{text-align:center;font-size:2em;text-transform:uppercase;color:#000; margin: 0;}
#modal_form .comment{color:#272727;padding-bottom:15px;font-size:14px;text-align:center;padding-top:10px;}
.exit{background:#d0d0d0;display:block !important;border-radius:50%;right:-30px;top:-20px;position:absolute;opacity:1;WIDTH:33PX;HEIGHT:33px;line-height:30px;font-size:36px;border:2px solid #3e5368;-webkit-transition:background 0.2s linear;-moz-transition:background 0.2s linear;-o-transition:background 0.2s linear;transition:background 0.2s linear;}
.exit:after{display:block;font-size:23px;content:"x";padding-left:9px;line-height:24px;cursor:pointer;text-decoration:none;font-weight:bold;color:#000000;-webkit-transition:all 0.2s linear;-moz-transition:all 0.2s linear;-o-transition:all 0.2s linear;transition:all 0.2s linear;}
.exit:hover{background:#EAEAEA;text-decoration:none;}
#modal_form .button{display:block;background-color:#ffd400;border:1px solid #ccc;border-radius:3px;color:#000;cursor:pointer;font-size:17px;font-weight:bold;height:40px;margin:10px 0;padding:2px 16px;width:210px;margin:0 auto;-webkit-transition:all 0.12s ease-in;-o-transition:all 0.12s ease-in;-moz-transition:all 0.12s ease-in;transition:all 0.12s ease-in;}
#modal_form .button:hover{background-color:#44C8F5;border:1px solid #44C8F5;color:#fff;}
#modal_form .error{border:1px solid red;}


.text-block-13 {
  width: 50%;
  padding-right: 0px;
  padding-left: 0px;
  color: #1e1d25;
  font-weight: 500;
}

.button-2 {
  border-radius: 6px;
  background-color: transparent;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ff903e), to(#e66403));
  background-image: linear-gradient(180deg, #ff903e, #e66403);
  -webkit-transform: perspective(491px);
  transform: perspective(491px);
  font-weight: 600;
  text-transform: uppercase;
  white-space: normal;
}

.text-block-12-copy {
  width: 50%;
  margin-right: 100px;
  line-height: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

.div-block-29 {
  overflow: visible;
  height: auto;
}

.w-button {
    display: inline-block;
    padding: 9px 15px;
    background-color: #3898EC;
    color: white;
    border: 0;
    line-height: inherit;
    text-decoration: none;
    cursor: pointer;
    border-radius: 0;
}
:root {
                --global-palette1: #f91c16;
                --global-palette2: #215387;
                --global-palette3: #1A202C;
                --global-palette4: #2D3748;
                --global-palette5: #4A5568;
                --global-palette6: #718096;
                --global-palette7: #100f10;
                --global-palette8: #F7FAFC;
                --global-palette9: #ffffff;
                --global-palette9rgb: 255, 255, 255;
                --global-palette-highlight: #aaaaaa;
                --global-palette-highlight-alt: #f91c16;
                --global-palette-highlight-alt2: var(--global-palette9);
                --global-palette-btn-bg: var(--global-palette1);
                --global-palette-btn-bg-hover: var(--global-palette2);
                --global-palette-btn: var(--global-palette9);
                --global-palette-btn-hover: var(--global-palette9);
                --global-body-font-family: Roboto, sans-serif;
                --global-heading-font-family: Roboto, sans-serif;
                --global-primary-nav-font-family: inherit;
                --global-fallback-font: sans-serif;
                --global-display-fallback-font: sans-serif;
                --global-content-width: 1160px;
                --global-content-narrow-width: 842px;
                --global-content-edge-padding: 1.5rem;
                --global-content-boxed-padding: 2rem;
                --global-calc-content-width: calc(1160px - var(--global-content-edge-padding) - var(--global-content-edge-padding) );
                --wp--style--global--content-size: var(--global-calc-content-width);
            }


@font-face {
	font-family: 'TildaSansLight';
	src: url('../fonts/tildasans-light.eot');
	src:
	     url('../fonts/tildasans-light.eot?#iefix') format('embedded-opentype'),
	     url('../fonts/tildasans-light.woff2') format('woff2'),
	     url('../fonts/tildasans-light.woff') format('woff');
	font-weight: 300;
	font-style: normal;
}

@font-face {
	font-family: 'TildaSansRegular';
	src: url('tildasans-regular.eot');
	src:
	     url('../fonts/tildasans-regular.eot?#iefix') format('embedded-opentype'),
	     url('../fonts/tildasans-regular.woff2') format('woff2'),
	     url('../fonts/tildasans-regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'TildaSansBold';
	src: url('../fonts/tildasans-bold.eot');
	src:
	     url('../fonts/tildasans-bold.eot?#iefix') format('embedded-opentype'),
	     url('../fonts/tildasans-bold.woff2') format('woff2'),
	     url('../fonts/tildasans-bold.woff') format('woff');
	font-weight: bold;
	font-style: normal;
}

@font-face {
	font-family: 'TildaSansExtraBold';
	src: url('../fonts/tildasans-extrabold.eot');
	src:
	     url('../fonts/tildasans-extrabold.eot?#iefix') format('embedded-opentype'),
	     url('../fonts/tildasans-extrabold.woff2') format('woff2'),
	     url('../fonts/tildasans-extrabold.woff') format('woff');
	font-weight: bold;
	font-style: normal;
}


body, input, select, optgroup, textarea {
	font-family: 'TildaSansLight',Helvetica,Arial,sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 20px;
	line-height: 1.2;
}

body {
	margin-bottom: 0;
}



.cf-city .cf-confirm.cf-show {
    background: #333;
}



.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
	font-family: 'TildaSansRegular',Helvetica,Arial,sans-serif;
	font-weight: normal;
}

h1 span, h2 span, h3 span, h4 span, h5 span, h6 span, .text-bold {
	font-family: 'TildaSansBold',Helvetica,Arial,sans-serif;
	font-weight: bold;

}

.h2, h2 {
    font-size: 40px;
	padding-bottom: 15px;
}

.h3, h3 {
    font-size: 40px;
	padding-bottom: 15px;
}

.text-descr {
	font-size: 30px;
	padding-bottom: 15px;
}

.btn {
	border-radius: 20px;
	background: #fff;
    color: #000;
}

.icon {
	width: 24px;
    float: left;
    margin-right: 7px;
}



#breadcrumb .icon {
	width: 40px;
	margin-right: 12px;
}

#kontakt #breadcrumb {
	font-size: 30px;
}

#contacts {
	background: linear-gradient(0deg, black 50%, white 51%);
}

#breadcrumb .titl {
	font-family: 'TildaSansRegular',Helvetica,Arial,sans-serif;
	font-weight: normal;
	font-size: 40px;
}
#breadcrumb .opis {
	margin-bottom: 40px;
}

.kont-item {

	height: 50px;
	margin-top: 10px;
}

.toppanel {
	background: #000;
	color: #fff;
}

.topcol {
	height: 100px;
	display: inline-flex;
}

.toplogo {margin: auto 0;}
.topcity {margin: auto;}
.topphone {margin: auto;}
.topemail {margin: auto;}
.topbtn{margin: auto;}
.navbar-brand {
	height: auto;
	color: #fff;
	padding: 0;
	}
	
	
.navbar-toggle .icon-bar {
	background: #fff;
}
.navbar-brand>img {
	max-height: 80px;
}
.navbar-brand:hover,.navbar-brand:focus {color: #fff;}


.navbar-inverse .navbar-nav>.active>a, .navbar-inverse .navbar-nav>.active>a:focus, .navbar-inverse .navbar-nav>.active>a:hover {
	text-decoration: underline;
	background: none;
}

.cf-city a {
	color: #fff;
	font-weight: bold;
}

.cf-city a:hover, .cf-city a:focus {
	color: #fff;
	font-weight: bold;
}

.cf-modal-header {
	background: #666;
}

.cf-cities li {
	margin-bottom: 0!important;
	line-height: 1;
}
.cf-cities li a {font-size: 16px;}

.cf-modal .cf-modal-header .cf-btn-close {
	font-size: 80px!important;
	margin-top: -25px!important;
}


.cf-modal .cf-modal-dialog {
	border-radius: 10px;
        overflow: hidden;
}

.cf-modal .cf-form-search .cf-form-label {
	color: #666;
}

.cf-modal .cf-modal-content {
        height: 90vh;
		overflow-y: scroll;
}

.cf-modal .cf-form-search .cf-form-input {
	background-color: #333 !important;
    border-radius: 20px !important;
    font-size: 24px !important;
    min-height: 40px;
}

.cf-modal .cf-modal-content::-webkit-scrollbar {
  width: 10px;
}

.cf-modal .cf-modal-content::-webkit-scrollbar-track {
  -webkit-box-shadow: 5px 5px 5px -5px rgba(34, 60, 80, 0.2) inset;
  background-color: #f9f9fd;
}

.cf-modal .cf-modal-content::-webkit-scrollbar-thumb {
	border-radius: 10px;
  background-color: #356184;
  background-image: -webkit-gradient(linear, 0 0, 0 100%,
                    color-stop(.5, rgba(255, 255, 255, .25)),
                    color-stop(.5, transparent), to(transparent));
}

@media (min-width: 768px) {
    .cf-cities {
        columns: 4!important;
        -webkit-columns: 4!important;
        -moz-columns: 4!important;
    }
}



.xs-left {float: left;     }

.breadcrumb {
	background: none;
	color: #fff;
}

.breadcrumb>li a {
	color: #fff;
}

.breadcrumb>.active {
	color: #eee;
}

.navbar-nav {font-size: 16px}
.navbar {margin-bottom: 0;border-radius: 0;}
.navbar-inverse .navbar-nav>li>a {color: #fff;}
.navbar-toggle {
	position: absolute;
	right: 0;
	top: 0px;
	    padding: 17px 5px;
}


.navbar-toggle .icon-bar {
	width: 35px;
	height: 3px;
}

.navbar-toggle .icon-bar+.icon-bar {
    margin-top: 8px;
}


#breadcrumb {
    font-size: 24px;
    background-color: #000;
    color: #fff;
    background-image: url(/images/bg/breadcrumb.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    background-repeat: no-repeat;
}

.title {
	font-size: 80px;
	font-weight: 400;
	line-height: 1;
	margin-bottom: 30px;
}

.overlay {
    content: '';
    position: relative;
    top: 0;
    padding: 150px 0 100px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .6);
    /* z-index: 2; */
    height: 100%;
    width: 100%;
}

#article img {
	max-width: 100%;
	border-radius: 30px;
	margin-top: 40px;
	margin-bottom: 40px;
}

.article-img {
	display: block;
    width: 100%;
	text-align: center;
    padding: 20px;
}

.img-article {
	width: 100%;
    max-width: 900px;
	border-radius: 130px;
}

.page-header {
	border: none;
	text-align: center;
}

#article {
	padding: 50px 0;
}

#hero {
    background-color: #141215;
    background-image: url(/images/bg/hero.jpg);
    background-size: auto;
    background-position: 50% 0%;
    background-attachment: scroll;
    background-repeat: no-repeat;
	padding: 0 20px;
}


#hero .hero_h1 {
    max-width: 552px;
    padding-top: var(--global-kb-spacing-md, 2rem);
    max-width: 552px;
    text-align: left;
    color: #ffffff;
}

#hero .hero_h2 {
    max-width: 650px;
    max-width: 650px;
    font-size: 18px;
    line-height: 1.5em;
    font-weight: 700;
    color: #fbfbfb;
}

.kb-row-layout-wrap, .kt-row-layout-inner {
    border: 0 solid transparent;
    position: relative;
}

.wp-block-kadence-rowlayout .kt-row-column-wrap.kb-theme-content-width {
    margin-left: auto;
    margin-right: auto;
}

#hero > .kt-row-column-wrap {
    max-width: var(--global-content-width, 1160px);
    padding-left: var(--global-content-edge-padding);
    padding-right: var(--global-content-edge-padding);
    padding-top: var(--global-kb-spacing-5xl, 10rem);
    padding-right: 0px;
    padding-left: 0px;
    min-height: 80vh;
    grid-template-columns: minmax(0, 1fr);
}
.alignfull>.kt-row-column-wrap, .alignfull>.kt-row-layout-inner>.kt-row-column-wrap, .kt-row-has-bg>.kt-row-column-wrap {
    padding-left: var(--global-content-edge-padding, 15px);
    padding-right: var(--global-content-edge-padding, 15px);
}
.kt-row-column-wrap {
    display: grid;
    gap: var(--global-row-gutter-md, 2rem) var(--global-row-gutter-md, 2rem);
    grid-auto-rows: minmax(min-content, max-content);
    grid-template-columns: minmax(0, 1fr);
    position: relative;
    z-index: 1;
}

.wp-block-kadence-column {
    display: flex;
    flex-direction: column;
    min-height: 0;
    min-width: 0;
    z-index: 1;
}

.entry-content {
    word-break: break-word;
}

.wp-site-blocks {
    --global-vw: calc( 100vw - ( 0.5 * var(--scrollbar-offset)));
}




#main-text {
	font-size: 24px;
	padding: 150px 0 100px;
    background-color: #fff;
    background-image: url(/images/bg/main-text.jpg);
    background-size: 60%;
    background-position: right center;
    background-attachment: scroll;
    background-repeat: no-repeat;	
}



#preim {
	background: #F9F9F9;
	padding: 50px 0;
}

.preim-block {
	display: flex;
	padding: 15px 0;
	font-size: 30px;
	line-height: 1.2;
}

.preim-img {
	width: 160px;
	min-width: 160px;
	height: 160px;
	border-radius: 100px;
	overflow: hidden;
	box-shadow: 0 0 15px rgba(0,0,0,0.3);

}

.preim-img img {
	width: 100%;
}

.preim-block .card-body {
	padding: 15px;
    margin: auto;
}

.preim-block .card-body p { margin: 0;}

.preim-block:nth-child(3) {clear: both;}
.preim-block:nth-child(5) {clear: both;}



#wework {
    background-color: #020202;
    background-image: url(/images/bg/wework.jpg);	
	padding: 50px 0;
	color: #fff;
}

.wework-block {
display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 10px;
	padding-top: 80px;
	font-size: 24px;
	line-height: 1.2;
}

.wework-cifra {
	font-size: 90px;
    color: #FC2D29;
	font-weight: bold;
	font-family: 'TildaSansExtraBold',Helvetica,Arial,sans-serif;
}

.wework-block .card-text {
	margin: 0;
}


#contacts .page-header {
margin: 0 auto;
    background: #fff;
    width: fit-content;
    padding: 20px 40px;
    position: relative;
    top: -40px;
	height: 80px;
	border-radius: 50px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
	z-index: 1;
}

#contacts .page-header h1 {
	margin: auto;
}

#contacts #map {
	top: -80px;
    position: relative;

}

.adrestitl {
	position: relative;
    top: 200px;
    background: #fff;
    width: 43%;
    float: left;
    z-index: 6;
    font-size: 30px;
    padding: 40px;
    border-radius: 100px 0 0 100px;
    border-radius: 0 100px 100px 0;
	box-shadow: 20px 0 20px rgba(0, 0, 0, 0.2);
}



#objects {
	background: #F9F9F9;
	padding: 50px 0;
}

.obj-block {
	display: flex;
	padding: 15px 0;
	height: 160px;
	line-height: 1.2;
}

.obj-img {
	width: 50px;
	min-width: 50px;
	height: 50px;
	/* border-radius: 100px; */
	/* overflow: hidden; */
	margin: auto;

}

.obj-img img {
	width: 100%;
}

.obj-block .card-body {
	padding: 15px;
    margin: auto 0px;
    text-align: left;
	font-size: 26px;
    width: 100%;
}

.obj-block .card-body p{
    margin: 0px;
}

.obj-block:nth-child(4) {clear: both;}
.obj-block:nth-child(7) {clear: both;}


#uslugi {
	background: #000;
	padding: 50px 0;
	color: #fff;
}

.uslugi-cards {
	margin-left: -15px;
    margin-right: -15px;
}
.uslugi-block {
	min-height: 240px;
	margin: 15px;
	width: calc(100% - 30px);
	max-width: 300px;
	background-size: cover;
    background-position: center center;
    background-attachment: scroll;
    background-repeat: no-repeat;
	-webkit-transition: 0.8s;
    -o-transition: 0.8s;
    -moz-transition: 0.8s;
}

@media (min-width: 768px) {
.uslugi-block.col-sm-6 {width: calc(50% - 30px);}
.navbar {
	background: linear-gradient(0deg, rgba(0,0,0,0), rgba(0,0,0,0.7));
	border: none;
    position: absolute;
    width: 100%;
    z-index: 2;
}
}

@media (min-width: 992px) {
.uslugi-block.col-md-3 {width: calc(25% - 30px);}
}


.uslugi-block:nth-child(1) {min-height: 510px;}

.uslugi-block .card-body {
	position: absolute;
	bottom: 20px;
}


.image-filter {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #000;
	opacity: 0.5;
}


.uslugi-block:hover .image-filter {
	background: #ff0000;
}




#news-slider {
	background: #f9f9f9;
	padding: 50px 0;
}

.thumbnail {
	border-radius: 50px;
	overflow: hidden;
	padding: 0;
}

.image_thumb {
	height: 200px;
	background-image: url(/images/empty.jpg);
	background-size: cover;
    background-position: center;
}

.slider-more {
	width: 100%;
	text-align: center;
	background: #000;
	color: #fff;
}


#cifry {
	padding: 100px 0;
	background-color: #fff;
    background-image: url(/images/bg/cifry-bg.jpg);
    background-size: contain;
    background-position: right bottom;
    background-attachment: scroll;
    background-repeat: no-repeat;	
}

.cifra {
	font-size: 80px;
    color: #700909;
	font-weight: bold;
	border-right: 2px solid #700909;
	font-family: 'TildaSansExtraBold',Helvetica,Arial,sans-serif;
	margin: auto;
	text-align: center;
}

.cifra-text {
	margin: auto 0;
}

.cifry-block .row {
	margin: 30px 0;
	display: flex;
}

#kons {
	padding: 100px 0;
	background-color: #000;
	color: #fff;
    background-image: url(/images/bg/kons-bg.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    background-repeat: no-repeat;	
}

.kons_title {
	font-size: 38px;
	margin-bottom: 50px;
}

.kons-obrat {
	background: linear-gradient(90deg, rgba(255,255,255,1) 50%, rgba(255,255,255,0) 50.71%);
}

.kons .circle {
	background: #fff;
	padding: 20px 240px 20px 0;
	color: #000;
	border-radius: 0 100px 100px 0;
}

.form_input {
	font-size: 26px;
	padding: 10px;
	border-radius: 30px;
}

.button {
	transition: 0.2s all; 
	background: #DA2222;
	color: #fff;
	border-radius: 30px;
	padding: 10px;
	font-size: 24px;
	border: 2px solid #DA2222;
}

.button:hover,
.button:focus {
	text-decoration: none;
	transform: scale(0.98); 
            /* Scaling button to 0.98 to its original size */ 
            box-shadow: 3px 2px 22px 1px rgba(0, 0, 0, 0.24); 
}


.btn:hover,
.btn:focus {
	text-decoration: none;
	transform: scale(0.98); 
            /* Scaling button to 0.98 to its original size */ 
            box-shadow: 3px 2px 22px 1px rgba(0, 0, 0, 0.24); 
}




.product-card {
    margin-top: 50px;
    margin-bottom: 100px;
    /* display: flex; */
    /* justify-content: space-between; */
    /* align-items: flex-start; */
}

.product-card .prod-gallery {
    min-width: 48%;
    margin-right: 30px;
}

.product-card .prod-gallery .prod-main-img {
    display: block;
    width: 100%;
	border-radius: 60px;
    height: 400px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.product-card .prod-gallery .prod-gall-row {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
}

.product-card .prod-gallery .prod-gall-row .prod-gall-img {
    display: block;
    width: 30%;
    height: 150px;
    border-radius: 30px;
    margin-right: 5%;
    margin-bottom: 15px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.product-card .prod-gallery .prod-gall-row .prod-gall-img:nth-child(3),
.product-card .prod-gallery .prod-gall-row .prod-gall-img:nth-child(6) {
	margin-right: 0;
}

.lb-outerContainer {
	border-radius: 30px;
}

.lightbox .lb-image {
	border-radius: 29px;
}





.blog-list__content {
    display: flex;
    flex-wrap: wrap;
	padding: 0 15px 50px;
}

.card-article:not(:nth-of-type(3n)) {
    margin-right: 30px;
}

.blog-list__item {
    flex-basis: 31.3333%;
    max-width: 31.3333%;
    height: auto;
    margin-bottom: 30px;
}
.card-article {
    height: auto !important;
}

.blog-list__item .card-article__item {
    height: 100%;
}

.card-article__item {
	 transition: .3s ease all;
    height: 100%;
    min-width: 0;
    border-radius: 40px;
    filter: drop-shadow(2px 4px 15px rgba(0, 25, 88, 0.05));
	box-shadow: 0 0 6px rgba(0,0,0,0.05);
    max-width: 453px;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.card-article__item:hover {
	box-shadow: 0 0 15px rgba(0,0,0,0.25);
	transform: translateY(-2px);
	filter: contrast(1.3);
}

.card-article__img {
    height: 220px;
}

.card-article__content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    height: 100%;
    max-height: 300px;
    background: #fff;
    padding: 12px 35px 20px;
}

.card-article__date {
    margin-bottom: 8px;
}
.text {
    font-size: 16px;
    color: #010047;
    /* font-family: "Montserrat", sans-serif; */
    font-weight: 400;
    margin-bottom: 0;
	overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    line-clamp: 6;
    -webkit-box-orient: vertical;
}

.card-article__content a {
    text-decoration: none;
}

.card-article__title {
	font-size: 24px;
    margin-bottom: 16px;
}

.card-article__readmore {
	background: #000;
	color: #fff;
	padding: 8px 0 10px;
	text-align: center;
}

.card-article-item .card-article__title {
	overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
	height: 53px;
}


.owl-nav button.owl-prev {
    left: -20px;
    /* background-image: url(../img/left.svg)!important; */
}

.owl-nav button.owl-next {
    right: -20px;
    /* background-image: url(../img/right.svg)!important; */
}

.owl-nav button {
    position: absolute;
    top: 35%;
    width: 45px;
    height: 45px;
    border: 1px solid #bf8c6f;
    border-radius: 50px;
    background-color: rgba(0, 0, 0, 0);
    background-position: center;
    background-size: 9px 15px;
    background-repeat: no-repeat;
    margin: 5px;
    transition: .3s ease all;
}

.owl-nav button span {
	font-size: 100px;
}

.card-article-item {
	padding: 10px;
}

.inform {padding: 30px;}

#footer > .container {
	padding-right: 0px;
    padding-left: 0px;
}

#footer {
	background: #090808;
	color: #fff;
	height: auto;
	position: relative;
	padding: 20px 0;
}

#footer a{
	color: #fff;
}

.footer-phone {font-size: 30px;}
.footer-work {font-size: 16px;}

.footer1 {

}

.footer2 {
	padding-top: 20px;
}

.footer3 {
	padding-top: 20px;
}


.text-footer {

	font-size: 25px;
	text-align: center;
}

.container .text-muted {
	margin: 0;
	color: #fff;
	font-size: 16px;
}

.footerlogo img {
	max-width: 300px;
    max-height: 80px;
	margin: 10px;
}

.white {
	color: #000;
	background: #fff;
	box-shadow: 0px 0px 10px 0px #00000026;
	border: 0px;
}



label {
    margin-top: 20px;
}




.popup_vnutri {
	text-align: center;
}

.popup, .popup_menu {
  display: none;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 15px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), rgba(238, 238, 238, 0.1);
  backdrop-filter: blur(11.5px);
}
  .popup_close {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3000;
}
.popup_vnutr {
    position: relative;
    margin: 150px auto 0;
    max-width: 660px;
    background: $white;
    padding: 70px;
    z-index: 5000;
    border-radius: 5px;
}


.modal-dialog {
	max-width: 600px;
	width: 100%;
	margin: 30vh auto;
}

.modal-content {
    margin: 20px;
}
 

@media (max-width: 768px) {
	.popup_vnutr {
      padding: 60px 30px;
      margin-top: 75px;
}
}
    .cross {
      cursor: pointer;
      position: absolute;
      top: 25px;
      right: 25px;
      width: 15px;
      opacity: 0.5;
	}	  
@media (max-width: 575px) {
     .cross {
        top: 10px;
        right: 10px;
	 }
      .cross svg {
        width: 100%;
        fill: $black;
	}
}
.popup {
  z-index: 2000;
}
.popup h2 {
    /* +ten(32px) */
    margin-bottom: 30px;
}
@media (max-width: 768px) {
	.popup h2 {
      text-align: center;
      font-size: 25px;
}
}
  /* h3 */
    /* +ten(16px) */
    /* margin-bottom: 30px */
    /* +media768 */
      /* text-align: center */
  /* p */
    /* +ten(14px) */
    /* margin-bottom: 0px */
    /* opacity: 0.5 */
    /* +media768 */
      /* text-align: center */
    /* +media575 */
      /* font-size: 14px */
    /* a */
      /* text-decoration: underline */
  /* form */
    /* display: flex */
    /* align-items: center */
    /* margin-bottom: 40px */
    /* +media575 */
      /* flex-direction: column */
    /* input[type="text"] */
      /* +ten(14px) */
      /* width: 100% */
      /* outline: none */
      /* border: none */
      /* border-bottom: 1px solid rgba(0, 0, 0, 0.14) */
      /* padding: 15px 0 */
      /* +media575 */
        /* margin-bottom: 20px */
      /* &::placeholder */
        /* opacity: 0.5 */
    /* .butt */
      /* margin-left: 15px */
      /* padding: 14px 30px */
      /* background: transparent */
      /* +media575 */
        /* margin-left: auto */
        /* margin-right: auto */
        /* margin-top: 15px */
      /* &:hover */
        /* background: $brown */

			
			
			
			
			


@media (max-width: 1100px) {
	.nav>li>a {padding: 10px 5px;}
}
	
	
	
	
@media (max-width: 1199.9px) {
	.navbar .container {width: 100%;}
	.toppanel .container {width: 100%;}
	.obj-block .card-body {
		font-size: 22px;
	}
	
	.obj-block {
		height: 100px;
	}
	
    .blog-list__item:not(:nth-of-type(2n)) {
        margin-right: 18px;
    }

    .blog-list__item:nth-of-type(2n) {
        margin-right: 0 !important;
    }
	
	.blog-list__item {
        flex-basis: 48%;
        max-width: 48%;
        margin-bottom: 18px;
    }
	
	
	.preim-block .card-body {
		font-size: 25px;
		padding: 0 0 0 15px;
		margin: auto 0;
	}
	
	.preim-img {
		width: 100px;
		min-width: 100px;
		height: 100px;
		margin: auto 0;
	}
	
	
}



@media (max-width:991.9px) {
	.preim-block:nth-child(3) {clear: none;}
	.preim-block:nth-child(5) {clear: none;}
	.obj-block:nth-child(4) {clear: none;}
	.obj-block:nth-child(7) {clear: none;}


	
	
	#main-text {
		background-position: right bottom;
		background-size: 100%;
		padding-bottom: 57vw;
	}
	
	#cifry {
		background-size: 110%;
		padding-bottom: 115vw;
	}
	
	.kons .circle {
		padding-right: 30px;
	}
	
	.footer3 {text-align: center;}
}



@media (max-width:767.9px) {
	
	.title {
		font-size: 50px;
	}
	 
	.overlay {
		padding: 70px 0 90px;
		text-align: center;
	}
	.nav>li>a {
        padding: 15px 15px;
		font-size: 20px;
    }
	#kontakt #breadcrumb {
		font-size: 20px;
	}
	
	#breadcrumb .icon {
		float: none;
		width: 28px;
		margin-right: 7px;
	}
	
	.topcol {
		height: auto;
		padding: 10px;
	}
	.navbar-brand>img {
		max-height: 50px;
	}
	.navbar {min-height: 0;}
	.xs-left {float: left;        height: 70px;}
	.h2, h2 {font-size: 30px;}
	.h3, h3 {font-size: 20px;}
	.cifra {font-size: 55px;}
	.cifra-text {font-size: 16px;}
	.obj-block .card-body {font-size: 20px;}
	.obj-block {height: auto;}
	.kons_title {font-size: 28px;}
	.text-descr {font-size: 20px;}
	.wework-block {font-size: 18px; padding-top: 20px;}
	.wework-cifra {
		font-size: 60px; 
		width: 35px;
        text-align: center;
	}
	
	
	.blog-list__item {
        flex-basis: 100%;
        max-width: 100%;
        margin-right: 0 !important;
        margin-bottom: 20px;
    }
	.card-article__item {
		margin: auto;
	}
	
	#main-text {
		font-size: 18px;
	}
	
	.preim-img {
		width: 50px;
		min-width: 50px;
		height: 50px;
	}
	.preim-block .card-body {
		font-size: 18px;
	}
	
	.uslugi-cards {
		margin: auto;
	}
	
	.uslugi-block {
		float: none;
		margin: 15px auto;
		}
	
	.product-card .prod-gallery .prod-main-img {
		height: 50vw;
		border-radius: 40px;
	}
	
	.product-card .prod-gallery .prod-gall-row .prod-gall-img {
		border-radius: 15px;
		height: 20vw;
	}

	.kons .circle {
		padding-right: 30px;
	}	
	
	.form_input {
		font-size: 20px;
	}		
	.button {
		font-size: 20px;
	}		
	
	#contacts .page-header {
		top: -30px;
		height: 60px;
		    padding: 15px 40px;
	}
	
	#contacts .page-header h1 {
		font-size: 30px;
	}
	
	#contacts #map {
		top: 0;
	}
	
	.adrestitl {
    position: unset;
    background: #fff;
    width: auto;
    float: none;
    z-index: 6;
    font-size: 30px;
    padding: 0 40px 40px;
    border-radius: 100px 0 0 100px;
    border-radius: 0;
    box-shadow: none;
    display: block;
	text-align: center;
	}
	
	#kontakt #footer {top: 0;}
	
	.text-footer {font-size: 18px;}
}



@media (max-width:650px) {
	.topbtn {display: none;}
}

.footer-fixed {
    position: fixed;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 15;
    font-size: 18px;
}

.fixed-messenger {
    background-color: #ebebeb;
    margin: 6px auto;
    display: flex;
    padding: 10px;
    border-radius: 10px;
    max-width: 580px;
}

.footer-fixed a {
    color: #fff;
    padding-top: 8px;
    padding-right: 16px;
    padding-bottom: 8px;
    padding-left: 12px;
    text-align: center;
}

.fixed-messenger img {
    position: relative;
    bottom: 2px;
    vertical-align: middle;
}

.fixed-messenger__phone {
    width: 50%;
    margin-right: 5px;
    background-color: #0af;
    border-radius: 5px;
}

.fixed-messenger__comment {
    width: 50%;
    margin-left: 5px;
    background-color: #00ad00;
    border-radius: 5px;
}

.circle-textbox {
    position: absolute;
    z-index: 2;
    display: none;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #0cbf4e;
    color: #fff;
    font-size: 11px;
    line-height: 130%;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0;
    text-transform: uppercase;
    bottom: 0
}

.circle-textbox.fade {
    display: block;
    -webkit-animation: fade .2s linear;
    animation: fade .2s linear
}

.circle-text {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.phone-call {
    background: #0cbf4e;
    position: fixed;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    border-radius: 50%;
    z-index: 99;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 65px
}

.phone-call img {
    width: 50px;
    height: 50px
}

.phone-call:before {
    position: absolute;
    content: "";
    z-index: -1;
    top: -15px;
    left: -15px;
    background: #0cbf4e;
    width: 130px;
    height: 130px;
    border-radius: 100%;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    opacity: .6;
    -webkit-animation: pulse 1.8s ease-out;
    animation: pulse 1.8s ease-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite
}
