/*
Theme Name: Homestaff
*/
@charset "UTF-8";

@font-face {
  font-display: fallback;
  font-family: "Noto Sans";
  font-weight: 400;
  font-style: normal;
  src: url("fonts/NOTOSANSREGULAR.eot");
  src: url("fonts/NOTOSANSREGULAR.eot?#iefix") format("embedded-opentype"), url("fonts/NOTOSANSREGULAR.woff") format("woff"), url("fonts/NOTOSANSREGULAR.ttf") format("truetype"), url("fonts/NOTOSANSREGULAR.svg#Noto Sans") format("svg");
}

@font-face {
  font-display: fallback;
  font-family: "Noto Sans";
  font-weight: 700;
  font-style: normal;
  src: url("fonts/NOTOSANSBOLD.eot");
  src: url("fonts/NOTOSANSBOLD.eot?#iefix") format("embedded-opentype"), url("fonts/NOTOSANSBOLD.woff") format("woff"), url("fonts/NOTOSANSBOLD.ttf") format("truetype"), url("fonts/NOTOSANSBOLD.svg#Noto Sans") format("svg");
}

/* https://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
video {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

/*#wpadminbar{
  display: none!important;
}*/
blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  font-family: 'Noto Sans', Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  min-width: 340px;
  color: #333333;
  position: relative;
  background-color: #ffffff;


}

section {
  overflow-x: hidden;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

.wrapper-bg {
  min-height: 100vh;
}

.hidden {
  display: none;
}

.wrapper {
  margin: 0 auto;
}

a {
  text-decoration: none;
}

.inl {
  display: inline-block;
  vertical-align: top;
}

.txt {
  margin: 0 auto;
  text-align: center;
}

form input.error {
  box-shadow: inset 0px 0px 20px 1px rgba(255, 0, 0, 0.3);
  border: 2px solid red !important;
}

form input.not_error {
  box-shadow: inset 0px 0px 20px 1px rgba(100, 255, 100, 0.3);
  border: 2px solid #99FF99 !important;
}

.preloaderGM {
  z-index: 999999999;
  position: fixed;
  display: block;
  width: 100%;
  height: 100vh;
  padding-top: 45vh;
  background: #fff;
  opacity: 1;
  animation: preloader_hide 1s 2s linear forwards, decrease 1s 3s linear forwards;
  -o-animation: preloader_hide 1s 2s linear forwards, decrease 1s 3s linear forwards;
  -moz-animation: preloader_hide 1s 2s linear forwards, decrease 1s 3s linear forwards;
  -ms-animation: preloader_hide 1s 2s linear forwards, decrease 1s 3s linear forwards;
  -webkit-animation: preloader_hide 1s 2s linear forwards, decrease 1s 3s linear forwards;
}

.preloaderGM .pre_circles {
  width: 50px;
  height: 50px;
  margin: 0 auto;
}

.preloaderGM .pre_circles .pre_circle1 {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  border: 2px solid #232323;
  will-change: contents;
  animation: circle_grow 1s 1s linear infinite;
  -o-animation: circle_grow 1s 1s linear infinite;
  -webkit-animation: circle_grow 1s 1s linear infinite;
  -moz-animation: circle_grow 1s 1s linear infinite;
  -ms-animation: circle_grow 1s 1s linear infinite;
  opacity: 0;
}

.preloaderGM .pre_circles .pre_circle2 {
  position: absolute;
  margin-top: 20px;
  margin-left: 20px;
  width: 0px;
  height: 0px;
  border-radius: 50px;
  border: 2px solid #232323;
  will-change: contents;
  animation: circle_grow 1s 2s linear infinite;
  -o-animation: circle_grow 1s 2s linear infinite;
  -moz-animation: circle_grow 1s 2s linear infinite;
  -ms-animation: circle_grow 1s 2s linear infinite;
  -webkit-animation: circle_grow 1s 2s linear infinite;
  opacity: 0;
}

.container:after,
.container:before {
  display: none !important;
}

@keyframes decrease {
  0% {
    width: 100%;
  }

  100% {
    width: 0%;
  }
}

@keyframes circle_grow {
  0% {
    width: 0;
    height: 0;
    margin-left: 25px;
    margin-top: 25px;
    opacity: 1;
  }

  100% {
    width: 50px;
    height: 50px;
    margin-left: 0px;
    margin-top: 0px;
    opacity: 0;
  }
}

@keyframes preloader_hide {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes loader_vis {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.modal-overlay {
  display: none;
  padding-top: 1px;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000000;
  overflow: auto;
}

.modal-overlay .modal-content {
  margin: 10vh auto;
  position: relative;
  max-width: 687px;
  width: 90%;
  border-radius: 10px;
  padding: 30px;
  padding-top: 60px;
  padding-bottom: 60px;
  background: #fff;
  border-radius: 4px;
}

.modal-overlay .modal-content .text {
  color: #000000;
  font-size: 25px;
  font-weight: 700;
  line-height: 22px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 50px;
}

.modal-overlay .modal-content .text1 {
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
}

.modal-overlay input[type='text'],
.modal-overlay input[type='tel'],
.modal-overlay input[type='email'],
textarea {
  width: 100%;
  height: 50px;
  border-radius: 25px;
  border: 1px solid #fed58f;
  background-color: #ffffff;
  color: #000000;
  font-size: 18px;
  font-weight: 300;
  padding-left: 26px;
  outline: none;
  margin-top: 5px;
}

.modal-overlay input[type='text'] {
  background: url(img/name-label.png) 95% 50% no-repeat;
}

.modal-overlay input[type='tel'] {
  background: url(img/phone-label.png) 95% 50% no-repeat;
}

.modal-overlay input[type='email'] {
  background: url(img/mail-label.png) 95% 50% no-repeat;
}

.modal-overlay span.wpcf7-not-valid-tip {
  text-align: right;
}

.modal-overlay div.wpcf7-response-output {
  border-radius: 10px;
  padding: 20px;
}

input::-webkit-input-placeholder {
  color: #dadada;
}

input::-moz-placeholder {
  color: #dadada;
}

.modal-overlay label {
  color: #000000;
  font-size: 12px;
  font-weight: 700;
  padding-bottom: 5px;
  display: inline-block;
  width: 100%;
  margin-bottom: 22px;
}

.modal-overlay textarea {
  padding-top: 10px;
  font-size: 14px;
  height: 100px;
}

.modal-overlay input[type='submit'] {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  line-height: 22px;
  text-transform: uppercase;
  width: 240px;
  height: 50px;
  border-radius: 25px;
  border: 2px solid #f6515f;
  background-color: #ef4957;
  margin: 0 auto;
  margin-top: 10px;
  display: block;
  outline: none;
}

.modal-overlay .modal-content .contact-form {
  margin: 0 auto;
  width: 400px;
}

.modal-overlay .modal-content .contact-form2 {
  display: none;
}

.modal-contact__nav {
  width: 342px;
  margin: 0 auto 15px;
}

.modal-contact__nav label {
  text-align: center;
}

.modal-overlay .modal-content .buttons {
  display: flex;
  justify-content: center;
  text-align: center;
}

.modal-overlay .modal-content .button {
  background-color: transparent;
  /* color: #f6515f; */
  font-size: 15px;
  font-weight: 400;
  line-height: 46px;
  text-transform: uppercase;
  width: 50%;
  height: 50px;
  transition: 0.2s linear;
  text-align: center;
  border: 2px solid #f6515f;
  cursor: pointer;
}

.modal-overlay .modal-content .button1 {
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
}

.modal-overlay .modal-content .button2 {
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  margin-left: -3px;
}

.modal-overlay .modal-content .button:hover,
.modal-overlay .modal-content .button.active {
  background-color: #f6515f;
  color: #ffffff;
}

.modal-overlay .modal-content .button.active {
  cursor: default;
}


.modal-overlay .close-button {
  position: absolute;
  width: 30px;
  height: 30px;
  background: url(img/close-button.png) 50% 50% / contain no-repeat;
  top: 20px;
  right: 20px;
  padding: 0px 14px;
  padding-top: 4px;
  cursor: pointer;
  transition: 0.2s linear;
}

.modal-overlay .close-button .one {
  height: 50px;
  width: 2px;
  background-color: #fff;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transition: 0.2s linear;
}

.modal-overlay .close-button .two {
  margin-top: -50px;
  height: 50px;
  width: 2px;
  background-color: #fff;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transition: 0.2s linear;
}

.modal-overlay .close-button:hover .one {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transition: 0.2s linear;
  background-color: #000;
}

.modal-overlay .close-button:hover .two {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transition: 0.2s linear;
  background-color: #000;
}

/*Параметры контейнера */
.countdownHolder {
  width: 450px;
  margin: 0 auto;
  font: 30px/1.5 Roboto, sans-serif;
  text-align: center;
  letter-spacing: -3px;
  /*Параметры цифр */
  /*Параметры подложки для секций */
  /*Параметры секций разделения (:)*/
  /*Параметры вспомогательного текста (дни, часы, минуты, секунды)*/
}

.countdownHolder .position {
  display: inline-block;
  height: 1.7em;
  overflow: hidden;
  position: relative;
  width: 0.55em;
}

.countdownHolder .digit {
  position: absolute;
  display: block;
  width: 0.5em;
  border-radius: 0.2em;
  text-align: center;
  color: #000;
  letter-spacing: -1px;
}

.countdownHolder .digit.static {
  margin-top: 18px;
}

.countdownHolder .coundDays,
.countdownHolder .countHours,
.countdownHolder .countMinutes,
.countdownHolder .countSeconds {
  background: #fff;
  border-radius: 5px;
  padding: 10px 20px;
  margin: 5px;
}

.countdownHolder .countDiv {
  display: none;
  width: 16px;
  height: 1.6em;
  position: relative;
}

.countdownHolder .countDiv:before,
.countdownHolder .countDiv:after {
  position: absolute;
  width: 5px;
  height: 5px;
  background-color: #444;
  border-radius: 50%;
  left: 50%;
  margin-left: -3px;
  top: 0.5em;
  box-shadow: 1px 1px 1px rgba(4, 4, 4, 0.5);
  content: '';
}

.countdownHolder .countDiv:after {
  top: 0.9em;
}

.countdownHolder .textdigit {
  font-size: 15px;
  font-family: Roboto;
  letter-spacing: 0px;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-display: fallback;
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir="rtl"] .slick-prev {
  left: auto;
  right: -25px;
}

.slick-prev:before {
  content: "←";
}

[dir="rtl"] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}

[dir="rtl"] .slick-next {
  left: -25px;
  right: auto;
}

.slick-next:before {
  content: "→";
}

[dir="rtl"] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.subm {
  cursor: pointer;
  border: none;
  display: block;
  margin: 0 auto;
  transition: all 0.3s linear;
}

.subm:hover,
.subm:focus {
  -ms-transform: scale(1.02);
  transform: scale(1.02);
}

form.standart-form {
  max-width: 400px;
  text-align: center;
}

form.standart-form .part {
  margin: 0 auto;
  display: inline-block;
  min-width: 300px;
}

form.standart-form .label {
  text-align: left;
  color: #000;
  font-family: Roboto;
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
}

form.standart-form input.name,
form.standart-form input.email,
form.standart-form input.phone {
  width: 300px;
  max-width: 300px;
  height: 45px;
  background-color: #fff;
  border: 1px solid #dcdcdc;
  border-radius: 3px;
  padding-left: 15px;
  font-family: Roboto;
  font-weight: 400;
  font-size: 16px;
  line-height: 45px;
  margin-bottom: 15px;
  display: block;
}

.container {
  width: 1280px;
}

/*section {
  overflow: hidden; }*/

.slider-news {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  width: 100%;
  min-height: 415px;
  margin-top: 50px;
}

.slider-news .slide,
.blog-news .slide {
  display: -ms-flexbox;
  display: flex;
  outline: none !important;
}

.slider-news .card-new,
.blog-news .card-new {
  margin: auto;
  width: 330px;
  height: 405px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  transition: 0.2s linear;
}

.slider-news .image-wrap,
.blog-news .image-wrap {
  width: 100%;
  height: 255px;
  overflow: hidden;
  transition: 0.2s linear;
}

.slider-news .image,
.blog-news .image {
  width: 100%;
  height: 100%;
  transition: 0.2s linear;
}

.slider-news .slide1 .image,
.blog-news .slide1 .image {
  background: transparent url("img/blog1.png") 50% 50%/cover no-repeat;
}

.slider-news .card-new:hover .image,
.blog-news .card-new:hover .image {
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.slider-news .card-new:hover .image-wrap,
.blog-news .card-new:hover .image-wrap {
  height: 200px;
}

.slider-news .card-new:hover,
.blog-news .card-new:hover {
  background-color: #f6515f;
}

.slider-news .card-new:hover .headtext,
.blog-news .card-new:hover .headtext {
  color: #fff;
}

.slider-news .card-new:hover .desc,
.blog-news .card-new:hover .desc {
  opacity: 1;
}

.slider-news .rubrick,
.blog-news .rubrick {
  position: relative;
  display: inline-block;
  vertical-align: top;
  text-align: center;
  margin-top: -10px;
  padding: 0px 10px;
  color: #000000;
  font-size: 11px;
  font-weight: 700;
  line-height: 22px;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.08);
  border-radius: 2px;
  background-color: #5fbbde;
}

.slider-news .pro_rabotu .rubrick,
.blog-news .pro_rabotu .rubrick {
  background-color: #66ae4a;
}

.slider-news .video_content .rubrick,
.blog-news .video_content .rubrick {
  background-color: #fdd087;
}

.slider-news .headtext,
.blog-news .headtext {
  color: #292f33;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  margin-top: 20px;
  padding-right: 30px;
  padding-left: 30px;
  transition: 0.2s linear;
}

.slider-news .desc,
.blog-news .desc {
  color: #fff;
  margin-top: 10px;
  opacity: 0;
  transition: 0.2s linear;
}

.arrowback {
  display: inline-block;
  vertical-align: top;
  color: #f6515f;
  font-size: 15px;
  font-weight: 700;
  line-height: 22px;
  text-transform: uppercase;
  margin-top: 60px;
}

.arrowback span {
  display: inline-block;
  vertical-align: top;
  margin-top: -5px;
  margin-right: 10px;
  width: 49px;
  height: 32px;
  background: transparent url("img/arrowback.png") left top no-repeat;
}

.button3 {
  display: block;
  text-align: center;
  color: #f6515f;
  font-size: 15px;
  font-weight: 700;
  line-height: 46px;
  text-transform: uppercase;
  width: 313px;
  height: 50px;
  border-radius: 25px;
  border: 2px solid #f6515f;
  transition: 0.2s linear;
}

.button3:hover {
  color: #fff;
  background: #f6515f;
}

.button4 {
  display: block;
  text-align: center;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 46px;
  text-transform: uppercase;
  width: 313px;
  height: 50px;
  border-radius: 25px;
  border: 2px solid #f6515f;
  transition: 0.2s linear;
  background: #f6515f;
}

.button4:hover {
  color: #f6515f;
  background: transparent;
}

.triangle {
  position: relative;
  padding-top: 100px;
  padding-bottom: 200px;
  background: linear-gradient(to bottom, #fff8c4 0%, #fece84 89%, #fece84 100%);
}

.triangle:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 150px;
  border: 150px solid transparent;
  border-top: 0px solid transparent;
  border-left: 0px solid transparent;
  border-right: 110vw solid #fff;
}

.triangle:after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 150px;
  border: 150px solid transparent;
  border-bottom: 0px solid transparent;
  border-right: 0px solid transparent;
  border-left: 110vw solid #fff;
}

.main-header {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  padding-top: 40px;
  transition: 0.2s linear;
}

.main-header .burger-button {
  width: 22px;
  height: 22px;
  cursor: pointer;
  display: none;
}

.main-header .burger-button .line {
  width: 100%;
  height: 3px;
  transition: 0.2s linear;
  margin-bottom: 5px;
  background: #000;
}

.main-header .burger-button .line:last-child {
  margin-bottom: 0;
}

.main-header .burger-button.active .line1 {
  transform: rotate(45deg);
  margin-top: 7px;
}

.main-header .burger-button.active .line3 {
  transform: rotate(-45deg);
  margin-top: -7px;
}

.main-header .burger-button.active .line2 {
  display: none;
}

.main-header .find-buttons {
  display: none;
}

.main-header .fbutton {
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
  line-height: 46px;
  text-transform: uppercase;
  width: 170px;
  height: 50px;
  transition: 0.2s linear;
  background-color: #f6515f;
  text-align: center;
  border: 2px solid #f6515f;
  cursor: pointer;
}

.main-header .fbutton1 {
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
}

.main-header .fbutton2 {
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  margin-left: -3px;
}

.main-header .fbutton:hover {
  background-color: transparent;
  color: #f6515f;
}

.main-header .logo {
  width: 230px;
  height: 107px;
  /*background: transparent url("img/svg/logo1.svg") left top no-repeat;*/
  transition: 0.2s linear;
}

.main-header .links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: 70px;
}

.main-header .link {
  color: #fffefe;
  font-size: 14px;
  font-weight: 700;
  line-height: 22px;
  text-transform: uppercase;
  position: relative;
  margin: 0px 15px;
  transition: 0.2s linear;
  cursor: pointer;
}

.main-header .link0 {
  display: none;
}

.main-header .link:after {
  content: '';
  position: absolute;
  bottom: -10px;
  width: 80%;
  height: 3px;
  background-color: transparent;
  left: 0px;
  right: 0px;
  margin: 0 auto;
  transition: 0.2s linear;
}

.main-header .link.active:after {
  background-color: #d2492a;
}

.main-header .button2 {
  color: #fffefe;
  font-family: "Noto Sans";
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  width: 200px;
  height: 50px;
  border-radius: 25px;
  background-color: rgba(250, 250, 248, 0.41);
  text-align: center;
  line-height: 50px;
  display: block;
  transition: 0.2s linear;
}

.main-header .button2:hover {
  background: rgba(246, 81, 95, 1);
}

.main-header.fix {
  height: 80px;
  z-index: 99999;
  position: fixed;
  background-color: #fae9cd;
  box-shadow: 0 6px 20px 4px rgba(0, 1, 5, 0.21);
  padding-top: 0;
}

.main-header.fix .container {
  position: relative;
}

.main-header.fix .logo {
  width: 140px;
  height: 62px;
  position: relative;
  /*background: url(img/svg/logo3.svg) 0% 50% / contain no-repeat;*/
  z-index: 99;
  margin-left: -55px;
  background-size: contain;
}

.main-header.fix .links {
  padding-top: 19px;
}

.main-header.fix .button2 {
  border: 2px solid #f6515f;
  color: #f6515f;
  background: transparent;
  line-height: 46px;
}

.main-header.fix .button2:hover {
  background: rgba(246, 81, 95, 1);
  color: #fff;
}

.main-header.fix .links {
  display: none;
  position: absolute;
  left: 0px;
  top: -10px;
  margin-left: -30px;
  width: 300px;
  padding: 50px;
  padding-top: 130px;
  background: #fff;
  box-shadow: 0 6px 20px 4px rgba(0, 1, 5, 0.21);
}

.main-header.fix .link {
  color: #000;
  margin: 0 25px;
  margin-bottom: 20px;
}

.main-header.fix .burger-button {
  flex-shrink: 0;
  display: inline-block;
  position: relative;
  z-index: 101;
}

.main-header.fix .find-buttons {
  display: inline-block;
}

.main-header.fix.adminbar {
  top: 32px;
}

.page26 .main-header.fix .fbutton1 {
  background: transparent;
  color: #f6515f;
  text-decoration: underline;
}

.page22 .main-header.fix .fbutton2 {
  background: transparent;
  color: #f6515f;
  text-decoration: underline;
}

.sec1 {
  height: 540px;
  background: transparent url("img/bg1.webp") 50% 60% / cover no-repeat;
  margin-top: -20px;

}

.sec1 .home-title {
  width: 410px;
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  line-height: 49px;
  margin-top: 170px;
}

.sec1 .text {
  width: 420px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.04px;
  margin-top: 55px;
}

.sec1 .home-list {
  width: 420px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.04px;
  margin-left: 30px;

}

.sec1 .home-list li::before {
  content: "\2022";
  color: white;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.sec1 .arrowup {
  display: block;
  color: #f6515f;
  font-size: 13px;
  font-weight: 700;
  line-height: 22px;
  text-transform: uppercase;
  margin-top: 30px;
}

.sec1 .arrowup .arrow {
  margin-left: 10px;
  margin-top: -14px;
  width: 32px;
  height: 49px;
  background: transparent url("img/arrowtop.png") left top no-repeat;
  transform: rotate(90deg);
}


.sec2 {
  background-color: rgba(254, 213, 143, 0.4);
  padding-top: 30px;
  padding-bottom: 30px;
}

.sec2 .text {
  text-align: center;
  color: #000000;
  font-size: 20px;
  font-weight: 700;
  line-height: 22px;
  text-transform: uppercase;
}

.sec2 .buttons {
  text-align: center;
  margin-top: 10px;
}

.sec2 .button {
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
  line-height: 46px;
  text-transform: uppercase;
  width: 170px;
  height: 50px;
  transition: 0.2s linear;
  background-color: #f6515f;
  text-align: center;
  border: 2px solid #f6515f;
}

.sec2 .button1 {
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
}

.sec2 .button2 {
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  margin-left: -3px;
}

.sec2 .button:hover {
  background-color: transparent;
  color: #f6515f;
}

.sec3 {
  padding-top: 65px;
}

.sec3 .text {
  text-align: center;
  color: #000000;
  font-size: 50px;
  font-weight: 700;
  line-height: 98px;
}

.sec3 .text1 {
  text-align: center;
  margin: 0 auto;
  width: 791px;
  color: #010101;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  margin-top: 20px;
}

.sec3 .text1 span {
  color: #f6515f;
}

.sec3 .button3 {
  margin: 0 auto;
  margin-top: 50px;
}

.sec4 .text {
  color: #000000;
  font-size: 50px;
  font-weight: 700;
  line-height: 98px;
}

.sec4 .buttons {
  margin-top: 10px;
}

.sec4 .button {
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
  line-height: 46px;
  text-transform: uppercase;
  width: 240px;
  height: 50px;
  transition: 0.2s linear;
  cursor: pointer;
  background-color: #f6515f;
  text-align: center;
  border: 2px solid #f6515f;
}

.sec4 .button1 {
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
}

.sec4 .button2 {
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  margin-left: -3px;
}

.sec4 .button:hover {
  background-color: transparent;
  color: #f6515f;
}

.sec4 .button.active {
  background: transparent;
  color: #f6515f;
  text-decoration: underline;
}

.sec4 .text1 {
  margin-top: 40px;
  width: 647px;
  color: #000000;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

.sec4 .text1 a {
  color: #d2492a;
  font-weight: 700;
}

.sec4 .text1 b {
  font-weight: 700;
}

.sec4 .text1 span {
  color: #d2492a;
  font-weight: 700;
}

.sec4 .text1 .center {
  text-align: center;
  display: block;
}

.sec4 .content {
  min-height: 544px;
}

.sec4 .content2 {
  display: none;
}

.sec4 .image {
  width: 479px;
  height: 504px;
  margin-left: 100px;
  opacity: 0.7;
  background: transparent url("img/image4.png") left top no-repeat;
  margin-right: -100px;
  margin-top: 0px;
}

.sec5 .text {
  text-align: center;
  color: #000000;
  font-size: 50px;
  font-weight: 700;
  margin-top: -30px;
  line-height: 98px;
}

.sec5 .text1 {
  text-align: center;
  margin: 0 auto;
  width: 627px;
  height: 138px;
  color: #000000;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  margin-top: 0px;
}

.sec5 .text1 span {
  color: #d2492a;
  font-weight: 700;
}

.sec5 .blocks {
  text-align: center;
  margin-top: 0px;
}

.sec5 .block {
  width: 360px;
  margin: 20px;
  padding-top: 200px;
  text-align: left;
}

.sec5 .block1 {
  margin-left: 0;
  background: transparent url("img/svg/a.svg") 50% 10% / 55% no-repeat;
}

.sec5 .block2 {
  background: transparent url("img/svg/b.svg") 50% 50px / 80% no-repeat;
}

.sec5 .block3 {
  background: transparent url("img/svg/c.svg") 50% 50px / 80% no-repeat;
  margin-right: 0;
}

.sec5 .text2 {
  color: #ef4957;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

.sec5 .text3 {
  color: #ef4957;
  font-size: 64px;
  font-weight: 700;
  line-height: 50px;
  padding-bottom: 10px;
  border-bottom: 2px solid #eed6a5;
  margin-top: 15px;
}

.sec5 .text4 {
  text-align: right;
  color: #ef4957;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  margin-top: 15px;
}

.sec5 .text5 {
  width: 170px;
  color: #000000;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: -0.34px;
  margin-top: 35px;
  margin-left: 20px;
}

.sec6 .texts {
  width: 580px;
}

.sec6 .text {
  color: #000000;
  font-size: 50px;
  font-weight: 700;
  line-height: 98px;
}

.sec6 .text1 {
  color: #010101;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  margin-top: 60px;
}

.sec6 .text1 span {
  color: #f6515f;
}

.sec6 .button3 {
  margin-top: 60px;
}

.sec6 .image {
  margin-top: -50px;
  margin-bottom: -100px;
  margin-left: 100px;
  width: 446px;
  height: 519px;
  opacity: 0.7;
  background: transparent url("img/svg/bag.svg") left top no-repeat;
}

.sec7 .text {
  color: #000000;
  font-size: 50px;
  font-weight: 700;
  margin-top: -30px;
  line-height: 98px;
}

.sec7 .slider-partners {
  text-align: center;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}

.slick-slide {
  outline: none !important;
}


/*.sec7 .logo1 {
  background: transparent url("img/partner1.png") 50% 50% no-repeat; }
  .sec7 .logo2 {
  background: transparent url("img/partner2.png") 50% 50% no-repeat; }
  .sec7 .logo3 {
  background: transparent url("img/partner3.png") 50% 50% no-repeat; }
  .sec7 .logo4 {
  background: transparent url("img/partner4.png") 50% 50% no-repeat; }
  .sec7 .logo5 {
  background: transparent url("img/partner5.jpg") 50% 50% no-repeat; }
  .sec7 .logo6 {
  background: transparent url("img/logo-h2.png") 50% 50% no-repeat; }*/
.sec7 .logo {
  display: flex;
  margin: 0 auto;
  width: 100%;
  height: 110px;
  background-size: contain
}

.sec7 .logo img {
  max-width: 100%;
  max-height: 100%;
  margin: auto;
}

.sec8 {
  padding-bottom: 80px;
}

.sec8 .text {
  color: #000000;
  font-size: 50px;
  font-weight: 700;
  line-height: 98px;
  margin-left: 20px;
}

.sec8 .button3 {
  margin-left: 20px;
}

.sec8:after {
  display: none;
}

.sec9 {
  height: 80px;
  background-color: #fae9cd;
}

.sec10 {
  background-image: linear-gradient(-189deg, #fff8c4 0%, #fece84 89%, #fece84 100%);
}

.sec10 .wrapper-bg {
  width: 100%;
  padding-top: 150px;
  background: transparent url("img/bg-agent.png") top / contain no-repeat;
}

.sec10 .block {
  width: 907px;
  box-shadow: 0 6px 20px 4px rgba(0, 1, 5, 0.15);
  background-color: #ffffff;
  margin: 0 auto;
  padding: 50px;
  text-align: center;
  margin-bottom: 40px;
}

.sec10 .redline1 {
  width: 67px;
  height: 2px;
  background-color: #f6515f;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 60px;
}

.sec10 .text {
  color: #000000;
  font-size: 35px;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 0;
}

.sec10 .text1 {
  margin-top: 30px;
  color: #010101;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}

.sec10 .text1 span {
  color: #f6515f;
}

.sec10 .footnote {
  text-align: left;
  width: 1101px;
  height: 313px;
  box-shadow: 0 0 21px rgba(110, 110, 110, 0.15);
  border-radius: 10px;
  background-color: rgba(254, 213, 143, 0.4);
  background-color: #ffeed2;
  margin-left: -135px;
  margin-top: 40px;
  margin-bottom: 40px;
  overflow: hidden;
}

.sec10 .image {
  width: 313px;
  height: 313px;
  background: transparent url("img/direktor.png") left top no-repeat;
}

.sec10 .texts {
  width: 690px;
  margin-left: 70px;
  padding-top: 30px;
}

.sec10 .text2 {
  color: #000000;
  font-size: 25px;
  font-weight: 700;
  text-transform: uppercase;
}

.sec10 .text3 {
  color: #000000;
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  margin-top: 5px;
}

.sec10 .redline {
  width: 158px;
  height: 3px;
  background-color: #f6515f;
  margin-top: 15px;
}

.sec10 .text4 {
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  margin-top: 20px;
}

.sec10 .text4 b {
  font-weight: 700;
}

.sec10 .text6 h3 {
  color: #000000;
  font-size: 50px;
  font-weight: 700;
  line-height: 98px;
}

.sec10 .text6 {
  color: #010101;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  margin-top: 40px;
}

.sec10 .text6 span {
  color: #f6515f;
}

.sec10 .button4 {
  margin: 0 auto;
  width: 200px;
  height: 50px;
  margin-bottom: 50px;
}

.sec11 {
  height: 80px;
  background-color: #fae9cd;
}

.sec12 {
  background-image: linear-gradient(-189deg, #fff8c4 0%, #fece84 89%, #fece84 100%);
}

.sec12 .wrapper-bg {
  width: 100%;
  padding-top: 150px;
  background: transparent url("img/bg-naiti.png") top / contain no-repeat;
}

.sec12 .block {
  width: 907px;
  box-shadow: 0 6px 20px 4px rgba(0, 1, 5, 0.15);
  background-color: #ffffff;
  margin: 0 auto;
  padding: 50px 0px;
  text-align: center;
  margin-bottom: 40px;
}

.sec12 .text {
  color: #000000;
  font-size: 35px;
  font-weight: 700;
}

.sec12 .text1 {
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  margin-top: 40px;
  padding-left: 50px;
  padding-right: 50px;
}

.sec12 .text1 span {
  color: #f6515f;
}

.sec12 .parts {
  text-align: center;
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  margin-top: 35px;
}

.sec12 .part {
  width: 34%;
  position: relative;
  height: 280px;
  cursor: pointer;
  overflow: hidden;
}

.sec12 .part p {
  width: 100%;
  height: 100%;
  padding-top: 120px;
  background: rgba(255, 255, 255, 0.2);
  color: #000000;
  font-size: 45px;
  font-weight: 700;
  line-height: 27.82px;
  text-shadow: 0px 0px 40px rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1.78px;
}


.sec12 .image {
  width: 100%;
  height: 100%;
  filter: grayscale(1);
  padding-top: 1px;
  transition: 0.2s linear;
}

.sec12 .part1 .image {
  background: transparent url("img/dom00.png") 50% 50%/cover no-repeat;
}

.sec12 .part2 .image {
  background: transparent url("img/deti00.png") 50% 50%/cover no-repeat;
}

.sec12 .part3 .image {
  background: transparent url("img/zabota00.png") 50% 50%/cover no-repeat;
}

.sec12 .part:hover .image {
  -ms-transform: scale(1.1);
  filter: grayscale(0);
  transform: scale(1.1);
}

.sec12 .links {
  text-align: left;
  padding-top: 30px;
  width: 100%;
  min-height: 185px;
  background-color: #ffeed2;
  background-image: linear-gradient(to bottom, #fed188 0%, #fed188 1%, #ffffff 100%);
}

.sec12 .links2,
.sec12 .links3 {
  display: none;
}

.sec12 .part.active .image {
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  filter: grayscale(0);
}

.sec12 .part.active:after {
  content: '';
  width: 30px;
  position: absolute;
  left: 0px;
  bottom: 0px;
  right: 0px;
  margin: 0 auto;
  border: 30px solid transparent;
  border-bottom: 30px solid #fed188;
}

.sec12 .link {
  width: 290px;
  /*height: 70px;*/
  padding-top: 20px;
  padding-left: 80px;
  text-align: left;
}

.sec12 .link a {
  color: #000000;
  font-size: 20px;
  font-weight: 400;
  transition: 0.2s linear;
  line-height: 22px;
  letter-spacing: 1px;
  position: relative;
}

.sec12 .link a:hover {
  color: #f6515f;
}

.sec12 .link a:before {
  position: absolute;
  content: '';
  top: 2px;
  left: -40px;
  width: 23px;
  height: 23px;
  background: transparent url("img/arrow1.png") left top no-repeat;
}

.sec13 {
  height: 80px;
  background-color: #fae9cd;
}

.sec14 {
  background-image: linear-gradient(-189deg, #fff8c4 0%, #fece84 89%, #fece84 100%);
}

.sec14 .wrapper-bg {
  width: 100%;
  padding-top: 250px;
  background: transparent url("img/uslugi-nanny.png") top / contain no-repeat;
}

.sec14 .block {
  width: 907px;
  box-shadow: 0 6px 20px 4px rgba(0, 1, 5, 0.15);
  background-color: #ffffff;
  margin: 0 auto;
  padding: 20px 0px;
  padding-bottom: 50px;
  text-align: center;
  margin-bottom: 40px;
}

.sec14 .breadcrumbs {
  padding-left: 20px;
  text-align: left;
  color: #c5c5c5;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
}

.sec14 .title {
  color: #000000;
  font-size: 35px;
  font-weight: 700;
  margin-top: 40px;
}

.sec14 .text1 {
  color: #000000;
  font-size: 14px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: .45px;
  margin-top: 20px;
  padding-left: 50px;
  padding-right: 50px;
}

.sec14 .bullits {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: .45px;
  margin-top: 20px;
  padding-left: 50px;
  padding-right: 50px;
}

.sec14 .text1 span {
  color: #f6515f;
}

.sec14 .redline {
  width: 67px;
  height: 2px;
  background-color: #f6515f;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 60px;
}

.sec14 .footnote {
  width: 1101px;
  box-shadow: 0 0 21px rgba(110, 110, 110, 0.15);
  border-radius: 10px;
  background-color: #ffeed2;
  margin-left: -135px;
  margin-top: 30px;
  margin-bottom: 30px;
  overflow: hidden;
}

.sec14 .parts-clock {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.sec14 .parts-clock .part {
  height: 150px;
}

.sec14 .parts-clock .part1 {
  background: transparent url("img/hour.png") 50% 50% no-repeat;
}

.sec14 .parts-clock .part2 {
  background: transparent url("img/workday.png") 50% 50% no-repeat;
}

.sec14 .parts-clock .part3 {
  background: transparent url("img/day.png") 50% 50% no-repeat;
}

.sec14 .parts-clock .part4 {
  background: transparent url("img/month.png") 50% 20% no-repeat;
}

.sec14 .parts {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  background: #fff;
  padding-top: 25px;
  padding-bottom: 25px;
}

.sec14 .part {
  width: 25%;
  margin: auto;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.sec14 .part .redline {
  margin-top: 20px;
  margin-bottom: 20px;
  width: 27px;
}

.sec14 .time {
  color: #000000;
  font-size: 25px;
  font-weight: 700;
  line-height: 22px;
  text-transform: uppercase;
  letter-spacing: 0.63px;
}

.sec14 .price {
  color: #000000;
  font-size: 19px;
  font-weight: 400;
  line-height: 27px;
}

.sec14 .price b {
  font-size: 25px;
  font-weight: 700;
}

.sec14 .text2 {
  color: #000000;
  font-size: 25px;
  font-weight: 700;
  line-height: 98px;
  text-transform: uppercase;
}

.sec14 .text4 {
  color: #000000;
  font-size: 35px;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: 0.88px;
  text-align: left;
  padding-left: 80px;
  margin-bottom: 50px;
}

/*.sec14 .bullits{
    margin-left: 80px;
  }*/
.sec14 .bullits li {
  text-align: left;
  color: #000000;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0.45px;
  position: relative;
  margin-bottom: 15px;
  margin-left: 40px;
}

.sec14 .bullits li:before {
  position: absolute;
  content: '';
  width: 23px;
  height: 23px;
  background: transparent url("img/arrow2.png") left top no-repeat;
  top: 0px;
  left: -40px;
}

.sec14 .button4 {
  margin: 0 auto;
  margin-bottom: 50px;
}

.sec14 .breadcrumbs {
  position: absolute;
  top: 15px;
  left: 15px;
}

.sec14 .text1 {
  padding-left: 0;
  padding-right: 0;
}

.sec14 .bullits h2 {
  font-size: 20px;
  color: #f6515f;
  text-align: left;
  margin-bottom: 25px;
}

.sec15 {
  height: 80px;
  background-color: #fae9cd;
}

.sec16 {
  background-image: linear-gradient(-189deg, #fff8c4 0%, #fece84 89%, #fece84 100%);
}

.sec16 .wrapper-bg {
  width: 100%;
  padding-top: 150px;
  background: transparent url("img/bg-rep.png") top / contain no-repeat;
}

.sec16 .wrapper-bg.video_content {
  background: transparent url("img/raznoe.png") top / contain no-repeat;
}

.sec16 .wrapper-bg.pro_rabotu {
  background: transparent url("img/rabota.png") top / contain no-repeat;
}

.sec16 .wrapper-bg.pro_personal {
  background: transparent url("img/personal.webp") top / contain no-repeat;
}

.sec16 .block {
  width: 907px;
  box-shadow: 0 6px 20px 4px rgba(0, 1, 5, 0.15);
  background-color: #ffffff;
  margin: 0 auto;
  padding: 20px 0px;
  padding-bottom: 50px;
  text-align: center;
  margin-bottom: 40px;
}

.sec16 .breadcrumbs {
  padding-left: 20px;
  text-align: left;
  color: #c5c5c5;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
}

.sec16 .title {
  color: #000000;
  font-size: 35px;
  font-weight: 700;
  margin-top: 40px;
}

.sec16 .text1 {
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  margin-top: 40px;
  padding-left: 50px;
  padding-right: 50px;
}

.sec16 .text1 span {
  color: #f6515f;
}

.sec16 .redline {
  width: 67px;
  height: 2px;
  background-color: #f6515f;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 60px;
}

.sec16 .footnote {
  text-align: left;
  width: 1101px;
  box-shadow: 0 0 21px rgba(110, 110, 110, 0.15);
  border-radius: 10px;
  background-color: #ffeed2;
  margin-left: -135px;
  margin-top: 70px;
  margin-bottom: 70px;
  overflow: hidden;
}

.sec16 .image {
  width: 432px;
  height: 313px;
  background: transparent url("img/teacher.webp") left top no-repeat;
}

.sec16 .text2 {
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}

.sec16 .text2 b {
  font-weight: 700;
}

.sec16 .texts {
  padding-top: 35px;
  text-align: left;
  width: 550px;
  margin-left: 70px;
}

.sec16 .text4 {
  color: #000000;
  font-size: 35px;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: 0.88px;
  text-align: left;
  padding-left: 80px;
  margin-bottom: 50px;
}

.sec16 .bullit {
  text-align: left;
  color: #000000;
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0.45px;
  position: relative;
  margin-bottom: 25px;
  margin-left: 120px;
}

.sec16 .bullit:before {
  position: absolute;
  content: '';
  width: 23px;
  height: 23px;
  background: transparent url("img/arrow2.png") left top no-repeat;
  top: 0px;
  left: -40px;
}

.sec16 .button3 {
  margin: 0 auto;
  margin-top: 40px;
}

.sec16 .button4 {
  margin: 0 auto;
  margin-bottom: 50px;
}

.sec16 .breadcrumbs {
  position: absolute;
  top: 15px;
  left: 15px;
}

.sec16 .text1 {
  margin-top: 20px;
  padding-left: 0;
  padding-right: 0;
}

.sec16 .block-likes {
  padding-top: 30px;
}

.sec17 {
  height: 80px;
  background-color: #fae9cd;
}

.sec18 {
  background-image: linear-gradient(-189deg, #fff8c4 0%, #fece84 89%, #fece84 100%);
}

.sec18 .wrapper-bg {
  width: 100%;
  padding-top: 150px;
  background: transparent url("img/resume.png") top / contain no-repeat;
}

.sec18 .header-resume {
  text-align: left;
  border-bottom: 2px solid #dadada;
  padding-bottom: 20px;
}

.sec18 .block {
  position: relative;
  padding: 60px;
  width: 907px;
  box-shadow: 0 6px 20px 4px rgba(0, 1, 5, 0.15);
  background-color: #ffffff;
  margin: 0 auto;
  text-align: center;
  padding-top: 105px;
  margin-bottom: 70px;
}

.sec18 .breadcrumbs {
  position: absolute;
  top: 15px;
  left: 15px;
  padding-left: 20px;
  margin-bottom: 40px;
  text-align: left;
  color: #c5c5c5;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
}

.sec18 .image-wrap {
  width: 178px;
  height: 178px;
  border-radius: 50%;
  border: 3px solid #fedc9c;
  padding: 5px;
}

.sec18 .image {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  background: transparent url("img/resume-photo.png") 50% 50%/cover no-repeat;
}

.sec18 .info {
  max-width: 500px;
  margin-left: 50px;
}

.sec18 .name {
  color: #000000;
  font-size: 30px;
  font-weight: 700;
  line-height: 30px;
  text-transform: uppercase;
}

.sec18 .work {
  color: #000000;
  font-size: 20px;
  font-weight: 400;
  line-height: 22px;
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 50px;
}

.sec18 .title-vac {
  color: #000;
  font-size: 18px;
  font-weight: 700;
  line-height: 21.99px;
  text-transform: uppercase;
  padding-top: 15px;
  padding-bottom: 15px;
  margin-top: 15px;
  border-top: 2px solid #dadada;
}

.sec18 .title-vac:first-child {
  border: none;
  padding-top: 0;
  margin-top: 0;
}

.sec18 .zp {
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  color: #f6515f;
  margin-bottom: 15px;
}

.sec18 .zp span {
  color: #000;
  text-transform: none;
}

.sec18 .content-resume {
  text-align: left;
  padding: 50px;
  padding-top: 20px;
  padding-bottom: 10px;
}

.sec18 .content-resume p,
.sec18 .content-resume td {
  color: #000200;
  font-size: 15px;
  font-weight: 400;
  box-sizing: border-box;
  line-height: 23px;
}

.sec18 .content-resume td {
  /*  padding: 20px 0px;*/
  padding-right: 40px;
}

.sec18 .content-resume td p {
  margin-top: 10px;
  margin-bottom: 10px;
}

.sec18 .text2 {
  color: #f5a219;
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  margin-top: 20px;
}

.sec18 .text2 span {
  display: block;
  text-transform: none;
  color: #000000;
}

.sec18 .button3 {
  width: 200px;
  height: 50px;
  margin: 0 auto;
  margin-top: 30px;
}

.sec19 {
  height: 80px;
  background-color: #fae9cd;
}

.sec20 {
  background-image: linear-gradient(-189deg, #fff8c4 0%, #fece84 89%, #fece84 100%);
}

.sec20 .wrapper-bg {
  width: 100%;
  padding-top: 150px;
  background: transparent url("img/bg-vakansii.png") top / contain no-repeat;
}

.sec20 .breadcrumbs {
  position: absolute;
  top: 15px;
  left: 15px;
  padding-left: 20px;
  margin-bottom: 40px;
  text-align: left;
  color: #c5c5c5;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
}

.sec20 .header-resume {
  text-align: left;
  border-bottom: 2px solid #dadada;
  padding-bottom: 20px;
}

.sec20 .block {
  position: relative;
  padding: 60px;
  width: 907px;
  box-shadow: 0 6px 20px 4px rgba(0, 1, 5, 0.15);
  background-color: #ffffff;
  margin: 0 auto;
  text-align: center;
  padding-top: 85px;
  margin-bottom: 70px;
}

.sec20 .image-wrap {
  width: 178px;
  height: 178px;
  border-bottom: 2px solid #f6515f;
  padding: 5px;
}

.sec20 .image {
  width: 100%;
  height: 100%;
  background: transparent url("img/location.png") 50% 10% no-repeat;
  text-align: center;
  padding-top: 80px;
}

.sec20 .image p {
  color: #000000;
  font-size: 22px;
  font-weight: 700;
}

.sec20 .info {
  margin-left: 50px;
  width: 500px;
}

.sec20 .name {
  color: #000000;
  font-size: 30px;
  font-weight: 700;
  line-height: 42px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.sec20 .work {
  color: #000000;
  font-size: 20px;
  font-weight: 400;
  line-height: 22px;
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 50px;
}

.sec20 .zp {
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  color: #f6515f;
  margin-bottom: 15px;
}

.sec20 .zp span {
  color: #000;
}

.sec20 .content-resume {
  text-align: left;
  padding: 30px;
  padding-bottom: 10px;
}

.sec20 .content-resume p {
  color: #000200;
  font-size: 15px;
  font-weight: 400;
  line-height: 23px;
  letter-spacing: 0.99px;
}

.sec20 .text2 {
  color: #f5a219;
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  margin-top: 20px;
}

.sec20 .text2 span {
  display: block;
  text-transform: none;
  color: #000000;
}

.sec20 .button3 {
  width: 200px;
  height: 50px;
  margin: 0 auto;
}

.sec21 {
  height: 80px;
  background-color: #fae9cd;
}

.sec22 {
  background-image: linear-gradient(-189deg, #fff8c4 0%, #fece84 89%, #fece84 100%);
}

.sec22 .wrapper-bg {
  width: 100%;
  padding-top: 150px;
  background: transparent url("img/bg-novosti.png") top / contain no-repeat;
}

.sec22 .block {
  padding: 40px;
  width: 907px;
  box-shadow: 0 6px 20px 4px rgba(0, 1, 5, 0.15);
  background-color: #ffffff;
  margin: 0 auto;
  text-align: center;
  padding-top: 55px;
  margin-bottom: 70px;
}

.sec22 .text {
  color: #000000;
  font-size: 35px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 98px;
}

.sec22 .buttons {
  display: -ms-flexbox;
  display: flex;
  margin-top: 50px;
}

.sec22 .button3 {
  -ms-flex-pack: distribute;
  justify-content: space-around;
  display: block;
  margin: auto;
  color: #000;
  cursor: pointer;
  width: 140px;
  height: 32px;
  font-size: 11px;
  line-height: 28px;
}

.sec22 .button31 {
  border: 2px solid #5fbbde;
}

.sec22 .button32 {
  border: 2px solid #66ae4a;
}

.sec22 .button33 {
  border: 2px solid #fdd087;
}

.sec22 .button31:hover {
  background: #5fbbde;
}

.sec22 .button32:hover {
  background: #66ae4a
}

.sec22 .button33:hover {
  background: #fdd087;
}

.sec22 .button31.active {
  background: #5fbbde;
}

.sec22 .button32.active {
  background: #66ae4a
}

.sec22 .button33.active {
  background: #fdd087;
}

.sec22 .button34.active {
  background: #f6515f;
}

.sec22 .redline {
  width: 67px;
  height: 2px;
  background-color: #f6515f;
  margin: 0 auto;
  margin-top: -10px;
  margin-bottom: 60px;
}

.sec22 .blog-news {
  width: 100%;
  margin-top: 50px;
}

.sec22 .blog-news .slide {
  display: inline-block;
  vertical-align: top;
  margin: 5px;
}

.sec22 .blog-news .card-new {
  width: 252px;
  background: #fff6e8;
}

.sec22 .blog-news .image-wrap {
  height: 200px;
}

.sec22 .blog-news .card-new:hover .image-wrap {
  height: 150px;
}

.sec22 .blog-news .card-new:hover {
  background: #f6515f;
}

.sec22 .arrowback .arrow {
  background: transparent url("img/arrowmore.png") left top no-repeat;
}

.sec23 {
  height: 80px;
  background-color: #fae9cd;
}

.sec24 {
  background-image: linear-gradient(-189deg, #fff8c4 0%, #fece84 89%, #fece84 100%);
}

.sec24 .wrapper-bg {
  width: 100%;
  padding-top: 150px;
  background: transparent url("img/vakansii.png") top / contain no-repeat;
}

.sec24 .buttons {
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 30px;
  text-align: center;
}

.sec24 .button {
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
  line-height: 46px;
  text-transform: uppercase;
  width: 170px;
  height: 50px;
  transition: 0.2s linear;
  background-color: #f6515f;
  cursor: pointer;
  text-align: center;
  border: 2px solid #f6515f;
}

.sec24 .button1 {
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
}

.sec24 .button2 {
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  margin-left: -3px;
}

.sec24 .button:hover {
  background-color: transparent;
  color: #f6515f;
}

.sec24 .button.active {
  background-color: transparent;
  color: #f6515f;
  text-decoration: underline;
}

.sec24 .text {
  text-align: center;
  color: #000000;
  font-size: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.sec24 .block {
  padding: 50px;
  width: 100%;
  box-shadow: 0 6px 20px 4px rgba(0, 1, 5, 0.15);
  background-color: #ffffff;
  margin: 0 auto;
  text-align: center;
  padding-top: 55px;
  margin-bottom: 70px;
}

.sec24 .last {
  text-align: center;
  color: #000000;
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  padding-bottom: 25px;
  border-bottom: 2px solid #dadada;
}

.sec24 .last span {
  color: #f6515f;
}

.sec24 .box {
  text-align: left;
  padding-top: 40px;
  border-bottom: 2px solid #dadada;
  padding-bottom: 40px;
}

.sec24 .box.abroad {
  display: none;
}

.sec24 .texts {
  width: 550px;
}

.sec24 .text1 {
  color: #000000;
  font-size: 25px;
  font-weight: 700;
  /*text-transform: uppercase;*/
}

.sec24 .text2 {
  color: #f5a219;
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  margin-top: 20px;
}

.sec24 .text2 span {
  display: block;
  text-transform: none;
  color: #000000;
}

.sec24 .text3 {
  color: #000000;
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
  margin-top: 15px;
}

.sec24 .text3 span {
  font-weight: 400;
}

.sec24 .location {
  width: 250px;
}

.sec24 .loc {
  width: 31px;
  height: 49px;
  background: transparent url("img/loc.png") left top no-repeat;
  margin: 0 auto;
}

.sec24 .place {
  color: #000000;
  font-size: 25px;
  font-weight: 700;
  margin-top: 30px;
  text-align: center;
}

.sec24 .redline {
  width: 140px;
  height: 2px;
  background-color: #f6515f;
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 30px;
}

.sec24 .button3 {
  width: 200px;
  margin: 0 auto;
  height: 50px;
}

.sec24 .arrowback .arrow {
  width: 32px;
  height: 51px;
  margin-top: -25px;
  margin-left: 10px;
  background: transparent url("img/arrowdown.png") left top no-repeat;
}

.sec24 .title-redline {
  display: none;
}

.sec26 .title-redline {
  display: none;
}

.sec25 {
  height: 80px;
  background-color: #fae9cd;
}

.sec26 {
  background-image: linear-gradient(-189deg, #fff8c4 0%, #fece84 89%, #fece84 100%);
}

.sec26 .wrapper-bg {
  width: 100%;
  padding-top: 150px;
  background: transparent url("img/vakansii2.png") top / contain no-repeat;
}

.sec26 .buttons {
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 40px;
  text-align: center;
}

.sec26 .button {
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
  line-height: 46px;
  text-transform: uppercase;
  width: 170px;
  height: 50px;
  cursor: pointer;
  transition: 0.2s linear;
  background-color: #f6515f;
  text-align: center;
  border: 2px solid #f6515f;
}

.sec26 .button1 {
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
}

.sec26 .button2 {
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  margin-left: -3px;
}

.sec26 .button:hover {
  background-color: transparent;
  color: #f6515f;
}

.sec26 .button.active {
  background-color: transparent;
  color: #f6515f;
  text-decoration: underline;
}

.sec26 .abroad {
  display: none;
}

.sec26 .text {
  text-align: center;
  color: #000000;
  font-size: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.sec26 .block {
  padding: 50px;
  width: 100%;
  box-shadow: 0 6px 20px 4px rgba(0, 1, 5, 0.15);
  background-color: #ffffff;
  margin: 0 auto;
  text-align: center;
  padding-top: 55px;
  margin-bottom: 70px;
}

.sec26 .last {
  text-align: center;
  color: #000000;
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  padding-bottom: 25px;
  border-bottom: 2px solid #dadada;
}

.sec26 .last span {
  color: #f6515f;
}

.sec26 .box {
  text-align: left;
  min-height: 450px;
  padding-top: 40px;
  border-bottom: 2px solid #dadada;
  padding-bottom: 40px;
}

.sec26 .texts {
  width: 550px;
}

.sec26 .text1 {
  color: #000000;
  font-size: 25px;
  font-weight: 700;
  text-transform: uppercase;
}

.sec26 .text2 {
  color: #f5a219;
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  margin-top: 20px;
}

.sec26 .text2 span {
  display: block;
  text-transform: none;
  color: #000000;
}

.sec26 .text3 {
  color: #000000;
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
  margin-top: 15px;
}

.sec26 .text3 span {
  font-weight: 400;
}

.sec26 .location {
  width: 250px;
  float: right;
}

.sec26 .name {
  text-transform: uppercase;
  text-align: center;
  margin-top: 10px;
  font-weight: 700;
}

.sec26 .image-wrap {
  width: 178px;
  height: 178px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #fedda0;
  padding: 5px;
  margin: 0 auto;
}

.sec26 .image-wrap img {
  width: 100%;
  height: 100%;
}

.sec26 .image {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  background: transparent url("img/resume-photo.png") 50% 50%/cover no-repeat;
}

.sec26 .button3 {
  margin-top: 20px;
  width: 100%;
}

.sec26 .arrowback .arrow {
  width: 32px;
  height: 51px;
  margin-top: -25px;
  margin-left: 10px;
  background: transparent url("img/arrowdown.png") left top no-repeat;
}

.sec27 {
  height: 80px;
  background-color: #fae9cd;
}

.sec28 {
  background-image: linear-gradient(-189deg, #fff8c4 0%, #fece84 89%, #fece84 100%);
}

.sec28 .wrapper-bg {
  width: 100%;
  padding-top: 150px;
  background: transparent url("img/contacts.png") top / contain no-repeat;
}

.sec28 .block {
  width: 907px;
  box-shadow: 0 6px 20px 4px rgba(0, 1, 5, 0.15);
  background-color: #ffffff;
  margin: 0 auto;
  padding: 20px 0px;
  padding-top: 50px;
  padding-bottom: 50px;
  text-align: center;
  margin-bottom: 40px;
}

.sec28 .footnote {
  text-align: left;
  width: 1101px;
  height: 313px;
  box-shadow: 0 0 21px rgba(110, 110, 110, 0.15);
  border-radius: 10px;
  background-color: #ffeed2;
  margin-left: -135px;
  margin-top: 70px;
  margin-bottom: 70px;
  overflow: hidden;
  background: transparent url("img/map.png") top no-repeat;
}

.sec28 .redline2 {
  width: 67px;
  height: 2px;
  background-color: #f6515f;
  margin: 0 auto;
  margin-top: -50px;
  margin-bottom: 60px;
}

.sec28 .text {
  color: #000000;
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 70px;
}

.sec28 .part {
  width: 250px;
}

.sec28 .part1 {
  margin-left: -20px;
}

.sec28 .part3 {
  margin-right: -20px;
}

.sec28 .text1 {
  color: #000000;
  font-size: 25px;
  font-weight: 700;
  line-height: 26.98px;
}

.sec28 .redline {
  width: 159px;
  height: 3px;
  background-color: #f6515f;
  margin: 30px auto;
}

.sec28 .contact {
  text-align: left;
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  position: relative;
  margin-bottom: 20px;
  margin-left: 52px;
}

.sec28 .contact a {
  transition: 0.2s linear;
}

.sec28 .contact a:hover {
  opacity: 0.7;
}

.sec28 .phone:before {
  content: '';
  position: absolute;
  top: -3px;
  left: -40px;
  width: 18px;
  height: 31px;
  background: transparent url("img/mobile.png") left top no-repeat;
}

.sec28 .location:before {
  content: '';
  position: absolute;
  top: -3px;
  left: -40px;
  width: 20px;
  height: 30px;
  background: transparent url("img/location2.png") left top no-repeat;
}

.sec28 .mail:before {
  content: '';
  position: absolute;
  top: 4px;
  left: -43px;
  width: 28px;
  height: 20px;
  background: transparent url("img/email.png") left top no-repeat;
}

.sec28 .part2 {
  width: 300px;
  margin-left: 20px;
  margin-right: 20px;
}

.sec28 .viber {
  cursor: pointer;
  margin-top: 2px;
  display: inline-block;
  vertical-align: top;
  width: 21px;
  height: 21px;
  background: transparent url("img/svg/viber.svg") left top/contain no-repeat;
}

.sec28 .whatsapp {
  cursor: pointer;
  margin-top: 2px;
  display: inline-block;
  vertical-align: top;
  width: 21px;
  height: 21px;
  background: transparent url("img/svg/watsapp.svg") left top/contain no-repeat;
}

.sec28 .text3 {
  color: #000000;
  font-size: 25px;
  font-weight: 700;
  line-height: 26.98px;
}

.sec28 .text4 {
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  margin-top: 30px;
}

.sec28 .text4 b {
  font-weight: 700;
}

.sec28 .text4 .calendar {
  display: inline-block;
  vertical-align: top;
  width: 30px;
  height: 27px;
  background: transparent url("img/calendar.png") left top no-repeat;
}

.slick-prev,
.slick-next {
  width: 26px;
  height: 51px;
}

.slick-prev:before,
.slick-next:before {
  width: 100%;
  height: 100%;
  display: block;
  transition: 0.2s linear;
}

.slick-prev:before {
  content: '';
  background: transparent url("img/arrowleft.png") left top no-repeat;
}

.slick-next:before {
  content: '';
  background: transparent url("img/arrowright.png") left top no-repeat;
}

.slick-dots {
  bottom: -60px;
}

footer {
  padding-top: 35px;
  padding-bottom: 35px;
  background-color: rgba(254, 213, 143, 0.4);
}

footer .logo {
  width: 50px;
  height: 50px;
  background: transparent url("img/svg/logo2.svg") 50% 50% no-repeat;
}

footer .text {
  color: #000000;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  margin-top: 7px;
}

footer .soc-links {
  margin-left: 350px;
  text-align: center;
}

footer .soc {
  width: 50px;
  height: 50px;
  margin: 2px 5px;
  transition: 0.2s linear;
  opacity: 1;
}

footer .soc1 {
  background: transparent url("img/svg/yt.svg") left top /280% no-repeat;
}

footer .soc2 {
  background: transparent url("img/svg/fb.svg") left top /280% no-repeat;
}

footer .soc:hover {
  opacity: 0.7;
}

footer .footer3 {
  float: right;
}

footer .arrowup {
  display: block;
  color: #f6515f;
  font-size: 15px;
  font-weight: 700;
  line-height: 22px;
  text-transform: uppercase;
  margin-top: 15px;
}

footer .arrowup .arrow {
  margin-top: -15px;
  width: 32px;
  height: 49px;
  background: transparent url("img/arrowtop.png") left top no-repeat;
}


.page-title {
  margin-top: 0;
  margin-bottom: 0;
  color: #000000;
  font-size: 35px;
  font-weight: 700;
  text-transform: uppercase;
}

.title-redline {
  width: 67px;
  height: 2px;
  background-color: #f6515f;
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 30px;
}

.vac-description {
  color: #f5a219;
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  margin-top: 20px;
}

.vac-description span {
  display: block;
  text-transform: none;
  color: #000000;
}

.white-block {
  position: relative;
  padding: 40px;
  width: 907px;
  box-shadow: 0 6px 20px 4px rgba(0, 1, 5, 0.15);
  background-color: #ffffff;
  margin: 0 auto;
  text-align: center;
  padding-top: 55px;
  margin-bottom: 50px;
}

.sec12 .white-block {
  padding-left: 0;
  padding-right: 0;
}

.sec14 .parts-clock .part {
  height: 140px;
  margin-top: -20px;
  margin-bottom: -30px;
  background-size: 50%;
}

.sec14 .parts-clock .part4 {
  background-size: 23%;
  background-position: 50% 36%;
}

.sec14 .time {
  font-size: 20px;
}

.sec14 .price br {
  display: none;
}

.sec14 .text2 {
  font-size: 24px;
  line-height: 24px;
  margin-top: 40px;
  margin-bottom: 50px;
}

.sec14 .part .redline {
  margin-top: 15px;
  margin-bottom: 8px;
}

.modal-overlay .modal-content .text1 {
  display: none;
}

.modal-overlay .modal-content .text {
  margin-bottom: 25px;
}

.modal-overlay .modal-content .contact-form {
  width: 342px;
}

.modal-overlay label {
  margin-bottom: 10px;
}

.modal-overlay input[type='text'],
.modal-overlay input[type='tel'],
.modal-overlay input[type='email'],
textarea {
  font-size: 16px;
}

.modal-contact__nav {
  margin-bottom: 15px;
}

.modal-overlay .modal-content {
  max-width: 550px;
  padding-top: 30px;
  padding-bottom: 20px;
  margin-top: 30px;
  margin-bottom: 0;
}

.sec14 .price b {
  font-size: initial;
  font-weight: initial;
}

.sec16 .text6 {
  font-size: 14px;
  line-height: 22px;
}

.bullits h3 {
  font-size: 16px;
  text-align: left;
  margin-bottom: 30px;
  color: #f6515f;
}

.breadcrumbs a {
  color: #f6515f;
  font-weight: 700;
  opacity: 0.9;
  transition: 0.2s linear;
}

section p a {
  color: #f6515f;
  font-weight: 700;
}

.breadcrumbs a:hover {
  text-decoration: underline;
  opacity: 1;
}

.form-subscribe form p {
  display: inline-block;
  vertical-align: top;
  width: 50%;
}

.form-subscribe label[for='s2email'] {
  display: none;
}

.form-subscribe input[name='unsubscribe'] {
  display: none;
}

.form-subscribe input[name='subscribe'] {
  display: block;
  text-align: center;
  color: #f6515f;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  width: 170px;
  height: 40px;
  border-radius: 25px;
  border: 2px solid #f6515f;
  transition: 0.2s linear;
  background: transparent;
  float: right;
  margin-top: 22px;
}

.form-subscribe input[name='subscribe']:hover {
  background: rgba(246, 81, 95, 1);
  color: #fff;
}

#s2email {
  width: 100%;
  height: 40px;
  border-radius: 25px;
  border: 1px solid #fed58f;
  background-color: #ffffff;
  color: #000000;
  font-size: 18px;
  font-weight: 300;
  padding-left: 26px;
  outline: none;
  margin-top: 5px;
}

.form-subscribe .s2_error {
  padding-top: 28px;
}

.subform {
  color: #000000;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

.white-block.white-block1 {
  margin-top: -30px;
}

.sec14 .text1 h2,
.sec16 .text1 h2,
.sec10 .text1 h2,
.sec12 .text1 h2 {
  font-size: 20px;
  color: #f6515f;
}

.sec14 .text1 h3,
.sec16 .text1 h3,
.sec10 .text1 h3,
.sec12 .text1 h3 {
  font-size: 16px;
  color: #f6515f;
}

.sec404 .white-block {
  padding-bottom: 100px;
}

.sec404 .error404 {
  font-size: 80px;
  font-weight: 700;
  text-align: center;
}

.sec404 .text404 {
  font-size: 20px;
  text-align: center;
}

.sec404 .button4 {
  margin: 0 auto;
  margin-top: 30px;
}

.sec16 .text1 iframe {
  width: 80%;
  height: 440px;
  margin: 0 auto
}

.wpcf7-recaptcha div {
  margin: 0 auto;
  max-width: 100%;
}

.workua a {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  width: 100%;
  height: 110px;
}

.workua a img {
  margin: auto;
}

.lang-item-uk {
  order: 1;
}

.lang-item-ru {
  order: 2;
}

.vacancy-date-text {
  text-align: center;
  margin-top: 20px;
}

.vacancy-date {
  font-weight: 700;
  text-align: center;
  margin-top: 0px;
  color: #f5a219;
}

.sec26 .page-title {
  text-align: center;
  margin-bottom: 20px;
}

/*********************************************    Desktop First Method
\*********************************************/
/* Medium Devices, Notebooks */
/* Small Devices, Tablets */
@media only screen and (max-width: 1500px) {
  .container {
    width: 1130px;
  }

  .main-header .links {
    margin-left: 10px;
  }

  .topline__lang {
    margin-left: 0;
  }

  .sec1 .text {
    width: 360px;
  }

  .sec1 {
    height: 560px;
  }

  .sec2 {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .main-header {
    padding-top: 35px;
  }

  .sec1 .home-title {
    margin-top: 170px;
  }

  .sec4 .image {
    margin-left: 0;
  }

  .sec5 .block {
    width: 340px;
  }

  .sec6 .image {
    margin-left: 0;
  }

  footer .soc-links {
    margin-left: 275px;
  }

  .white-block {
    padding: 30px;
    padding-top: 70px;
    width: 700px;
    margin-top: -70px;
  }

  .sec10 .text1 {
    font-size: 14px;
    line-height: 22px;
    margin-top: 20px;
  }

  .page-title {
    font-size: 30px;
    line-height: 30px;
  }

  .title-redline {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .sec10 .footnote {
    width: 910px;
    margin-top: 35px;
    margin-bottom: 35px;
  }

  .sec10 .texts {
    width: 490px;
  }

  .sec10 .text4 {
    font-size: 14px;
    line-height: 22px;
  }

  .sec10 .text6 {
    font-size: 14px;
    line-height: 22px;
  }

  .sec10 .text6 h3 {
    font-size: 30px;
    line-height: 40px;
  }

  .sec24 .texts {
    width: 390px;
  }

  .sec26 .texts {
    width: 390px;
  }

  .vac-description {
    font-size: 14px;
    margin-top: 10px;
  }

  .sec24 .location {
    padding-top: 10px;
  }

  .sec28 .part {
    width: 206px;
  }

  .sec28 .contact {
    margin-left: 25px;
    font-size: 14px;
  }

  .sec28 .phone:before {
    left: -26px;
  }

  .sec28 .text1 {
    font-size: 19px;
  }

  .sec28 .part2 {
    padding-left: 20px;
  }

  .sec28 .footnote {
    width: 910px;
  }

  .sec26 .last {
    font-size: 14px;
  }

  .sec26 .buttons {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .sec26 .button3 {
    width: 170px;
    height: 40px;
    line-height: 36px;
    margin: 0 auto;
    margin-top: 30px;
  }

  .sec26 .button {
    height: 40px;
    line-height: 36px;
  }

  .main-header.fix {
    height: 70px;
  }

  .main-header .fbutton {
    height: 40px;
    line-height: 36px;
  }

  .main-header.fix .button2 {
    height: 40px;
    line-height: 36px;
  }

  .sec25,
  .sec9,
  .sec23,
  .sec21,
  .sec27,
  .sec11,
  .sec13,
  .sec19,
  .sec17,
  .sec15 {
    height: 70px;
  }

  .sec16 .text1 {
    font-size: 14px;
    line-height: 22px;
  }

  .sec16 .breadcrumbs {
    font-size: 14px;
  }

  .sec16 .page-title {
    margin-top: 30px;
  }

  .sec16 .footnote {
    width: 910px;
  }

  .sec16 .texts {
    width: 400px;
    margin-left: 40px;
  }

  .sec16 .text2 {
    font-size: 14px;
    line-height: 22px;
  }

  .sec24 .button3 {
    width: 170px;
    height: 40px;
    line-height: 36px;
  }

  .sec24 .last {
    font-size: 14px;
  }

  .sec24 .button {
    height: 40px;
    line-height: 36px;
  }

  .sec24 .buttons {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .sec12 .part {
    height: 235px;
  }

  .sec12 .part p {
    padding-top: 100px;
  }

  .sec12 .link {
    width: 280px;
    padding-left: 70px;
  }

  .sec12 .link a {
    font-size: 18px;
  }

  .sec14 .page-title {
    margin-top: 40px;
  }

  .sec14 .text1 {
    font-size: 14px;
    line-height: 22px;
    padding-left: 0;
    padding-right: 0;
  }

  .sec14 .footnote {
    width: 910px;
  }

  .sec14 .text4 {
    font-size: 30px;
  }

  .sec14 .bullits li {
    font-size: 14px;
    margin-left: 50px;
  }

  .sec14 .button4 {
    width: 200px;
    height: 40px;
    line-height: 36px;
  }

  .sec3 {
    padding-top: 40px;
  }

  .sec3 .text {
    font-size: 40px;
    line-height: 40px;
  }

  .sec3 .text1 {
    font-size: 16px;
  }

  .sec2 .button {
    height: 40px;
    line-height: 36px;
  }

  .sec3 .button3 {
    width: 220px;
    height: 40px;
    line-height: 36px;
  }

  .sec4 .button {
    height: 40px;
    line-height: 36px;
    width: 170px;
  }

  .sec4 .text {
    font-size: 40px;
  }

  .sec4 .text1 {
    font-size: 16px;
  }

  .sec5 .text {
    font-size: 40px;
  }

  .sec5 .text1 {
    font-size: 16px;
  }

  .sec6 .text {
    font-size: 40px;
  }

  .sec6 .text1 {
    margin-top: 40px;
    font-size: 16px;
  }

  .sec6 .button3 {
    width: 200px;
    height: 40px;
    line-height: 36px;
  }

  .sec7 .text {
    font-size: 40px;
  }

  .sec8 .text {
    font-size: 40px;
  }

  .sec8 .button3 {
    width: 200px;
    height: 40px;
    line-height: 36px;
  }

  .sec20 .info {
    width: 400px;
  }

  .sec18 .info {
    width: 400px;
  }

  .sec24 .title-redline {
    display: none;
  }

  .sec26 .title-redline {
    display: none;
  }

  .sec26 .box {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .sec26 .text1 {
    font-size: 20px;
  }

  .sec26 .image-wrap {
    width: 140px;
    height: 140px;
  }

  .sec26 .page-title {
    margin-bottom: 100px;
  }

  .sec24 .box {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .sec24 .text1 {
    font-size: 20px;
  }

  .sec26 .location {
    width: 180px;
  }

  .sec24 .location {
    width: 180px;
  }

  .sec26 .texts {
    width: 450px;
  }

  .sec24 .texts {
    width: 450px;
  }

  .sec24 .place {
    font-size: 18px;
  }

  .sec24 .location {
    padding-top: 0;
  }

  .sec24 .place {
    margin-top: 15px;
  }

  .sec24 .redline {
    margin-bottom: 25px;
  }

  .sec20 .name {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 15px;
  }

  .sec20 .image p {
    font-size: 18px;
  }

  .sec18 .name {
    font-size: 24px;
  }

  .sec18 .work {
    margin-top: 10px;
    font-size: 18px;
    margin-bottom: 25px;
  }

  .sec18 .content-resume {
    padding: 30px;
  }

  .sec18 .title-vac {
    font-size: 15px;
    padding-bottom: 15px;
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px solid #dadada;
  }

  .sec26 .box {
    /*min-height:300px;*/
  }

  .sec20 .breadcrumbs {
    top: 10px;
    left: 5px;
    font-size: 14px;
  }

  .sec18 .breadcrumbs {
    top: 10px;
    left: 5px;
    font-size: 14px;
  }

  .sec18 .content-resume p {
    font-size: 14px;
    line-height: 20px;
  }

  .sec22 .title-redline {
    display: none;
  }

  .sec22 .buttons {
    margin-top: 25px;
  }

  .sec22 .blog-news .card-new {
    height: 340px;
  }

  .sec22 .blog-news {
    margin-top: 30px;
  }

  .sec16 .breadcrumbs {
    top: 10px;
    left: 5px;
    position: absolute;
    margin: 0;
  }

  .sec16 .page-title {
    font-size: 24px;
  }

  .sec16 .text1 {
    padding-left: 0;
    padding-right: 0;
  }

  .sec16 .footnote {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .sec28 .title-redline {
    display: none;
  }

  .sec28 .redline {
    margin-top: -45px;
    margin-bottom: 60px;
  }

  .sec28 .part {
    margin-top: 65px;
  }

  .sec28 .part2 {
    padding-left: 0;
  }

  .sec28 .part2 .contact {
    margin-left: 45px;
  }

  .sec28 .redline1 {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .sec28 .footnote {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .sec12 .parts {
    margin-top: 40px;
  }

  .sec14 .breadcrumbs {
    top: 10px;
    left: 5px;
    position: absolute;
    margin: 0;
    font-size: 14px;
  }

  .sec14 .page-title {
    font-size: 24px;
    margin-top: 20px;
  }

  .sec14 .text2 {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .modal-overlay .modal-content .button {
    height: 40px;
    line-height: 36px;
  }

  .modal-overlay input[type='text'],
  .modal-overlay input[type='tel'],
  .modal-overlay input[type='email'],
  textarea {
    height: 40px;
  }

  .modal-overlay label {
    padding-bottom: 0;
  }

  .modal-overlay .modal-content {
    margin-top: 30px;
  }

  .sec12 .link a {
    font-size: 16px;

  }

  .sec24 .redline {
    margin-top: 10px;
    margin-bottom: 15px;
    width: 100px;
  }

  .sec24 .box {
    min-height: 220px;
  }

  .sec20 .image-wrap {
    height: auto;
    padding-bottom: 20px;
  }

  .sec22 .blog-news .headtext {
    font-size: 18px;
    line-height: 23px;
  }

  .sec16 .text1 {
    margin-top: 20px;
  }

  .sec14 .text1 {
    margin-top: 20px;
  }

  .sec14 .bullits {
    margin-left: 0;
    padding-left: 0px;
    padding-right: 0px;
  }

  .sec16 .button4 {
    width: 170px;
    height: 40px;
    line-height: 36px;
    font-size: 13px;
  }

  .sec10 .button4 {
    width: 170px;
    height: 40px;
    line-height: 36px;
    font-size: 13px;
  }

  .sec5 .block1 {
    background-size: 60%;
  }

  .sec5 .block2 {
    background-size: 80%;
  }

  .sec5 .block3 {
    background-size: 75%;
  }

  .sec16 .text1 iframe {
    width: 100%;
    height: 440px;
  }
}

@media only screen and (max-width: 1130px) {
  .main-header.fix.adminbar {
    top: 46px;
  }

  .container {
    width: 720px;
  }

  .main-header .logo {
    width: 120px;
    height: 50px;
    background-size: contain;
  }

  .main-header .link {
    font-size: 12px;
    margin: 0px 3px;
  }

  .main-header .button2 {
    width: 160px;
    font-size: 12px;
    height: 40px;
    line-height: 40px;
    margin-top: 0;
  }

  /* .main-header .burger-button{
    margin-left: 15px;
  } */
  .sec1 {
    height: 600px;
  }

  .main-header .fbutton {
    width: 140px;
  }

  .sec2 .button {
    width: 140px;
  }

  .sec1 .text {
    font-size: 16px;
    width: 240px;
  }

  .sec1 .home-title {
    margin-top: 100px;
    font-size: 42px;
  }

  .sec3 .text1 {
    width: 100%;
  }

  .sec4 .image {
    display: none;
  }

  .sec5 .block {
    width: 200px;
  }

  .sec5 .block .left {
    margin-left: 30px;
  }

  .sec5 .text5 {
    margin-left: 30px;
  }

  .sec6 .texts {
    width: 380px;
  }

  .sec6 .image {
    width: 400px;
    margin-left: -100px;
  }

  .slider-news .card-new,
  .blog-news .card-new {
    width: 220px;
  }

  .slider-news .image-wrap,
  .blog-news .image-wrap {
    height: 180px;
  }

  .slider-news .headtext,
  .blog-news .headtext {
    font-size: 18px;
    line-height: 25px;
  }

  footer .soc-links {
    margin-left: 68px;
  }

  .sec4 .text1 {
    width: 100%;
  }

  .sec10 .footnote {
    width: 740px;
    margin-left: -50px;
  }

  .sec10 .texts {
    width: 385px;
    margin-left: 20px;
  }

  .sec10 .text2 {
    font-size: 20px;
  }

  .sec10 .text4 {
    line-height: 18px;
  }

  .main-header.fix .links {
    width: 236px;
  }

  .main-header.fix .link {
    font-size: 18px;
  }

  .sec28 .footnote {
    width: 740px;
    margin-left: -50px;
  }

  .sec14 .footnote {
    width: 740px;
    margin-left: -50px;
  }

  .sec16 .footnote {
    width: 740px;
    margin-left: -50px;
  }

  .sec16 .image {
    width: 380px;
  }

  .sec16 .texts {
    width: 315px;
    margin-left: 25px;
  }

  .sec16 .text2 {
    font-size: 13px;
    line-height: 20px;
  }

  .sec16 .texts {
    padding-top: 30px;
  }

  .sec16 .text6 {
    line-height: 20px;
  }

  .sec5 .block {
    padding-top: 150px;
  }

  .sec5 .block1 {
    background-position: 50% 10%;
  }

  .sec16 .text1 iframe {
    width: 100%;
    height: 440px;
  }

  br.sm {
    display: block;
  }

  br.xs {
    display: none;
  }
}

/* Extra Small Devices, Phones */
@media only screen and (max-width: 720px) {
  .sec18 .header-resume {
    padding-bottom: 20px;
  }

  .container {
    width: 340px;
  }

  #wpadminbar {
    margin-top: -46px;
  }

  .main-header .links {
    display: none;
  }

  .main-header.fix.adminbar {
    top: 0px;
  }

  .main-header.fix .logo {
    display: none;
  }

  .main-header .fbutton {
    font-size: 13px;
    width: 90px;
  }

  .main-header.fix .burger-button {
    margin-top: 0;
    width: 60px;
    height: 60px;
    padding-top: 20px;
    padding-left: 18px;
    padding-right: 18px;
    background: url(img/svg/logo2.svg) 0% 50% / contain no-repeat;
  }

  .main-header.fix .button2 {
    font-size: 10px;
    line-height: 13px;
    padding-top: 6px;
    width: 88px;
    /* margin-right: -10px; */
    padding-right: 5px;
    padding-left: 5px;
  }

  .main-header .fbutton {
    font-size: 11px;
    width: 70px;
  }

  .main-header.fix .find-buttons {
    margin-left: 5px;
  }

  .sec1 {
    height: 480px;
    background: linear-gradient(-135deg, #0f4761, #9ec668);
  }

  .sec1 .home-title {
    margin: 0 auto;
    margin-top: 100px;
    width: 100%;
    text-align: center;
    font-size: 28px;
    line-height: 36px;
  }

  .sec1 .text {
    width: 100%;
    text-align: center;
  }

  .sec3 .text1 {
    font-size: 14px;
  }

  .triangle:before {
    border: 50px solid transparent;
    border-top: 0px solid transparent;
    border-left: 0px solid transparent;
    border-right: 110vw solid #fff;
    height: 100px;
  }

  .triangle:after {
    border: 50px solid transparent;
    border-bottom: 0px solid transparent;
    border-right: 0px solid transparent;
    border-left: 110vw solid #fff;
    height: 100px;
  }

  .sec4 .text {
    font-size: 32px;
    line-height: 32px;
    text-align: center;
  }

  .sec4 .text1 {
    margin-top: 30px;
    font-size: 14px;
    line-height: 20px;
  }

  .sec4 {
    padding-top: 140px;
  }

  .sec4 .button {
    width: 49%;
  }

  .sec4 .buttons {
    margin-top: 30px;
  }

  .sec5 .text1 {
    width: 100%;
    font-size: 14px;
    line-height: 20px;
    margin-top: 10px;
    height: auto;
  }

  .sec5 .text {
    font-size: 32px;
  }

  .sec5 .block .left {
    margin-left: 0;
  }

  .sec5 .text5 {
    margin-left: 10px;
  }

  .sec5 .block {
    width: 100%;
    margin: 10px 0px;
    padding-top: 160px;
  }

  .sec5 .text5 {
    width: 160px;
    font-size: 14px;
    line-height: 22px;
    text-align: right;
  }

  .sec5 .block3 .left {
    margin-left: 33px;
  }

  .sec6 .text {
    font-size: 32px;
    line-height: 42px;
  }

  .sec6 .texts {
    width: 100%;
  }

  .sec6 .text1 {
    font-size: 14px;
    line-height: 22px;
    width: 100%;
  }

  .sec6 .image {
    width: 300px;
    margin-left: 45px;
    margin-top: -80px;
    height: 300px;
  }

  .sec7 .text {
    font-size: 32px;
    line-height: 90px;
  }

  .sec7 .logo {
    margin: 0 auto;
  }

  footer .soc-links {
    margin-top: 20px;
  }

  footer .footer3 {
    margin-top: -10px;
  }

  .white-block {
    width: 100%;
    padding: 10px;
    padding-top: 15px;
    margin-top: -16px;
  }

  .sec10 .footnote {
    width: 340px;
    margin-left: -20px;
    height: auto;
    padding-bottom: 20px;
  }

  .sec10 .image {
    height: 250px;
    width: 100%;
  }

  .sec10 .texts {
    width: 90%;
  }

  .sec26 .button,
  .sec24 .button {
    width: 140px;
  }

  .sec24 .last,
  .sec26 .last {
    text-align: center;
    font-size: 14px;
  }

  .sec24 .texts,
  .sec26 .texts {
    width: 100%;
    text-align: center;
  }

  .vac-description {
    font-size: 14px;
    line-height: 22px;
  }

  .sec24 .text1,
  .sec26 .text1 {
    font-size: 20px;
  }

  .sec24 .location,
  .sec26 .location {
    float: none;
    margin: 0 auto;
    margin-top: 10px;
    display: block;
  }

  .sec22 .button3 {
    font-size: 8px;
  }

  .sec14 .footnote {
    width: 340px;
    margin-left: -20px;
  }

  .subform {
    font-size: 15px;
  }

  .sec20 .image-wrap {
    margin: 0 auto;
    margin-top: 0px;
    display: block;
    width: auto;
    margin-bottom: 25px;
  }

  .sec20 .image {
    height: 100%;
    text-align: center;
    padding-top: 40px;
    background-size: 20px;
    padding-left: 0;
    text-align: left;
  }

  .sec20 .image h5 {
    text-align: center;
  }

  .sec20 .info {
    width: 280px;
    margin-left: 0;
  }

  .sec20 .breadcrumbs {
    padding-right: 20px;
  }

  /* .modal-overlay .modal-content .button {
    width: 120px;
  } */

  .modal-contact__nav,
  .modal-overlay .modal-content .contact-form {
    width: 246px;
  }

  .modal-overlay input[type='text'],
  .modal-overlay input[type='tel'],
  .modal-overlay input[type='email'],
  textarea {
    font-size: 13px;
  }

  .sec18 .image-wrap {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    display: block;
    margin-top: 30px;
    margin-bottom: 50px;
  }

  .sec18 .info {
    text-align: center;
    width: 280px;
    margin-left: 10px;
    margin-top: 15px;
  }

  .sec18 .content-resume {
    padding: 20px;
  }

  .sec16 .footnote {
    width: 340px;
    margin-left: -20px;
  }

  .sec16 .texts {
    margin-left: 15px;
    padding-bottom: 20px;
    padding-top: 15px;
  }

  .arrowback {
    margin-top: 20px;
  }

  .sec16 .page-title {
    font-size: 18px;
    line-height: 24px;
  }

  .white-block .breadcrumbs {
    left: -10px;
  }

  .sec16 .page-title {
    margin-top: 35px;
  }

  .sec28 .part {
    width: 90%;
    margin-left: 0;
    margin-top: 40px;
    display: block;
    margin-right: 0;
    padding-left: 20px;
  }

  .sec28 .part2 {
    margin-left: 0;
    margin-right: 0;
  }

  .sec28 .page-title {
    margin-bottom: 40px;
  }

  .sec28 .contact {
    margin-left: 38px;
  }

  .sec28 .phone:before {
    left: -42px;
  }

  .sec28 .part2 .contact {
    margin-left: 38px;
  }

  .sec28 .text1 {
    text-align: left;
    margin-left: 38px;
  }

  .sec28 .redline {
    margin-left: -20px;
    width: 120%;
  }

  .sec28 .redline1 {
    margin: 20px auto;
    width: 100%;

  }

  .sec28 .text4 {
    margin-top: 10px;
    margin-bottom: 30px;
  }

  .sec28 .footnote {
    width: 340px;
    margin-left: -20px;
  }

  .sec28 .page-title {
    margin-bottom: 70px;
  }

  .sec12 .part {
    height: 120px;
  }

  .sec12 .part p {
    padding-top: 45px;
    font-size: 20px;
  }

  .sec12 .text1 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .page-title {
    font-size: 24px;
    line-height: 30px;
  }

  .sec14 .page-title {
    margin-top: 20px;
  }

  .sec14 .time {
    font-size: 16px;
    line-height: 20px;
  }

  .sec14 .price {
    font-size: 16px;
  }

  .sec14 .parts {
    flex-direction: column
  }

  .sec14 .part {
    width: 90%;
    text-align: left;
    padding-left: 70px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-left: 10px;
  }

  .sec14 .parts-clock {
    display: none;
  }

  .sec14 .redline {
    display: none;
  }

  .sec14 .part1 {
    background: transparent url(img/hour.png) 0% 50% / 20% no-repeat;
  }

  .sec14 .part2 {
    background: transparent url(img/day.png) 0% 50% / 20% no-repeat;
  }

  .sec14 .part3 {
    background: transparent url(img/workday.png) 0% 50% / 20% no-repeat;
  }

  .sec14 .part4 {
    background: transparent url(img/month.png) 4% 50% / 15% no-repeat;
  }

  .sec14 .text2 {
    font-size: 18px;
  }

  .sec14 .bullits h2 {
    font-size: 20px;
  }

  .sec6 .button3 {
    position: relative;
    z-index: 10;
  }

  .main-header .link0 {
    display: block;
  }

  .form-subscribe form p {
    width: 100%;
    display: block;
  }

  .form-subscribe input[name='subscribe'] {
    margin: 0 auto;
    margin-top: 20px;
    float: none;
  }

  #s2email {
    text-align: center;
    padding-left: 0;
  }

  .sec5 .block1 {
    background-size: 45%;
  }

  .sec5 .block2 {
    background-size: 70%;
  }

  .sec5 .block3 {
    background-size: 60%;
  }

  .sec14 .text1 h2,
  .sec16 .text1 h2,
  .sec10 .text1 h2,
  .sec12 .text1 h2 {
    font-size: 20px;
  }

  .modal-overlay .modal-content {
    margin-top: 10px;
    padding-bottom: 5px;
  }

  .modal-overlay input[type='text'],
  .modal-overlay input[type='tel'],
  .modal-overlay input[type='email'],
  textarea {
    height: 30px;
  }

  .sec7 .logo {
    width: 85%;
  }

  .main-header .fbutton2 {
    margin-left: -2px;
  }

  .triangle {
    padding-bottom: 150px;
  }

  .sec8 {
    padding-bottom: 80px;
  }

  .sec16 .text1 iframe {
    width: 100%;
    height: 240px;
  }

  .sec26 .page-title {
    margin-bottom: 40px;
  }

  br.sm {
    display: none;
  }

  br.xs {
    display: block;
  }

  /*Disable Animation on Mobile Devices*/
  .animated {
    /*CSS transitions*/
    transition-property: none !important;
    /*CSS transforms*/
    -ms-transform: none !important;
    transform: none !important;
    /*CSS animations*/
    animation: none !important;
  }
}

/* Custom, iPhone Retina */
/*@media only screen and (max-width: 340px) {
  .container {
    padding: 0;
    overflow: hidden;
    width: 320px; } }*/
.hidden-link {
  cursor: pointer;
}

.popular-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  margin: 20px;
}

.popular {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row wrap;
}

.popular li {
  list-style: none;
  margin: 10px;
}

.popular a {
  color: #f6515f;
}

.top-block {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-header.fix .find-buttons {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}

.main-header.fix .container {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}


.fbutton1 {
  margin-right: 2px;
}

.fbutton2 {
  margin-right: 40px;
}

.sec26 .box:first-child {
  padding-top: 0px;
}

.topline__lang {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-left: 30px;
}

.topline__lang li {
  margin: 0 5px;
}

.fix .topline__lang li {
  margin-bottom: 0;
}

@media (max-width: 720px) {
  .topline__lang {
    margin-left: 0;
  }

  .fbutton2 {
    margin-right: 10px;
  }

  .sec28 .text1 {
    font-size: 20px;
  }

  .main-header.fix .burger-button {
    padding-left: 19px;
    padding-right: 19px;
  }


  /*  .main-header.fix .links {
    display: none;
  }*/
}

.fb_iframe_widget iframe {
  height: 30px !important;
}

@media only screen and (max-width: 1300px) {
  .topline__lang {
    margin-left: 0px;
  }
}

@media only screen and (max-width: 720px) {
  .sec1 {
    height: auto;
  }

  .sec1 .home-title {
    margin-top: 110px;
  }
}



/*/////////////////////////////////
SEC101
////////////////////////////////*/

.sec101 .white-block {
  margin-top: 0;
  padding: 0px;
}

.sec101 .page-title {
  text-align: center;
  margin-bottom: 20px;
}

.sec101__answer {
  display: none;
}

.sec101__item {
  padding: 30px;
  border-bottom: 1px solid #dadada;
  position: relative;
  cursor: pointer;
  padding-right: 80px;
}

.sec101__question {
  text-align: left;
}

.sec101__more {
  position: absolute;
  width: 40px;
  height: 60px;
  background: url(img/arrowdown.png) center no-repeat;
  top: 10px;
  right: 20px;
}

.sec101__item.active .sec101__more {
  background: url(img/arrowtop.png) center no-repeat;
}

.sec101__answer {
  font-weight: 400;
  text-align: left;
  margin-top: 20px;
}

@media only screen and (max-width: 720px) {
  .sec101__more {
    top: 20px;
    right: 30px;
  }
}