html.remodal-is-locked {
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none; 
}
.remodal,
[data-remodal-id] {
  display: none;
}
.remodal-overlay {
  position: fixed;
  z-index: 9999;
  top: -5000px;
  right: -5000px;
  bottom: 0;
  left: -5000px;
  display: none;
}
.remodal-wrapper {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  overflow: auto;
  text-align: center;
  -webkit-overflow-scrolling: touch;
}
.remodal-wrapper:after {
  display: inline-block;
  height: 100%;
  margin-left: -0.05em;
  content: "";
}
.remodal-overlay,
.remodal-wrapper {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.remodal {
  position: relative;
  outline: none;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
.remodal-is-initialized {
  display: inline-block;
}
.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
  -webkit-filter: blur(3px);
  filter: blur(3px);
}
.remodal-overlay {
  background: rgba(0,0,0,0.5);
}
.remodal-overlay:after {
  display: block;
  content: "";
  height: 281px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(../images/fond-remodal.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center bottom;
}
.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.remodal-overlay.remodal-is-opening {
  -webkit-animation-name: remodal-overlay-opening-keyframes;
  animation-name: remodal-overlay-opening-keyframes;
}
.remodal-overlay.remodal-is-closing {
  -webkit-animation-name: remodal-overlay-closing-keyframes;
  animation-name: remodal-overlay-closing-keyframes;
}
.remodal-wrapper {
  padding: 10px 10px 0;
}
.remodal {
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 10px;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  color: #2b2e38;
}
.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.remodal.remodal-is-opening {
  -webkit-animation-name: remodal-opening-keyframes;
  animation-name: remodal-opening-keyframes;
}
.remodal.remodal-is-closing {
  -webkit-animation-name: remodal-closing-keyframes;
  animation-name: remodal-closing-keyframes;
}
.remodal,
.remodal-wrapper:after {
  vertical-align: middle;
  /*vertical-align: top;*/
}
/* Close button */
.remodal-close {
  display: block;
  position: absolute;
  top: 17px;
  right: 15px;
  width: 100px;
  height: 35px;
  border: 0.8px solid #868686;
  box-sizing: border-box;
  border-radius: 8px;
  padding: 0 0 0 12px;
  text-align: left;
  background: transparent;
  transition: 0.3s ease all;
  z-index: 2;
  font-size: 13px;
  color: #5C5C5C;
}
.remodal-close svg {
  position: absolute;
  top: 11px;
  right: 11px;
}
.remodal-close use {
  stroke: #5C5C5C;
  transition: 0.3s ease all;
}
.remodal-close:hover {
  background: #474747;
  color: #ffffff;
}
.remodal-close:hover use {
  stroke: #ffffff; 
  transition: 0.3s ease all;
}
.remodal-confirm,
.remodal-cancel {
  font: inherit;
  display: inline-block;
  overflow: visible;
  min-width: 110px;
  margin: 0;
  padding: 12px 0;
  cursor: pointer;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  border: 0;
  outline: 0;
}
.remodal-confirm {
  color: #fff;
  background: #81c784;
}
.remodal-confirm:hover,
.remodal-confirm:focus {
  background: #66bb6a;
}
.remodal-cancel {
  color: #fff;
  background: #e57373;
}
.remodal-cancel:hover,
.remodal-cancel:focus {
  background: #ef5350;
}
.remodal-confirm::-moz-focus-inner,
.remodal-cancel::-moz-focus-inner,
.remodal-close::-moz-focus-inner {
  padding: 0;
  border: 0;
}
@-webkit-keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);

    opacity: 0;
  }
  to {
    -webkit-transform: none;
    transform: none;

    opacity: 1;

    -webkit-filter: blur(0);
    filter: blur(0);
  }
}
@keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}
@-webkit-keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 0;
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}
@keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);

    opacity: 1;
  }
  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);

    opacity: 0;

    -webkit-filter: blur(0);
    filter: blur(0);
  }
}
@-webkit-keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}



@media only screen and (min-width: 320px) {
  .remodal {
    max-width: 700px;
    text-align: left;
    position: relative;
    z-index: 2;
    text-align: left;
    box-sizing: border-box;
    background: #F2F3F3;
    border-radius: 10px;
  }
  .remodal-feedback {
    max-width: 655px;
    padding: 40px 15px 65px 15px;
  }
  .remodal-structure {
    max-width: 644px;
    padding: 65px 15px 47px 15px;
  }
  .remodal-save {
    max-width: 644px;
    padding: 65px 15px 47px 15px;
  }

  .ramodal-training {
    max-width: 100%; 
  }


}
.lt-ie9 .remodal-overlay {
  background: #2b2e38;
}
.lt-ie9 .remodal {
  width: 700px;
}









.remodal-feedback_thumb {
  font-size: 0;
  text-align: center;
  margin-bottom: 34px;
}
.remodal-feedback h3 {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.2;
  text-align: center;
  letter-spacing: 0.170455px;
  text-transform: uppercase;
  color: #2B312B;
  margin-bottom: 27px;
}
.form-feedback {
  max-width: 364px;
  margin: 0 auto;
}
.form-feedback_item {
  margin-bottom: 18px;
}
.form-feedback_input {
  display: block;
  width: 100%;
  height: 54px;
  border: 0.795455px solid #AAAAAA;
  box-sizing: border-box;
  border-radius: 11.3636px;
  font-weight: 500;
  font-size: 16px;
  line-height: 52px;
  color: #276A31;
  padding: 0 21px;
  background: transparent;
}
.form-feedback_input.form-feedback_area {
  height: 100px;
  resize: none;
  line-height: 1;
  padding: 15px 21px;
}
.form-feedback_input::-webkit-input-placeholder {color:#707070;font-weight: normal;}
.form-feedback_input::-moz-placeholder          {color:#707070;font-weight: normal;}
.form-feedback_input:-moz-placeholder           {color:#707070;font-weight: normal;}
.form-feedback_input:-ms-input-placeholder      {color:#707070;font-weight: normal;}
.form-feedback_button {
  display: block;
  width: 240px;
  height: 48px;
  background: #398039;
  border-radius: 10px;
  margin: 0 auto;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.15px;
  text-transform: uppercase;
  color: #FFFFFF;
}
.form-feedback_button:hover {
  transition: 0.3s ease all;
  background: #065F1F;
}
.remodal-structure_thumb {
  text-align: center;
  font-size: 0;
  margin-bottom: 61px;
}
.remodal-structure_title-1 {
  font-size: 18px;
  line-height: 1.2;
  text-align: center;
  letter-spacing: 0.15px;
  color: #7D6F6F;
  margin-bottom: 17px;
}
.remodal-structure_title-2 {
  font-weight: bold;
  font-size: 24px;
  line-height: 1.25;
  text-align: center;
  letter-spacing: 0.15px;
  color: #1A1515;
  margin-bottom: 29px;
  font-family: 'Roboto', sans-serif !important;
}
.remodal-structure_title-2 sub,
.remodal-structure_title-2 sup {
  font-size: 1rem;
}
.remodal-structure_title-2 h1 font,
.remodal-structure_title-2 h2 font,
.remodal-structure_title-2 h3 font,
.remodal-structure_title-2 h4 font,
.remodal-structure_title-2 h5 font,
.remodal-structure_title-2 h6 font,
.remodal-structure_title-2 ul li font,
.remodal-structure_title-2 ol li font,  
.remodal-structure_title-2 h1 span,
.remodal-structure_title-2 h2 span,
.remodal-structure_title-2 h3 span,
.remodal-structure_title-2 h4 span,
.remodal-structure_title-2 h5 span,
.remodal-structure_title-2 h6 span,
.remodal-structure_title-2 blockquote span,
.remodal-structure_title-2 p font {
/*  font-size: inherit !important;
  color: inherit !important;*/
  font-family: inherit !important; 
}
.remodal-structure_button {
  display: block;
  width: 240px;
  height: 48px;
  background: #398039;
  border-radius: 10px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.15px;
  color: #FFFFFF;
  margin: 0 auto;
  transition: 0.3s ease all;
}
.remodal-structure_button:hover {
  transition: 0.3s ease all;
  background: #065F1F;
}
.small-close .remodal-close {
  width: 76px;
  height: 27px;
  border: 0.53956px solid #333333;
  border-radius: 6.16641px;
  font-size: 10px;
  padding: 0 0 0 9px;
}
.small-close .remodal-close svg {
  top: 7px;
  right: 5px;
  width: 13px;
  height: 12px;
  transform: scale(0.8);
}
.remodal-save h3 {
  font-weight: 500;
  font-size: 20.0408px;
  line-height: 1.2;
  text-align: center;
  letter-spacing: 0.11562px;
  text-transform: uppercase;
  color: #2D2C2C;
  margin-bottom: 18px;
}
.remodal-save_thumb {
  text-align: center;
  font-size: 0;
  margin-bottom: 31px;
}
.remodal-save_info {
  font-size: 10.7912px;
  line-height: 1.7;
  text-align: center;
  color: #2D2C2C;
  max-width: 360px;
  margin: 0 auto 25px auto;
}
.remodal-save_info a {
  color: #398039;
  text-decoration: underline;
}
.remodal-save_info a:hover {
  text-decoration: none;
}


.remodal-overlay.remodal-full {
  background: rgba(0,0,0,1);
}

.ramodal-training_thumb img {
  border-radius: 17px;
  overflow: hidden;
  display: block;
  margin: 0 auto;
}
.ramodal-training {
  background: transparent;
  border-radius: 0;
}
.ramodal-training .remodal-close {

}
.modal-training-fond {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-training {
  width: 770px;
  background: #FFFFFF;
  border-radius: 10px;
  box-sizing: border-box;
  padding: 53px 50px 56px 50px;
  position: relative;
}
.modal-training_thumb {
  width: 100%;
  height: 240px;
  margin: 0 auto 25px auto;
}
.modal-training h3 {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  text-align: center;
  letter-spacing: 0.11562px;
  text-transform: uppercase;
  color: #2D2C2C;
  margin-bottom: 16px;
}
.modal-training p {
  font-size: 16px;
  line-height: 1.4;
  color: #5B5B5B;
  box-sizing: border-box;
  padding: 0 38px 26px 38px;
  text-align: center;
}
.modal-training_box {
  font-size: 0;
  text-align: center;
  margin-bottom: 32px;
}
.modal-training_prev,
.modal-training_next {
  display: inline-block;
  vertical-align: top;
  width: 115px;
  height: 38px;
  margin: 3px 10px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  transition: 0.3s ease all;
}
.modal-training_prev {
  background: #F1F1F1;
  color: #535753;
}
.modal-training_next {
  background: #398039;
  color: #ffffff;
}
.modal-training_prev:hover,
.modal-training_next:hover {
  transition: 0.3s ease all;
  opacity: 0.75;
}
.modal-training_download {
  width: auto;
  padding: 0 15px;
  text-decoration: none;
  line-height: 38px;
}



.dots {

}
.slick-dots {
  text-align: center;
  font-size: 0;
}
.slick-dots li {
  display: inline-block;
  vertical-align: top;
  margin: 0 4px;
}
.slick-dots button {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #BAB7B7;
  cursor: pointer;
  font-size: 0;
  transition: 0.3s ease all;
}
.slick-dots li.slick-active button,
.slick-dots button:hover {
  background: #398039;
  transition: 0.3s ease all;
}
/*.slider-training .slick-slide:last-child .modal-training_next, 
.slider-training .slick-slide:first-child .modal-training_prev {
  display: none !important;
}
.slider-training .slick-slide:last-child .modal-training_next,
.slider-training .slick-slide:first-child .modal-training_next {
  position: relative;
  font-size: 0;
}
.slider-training .slick-slide:last-child .modal-training_next:before,
.slider-training .slick-slide:first-child .modal-training_next:before {
  display: block;
  content: attr(data-text);
  font-size: 13px;
}*/
.button-close {
  display: block;
  width: 12px;
  height: 12px;
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  background: transparent;
}
.button-close path {
  fill: #5C5C5C;
}
.button-close:hover path {
  fill: #398039;
}
.slider-modal-right .modal-training {
  margin-left: 280px;
}
.modal-training_mobile {
  display: none;
}










@media screen and (max-width: 1600px) {
  .modal-training {
    width: 600px;
    padding: 53px 30px 45px 30px;
  }
  .modal-training_thumb {
    height: 160px;
    margin: 0 auto 15px auto;
  }
  .modal-training h3 {
    margin-bottom: 10px;
  }
  .modal-training p {
    font-size: 16px;
    padding: 0 0 16px 0;
  }
  .modal-training_box {
    margin-bottom: 20px;
  } 

}
@media screen and (max-width: 1480px) {

}
@media screen and (max-width: 1023px) {
  .ramodal-training_thumb {
    display: none;
  }
  .remodal-overlay.remodal-full {
    background: rgba(0,0,0,0.5);
  }
  .slider-modal-right .modal-training {
    margin-left: 0;
  }
  .modal-training-fond {
    position: relative;
  }
  .slider-training .slick-list {
    height: 100%;
  }


}
@media screen and (max-width: 979px) {

}
@media screen and (max-width: 799px) {

}
@media screen and (max-width: 767px) {
  .remodal-feedback h3 {
    font-size: 16px;
    margin-bottom: 29px;
    text-align: center;
  }
  .form-feedback_input {
    height: 44px;
    font-size: 11px;
    line-height: 42px;
    padding: 0px 18px;
  }
  .form-feedback {
    max-width: 296px;
  }
  .form-feedback_button {
    width: 100%;
  }
  .remodal-feedback {
    padding: 55px 15px 40px 15px;
  }
  .remodal-close {
    top: 15px;
  }
  .form-feedback_input.form-feedback_area {
    padding: 15px 18px;
  }
  .remodal-structure_thumb {
    margin-bottom: 30px;
  }
  .remodal-structure_title-1 {
    font-size: 16px;
    margin-bottom: 15px;
  }
  .remodal-structure_title-2 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .remodal-save,
  .remodal-structure {
    padding: 55px 15px 40px 15px;
  }

  .modal-training_desktop {
    display: none;
  }
  .modal-training_mobile {
    display: block;
  }
  .modal-training {
    padding: 25px 10px 30px 10px;
  }
  .button-close {
    top: 10px;
    right: 10px;
  }
  .modal-training p {
    font-size: 14px;
    text-align: center;
  }
  .modal-training h3 {
    font-size: 18px;
  }


}
@media screen and (max-width: 639px) {

}
@media screen and (max-width: 479px) {

}
@media screen and (max-width: 359px) {
  .modal-training_prev, 
  .modal-training_next {
    margin: 0px 5px;
  }
}