@font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 400;
    src: url(raleway-medium_f93e5acd6b1a4a6eef84b551db6f21ba.woff) format('woff'), url(raleway-medium_f93e5acd6b1a4a6eef84b551db6f21ba.ttf) format('truetype'), url(RalewayMedium.eot) format('eot'), url(Raleway-Medium.woff2) format('woff2');
}

@font-face {
    font-family: 'Raleway-Bold';
    font-style: normal;
    font-weight: 400;
    src: url(Raleway-Bold.woff) format('woff'), url(Raleway-Bold.ttf) format('truetype'), url(Raleway-Bold.eot) format('eot'), url(Raleway-Bold.woff2) format('woff2');
}

@font-face {
    font-family: 'ProximaNova-Regular';
    font-style: normal;
    font-weight: 400;
    src: url(ProximaNova-Regular.woff) format('woff'), url(ProximaNova-Regular.ttf) format('truetype'), url(ProximaNova-Regular.eot) format('eot'), url(ProximaNova-Regular.woff2) format('woff2');
}
bold{
	font-weight: bold;
}
h1, h2, h3, h4, h5, h6{
	font-family: 'Raleway-Bold', arial !important;
}
p, span, a, div, input, textarea, b, input, button, select, textarea, label, ul, li, button{
	font-family: 'ProximaNova-Regular', arial !important;
}
.go_2{
	font-family: 'ProximaNova-Regular', arial !important;
	color: #fff !important;
}
.my_logo{
	width: 122px;
}
.col_w{
	color: #fac500 !important;
}
.col_w2{
	font-size: 16px !important;
    color: #000 !important;
}
.bb1{
	font-weight: bold;
}
.bb2{
	font-weight: bold;
    color: #38ce58;
}
.bb3{
	font-weight: bold;
	color: #fac500;
}
.my_box_1:after{
	box-shadow: none !important; 
}
.no_active{
	border-radius: 80px !important; 
    padding: 9px 14px !important; 
    box-sizing: border-box !important; 
	background-color: #e9e9ea !important;
}
/*LOADER---START*/
.fanza_loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000009;
  background: -webkit-gradient(linear, left top, right top, color-stop(23%, #01c195), color-stop(64%, #15d09a));
  background: linear-gradient(90deg, #01c195 23%, #15d09a 64%);
}
@import url("https://fonts.googleapis.com/css?family=Exo:300");
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  font-family: "Exo", sans-serif;
  font-size: 16px;
}

.wrap-loader {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: #000;
}

.loader {
  position: relative;
  width: 20rem;
  height: 20rem;
}
.loader::before {
  z-index: 1;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8.6956521739rem;
  height: 8.6956521739rem;
  background: #000;
  border-radius: 50%;
}
.loader .box {
  position: absolute;
  width: 10rem;
  height: 10rem;
  overflow: hidden;
}
.loader .box::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  opacity: 0.1;
}
.loader .box:nth-child(1) {
  top: 0;
  left: 0;
}
.loader .box:nth-child(1)::before {
  top: 50%;
  left: 50%;
  background: #4185F3;
  -webkit-animation: lightMe1 4s ease-out infinite normal;
          animation: lightMe1 4s ease-out infinite normal;
}
.loader .box:nth-child(2) {
  top: 0;
  right: 0;
}
.loader .box:nth-child(2)::before {
  top: 50%;
  right: 50%;
  background: #33A753;
  -webkit-animation: lightMe2 4s ease-out infinite normal;
          animation: lightMe2 4s ease-out infinite normal;
}
.loader .box:nth-child(3) {
  bottom: 0;
  right: 0;
}
.loader .box:nth-child(3)::before {
  bottom: 50%;
  right: 50%;
  background: #FABB04;
  -webkit-animation: lightMe3 4s ease-out infinite normal;
          animation: lightMe3 4s ease-out infinite normal;
}
.loader .box:nth-child(4) {
  bottom: 0;
  left: 0;
}
.loader .box:nth-child(4)::before {
  bottom: 50%;
  left: 50%;
  background: #E94234;
  -webkit-animation: lightMe4 4s linear infinite normal;
          animation: lightMe4 4s linear infinite normal;
}
.loader .wrap-text {
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  overflow: hidden;
}
.loader .text {
  position: relative;
  width: 40px;
  height: 40px;
  line-height: 40px;
  -webkit-animation: slider 8s ease-in infinite;
          animation: slider 8s ease-in infinite;
}
.loader .text span {
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 2em;
  color: #fff;
}

.loader-text {
  color: #fff;
  transform: translateY(-2rem);
  letter-spacing: 6px;
  opacity: 0.2;
  -webkit-animation: blink 1s ease-out infinite alternate;
          animation: blink 1s ease-out infinite alternate;
}

@-webkit-keyframes lightMe1 {
  0% {
    opacity: 0.1;
  }
  25% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@keyframes lightMe1 {
  0% {
    opacity: 0.1;
  }
  25% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes lightMe2 {
  0% {
    opacity: 0.1;
  }
  25% {
    opacity: 0.1;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes lightMe2 {
  0% {
    opacity: 0.1;
  }
  25% {
    opacity: 0.1;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes lightMe3 {
  0% {
    opacity: 0.1;
  }
  50% {
    opacity: 0.1;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes lightMe3 {
  0% {
    opacity: 0.1;
  }
  50% {
    opacity: 0.1;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes lightMe4 {
  0% {
    opacity: 0.1;
  }
  75% {
    opacity: 0.1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes lightMe4 {
  0% {
    opacity: 0.1;
  }
  75% {
    opacity: 0.1;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes slider {
  0% {
    transform: translateY(0);
  }
  10.5% {
    transform: translateY(0);
  }
  12.5% {
    transform: translateY(-40px);
  }
  23% {
    transform: translateY(-40px);
  }
  25% {
    transform: translateY(-80px);
  }
  35% {
    transform: translateY(-80px);
  }
  37.5% {
    transform: translateY(-120px);
  }
  47.5% {
    transform: translateY(-120px);
  }
  50% {
    transform: translateY(-160px);
  }
  60% {
    transform: translateY(-160px);
  }
  62.5% {
    transform: translateY(-200px);
  }
  72.5% {
    transform: translateY(-200px);
  }
  75% {
    transform: translateY(-240px);
  }
  85% {
    transform: translateY(-240px);
  }
  87.5% {
    transform: translateY(-280px);
  }
  100% {
    transform: translateY(-280px);
  }
}
@keyframes slider {
  0% {
    transform: translateY(0);
  }
  10.5% {
    transform: translateY(0);
  }
  12.5% {
    transform: translateY(-40px);
  }
  23% {
    transform: translateY(-40px);
  }
  25% {
    transform: translateY(-80px);
  }
  35% {
    transform: translateY(-80px);
  }
  37.5% {
    transform: translateY(-120px);
  }
  47.5% {
    transform: translateY(-120px);
  }
  50% {
    transform: translateY(-160px);
  }
  60% {
    transform: translateY(-160px);
  }
  62.5% {
    transform: translateY(-200px);
  }
  72.5% {
    transform: translateY(-200px);
  }
  75% {
    transform: translateY(-240px);
  }
  85% {
    transform: translateY(-240px);
  }
  87.5% {
    transform: translateY(-280px);
  }
  100% {
    transform: translateY(-280px);
  }
}
@-webkit-keyframes blink {
  from {
    opacity: 0.2;
  }
  to {
    opacity: 0.75;
  }
}
@keyframes blink {
  from {
    opacity: 0.2;
  }
  to {
    opacity: 0.75;
  }
}
/*LOADER---END*/


/*CodePen Home Input Range with two sliders --- START*/
section.range-slider {
  position: relative;
  width: 300px;
  height: 141px;
  float: left;
  text-align: center;
}
section.range-slider input[type=range] {
  pointer-events: none;
  position: absolute;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  border: none;
  border-radius: 14px;
  background-color: #e9e9ea;
  /*box-shadow: inset 0 1px 0 0 #cdc6c6, inset 0 -1px 0 0 #d9d4d4;
  -webkit-box-shadow: inset 0 1px 0 0 #cdc6c6, inset 0 -1px 0 0 #d9d4d4;*/
  overflow: hidden;
  left: 0;
  top: 50px;
  width: 200px;
  outline: none;
  height: 31px;
  margin: 0;
  padding: 2px;
}
section.range-slider input[type=range]::-webkit-slider-thumb {
  pointer-events: all;
  position: relative;
  z-index: 1;
  outline: 0;
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 14px;
  /*background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #dad8da), color-stop(100%, #413F41));*/
  /* android <= 2.2 */
  /*background-image: -webkit-linear-gradient(top, #dad8da 0, #413F41 100%);*/
  /* older mobile safari and android > 2.2 */
  /*background-image: linear-gradient(to bottom, #dad8da 0, #413F41 100%);*/
    background-color: #38ce58;
    box-shadow: 0px 2px 2px 0px rgb(0 0 0 / 20%);
  /* W3C */
}
section.range-slider input[type=range]::-moz-range-thumb {
  pointer-events: all;
  position: relative;
  z-index: 10;
  -moz-appearance: none;
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 14px;
  /*background-image: linear-gradient(to bottom, #dad8da 0, #413F41 100%);*/
    background-color: #38ce58;
    box-shadow: 0px 2px 2px 0px rgb(0 0 0 / 20%);
  /* W3C */
}
section.range-slider input[type=range]::-ms-thumb {
  pointer-events: all;
  position: relative;
  z-index: 10;
  -ms-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 14px;
  border: 0;
  /*background-image: linear-gradient(to bottom, #dad8da 0, #413F41 100%);*/
    background-color: #38ce58;
    box-shadow: 0px 2px 2px 0px rgb(0 0 0 / 20%);
  /* W3C */
}
section.range-slider input[type=range]::-moz-range-track {
  position: relative;
  z-index: -1;
  background-color: black;
  border: 0;
}
section.range-slider input[type=range]:last-of-type::-moz-range-track {
  -moz-appearance: none;
  background: none transparent;
  border: 0;
}
section.range-slider input[type=range]::-moz-focus-outer {
  border: 0;
}
/*CodePen Home Input Range with two sliders --- END*/
/*CHECKBOX*/
input[type=checkbox] {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
       appearance: none !important;
  background-color: rgba(0, 0, 0, 0) !important;
  margin: 0 !important;
  position: relative !important;
  -webkit-border-radius: 0 !important;
  display: inline-block !important;
  overflow: hidden !important;
  width: 45px !important;
  height: 31px !important;
  border-radius: 15.5px !important;
  background-color: #e9e9ea !important;
  transition: background-color 250ms !important;
  vertical-align: middle !important;
  opacity: 1 !important;
}
@media (prefers-reduced-motion) {
  input[type=checkbox] {
    transition: none !important;
  }
}
@media (prefers-color-scheme: dark) {
  input[type=checkbox] {
    background-color: #39393d !important;
  }
}
input[type=checkbox]:before {
  position: absolute !important;
  top: 3.5px !important;
  left: 2px !important;
  border-radius: 15.5px !important;
  content: "" !important;
  dispaly: inline-block !important;
  width: 24px !important;
  height: 24px !important;
  background-color: white !important;
  transition: all 200ms !important;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.2) !important;
}
@media (prefers-reduced-motion) {
  input[type=checkbox]:before {
    transition: none !important;
  }
}
input[type=checkbox]:checked {
  background-color: #35c759 !important;
}
@media (prefers-color-scheme: dark) {
  input[type=checkbox]:checked {
    background-color: #2ed158 !important;
  }
}
input[type=checkbox]:checked:before {
  left: 20px !important;
}
input[type=checkbox]:disabled {
  background-color: #efefef !important;
}
@media (prefers-color-scheme: dark) {
  input[type=checkbox]:disabled {
    background-color: #1e1e1e !important;
  }
}
input[type=checkbox]:disabled:before {
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.1) !important;
}
input[type=checkbox]:disabled:checked {
  background-color: #b7dec0 !important;
}
@media (prefers-color-scheme: dark) {
  input[type=checkbox]:disabled:checked {
    background-color: #243f2a !important;
  }
}
input[type=checkbox] + label {
  vertical-align: middle !important;
  font-family: Verdana !important;
}
/*CHECKBOX*/
/*SLIDER2*/
.mySlides {display:none}

/* Slideshow container */
.slideshow-container {
  max-width: 100%;
  position: relative;
  margin: auto;
}

/* Caption text */
.text2 {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  height: 13px;
  width: 13px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

/*.active {
  background-color: #717171;
}*/

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text2 {font-size: 11px}
}
/*SLIDER2*/
/*OL LI LIST*/
ol {
  counter-reset: li; 
  list-style: none; 
  padding: 0;
  text-shadow: 0 1px 0 rgba(255,255,255,.5);
}

ol a {
  position: relative;
  display: block;
  padding: .4em .4em .4em 2em;
  margin: .5em 0;
  /*background: #DAD2CA;*/
  background: #fff;
  color: #444;
  text-decoration: none;
  border-radius: .3em;
  transition: .3s ease-out;
}

ol a:hover { /*background: #ead8c0;*/ background: #c8e4e7;}
ol a:hover:before { transform: rotate(360deg); }
ol a:before {
  content: counter(li);
    counter-increment: li;
    position: absolute;
    left: -1.3em;
    top: 50%;
    margin-top: -1.3em;
    /*background: #e9d7c0;*/
    background: #00d157;
    height: 2.5em;
    width: 2.5em;
    line-height: 2em;
    border: 0.3em solid #fff;
    text-align: center;
    font-weight: bold;
    border-radius: 2em;
    transition: all .3s ease-out;
}
/*OL LI LIST*/
/* Fill button styling */
.fill {
  font-size: 20px;
  font-weight: 200;
  letter-spacing: 1px;
  padding: 13px 50px 13px;
  outline: 0;
  border: 1px solid black;
  cursor: pointer;
  position: relative;
  background-color: rgba(0, 0, 0, 0);
}

.fill::after {
  content: "";
  /*background-color: #ffe54c;*/
  background-color: #91c2c8;
  width: 100%;
  z-index: -1;
  position: absolute;
  height: 100%;
  top: 7px;
  left: 7px;
  transition: 0.2s;
}

.fill:hover::after {
  top: 0px;
  left: 0px;
}
/* End of Fill Button  */
.my_but{
	background: linear-gradient(to right, #e9d7bf 0%, #e9d7bf 100%) !important;
    color: #fff !important;
    font-size: 21px !important;
    padding: 15px 47px !important;
    border-radius: 100px !important;
    text-decoration: none !important;
}
.my_step{
	font-weight: 900 !important;
    font-size: 120px !important;
    color: #38ce58 !important;
    line-height: 1 !important;
    z-index: 2 !important;
    position: relative !important;
    text-align: left !important;
    font-family: Montserrat, sans-serif !important;
    width: auto !important;
    display: inline !important;
}
.step_1:after {
    content: '';
    position: absolute;
    bottom: 27px;
    left: 95%;
    z-index: -1;
    width: 79px;
    height: 73px;
    background: url(../img/Icon_itog-01.svg)no-repeat;
    background-size: cover;
    background-position: center;
}
.step_2:after {
    content: '';
    position: absolute;
    bottom: 27px;
    left: 95%;
    z-index: -1;
    width: 79px;
    height: 73px;
    background: url(../img/Icon_itog-03.svg)no-repeat;
    background-size: cover;
    background-position: center;
}
.step_3:after {
    content: '';
    position: absolute;
    bottom: 27px;
    left: 95%;
    z-index: -1;
    width: 79px;
    height: 73px;
    background: url(../img/Icon_itog-02.svg)no-repeat;
    background-size: cover;
    background-position: center;
}
.step_4:after {
    content: '';
    position: absolute;
    bottom: 27px;
    left: 95%;
    z-index: -1;
    width: 79px;
    height: 73px;
    background: url(../img/Icon_itog-06.svg)no-repeat;
    background-size: cover;
    background-position: center;
}
.step_5:after {
    content: '';
    position: absolute;
    bottom: 27px;
    left: 95%;
    z-index: -1;
    width: 79px;
    height: 73px;
    background: url(../img/Icon_itog-05.svg)no-repeat;
    background-size: cover;
    background-position: center;
}
.step_6:after {
    content: '';
    position: absolute;
    bottom: 27px;
    left: 95%;
    z-index: -1;
    width: 79px;
    height: 73px;
    background: url(../img/Icon_itog-04.svg)no-repeat;
    background-size: cover;
    background-position: center;
}
/*FOOTER*/
.footer {
  position: relative;
  width: 100%;
  background: #3586ff;
  min-height: 100px;
  padding: 20px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.social-icon,
.menu {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
  flex-wrap: wrap;
}

.social-icon__item,
.menu__item {
  list-style: none;
}

.social-icon__link {
  font-size: 2rem;
  color: #38ce58;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
}
.social-icon__link:hover {
  transform: translateY(-10px);
}

.menu__link {
  font-size: 1.2rem;
  color: #3f3f3f;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
  text-decoration: none;
  opacity: 0.75;
  font-weight: 300;
}

.menu__link:hover {
  opacity: 1;
}

.footer p {
  color: #9f9f9f;
  margin: 15px 0 10px 0;
  font-size: 1rem;
  font-weight: 300;
}

.wave {
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 100px;
  background: url("../img/wave.png");
  background-size: 1000px 100px;
}

.wave#wave1 {
  z-index: 1000;
  opacity: 1;
  bottom: 0;
  animation: animateWaves 4s linear infinite;
}

.wave#wave2 {
  z-index: 999;
  opacity: 0.5;
  bottom: 10px;
  animation: animate 4s linear infinite !important;
}

.wave#wave3 {
  z-index: 1000;
  opacity: 0.2;
  bottom: 15px;
  animation: animateWaves 3s linear infinite;
}

.wave#wave4 {
  z-index: 999;
  opacity: 0.7;
  bottom: 20px;
  animation: animate 3s linear infinite;
}

@keyframes animateWaves {
  0% {
    background-position-x: 1000px;
  }
  100% {
    background-positon-x: 0px;
  }
}

@keyframes animate {
  0% {
    background-position-x: -1000px;
  }
  100% {
    background-positon-x: 0px;
  }
}
/*FOOTER*/
.my_icon{
	width: 40px !important;
}
.my_icon2{
	width: 26px !important;
}
.catalog-content-section2 span, .catalog-content-section2 a {
    padding: 0 33px;
}
/*kalculator*/
.form-rows {
  position: static;
  display: block;
}

.master-div-style {
  border-radius: 50px !important;
  margin: auto;
  width: 800px;
  background-color: #f3f3f3;
  border-radius: 10px;
  padding: 20px 10px 10px 10px;
}

.fields {
  display: inline-block;
  text-align: left;
  width: 48%;
  vertical-align: middle;
}
.labels {
  display: inline-block;
  text-align: right;
  width: 40%;
  padding: 5px;
  /*vertical-align: top;*/
  margin-top: 10px;
}

.input-fields {
  width: 100%;
  padding: 5px;
  margin: 10px;
  border: 1px solid #c0c0c0;
  border-radius: 4px;
}

.dropdown {
  height: 35px;
  width: 100%;
  padding: 5px;
  margin: 15px 10px 10px 10px;
  border: 1px solid #c0c0c0;
  border-radius: 4px;
}

.radio {
  position: relative;
  /*left: -43px;*/
  margin-left: 10px;
  display: block;
  padding-bottom: 10px;
}

.user-selection {
  float: left;
  margin-right: 5px;
}

.button {
  font-size: 1em;
  background-color: #6ba2ce;
  color: white;
  border: 0px solid;
  border-radius: 4px;
  height: 40px;
  width: 80px;
  margin: 10px;
}

@media (max-width: 833px) {
  .master-div-style {
    width: 70%;
  }

  .fields {
    display: inline-block;
    text-align: left;
    width: 48%;
    vertical-align: middle;
  }

  .input-fields {
    width: 80%;
  }

  .dropdown {
    width: 90%;
  }
}

@media (max-width: 520px) {
  .master-div-style {
    width: 80%;
  }

  .fields {
    width: 80%;
    float: left;
  }
  .labels {
    width: 100%;
    text-align: left;
  }

  .input-fields {
    width: 100%;
  }

  .dropdown {
    width: 100%;
  }
}

/*kalculator*/
.my_but_{
	color: #f3f3f3 !important;
    background: #38ce58;
    box-shadow: none;
    text-shadow: none;
    height: 50px;
    width: 250px;
    font-size: 1em;
    padding: 9px 15px;
    font-size: 17px;
    font-weight: bold;
    border: none;
    border-width: 0px !important;
    border-style: solid !important;
    border-radius: 100px;
}
/*map*/
.responsive-map{
overflow: hidden;
padding-bottom:56.25%;
position:relative;
height:0;
}
.responsive-map iframe{
left:0;
top:0;
height:100%;
width:100%;
position:absolute;
}
/*map*/
.my_header_35{
	font-size: 35px;
}
/*news*/
.posts-listing-2{
  display: flex;
  flex-wrap: wrap;
  max-width: 1360px;
  margin: 0 auto;
}

.post-item{
  width: calc(33.33% - 40px);
  margin: 20px;
  flex: 0 0 auto;
  font-family: "Lato", sans-serif;
  font-size: 1.6rem;
}

.post-item__inner{
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 4px;
  background-color: #F7F8F8;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: box-shadow .2s;
  color: black;
  text-decoration: none;
}

.post-item__thumbnail-wrapper{
  width: 100%;
  height: 0;
  padding-bottom: 60%;
  flex: 0 0 auto;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
  overflow: hidden;
  transition: clip-path .2s;
}

.post-item__thumbnail{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  transition: transform .3s;
}

.post-item__thumbnail-wrapper:after{
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-image: linear-gradient(to top, rgba(136,27,132,0.2), rgba(162,77,211,0.03));
}

.post-item__content-wrapper{
  padding: 2rem;
  position: relative;
  height: auto;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.post-item__title{
  color: white;
  line-height: 1.6;
  margin-top: -4rem;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.post-item__title span{
  display: inline;
  /*background-image: linear-gradient(to right, rgba(162,77,211), rgba(136,27,132));*/
  background-image: linear-gradient(to right, rgb(212 228 230), rgb(145 194 200));
  color: #494848;
  padding: .2rem .6rem;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.post-item__metas{
  margin-bottom: 2rem;
}

.post-item__meta--date{
  color: #6d6d6d;
  letter-spacing: 0.01rem;
  font-size: 0.9rem;
}

.post-item__meta--category{
  display: inline-block;
  /*background-color: #a24dd3;*/
  background-color: #91c2c8;
  color: white;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.01rem;
  font-weight: 700;
  padding: 2px;
}

.post-item__excerpt{
  margin-bottom: 2rem;
}

.post-item__read-more-wrapper{
  margin-top: auto;
}

.post-item__read-more{
  padding: 3px 0;
  display: inline;
  /*background-image: linear-gradient(#a24dd3, #a24dd3);*/
  background-image: linear-gradient(#f0d8c0, #38ce58);
  background-repeat: no-repeat;
  background-size: 100% 2px;
  background-position: left bottom;
  transition: background-size .3s;
}
.post-item__inner:hover{
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.post-item__inner:hover .post-item__thumbnail-wrapper{
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.post-item__inner:hover .post-item__thumbnail{
  transform: scale(1.1);
}

.post-item__inner:hover .post-item__read-more{
  background-size: 30% 2px;
}
/*news*/
.my_span_1{
	display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
}
.my_li_border{
	border-bottom: 1px solid #d4d3d3;
    padding-bottom: 10px;
}
/*photo slider*/
#main8, #thumbnails8 img {
  box-shadow: 2px 2px 10px 5px #b8b8b8;
  border-radius: 10px;
}

#thumbnails8 {
  text-align: center;
}
#thumbnails8 img {
  /*width: 100px;
  height: 100px;
  margin: 10px;*/
  cursor: pointer;
}
@media only screen and (max-width: 480px) {
  #thumbnails8 img {
    width: 50px;
    height: 50px;
  }
}
#thumbnails8 img:hover {
  transform: scale(1.05);
}

#main8 {
  width: 50%;
  height: 400px;
  object-fit: cover;
  display: block;
  margin: 20px auto;
}
@media only screen and (max-width: 480px) {
  #main8 {
    width: 100%;
  }
}

.hidden {
  opacity: 0;
}
/*photo slider*/
.my_lit_span{
	background-color: #00d157 !important;
    padding: 2px 4px 0 4px !important;
    color: aliceblue !important;
    border-radius: 4px !important;
    margin-left: 6px !important;
}
.my_icon_3:hover{
	cursor:pointer;
}
/*tooltip*/
.tooltip_3 {
  position: relative;
  display: inline-block;
}

.tooltip_3 .tooltiptext_3 {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  
  /* Position the tooltip */
  position: absolute;
  z-index: 1;
  top: 100%;
  left: 50%;
  margin-left: -60px;
}

.tooltip_3:hover .tooltiptext_3 {
  visibility: visible;
}
/*tooltip*/

.baz-kompl th{
	text-align: left;
	background-color: #e4e4e4;
	border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
.baz-kompl td{
	text-align: left;
	background-color: #f0d8c0;
	border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}
.baz-kompl th, .baz-kompl td{
	padding: 5px;
}
.baz-kompl tr{
	border-bottom: 1px solid #fff;
}
.pos_rel{
	position: relative;
}
.pos_rel table{
	width: 100%;
}
.gofilters2{
	padding: 0 20px;
    float: left;
    background: #38ce58;
    margin: 0;
    border: none;
    height: 60px;
    font-size: 19px;
    line-height: 60px;
    font-family: 'proxima_nova_rgregular';
    border-radius: 30px;
    text-align: center;
    vertical-align: middle;
    color: #000;
    cursor: pointer;
    transition: all 0.5s linear;
    cursor: pointer;
}
/*мы-онлайн*/
.header-socials-wrapper {
    width: 305px;
}
.socials-box {
    /*margin: 0 -15px;*/
	display: flex;
    justify-content: space-between;
    align-items: center;
}
.flicker-text {
    font-size: 0px;
    margin-bottom: 6px;
    text-align: center;
}
.flicker-text span {
    display: inline-block;
    vertical-align: middle;
}
.green-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #00d157;
    vertical-align: middle;
    margin-right: 4px;
}
.animate-flicker {
    -webkit-animation: flickerAnimation 1s infinite;
    -moz-animation: flickerAnimation 1s infinite;
    -o-animation: flickerAnimation 1s infinite;
    animation: flickerAnimation 1s infinite;
}
.flicker-text .flicker-text-content, .header-google-rating-text, .call-phone-box a {
    font-size: 9px;
}
.flicker-text .flicker-text-content {
    font-size: 14px;
    color: #636363;
}
.flicker-text span {
    display: inline-block;
    vertical-align: middle;
}
.socials-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
	width: 200px;
}
.social-item img {
    width: 100% !important;
    height: 100% !important;
    border-radius: 50% !important;
}
.social-item {
    width: 35px !important;
    height: 35px !important;
}
/*мы-онлайн*/
/*анимашка*/
@-webkit-keyframes blinker {
  from {opacity: 1.0;}
  to {opacity: 0.0;}
}
.blink{
	text-decoration: blink;
	-webkit-animation-name: blinker;
	-webkit-animation-duration: 0.6s;
	-webkit-animation-iteration-count:infinite;
	-webkit-animation-timing-function:ease-in-out;
	-webkit-animation-direction: alternate;
}
/*анимашка*/
/*coplectations*/
.config .config-inner {
    padding-bottom: 74px;
}
.config .season-config {
    position: relative;
    display: block;
    padding-top: 40px;
    width: auto;
    padding: 0px;
    margin: 0;
    margin-left: -8px;
    margin-right: -8px;
    width: calc(100% + 16px);
}
.config-wrap {
    display: flex;
    padding: 0;
    width: 100%;
}
.season-config .config-wrap .item.active {
    border: 2px solid #C1C1C1;
    cursor: default;
}
.season-config .config-wrap .item {
    cursor: pointer;
    margin: 0 -1px;
}
.config-wrap .item {
    position: relative;
    width: calc(33.33% + 2px);
    display: flex;
    -webkit-transition: border 0.2s;
    -moz-transition: border 0.2s;
    -o-transition: border 0.2s;
    transition: border 0.2s;
    background: initial;
    border-radius: 6px;
    border: 2px solid transparent;
}
.config .item {
    padding: 38px 0;
    box-sizing: border-box;
}
.config-item {
    width: 33.33%;
    float: left;
}
.config-item-wrap {
    display: flex;
    flex-direction: column;
    padding: 0 9px;
	margin-top: 20px;
	margin-bottom: 20px;
	width: 100%;
}
.config-title {
    margin-bottom: 10px;
    height: 26px;
    display: table;
    margin: 0 auto;
}
.config-title span {
    margin-right: 5px;
}
.config-title svg {
    position: relative;
    top: 3px;
    fill: none;
    stroke: #121212;
    stroke-width: 1;
    stroke-miterlimit: 10;
    width: 27px;
    max-height: 20px;
}
.big-price {
    display: block;
    font-size: 22px;
    letter-spacing: -0.025em;
    margin-bottom: 13px;
    margin-top: 5px;
    text-transform: uppercase;
    text-align: left;
}
.big-price .num {
    font-size: 28px;
    margin-left: 5px;
    margin-right: 2px;
}
section.config .roub {
    font-size: 28px;
}
.roub {
    position: relative;
}
._dotted {
    border-bottom: 1px dotted #707070;
}
.config-dd-button {
    text-align: left;
    padding: 13px 14px 15px;
    width: 100%;
}
.config-dd-title {
    text-align: left;
    font: Bold 16px/24px 'IBM Plex Sans', sans-serif;
    letter-spacing: 0;
    color: #404040;
    text-transform: uppercase;
    line-height: 1;
    padding: 8px 0 5px;
    display: inline-block;
}
.config-dd-icon {
    float: right;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: transform .15s;
    -moz-transition: transform .15s;
    -o-transition: transform .15s;
    transition: transform .15s;
    width: 30px;
    height: 30px;
}
.config-dd-inner {
    font-size: 14px;
    color: #121212;
    overflow: hidden;
    padding-bottom: 0;
    display: inline-block;
    width: 100%;
}
.config-total {
    display: inline-block;
    width: calc(100% - 15px);
    padding-top: 15px;
    margin-left: 15px;
    margin-top: auto;
}
.ccc_button {
    display: inline-block;
    background: none;
    border: none;
    list-style: none outside none;
    margin: 0;
    padding: 0;
    -webkit-touch-callout: none;
    user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
}
.config-dd-desc.active .j-dd-inner {
    opacity: 1;
}
.config-dd-desc .j-dd-inner {
    margin-bottom: 0;
    opacity: 1;
    transition: opacity 0.1s;
}
.config-dd-section {
    display: inline-block;
    margin: -3px 0 -7px;
    width: 100%;
    overflow: hidden;
}
.config-dd-inner p {
    display: inline-block;
    padding: 0 40px 0 15px;
    margin: 15px 0 15px;
    width: auto;
}
.config-prof-wrap {
    padding: 24px 15px 17px 30px;
    display: inline-block;
	background-color: #f5f3f3;
    border-radius: 25px;
    margin-top: 38px;
}
.config-prof-advice .config-dd-title.red {
    line-height: 1.35;
}
.config-prof-advice .config-dd-title {
    margin-bottom: 15px;
}
.config-dd-title {
    text-align: left;
    font: Bold 16px/24px 'IBM Plex Sans', sans-serif;
    letter-spacing: 0;
    color: #404040;
    text-transform: uppercase;
    line-height: 1;
    padding: 8px 0 5px;
    display: inline-block;
}
.red {
    color: #00d157  !important;
}
.season-config .config-wrap .item.active {
    border: 2px solid #e4e4e4;
    cursor: default;
	border-radius: 25px;
	margin: 0 5px;
}
.config-dd-icon-2 {
    transform: rotate(-45deg);
}
/*coplectations*/
.my_class_1{
	display: flex; 
	flex-direction: row; 
	justify-content: flex-start;
}
.my_class_2{
	padding-left: 15px;
}
/*Инженерные коммуникации*/
.engineer-package{
	display: flex;
    flex-direction: row;
    justify-content: space-between;
	align-items: center !important;
	border: 2px solid #e4e4e4 !important;
    cursor: default !important;
    border-radius: 25px !important;
    margin: 0 5px !important;
    padding: 0 20px;
    margin-top: 15px !important;
}
.engineer-package-2{
	display: flex;
    flex-direction: column;
    justify-content: space-between;
	align-items: center !important;
	border: 2px solid #e4e4e4 !important;
    cursor: default !important;
    border-radius: 25px !important;
    margin: 0 5px !important;
    padding: 0 20px;
    margin-top: 15px !important;
}
.my_but_55{
	display: flex !important;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

/*Инженерные коммуникации*/
.class_1{
	display: flex;
    flex-direction: row;
    justify-content: flex-start;
	align-items: center;
	margin-bottom: 10px;
}
.class_2{
	display: inline-block; margin-right: 10px;
}
.class_3{
	display: inline-block;
}
.class_4{
	display: flex;
    flex-direction: row;
    justify-content: flex-start;
	align-items: flex-start;
	margin-bottom: 10px;
}
.mb10{
	margin-bottom: 10px;
}
.color_4854{
	color: #00d157;
}
/*text editor*/
@import url('https://fonts.googleapis.com/css?family=Roboto:300,300i,400,400i,500,500i,700,700i');
b{
	font-weight: bold !important; 
}
i{
	font-style: italic;
}
#page_edit ol, .page_edit ol{
	list-style: auto !important;
}
#page_edit ul, .page_edit ul{
	list-style: disc !important;
}
#page_edit a {
    color: #3F51B5 !important;
}

#page_edit a:hover {
    color: #333333 !important;
}

button.log-out-client_edit {
    height: 45px;
    border: 0;
    padding-right: 20px;
    border-radius: 4px;
    background-color: #3F51B5;
    color: rgba(255, 255, 255, 0.8);
    line-height: 43px;
    cursor: pointer;
    transition: background-color 0.4s;
}

button.log-out-client_edit i {
    width: 45px;
    line-height: 45px;
    height: 45px;
    background-color: rgba(0, 0, 0, 0.1);
    margin-right: 15px;
    color: rgba(255, 255, 255, 0.7);
}

button.log-out-client_edit:hover, button.log-out-client_edit.cancel_edit:hover {
    background-color: #333;
}

#editor_edit {
	width: 800px !important;
	margin: 50px auto 50px auto !important;
	padding: 7px 20px 20px 20px !important;
	border: 1px solid #464646 !important;
	border-radius: 10px !important;
	background: #f5f3f3 !important;
}

#toolbar_edit {
	margin-left: -20px;
	margin-right: -20px;
	border-bottom: 1px solid #464646;
	padding: 8px 20px;
	overflow: hidden;
	position: relative;
	z-index: 2;
}

#page_edit {
	padding-top: 30px !important;
	min-height: 600px !important;
	outline: none !important;
}

.icon_edit {
	float: left;
	height: 30px;
	width: 40px;
	margin-right: 10px;
	background: #fafafa;
	font-size: 0.8rem;
	color: #464646;
	text-align: center;
	cursor: pointer;
}

.icon_edit:hover {
	border-color: #3e7086;
	color: #3e7086;
}

div#editor_edit {
    width: 100% !important;
    /*height: 400px !important;*/
    margin: 0 !important;
    margin-bottom: 20px !important;
    padding: 0 !important;
    border: 1px solid #fff !important;
    border-radius: 25px !important;
}

#page_edit * {
	font-family: 'Roboto', sans-serif;
}

#page_edit {
    min-height: initial !important;
    height: 100% !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    padding: 10px !important;
    padding-top: 63px !important;
    margin-top: -53px !important;
    text-align: left !important;
	position: relative !important;
	z-index: 1 !important;
}

section#toolbar_edit {
    height: 53px;
    padding: 10px;
    margin: 0;
    border-bottom: 1px solid #cfcfcf;
    background-color: #fff;
    overflow: hidden;
    border-radius: 4px 4px 0px 0px;
    padding-left: 15px;
    padding-right: 15px;
}

.icon_edit {
    height: 33px;
    background: transparent;
    opacity: 0.7;
    color: #555;
    width: 33px;
    line-height: 33px;
}

.icon_edit:hover {
    opacity: 1;
    color: #3F51B5;
}

#page_edit ul, #page_edit ol {
    padding-left: 28px;
    color: #777;
}

.cont_edit {
	margin: auto !important;
}
.page_edit, .page_edit div ul li, .page_edit ul li, .page_edit div ol li, .page_edit ol li{
	color: #121212 !important;
	background-color: rgb(255, 255, 255);
}
/*text editor*/
.my_di_im{
	border-radius: 20px !important;
    width: 100px !important;
    min-width: 100px !important;
	margin: 10px;
	display: inline-block !important;
}
.t_1{
	text-align: center !important;
    font-size: 18px !important;
}
.t_2{
	text-align: center !important;
    font-size: 18px !important;
}
.dib{
	display: inline-block;
}
.tac{
	text-align: center;
}
.mobile_pad_1 {
    padding-left: 0px;
}
/*slider*/
.center {
    display: flex;
    justify-content: center;
    align-items: center;
}
/* SVG */
.svg-arrow {
    width: 40px;
    height: 40px;
    fill: #000;
    cursor: pointer;

}
/* Carrousel */
.carrousel {
    width: 1000px;
    height: 563px;
}
.carrousel-item {
    width: 1000px;
    height: 563px;
    position: absolute;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /*opacity: 0;*/
	display:none;
    transition: opacity 1s;
}
.asdf_next{
	margin-left: 10px;
	right: 0;
    transform: rotate(180deg);
    box-shadow: -1px -2px 4px 0px rgb(0 0 0 / 40%);
    border: none;
    font-size: 0;
    width: 56px;
    height: 56px;
    background-color: #fff;
	z-index: 2;
    border-radius: 100px;
	background-image: url(../img/pop-chev.png);
    background-repeat: no-repeat;
    background-position: 46% 50%;
    background-size: 8px;
    cursor: pointer;
}
.asdf_prev{
	margin-right: 10px;
	left: 0;
    box-shadow: -1px 2px 4px 0px rgb(0 0 0 / 40%);
    border: none;
    font-size: 0;
    width: 56px;
    height: 56px;
    background-color: #fff;
	z-index: 2;
    border-radius: 100px;
	background-image: url(../img/pop-chev.png);
    background-repeat: no-repeat;
    background-position: 46% 50%;
    background-size: 8px;
    cursor: pointer;
}
/*slider*/

.tooltip_w {
  position: relative;
  display: inline-block;
}

/*.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;
}*/

.tooltip_w .tooltiptext_w  {
    transform: translate(-50%, -200%);
    position: absolute;
    color: #989898;
    background-color: #e5e3e3;
    border-radius: 15px;
    padding: 15px 10px;
    z-index: 2;
    width: 80px;
    max-width: 100px;
    top: 51px;
    left: 50%;
    text-align: center;
  transition:opacity 0.2s ease-in-out;
}

.tooltip_w .tooltiptext_w:after {
    content: "";
    display: block;
    position: absolute;
    border-color: #e5e3e3 rgba(0, 0, 0, 0);
    border-style: solid;
    border-width: 15px 15px 0;
    bottom: -13px;
    left: 50%;
    transform: translate(-50%, 0);
    width: 0;
}