body {
  max-width: 1920px;
  margin: 0 auto;
  font-family: "Montserrat", sans-serif;
}

h1,
h2,
h3 {
  font-family: "Oswald", sans-serif;
  margin-top: 0;
  margin-bottom: 30px;
}

a:hover,
a:active,
a:focus {
  text-decoration: none;
}

.burgerMenu__btn {
  display: none;
  z-index: 1002;
  -webkit-transition: 0.1s -webkit-transform linear;
  transition: 0.1s -webkit-transform linear;
  transition: 0.1s transform linear;
  transition: 0.1s transform linear, 0.1s -webkit-transform linear;
  position: fixed;
  background: 0;
  float: right;
  margin: 2rem;
  height: 2.7rem;
  width: 3.5rem;
  outline: 0;
  padding: 0;
  border: 0;
}

@media (max-width: 1200px) {
  .burgerMenu__btn {
    display: block;
  }
}

.burgerMenu__bar,
.burgerMenu__bar::before,
.burgerMenu__bar::after {
  -webkit-transition: 0.2s background linear 0.1s, 0.2s top linear 0.2s,
    0.2s -webkit-transform linear;
  transition: 0.2s background linear 0.1s, 0.2s top linear 0.2s,
    0.2s -webkit-transform linear;
  transition: 0.2s background linear 0.1s, 0.2s top linear 0.2s,
    0.2s transform linear;
  transition: 0.2s background linear 0.1s, 0.2s top linear 0.2s,
    0.2s transform linear, 0.2s -webkit-transform linear;
  position: absolute;
  background: #000;
  margin: auto;
  width: 100%;
  height: 0.3rem;
  content: "";
  top: 50%;
  right: 0;
}

.burgerMenu__bar {
  margin-top: -0.2rem;
}

.burgerMenu__bar::before {
  top: -1.2rem;
}

.burgerMenu__bar::after {
  top: 1.2rem;
}

.burgerMenu__bar::before,
.burgerMenu__bar::after {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.burgerMenu__btn.active .burgerMenu__bar {
  background: 0;
}

.burgerMenu__btn.active .burgerMenu__bar::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background: #fff;
}

.burgerMenu__btn.active .burgerMenu__bar::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  background: #fff;
}

.burgerMenu__btn.active .burgerMenu__bar::before,
.burgerMenu__btn.active .burgerMenu__bar::after {
  top: 0;
}

.burgerMenu__btn.active .burgerMenu__bar,
.burgerMenu__btn.active .burgerMenu__bar::before,
.burgerMenu.active .burgerMenu__bar::after {
  -webkit-transition: 0.2s background linear 0.1s, 0.2s top linear,
    0.2s -webkit-transform linear 0.2s;
  transition: 0.2s background linear 0.1s, 0.2s top linear,
    0.2s -webkit-transform linear 0.2s;
  transition: 0.2s background linear 0.1s, 0.2s top linear,
    0.2s transform linear 0.2s;
  transition: 0.2s background linear 0.1s, 0.2s top linear,
    0.2s transform linear 0.2s, 0.2s -webkit-transform linear 0.2s;
}

.burgerMenu__nav {
  z-index: 1001;
  overflow-y: auto;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.56, 0.1, 0.34, 0.91);
  transition: -webkit-transform 0.6s cubic-bezier(0.56, 0.1, 0.34, 0.91);
  transition: transform 0.6s cubic-bezier(0.56, 0.1, 0.34, 0.91);
  transition: transform 0.6s cubic-bezier(0.56, 0.1, 0.34, 0.91),
    -webkit-transform 0.6s cubic-bezier(0.56, 0.1, 0.34, 0.91);
  padding-top: 6.2rem;
}

.menu-open .burgerMenu__nav {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.burgerMenu__list {
  margin: 0;
  list-style: none;
  padding: 0;
}

.burgerMenu__item {
  font-size: 2.6rem;
  text-transform: uppercase;
}

.burgerMenu__link {
  display: block;
  padding: 20px 8px;
  color: #fff;
}

.burgerMenu__link:hover,
.burgerMenu__link:focus,
.burgerMenu__link:active {
  background-color: rgba(13, 120, 146, 1);
  text-decoration: none;
  color: #fff;
}

.modalMain {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1001;
  display: none;
}

.modalMain__bg {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.8);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1002;
}

.modalMain__inner {
  position: absolute;
  width: 450px;
  padding: 24px;
  border-radius: 10px;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url(/img/form_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: 1005;
}

.modalMain__title {
  font-size: 1.6em;
  font-weight: 600;
  color: #fff;
  text-align: center;
}

.modalMain__row {
  margin: 8px 0;
}

.modalMain__input {
  width: 100%;
  border: 1px solid #dddddd;
  padding: 4px 8px;
}

.modalMain__button {
  text-align: center;
}

@media (max-width: 768px) {
  .modalMain__inner {
    width: 98%;
  }
}

.modalYesright {
  color: #fff;
}

.modalYesright a {
  color: #fff;
}

.modalMain__btn {
  background-color: #3a4ed5;
  border-radius: 25px;
  padding: 14px 35px;
  white-space: nowrap;
  text-transform: uppercase;
  outline-style: none;
  font-weight: 600;
  color: #fff;
}

.modalMain__btn:hover {
  background-color: #030a62;
  color: #fff;
}

.stick-menu {
  display: none;
  text-align: center;
}

.is-sticky .stick-menu {
  width: 100%;
  z-index: 1000;
  display: block;
  position: fixed;
  background-color: #fff;
  padding: 12px 0;
}

.stickMenu__list {
  display: flex;
  justify-content: space-around;
}

.toTop {
  width: 50px;
  height: 50px;
  font-size: 24px !important;
  line-height: 45px !important;
  color: #fff;
  background: #337ab7;
  border: 1px solid #337ab7;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  position: fixed;
  right: 66px;
  bottom: 80px;
  display: none;
  overflow: hidden;
  text-align: center;
  text-decoration: none;
  z-index: 20;
}

.toTop:hover {
  border: 1px solid #337ab7;
  color: #337ab7;
  background: #fff;
  text-decoration: none;
}

.toTop:focus {
  border: 1px solid #337ab7;
  color: #fff;
  background: #337ab7;
  text-decoration: none;
}

.line-top {
  display: none;
  z-index: 1001;
  /*position: fixed;*/
  width: 100%;
  left: 0;
  top: 0;
}

@media (max-width: 992px) {
  .line-top {
    display: block;
  }
}

.line-top__inner {
  padding: 8px 8px;
  background-color: #fcfcfc;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.line-top__logo {
  height: 32px;
}

.line-top__phone {
  text-align: left;
}

.line-top__phone-link {
  color: #000;
  text-decoration: none;
}

.line-top__logo-img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  margin: 0 auto;
}

.line-top__icon {
  text-decoration: none;
  color: #000;
  font-size: 1.8em;
}

.shapka__logo-img {
  width: 100px;
}

.mobile-menu {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  background-color: #fcfcfc;
  z-index: 1001;
}

.mobile-menu__inner {
  padding: 16px;
}

.mobile-menu__line-top {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-menu__logo {
  height: 48px;
}

.mobile-menu__logo-img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  margin: 0 auto;
}

.mobile-menu__closed {
  color: #000;
  text-decoration: none;
  font-size: 1.8em;
}

.mobile-menu__menu {
  margin: 16px 0;
}

.mobile-menu__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu__item {
  padding: 8px 0;
}

.mobile-menu__link {
  text-transform: uppercase;
  font-size: 0.875em;
  color: #000;
  text-decoration: none;
  font-weight: 600;
}

.mobile-menu__phone {
  margin: 16px 0;
  color: #000;
}

.mobile-menu__phone-text {
  text-transform: uppercase;
  color: #000;
  font-weight: 600;
  text-align: center;
  padding: 8px 0;
  font-size: 0.875em;
}

.mobile-menu__phone-list {
  list-style: none;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0;
  margin: 0;
}

.mobile-menu__phone-item {
  padding: 8px 0;
}

.mobile-menu__phone-link {
  text-transform: uppercase;
  font-size: 0.875em;
  color: #000;
  text-decoration: none;
  font-weight: 600;
}

.category-mobile {
  margin: 8px 0;
}

.category-mobile select {
  width: 100%;
  border: 2px solid #000;
  border-radius: 8px;
  padding: 8px 16px;
}

.sticky {
  position: fixed;
}

.line-top__callback {
  background-color: #000;
  color: #ffffff;
  border: none;
  margin-top: 4px;
  text-transform: lowercase;
  padding: 4px 8px;
}

.modal-exit {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 1001;
  top: 0;
  left: 0;
}

.modal-exit__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-exit__inner {
  font-size: 1.2em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 350px;
  background-color: #ffffff;
  box-shadow: 0 0 8px #666666;
  padding: 16px;
  text-align: center;
}

@media (max-width: 768px) {
  .modal-exit__inner {
    width: 98%;
  }
}

.modal-exit__header {
  font-size: 1.2em;
  font-weight: 600;
  margin-bottom: 8px;
}

.shapka__top {
  padding: 12px 0;
  background-color: #29293a;
  color: #fff;
}

.shapka-top__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.shapka-top__item a {
  color: #fff;
}

.shapka-top__item a:hover {
  color: #95ffe0;
}

.shapka-top__item .fas,
.shapka-top__item .far {
  opacity: 0.5;
  margin-right: 6px;
}

.shapka-btn a {
  color: #fff;
  background-color: #3a4ed5;
  border: 2px solid #3a4ed5;
  border-radius: 35px;
  padding: 11px 35px;
  display: inline-block;
}

.shapka-btn a:hover {
  cursor: pointer;
  background-color: #030a6e;
}

.shapka {
  padding: 8px 0;
  background-color: #fff;
  z-index: 9999;
}

.shapka__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo__img {
  width: 150px;
}

.shapka__menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

.shapka__menu-item {
  margin: 0 8px;
}

.shapka__menu-item a {
  color: #333333;
  text-transform: uppercase;
  font-size: 18px;
  font-family: "Oswald", sans-serif;
}

.shapka__menu-item a:hover {
  color: #3a4ed5;
}

.slider {
  background-image: url(/img/slide.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 120px 0;
  min-height: 600px;
}

.formMain__input {
  width: 100%;
  max-width: 100%;
  padding: 4px 8px;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 5px;
  color: #000;
  font-weight: 500;
}

.formMain__row {
  margin: 8px 0;
}

.formMain__input::-webkit-input-placeholder {
  color: #000;
  font-weight: 500;
}

.formMain__input::-moz-placeholder {
  color: #000;
  font-weight: 500;
}

.formMain__input:-moz-placeholder {
  color: #000;
  font-weight: 500;
}

.formMain__input:-ms-input-placeholder {
  color: #000;
  font-weight: 500;
}

.form-btn {
  color: #fff;
  background-color: #3a4ed5;
  border: 2px solid #3a4ed5;
  border-radius: 35px;
  padding: 11px 35px;
  width: 100%;
}

.form-btn:hover {
  background-color: #030a6e;
  border: 2px solid #030a6e;
}

.help-text {
  color: red;
  font-weight: 500;
}

.gen__title {
  font-family: "Oswald", sans-serif;
  font-size: 34px;
  line-height: 1.375;
  color: #29293a;
  font-weight: 400;
  position: relative;
  text-align: center;
  padding-bottom: 40px;
  text-transform: uppercase;
}

.gen__title:after {
  content: " ";
  background-color: #3a4ed5;
  width: 100px;
  height: 3px;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 24px;
}

.white-block {
  padding: 54px 0;
}

.klient-slider {
  padding: 32px 0;
}

.klient__title {
  text-align: center;
  margin-top: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60px;
}

.klient__item a {
  color: #333;
}

.formMain__title {
  color: #fff;
  font-size: 24px;
  margin-bottom: 8px;
  text-shadow: 0 0 2px #000;
}

.footer__bot {
  background-color: #29293a;
  padding: 12px 0;
}

.about {
  padding: 54px 0;
  background: linear-gradient(to right, #030a6e 20%, #3a4ed5);
}

.about__title {
  color: #95ffe0;
  text-transform: uppercase;
  font-size: 34px;
  line-height: 1.375;
}

.about__subtitle {
  color: #fff;
  font-size: 18px;
  margin-top: 12px;
}

.right-btn {
  color: #fff;
  background-color: inherit;
  border: 2px solid #fff;
  border-radius: 35px;
  padding: 14px 35px;
  width: 100%;
  text-transform: uppercase;
}

.right-btn:hover {
  background-color: #030a62;
  border: 2px solid #030a62;
  cursor: pointer;
  color: #fff;
}

.about__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.plusi {
  padding: 80px 0;
}

.plusi-icon {
  position: relative;
  top: -50px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  margin-bottom: -50px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 100%;
  font-size: 30px;
  color: #fff;
  background: linear-gradient(-45deg, #3a4ed5, #95ffe0);
}

.plusi__img {
  width: 50%;
}

.plusi__img:after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background: linear-gradient(-45deg, #030a6e, #3a4ed5);
  opacity: 0;
  border-radius: 100%;
  transition: 750ms ease-in-out;
}

.plusi__item {
  padding: 0 16px 45px;
  min-height: 250px;
  margin-top: 50px;
  background-color: #f2f3f9;
  border-radius: 8px;
  transition: 750ms ease-in-out;
  text-align: center;
  margin-bottom: 32px;
}

.plusi__title {
  margin-top: 30px;
  color: #29293a;
  font-size: 19px;
  line-height: 1.5;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}

.plusi__text {
  margin-top: 22px;
  color: #838386;
  font-size: 16px;
  line-height: 1.55556;
}

.plusi__inner {
  padding: 32px 0;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  grid-gap: 20px;
}

.is-sticky .logo__img {
  width: 78px;
}

.logo__footer {
  width: 200px;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__link {
  margin-bottom: 12px;
}

.footer__link a {
  color: #fff;
  font-size: 18px;
}

.footer__link .fas,
.footer__link .far {
  margin-right: 8px;
}

.onas {
  background-color: #f2f3f9;
  padding: 80px 0;
}

.onas__inner {
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
  gap: 20px;
}

.onas__img {
  width: 49%;
  margin-right: 32px;
}

.onas__text {
  font-size: 12px;
}

.onas__text p {
  margin-bottom: 4px;
}

.onas__pod {
  text-align: right;
  font-weight: 600;
  margin-top: 12px;
  font-size: 15px;
}

.line-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.line-icons a {
  font-size: 26px;
  color: #000;
}

.uslugi {
  padding: 80px 0;
  background-color: #fff;
}

.uslugi-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.uslugi-item {
  padding: 20px;
  border: 1px solid #f2f3f9;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  color: #333;
}

.uslugi-item span {
  text-decoration: underline;
  margin-top: 6px;
}

.ikamet-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ikamet-link {
  color: #3a4ed5;
  font-size: 18px;
}

.shapka-soc {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.shapka-soc__item a {
  color: #3a4ed5;
  font-size: 26px;
}

.plitka-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.plitka-item {
  background-color: #fff;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.plitka-img img {
  width: 100%;
}

.plitka-title {
  color: #333;
  font-weight: 600;
}

.left-side__menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 200px;
  padding: 10px;
  border: 1px solid #333;
  border-radius: 5px;
  height: fit-content;
}

.right-part {
  width: calc(100% - 200px);
}

.left-side__item {
  color: #333;
}

@media (max-width: 992px) {
  .shapka__top,
  .shapka,
  .sticky-wrapper {
    display: none;
  }

  .onas__img {
    width: 100%;
    margin-right: 0;
    margin-bottom: 32px;
  }

  .onas__text {
    font-size: 14px;
  }

  .uslugi-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .plitka-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .plusi__inner {
    grid-template-columns: repeat(1, 1fr);
  }
  .right-btn {
    display: inline-block;
    text-align: center;
  }

  .onas__inner {
    flex-direction: column-reverse;
    display: flex;
  }

  .left-side__menu,
  .right-part {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .about__inner,
  .right-btn {
    display: block;
    text-align: center;
  }

  .about-left {
    margin-bottom: 32px;
  }

  .footer__inner {
    display: block;
    text-align: center;
  }

  .uslugi-inner {
    grid-template-columns: repeat(1, 1fr);
  }

  .plitka-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .slider {
    background-image: url(/img/slide-s.jpg);
    padding: 120px 0;
    min-height: 600px;
  }
}

@media (max-width: 400px) {
  .plitka-list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.img-employer-page {
  float: right;
  width: 50%;
}

@media (max-width: 968px) {
  .img-employer-page {
    float: none;
    width: 100%;
  }
}
