body {
  font-family: 'Segoe UI';
  font-weight: normal;
  font-size: 14px;
}

a,
a:hover {
  text-decoration: none;
}
ul{
  margin: 0;
  padding: 0;
}
ul li {
  list-style-type: none;
}

p {
  margin: 0;
}

button:focus,
input:focus {
  outline: none;
}
.header{
  background-image: url(../../images/photo-1531782431322-a2607e9dc029.jpg);
  height: 100vh;
  background-size: cover;
  position: relative;
}
.header:before{
  background: #000;
  content: "";
  position: absolute;
  width: 100%;
  opacity: .68;
  height: 100%;
}
.header__logo{
  width: 300px;
}
.header__logo img{
  width: 100%;
}
.header .header__menu-container{
  background: #fff;
  position: fixed;
  width: 100%;
  z-index: 999;
}
.header__menu{
  width: 100%;
  justify-content: space-evenly;
}
.height-100{
  height: 100%;
}
.header__text{
  position: relative;
  color: #fff;
  text-align: center;
  height: calc(100% - 66px);
  padding-top: 100px;
  display: flex;
  align-items: center;
}
.header__text h1{
  font-size: 54px;
  font-weight: 700;
}
.header__text h2{
  color: #97E847;
  font-size: 36px;
  font-weight: 700;
}
.header__text p{
 font-weight: normal;
 font-size: 28px;
}
.header__actions{
  display: flex;
  justify-content: space-evenly;
  margin-top: 100px;
}
.header__btn{
  color: #fff;
  font-size: 18px;
  width: 350px;
  display: block;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.header__btn:hover{
  color: inherit;
}
.actions__first{
  background: #0085A6;
  transition: .4s border ease-out;
  transition: .4s background ease-out;
  border: 3px solid transparent;
}
.actions__first:hover{
  border: 3px solid #fff;
  background: transparent;
}
.actions__second{
  border: 3px solid #97E847;
  transition: .4s background ease-out;
  transition: .4s border ease-out;
}
.actions__second:hover{
  border: 3px solid #fff;
}
.section__title{
  color: #0085A6;
  font-weight: 700;
  font-size: 35px;
  line-height: normal;
  text-align: center;
  padding: 50px 0;
}
.section__title p{
  color: #000;
  font-size: 16px;
  margin-top: 10px;
}
.advantages{
  background: #F8F8F8;
}

.advantage__box{
  background: #fff;
  padding: 30px 20px;
  text-align: center;
  z-index: 1;
  height: 100%;
  transition: 1s;
}
.advantage__header{
  position: relative;
}
.advantage__icon{
  height: 56px;
  position: relative;
  font-size: 40px;
  color: #97e847;
}

.advantage__header h3{
  position: relative;
  font-size: 24px;
  margin-bottom: 30px;
}
.advantage__header h3:before{
  position: absolute;
  content: "";
  height: 1px;
  background: #959595;
  width: 100%;
  left: 0;
  bottom: -10px;
}
.advantage__triangle{
  width: 0;
	height: 0;
	border-left: 50px solid transparent;
	border-right: 50px solid transparent;
  border-bottom: 80px solid #F2F2F2;
  position: absolute;
  margin-left: -50px;
  left: 50%;
  transform: rotate(20deg); 
  transition: .5s;
}
.advantage__box:hover{
  box-shadow: 0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12);
  -webkit-box-shadow: 0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12);
  -moz-box-shadow: 0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12);
}
.advantage__box:hover .advantage__header h3:before{
  background: #2D82D6;
}
.advantage__box:hover .advantage__triangle{
  transform: rotate(0deg);
  border-bottom: 80px solid #DFEFFF; 
}
.advantage__body p{
  line-height: normal;
}
/* ---------calculator--------- */
.calculator__container{
  width: 60%;
  margin: 0 auto;
}
.noUi-horizontal .noUi-handle{
  border-radius: 50%;
  width: 15px;
  height: 15px;
  background: #97E847;
  border: none;
  box-shadow: none;
  top: -5px;
  outline:none;
}

.noUi-connect{
  background: #0085A6;
}
.noUi-target{
  border-radius: 0;
  border: none;
}
.noUi-horizontal {
  height: 5px;
}
.noUi-handle:after, .noUi-handle:before {
  content: none;
}
.calculator__titles{
  font-size: 18px;
  margin-bottom: 20px;
}
/* calculator's checkbox */
.custom-radios{
  display: flex;
  justify-content: space-between;
  width: 70%;
}
.custom-radios div {
  display: inline-block;
}
.custom-radios input[type="radio"] {
  display: none;
}
.custom-radios input[type="radio"] + label {
  color: #333;
  font-family: Arial, sans-serif;
  font-size: 14px;
  display: flex;
}
.custom-radios input[type="radio"] + label span {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: -1px 4px 0 0;
  vertical-align: middle;
  cursor: pointer;
  border-radius: 5px;
  border: 1px solid #000;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.33);
  background-repeat: no-repeat;
  background-position: center;
  text-align: center;
  line-height: 0px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.custom-radios input[type="radio"] + label span i {
  opacity: 0;
  transition: all .3s ease;
  color: #97e847;
  font-weight: bold;
}

.custom-radios input[type="radio"]:checked + label span i {
  opacity: 1;
}
.calculator__result-box{
  border: 1px solid #E1E1E1;
  padding: 20px;
  min-height: 155px;
}

.calculator__result-box .header__btn {
  width: 100%;
}

.calculator__result-box input{
  border: none;
  font-weight: bold;
}
.calculator__result-box .calculator__titles{
  margin-bottom: 0;
  margin-bottom: 5px;
}
.calculator__count{
  background: #0085A6;
  border:none;
  margin-top: 20px;
  position: absolute;
  bottom: 0;
  display: flex;
  justify-content: space-around;
  transition: all .5s ease;
  border: 3px solid transparent;
}
.calculator__count:hover{
  background: transparent;
  border: 3px solid #0085A6;
}
/* --------callback---------- */
.callback{
  background: #2D82D6;
  padding-bottom: 50px;
  margin-top: 100px;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.callback p{
  position: relative;
  z-index: 99;
}
.callback .section__title{
  color: #fff;
  padding-bottom: 20px;
}
.callback .section__title p{
  font-size: 18px;
  color: #fff;
  font-weight: normal;
}
.callback__actions{
  display: flex;
  justify-content: space-between;
  width: 54%;
  margin: 50px auto;
  position: relative;
  z-index: 9;
}
.callback__actions .header__btn{
  width: 270px;
}
.callback__actions-first{
  background: #fff;
  color: #2D82D6;
  transition: all .5s ease;
  border:1px solid transparent
}
.callback__actions-first:hover{
  background: transparent;
  border:1px solid #fff;
  color: #fff;
}
.callback__actions-second{
  border: 1px solid #fff;
}
.callback__actions-second:hover{
  border: 1px solid #2D82D6;
  transition: all .5s ease;
  background: #fff;
  color: #2D82D6;
}
.callback__images{
  position: absolute;
  right: -5%;
  bottom: 0;
}
/* -------------about----------- */
.about .advantage__box{
  background: #FCFCFC;
}
.about .advantage__header h3 {
  font-size: 21px;
}
/* --------team---------*/
.team p{
  font-size: 18px;
}
.team__image img{
  height: 100%;
  width: 100%;
}
.team_image-full img{
  width: 100%;
  margin-top: 50px;
}
/* ----------useful-info------- */
.useful-info{
  background: #F8F8F8;
  padding-bottom: 50px;
}
.useful-info__box{
  margin-bottom: 50px;
}
.useful-info__btn{
  display: block;
  background: #0085A6;
  color: #fff;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  padding: 0px 10px;
}
.useful-info__btn:hover{
  color: #fff;
}
.useful-info__action{
  font-size: 16px;
  font-weight: 700;
}
.useful-info__open-box{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  height: 100%;
}
.useful-info .card {
  border: 1px solid #0085A6;
  border-radius: 0;
}
.useful-info__title{
  color: #ABABAB;
  font-size: 18px;
}

.close-info{
  display: none;
}
.useful-info__btn[aria-expanded="true"] .close-info{
  display: inline-block;
}
.useful-info__btn[aria-expanded="true"]  .arrow-dwn{
  transform: rotate(180deg);
}
.useful-info__btn[aria-expanded="true"] .open-info{
  display: none;
}
/* ----------difference--------- */
.difference{
  margin-top: 70px;
  margin-bottom: 50px;
}
.difference .col-sm-6{
  padding: 0;
}
.difference__wrapper{
  width: 80%;
  margin: 0 auto;
}
.difference__img{
  display: flex;
  justify-content: space-around;
}
.difference__box-image{
  width: 200px;
  height: 180px;
}
.difference__img img{
  width: 100%;
  height: 100%;
}
.difference__title{
  color: #0085A6;
  font-size: 30px;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 30px;
  justify-content: space-around;
  display: flex;
}
.difference__color{
  color: #0085A6;
}
.difference__card{
  text-align: center;
}
.difference__list ul{
  margin: 0;
  padding: 0;
}
.difference__list{
  color: #A5A5A5;
  font-size: 20px;
  font-weight: 700;
}
.difference__list li{
  border: 1px solid transparent;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  justify-content: space-around;
}

.active_list {
  border: 1px solid #97E847 !important;
}
/* -----clients------------ */
.clients{
  padding-bottom: 50px;
}
.clients__logo{
  width: 70px;
  margin: 0px auto;
  height: 100%;

}

.clients__logo
.clients__wrapper{
  width: 80%;
  margin: 0 auto;
}

.slider{
  position: relative;
}
.slider .owl-carousel .owl-stage {
  display: flex;
}
.slider .owl-carousel .owl-item {
  float: none;
}
.slider .owl-theme .custom-nav {
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
}

.slider .owl-theme .custom-nav .owl-prev {
  position: absolute;
  color: inherit;
  background: #0085A6;
  border: none;
  z-index: 100;
  border-radius: 50px;
  left: 30%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider .owl-theme .custom-nav .owl-next {
  position: absolute;
  color: inherit;
  background: #0085A6;
  border: none;
  z-index: 100;
  right: 30%;
  border-radius: 50px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider .owl-theme .custom-nav i {
  font-size: 9px;
  color: #fff;
}
.owl-theme .owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
}
.owl-theme .owl-dots{
  display: flex;
    align-items: center;
    justify-content: center;
    height: 90px;
    position: absolute;
    left: 50%;
    margin-left: -22px;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #97E847;
}

/* ----------contacts------------ */
.contacts__list{
  box-shadow: 0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12);
  -webkit-box-shadow: 0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12);
  -moz-box-shadow: 0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12);
  padding: 30px;
}
.contacts__title{
  color: #8D8D8D;
  font-size: 16px;
}
.contacts__info{
  color: #0085A6;
  font-weight: bold;
  font-size: 25px;
  margin-bottom: 50px;
}
.contacts .header__btn{
  width: 100%;
  margin-top: 30px;
}
.contacts .header__btn:hover{
border: 3px solid #0085A6;
}
.contacts__map{
  height: 100%;
}

/* --------footer-------------- */
.footer{
  margin-top: 50px;
  padding-top: 50px;
  padding-bottom: 50px;
  background: #1E1E1E;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.footer__logo{
  width: 300px;
}
.footer__logo img{
  width: 100%;
}
.footer__social-wrapper{
  display: flex;
  justify-content: space-between;
  margin: 30px auto;
  width: 30%;
}
.footer__social{
  width: 25px;
}
.footer__social i{
  color: #fff;
  font-size: 25px;
}
.footer__menu{
  width: 100%;
}
.footer__menu ul{
  display: flex;
  margin: 0 auto;
  justify-content: space-between;
  width: 60%;
}
.footer__menu a{
  color: #fff;
}
/* ----modal--------- */
.modal-content{
  background: #0085A6;
  border-radius: 0;
  color: #fff;
}
.close {
  color: #fff;
  text-shadow: none;
  opacity: 1;
  text-align: right;
  padding-right: 20px !important;
  padding-top: 20px !important;
}
.modal-content h5{
  text-align: center;
  font-size: 18px;
  font-weight: normal;
}
.modal-content p{
  text-align: center;
  font-size: 10px;
}
.modal-content input{
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #00A4CC;
  color: #fff;
  margin-bottom: 30px;
}
.modal-content input::placeholder{
  color: #fff;
  opacity: 1;
}

.modal__btn{
  color: #00A4CC;
  font-size: 18px;
  width: 100%;
  background: #fff;
  border: none;
  padding: 5px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal__btn img{
  width: 18px;
}
.thanks p {
  color: #0f0f0f;
  text-align: center;
  margin-top: 1rem;
}

/* ------responsive------------- */
@media (min-width: 768px) {
  .owl-clients{
    display: flex;
    flex-wrap: wrap;
  }
  
  .owl-clients .clients__logo{
    width: 33%;
    text-align: center;
  }
  .owl-clients .clients__logo-footer{
    width: 50%;
    text-align: center;
    margin-top: 80px;
  }
  .clients__logo img{
    width: 50%;
  }
  }
@media (max-width: 1199px) {
.callback__actions {
  width: 63%;
}
.contacts__info {
  font-size: 20px;
}
}
@media (max-width: 1024px) {
  .calculator .header__btn{
    width: 90%;
  }
  .callback__images {
    right: -25%;
}
.advantage__header h3 {
  font-size: 20px;
}
.advantage__box{
  padding-bottom: 30px;
}

.difference__wrapper, .clients__wrapper  {
  width: 100%;
}
}
@media (max-width: 991px) {
  .header {
    height: auto;
    padding-bottom: 50px;
  }
  .callback__actions {
    width: 85%;
}
.footer__menu ul {
  flex-direction: column;
  align-items: center;
}
}
@media (max-width: 768px) {
  
.header__actions {
  flex-direction: column;
  align-items: center;
}
.calculator .header__btn {
  width: 100%;
}
.callback__actions {
  width: 100%;
  flex-direction: column;
  align-items: center;
}
.callback__actions .header__btn {
  margin-bottom: 20px;
}
.callback {
  padding-bottom: 170px;
}


.actions__second {
  margin-top: 20px;
}
.footer__menu ul {
  width: 90%;
}
.calculator__count {
  position: static;
}
.calculator__result-box {
  margin-top: 20px;
}
.contacts__map {
  /*height: 280px;*/
  margin-top: 30px;
}
}

@media (max-width: 510px) {
  .section__title {
    font-size: 25px;
    text-align: left;
}
.header__text h1 {
  font-size: 45px;
  font-weight: normal;
}
}
@media (max-width: 425px) {
.header__text h2 {
  font-size: 30px;
  font-weight: normal;
  margin: 25px 0;
}
.header__text p {
  font-size: 25px;
  line-height: normal;
}

.advantage__box {
  min-height: auto;
}
.advantage__body{
  display: none;
}

.advantage__header h3 {
  font-size: 16px;
}
.calculator__container {
  width: 90%;
}
.callback .section__title {
  text-align: center;
}

.callback__actions .header__btn {
  width: 100%;
}

.about .advantage__header h3 {
  font-size: 15px;
}
.useful-info__btn {
  height: 85px;
  font-size: 12px;
}
.team__image{
  display: none;
}
.difference__card {
  margin-bottom: 30px;
  border: 1px solid #F3F3F3;
  padding: 20px 0;
}
.difference__box-image {
  width: 135px;
  height: 115px;
}
.difference__img {
  width: 100%;
  height: 150px;
}
.difference__title {
  font-size: 20px;
}
.difference__list li {
  min-height: 30px;
  margin-bottom: 0px;
}
.difference__list {
  font-size: 16px;
}

.footer__social-wrapper {
  width: 60%;
  margin: 20px auto;
}
.footer__menu li{
  margin-top: 20px;
}
}
@media (max-width: 404px){
  .header__logo {
      width: 200px;
  }
  }
@media (max-width: 375px) {
  .header__text h1 {
    font-size: 22px;
}
.header__text h2 {
  font-size: 20px;
}
.header__text p {
  font-size: 16px;
}
  .header__logo {
    width: 200px;
}
.section__title {
  font-size: 16px;
}

.useful-info__title {
  font-size: 16px;
}
.useful-info__action {
  font-size: 10px;
}
.difference__title {
  font-size: 14px;
  margin-top: 0;
}
.difference__list li {
  font-size: 10px;
}
.contacts__title {
  font-size: 12px;
}
.advantage__header h3 {
  font-size: 12px;
}
.section__title p {
  font-size: 11px;
  font-weight: normal;
}
.calculator__titles {
  font-size: 14px;
}

.callback .section__title {
  font-size: 20px;
}
.callback .section__title p {
  font-size: 16px;
}
.callback__images {
  right: -40%;
}
.team p {
  font-size: 12px;
}
.header__btn {
  width: 100%;
  font-size: 14px;
}
.contacts__info {
  font-size: 16px;
}
.footer__logo {
  width: 80%;
}
}
@media (max-width: 375px) {
.callback__images {
  right: -65%;
}
}
.fixed-tel {
  display: none;
  margin: 0;
  width: 0.7em;
  height: 0.7em;
  font-size: 70px;
  background-color: #1b58a9;
  border-radius: 0.5em;
  box-shadow: 0 0 0 0em rgba(52, 152, 219, 0), 0em 0.05em 0.1em rgba(0, 0, 0, 0.2);
  -webkit-transform: translate3d(0, 0, 0) scale(1);
  transform: translate3d(0, 0, 0) scale(1);
}

.fixed-tel::before,
.fixed-tel::after {
  position: absolute;
  content: "";
}

.fixed-tel::before {
  top: 0;
  left: 0;
  width: 0.7em;
  height: 0.7em;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 100%;
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0) scale(0);
  transform: translate3d(0, 0, 0) scale(0);
}

.fixed-tel::after {
  top: 0.17em;
  left: 0.17em;
  width: 0.36em;
  height: 0.36em;
  background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZD0iTTYuNiAxMC44YzEuNCAyLjggMy44IDUuMSA2LjYgNi42bDIuMi0yLjJjLjMtLjMuNy0uNCAxLS4yIDEuMS40IDIuMy42IDMuNi42LjUgMCAxIC40IDEgMVYyMGMwIC41LS41IDEtMSAxLTkuNCAwLTE3LTcuNi0xNy0xNyAwLS42LjQtMSAxLTFoMy41Yy41IDAgMSAuNCAxIDEgMCAxLjIuMiAyLjUuNiAzLjYuMS40IDAgLjctLjIgMWwtMi4zIDIuMnoiIGZpbGw9IiNmZmZmZmYiLz48L3N2Zz4=);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.fixed-tel.fixed-wa::after {
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4PSIwcHgiIHk9IjBweCIgdmlld0JveD0iMCAwIDQ3OC4xNjUgNDc4LjE2NSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNDc4LjE2NSA0NzguMTY1OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjUxMnB4IiBoZWlnaHQ9IjUxMnB4Ij48Zz48cGF0aCBpZD0iV2hhdHNBcHAiIGQ9Ik00NzguMTY1LDIzMi45NDZjMCwxMjguNTY3LTEwNS4wNTcsMjMyLjk2Ni0yMzQuNjc5LDIzMi45NjZjLTQxLjEwMiwwLTc5LjgxNC0xMC41OTktMTEzLjQ0NS0yOC45NjkgICBMMCw0NzguMTY1bDQyLjQzNy0xMjUuMDRjLTIxLjQzOC0zNS4wNjUtMzMuNzctNzYuMjA3LTMzLjc3LTEyMC4xNTlDOC42NjcsMTA0LjM0LDExMy43NjMsMCwyNDMuNDg1LDAgICBDMzczLjEwOCwwLDQ3OC4xNjUsMTA0LjM0LDQ3OC4xNjUsMjMyLjk0NnogTTI0My40ODUsMzcuMDk4Yy0xMDguODAyLDAtMTk3LjQyMiw4Ny44MDMtMTk3LjQyMiwxOTUuODY4ICAgYzAsNDIuOTE1LDEzLjk4Niw4Mi42MDMsMzcuNTc2LDExNC44NzlsLTI0LjU4Niw3Mi41NDJsNzUuODQ5LTIzLjk2OGMzMS4xMjEsMjAuNDgxLDY4LjQ1NywzMi4yOTYsMTA4LjU4MywzMi4yOTYgICBjMTA4LjcyMywwLDE5Ny4zMjMtODcuODQzLDE5Ny4zMjMtMTk1LjkwOEM0NDAuODA4LDEyNC45MjEsMzUyLjIwOCwzNy4wOTgsMjQzLjQ4NSwzNy4wOTh6IE0zNjEuOTMxLDI4Ni42MiAgIGMtMS4zOTUtMi4zMzEtNS4yMi0zLjc0Ni0xMC44OTgtNi44MTRjLTUuOTE3LTIuODQ5LTM0LjA4OS0xNi40OTctMzkuNTA4LTE4LjM3Yy01LjE2LTEuOTEzLTguOTg2LTIuODQ5LTEyLjgxMSwyLjgyOSAgIGMtNC4wMDUsNS42MzgtMTQuOTAzLDE4LjYyOS0xOC4yMywyMi4zNTRjLTMuNTQ2LDMuNzg1LTYuODU0LDQuMjY0LTEyLjU1MiwxLjQzNWMtNS42MTgtMi44MDktMjQuMjY3LTguODY2LTQ2LjIwMy0yOC4zOTEgICBjLTE3LjA1NS0xNS4wNDItMjguNjctMzMuNzExLTMxLjk5Ny0zOS41MDhjLTMuNDI3LTUuNzU4LTAuMzk4LTguODI2LDIuNDcxLTExLjYzNWMyLjY5LTIuNTksNS43NzgtNi43MzQsOC42MjctMTAuMDQxICAgYzIuOTY5LTMuMjg3LDMuOTA1LTUuNjM4LDUuNzk4LTkuNDI0YzEuOTEzLTMuOTA1LDAuOTM2LTcuMTkyLTAuNDc4LTEwLjE0MWMtMS40MTUtMi44NDktMTMuMDEtMzAuODgxLTE3Ljc1Mi00Mi4zMzcgICBjLTQuODQxLTExLjQxNi05LjU0My05LjUyMy0xMi44NzEtOS41MjNjLTMuNDY3LDAtNy4yMTItMC40NzgtMTEuMTE3LTAuNDc4Yy0zLjc4NSwwLTEwLjA0MSwxLjM5NS0xNS4zODEsNy4xOTIgICBjLTUuMiw1LjY1OC0yMC4xMjMsMTkuNDY1LTIwLjEyMyw0Ny41OTdjMCwyOC4wNTIsMjAuNjAxLDU1LjMwOCwyMy41NSw1OS4wNTNjMi44NjksMy43ODUsMzkuNzQ3LDYzLjE5Nyw5OC4zMDMsODYuMDcgICBjNTguNDc2LDIyLjg3Miw1OC40NzYsMTUuMzIxLDY5LjExNSwxNC4zNjVjMTAuMzgtMC45NTYsMzQuMDY5LTEzLjg2NywzOC44MTEtMjcuMDk2ICAgQzM2My4zNDUsMzAwLjMwNywzNjMuMzQ1LDI4OC45OTEsMzYxLjkzMSwyODYuNjJ6IiBmaWxsPSIjRkZGRkZGIi8+PC9nPjxnPjwvZz48Zz48L2c+PGc+PC9nPjxnPjwvZz48Zz48L2c+PGc+PC9nPjxnPjwvZz48Zz48L2c+PGc+PC9nPjxnPjwvZz48Zz48L2c+PGc+PC9nPjxnPjwvZz48Zz48L2c+PGc+PC9nPjwvc3ZnPg==);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.fixed-tel.is-animating {
  -webkit-animation: phone-outer 5000ms infinite;
  animation: phone-outer 5000ms infinite;
}
.fixed-tel.is-animating::before {
  -webkit-animation: phone-inner 5000ms infinite;
  animation: phone-inner 5000ms infinite;
}
.fixed-tel.is-animating::after {
  -webkit-animation: phone-icon 5000ms infinite;
  animation: phone-icon 5000ms infinite;
}

.fixed-tel.fixed-wa.is-animating {
  animation-delay: 2500ms;
}
.fixed-tel.fixed-wa.is-animating::before {
  animation-delay: 2500ms;
}
.fixed-tel.fixed-wa.is-animating::after {
  animation-delay: 2500ms;
}

@-webkit-keyframes phone-outer {
  0% {
      -webkit-transform: translate3d(0, 0, 0) scale(1);
      transform: translate3d(0, 0, 0) scale(1);
      box-shadow: 0 0 0 0em rgba(52, 152, 219, 0), 0em 0.05em 0.1em rgba(0, 0, 0, 0.2);
  }
  33.3333% {
      -webkit-transform: translate3d(0, 0, 0) scale(1.1);
      transform: translate3d(0, 0, 0) scale(1.1);
      box-shadow: 0 0 0 0em rgba(52, 152, 219, 0.1), 0em 0.05em 0.1em rgba(0, 0, 0, 0.5);
  }
  66.6666% {
      -webkit-transform: translate3d(0, 0, 0) scale(1);
      transform: translate3d(0, 0, 0) scale(1);
      box-shadow: 0 0 0 0.5em rgba(52, 152, 219, 0), 0em 0.05em 0.1em rgba(0, 0, 0, 0.2);
  }
  100% {
      -webkit-transform: translate3d(0, 0, 0) scale(1);
      transform: translate3d(0, 0, 0) scale(1);
      box-shadow: 0 0 0 0em rgba(52, 152, 219, 0), 0em 0.05em 0.1em rgba(0, 0, 0, 0.2);
  }
}

@keyframes phone-outer {
  0% {
      -webkit-transform: translate3d(0, 0, 0) scale(1);
      transform: translate3d(0, 0, 0) scale(1);
      box-shadow: 0 0 0 0em rgba(52, 152, 219, 0), 0em 0.05em 0.1em rgba(0, 0, 0, 0.2);
  }
  33.3333% {
      -webkit-transform: translate3d(0, 0, 0) scale(1.1);
      transform: translate3d(0, 0, 0) scale(1.1);
      box-shadow: 0 0 0 0em rgba(52, 152, 219, 0.1), 0em 0.05em 0.1em rgba(0, 0, 0, 0.5);
  }
  66.6666% {
      -webkit-transform: translate3d(0, 0, 0) scale(1);
      transform: translate3d(0, 0, 0) scale(1);
      box-shadow: 0 0 0 0.5em rgba(52, 152, 219, 0), 0em 0.05em 0.1em rgba(0, 0, 0, 0.2);
  }
  100% {
      -webkit-transform: translate3d(0, 0, 0) scale(1);
      transform: translate3d(0, 0, 0) scale(1);
      box-shadow: 0 0 0 0em rgba(52, 152, 219, 0), 0em 0.05em 0.1em rgba(0, 0, 0, 0.2);
  }
}
@-webkit-keyframes phone-inner {
  0% {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0) scale(0);
      transform: translate3d(0, 0, 0) scale(0);
  }
  33.3333% {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0) scale(0.9);
      transform: translate3d(0, 0, 0) scale(0.9);
  }
  66.6666% {
      opacity: 0;
      -webkit-transform: translate3d(0, 0, 0) scale(0);
      transform: translate3d(0, 0, 0) scale(0);
  }
  100% {
      opacity: 0;
      -webkit-transform: translate3d(0, 0, 0) scale(0);
      transform: translate3d(0, 0, 0) scale(0);
  }
}
@keyframes phone-inner {
  0% {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0) scale(0);
      transform: translate3d(0, 0, 0) scale(0);
  }
  33.3333% {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0) scale(0.9);
      transform: translate3d(0, 0, 0) scale(0.9);
  }
  66.6666% {
      opacity: 0;
      -webkit-transform: translate3d(0, 0, 0) scale(0);
      transform: translate3d(0, 0, 0) scale(0);
  }
  100% {
      opacity: 0;
      -webkit-transform: translate3d(0, 0, 0) scale(0);
      transform: translate3d(0, 0, 0) scale(0);
  }
}
@-webkit-keyframes phone-icon {
  0% {
      -webkit-transform: translate3d(0em, 0, 0);
      transform: translate3d(0em, 0, 0);
  }
  2% {
      -webkit-transform: translate3d(0.01em, 0, 0);
      transform: translate3d(0.01em, 0, 0);
  }
  4% {
      -webkit-transform: translate3d(-0.01em, 0, 0);
      transform: translate3d(-0.01em, 0, 0);
  }
  6% {
      -webkit-transform: translate3d(0.01em, 0, 0);
      transform: translate3d(0.01em, 0, 0);
  }
  8% {
      -webkit-transform: translate3d(-0.01em, 0, 0);
      transform: translate3d(-0.01em, 0, 0);
  }
  10% {
      -webkit-transform: translate3d(0.01em, 0, 0);
      transform: translate3d(0.01em, 0, 0);
  }
  12% {
      -webkit-transform: translate3d(-0.01em, 0, 0);
      transform: translate3d(-0.01em, 0, 0);
  }
  14% {
      -webkit-transform: translate3d(0.01em, 0, 0);
      transform: translate3d(0.01em, 0, 0);
  }
  16% {
      -webkit-transform: translate3d(-0.01em, 0, 0);
      transform: translate3d(-0.01em, 0, 0);
  }
  18% {
      -webkit-transform: translate3d(0.01em, 0, 0);
      transform: translate3d(0.01em, 0, 0);
  }
  20% {
      -webkit-transform: translate3d(-0.01em, 0, 0);
      transform: translate3d(-0.01em, 0, 0);
  }
  22% {
      -webkit-transform: translate3d(0.01em, 0, 0);
      transform: translate3d(0.01em, 0, 0);
  }
  24% {
      -webkit-transform: translate3d(-0.01em, 0, 0);
      transform: translate3d(-0.01em, 0, 0);
  }
  26% {
      -webkit-transform: translate3d(0.01em, 0, 0);
      transform: translate3d(0.01em, 0, 0);
  }
  28% {
      -webkit-transform: translate3d(-0.01em, 0, 0);
      transform: translate3d(-0.01em, 0, 0);
  }
  30% {
      -webkit-transform: translate3d(0.01em, 0, 0);
      transform: translate3d(0.01em, 0, 0);
  }
  32% {
      -webkit-transform: translate3d(-0.01em, 0, 0);
      transform: translate3d(-0.01em, 0, 0);
  }
  34% {
      -webkit-transform: translate3d(0.01em, 0, 0);
      transform: translate3d(0.01em, 0, 0);
  }
  36% {
      -webkit-transform: translate3d(-0.01em, 0, 0);
      transform: translate3d(-0.01em, 0, 0);
  }
  38% {
      -webkit-transform: translate3d(0.01em, 0, 0);
      transform: translate3d(0.01em, 0, 0);
  }
  40% {
      -webkit-transform: translate3d(-0.01em, 0, 0);
      transform: translate3d(-0.01em, 0, 0);
  }
  42% {
      -webkit-transform: translate3d(0.01em, 0, 0);
      transform: translate3d(0.01em, 0, 0);
  }
  44% {
      -webkit-transform: translate3d(-0.01em, 0, 0);
      transform: translate3d(-0.01em, 0, 0);
  }
  46% {
      -webkit-transform: translate3d(0em, 0, 0);
      transform: translate3d(0em, 0, 0);
  }
}
@keyframes phone-icon {
  0% {
      -webkit-transform: translate3d(0em, 0, 0);
      transform: translate3d(0em, 0, 0);
  }
  2% {
      -webkit-transform: translate3d(0.01em, 0, 0);
      transform: translate3d(0.01em, 0, 0);
  }
  4% {
      -webkit-transform: translate3d(-0.01em, 0, 0);
      transform: translate3d(-0.01em, 0, 0);
  }
  6% {
      -webkit-transform: translate3d(0.01em, 0, 0);
      transform: translate3d(0.01em, 0, 0);
  }
  8% {
      -webkit-transform: translate3d(-0.01em, 0, 0);
      transform: translate3d(-0.01em, 0, 0);
  }
  10% {
      -webkit-transform: translate3d(0.01em, 0, 0);
      transform: translate3d(0.01em, 0, 0);
  }
  12% {
      -webkit-transform: translate3d(-0.01em, 0, 0);
      transform: translate3d(-0.01em, 0, 0);
  }
  14% {
      -webkit-transform: translate3d(0.01em, 0, 0);
      transform: translate3d(0.01em, 0, 0);
  }
  16% {
      -webkit-transform: translate3d(-0.01em, 0, 0);
      transform: translate3d(-0.01em, 0, 0);
  }
  18% {
      -webkit-transform: translate3d(0.01em, 0, 0);
      transform: translate3d(0.01em, 0, 0);
  }
  20% {
      -webkit-transform: translate3d(-0.01em, 0, 0);
      transform: translate3d(-0.01em, 0, 0);
  }
  22% {
      -webkit-transform: translate3d(0.01em, 0, 0);
      transform: translate3d(0.01em, 0, 0);
  }
  24% {
      -webkit-transform: translate3d(-0.01em, 0, 0);
      transform: translate3d(-0.01em, 0, 0);
  }
  26% {
      -webkit-transform: translate3d(0.01em, 0, 0);
      transform: translate3d(0.01em, 0, 0);
  }
  28% {
      -webkit-transform: translate3d(-0.01em, 0, 0);
      transform: translate3d(-0.01em, 0, 0);
  }
  30% {
-webkit-transform: translate3d(0.01em, 0, 0);
      transform: translate3d(0.01em, 0, 0);
  }
  32% {
      -webkit-transform: translate3d(-0.01em, 0, 0);
      transform: translate3d(-0.01em, 0, 0);
  }
  34% {
      -webkit-transform: translate3d(0.01em, 0, 0);
      transform: translate3d(0.01em, 0, 0);
  }
  36% {
      -webkit-transform: translate3d(-0.01em, 0, 0);
      transform: translate3d(-0.01em, 0, 0);
  }
  38% {
      -webkit-transform: translate3d(0.01em, 0, 0);
      transform: translate3d(0.01em, 0, 0);
  }
  40% {
      -webkit-transform: translate3d(-0.01em, 0, 0);
      transform: translate3d(-0.01em, 0, 0);
  }
  42% {
      -webkit-transform: translate3d(0.01em, 0, 0);
      transform: translate3d(0.01em, 0, 0);
  }
  44% {
      -webkit-transform: translate3d(-0.01em, 0, 0);
      transform: translate3d(-0.01em, 0, 0);
  }
  46% {
      -webkit-transform: translate3d(0em, 0, 0);
      transform: translate3d(0em, 0, 0);
  }
}

.fixed-tel,
.fixed-wa {
  display: none;
  position: fixed;
  right: 15px;
  color: #fff;
  text-align: center;
  z-index: 9;
}

.fixed-tel i,
.fixed-wa i {
  font-size: 20px;
  line-height: 45px;
}

.fixed-tel {
  bottom: 20px;
  -webkit-animation: anim-phone 7s infinite;
  -o-animation: anim-phone 7s infinite;
  animation: anim-phone 7s infinite;
}

.fixed-tel.fixed-wa {
  background: #25d366;
  bottom: 20px;
  display: block;
}

.fixed-up {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 80px;
  width: 0.7em;
  height: 0.7em;
  -webkit-border-radius: 1em;
  -moz-border-radius: 1em;
  border-radius: 1em;
  background: rgba(0,0,0,.5);
  color: #fff;
  border: none;
  font-size: 70px;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.fixed-up:hover {
  background: rgba(0,0,0,.85);
}

.fixed-up::after {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/PjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2ZXJzaW9uPSIxLjEiIGlkPSJDYXBhXzEiIHg9IjBweCIgeT0iMHB4IiB3aWR0aD0iNTEycHgiIGhlaWdodD0iNTEycHgiIHZpZXdCb3g9IjAgMCAyODQuOTI5IDI4NC45MjkiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDI4NC45MjkgMjg0LjkyOTsiIHhtbDpzcGFjZT0icHJlc2VydmUiPjxnPjxwYXRoIGQ9Ik0yODIuMDgyLDE5NS4yODVMMTQ5LjAyOCw2Mi4yNGMtMS45MDEtMS45MDMtNC4wODgtMi44NTYtNi41NjItMi44NTZzLTQuNjY1LDAuOTUzLTYuNTY3LDIuODU2TDIuODU2LDE5NS4yODUgICBDMC45NSwxOTcuMTkxLDAsMTk5LjM3OCwwLDIwMS44NTNjMCwyLjQ3NCwwLjk1Myw0LjY2NCwyLjg1Niw2LjU2NmwxNC4yNzIsMTQuMjcxYzEuOTAzLDEuOTAzLDQuMDkzLDIuODU0LDYuNTY3LDIuODU0ICAgYzIuNDc0LDAsNC42NjQtMC45NTEsNi41NjctMi44NTRsMTEyLjIwNC0xMTIuMjAybDExMi4yMDgsMTEyLjIwOWMxLjkwMiwxLjkwMyw0LjA5MywyLjg0OCw2LjU2MywyLjg0OCAgIGMyLjQ3OCwwLDQuNjY4LTAuOTUxLDYuNTctMi44NDhsMTQuMjc0LTE0LjI3N2MxLjkwMi0xLjkwMiwyLjg0Ny00LjA5MywyLjg0Ny02LjU2NiAgIEMyODQuOTI5LDE5OS4zNzgsMjgzLjk4NCwxOTcuMTg4LDI4Mi4wODIsMTk1LjI4NXoiIGZpbGw9IiNGRkZGRkYiLz48L2c+PGc+PC9nPjxnPjwvZz48Zz48L2c+PGc+PC9nPjxnPjwvZz48Zz48L2c+PGc+PC9nPjxnPjwvZz48Zz48L2c+PGc+PC9nPjxnPjwvZz48Zz48L2c+PGc+PC9nPjxnPjwvZz48Zz48L2c+PC9zdmc+);
  top: 0.17em;
  left: 0.2em;
  width: 0.30em;
  height: 0.30em;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  content: '';
  position: absolute;

}

.contacts__map iframe {
  width: 100%;
  height: 400px;
}

@media (max-width: 767px) {
  .fixed-up {
      right: auto;
      left: 20px;
  }

  .fixed-tel.fixed-wa {
      bottom: 85px;
  }

  .fixed-tel {
      display: block;
  }
}

.calc__order__btn {
  display: none;
  margin-top: 15px;
  background: #0085A6;
  color: #fff;
  height: 50px;
  padding: 0 15px;
  line-height: 50px;
}

.calc__order__btn i {
  margin-left: 15px;
}

.calc__order__btn.show {
  display: block;
}