.container {
  max-width: 1170px;
  padding-left: 25px;
  padding-right: 25px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

body {
  width: 100vw;
  height: 100%;
  margin: 0;
  padding: 0;
  font-size: 12px;
  font-family: "Lato", sans-serif;
  line-height: 1.42;
  color: #484848;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

section {
  width: 100%;
}

.wrapper {
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 16px;
  padding: 5px 25px;
  text-align: center;
  font-weight: bold;
  font-family: "Lato", sans-serif;
  line-height: 1.42;
  border: 1px solid #ff003d;
  border-radius: 10px;
  background: linear-gradient(90deg, #ff003d 0%, #ff0000 61.33%, #ff3d00 100%);
  transition: 0.3s;
  cursor: pointer;
}

.btn--white {
  color: #ff003d;
  background: #fff;
}

@media screen and (max-width: 1023px) {
  .btn {
    height: 45px;
    padding: 10px 30px;
    line-height: 17px;
  }
}

.btn:hover {
  transform: rotate(-5deg);
}

.btn--white:hover {
  transform: rotate(-5deg);
}

.callback .btn--white:hover {
  background: #fff;
  color: #ff003d;
  /* opacity: 0.9; */
}

.title {
  font-size: 20px;
  text-align: center;
  text-transform: uppercase;
  color: #ff003d;
  font-weight: bold;
  margin: 0;
  margin-bottom: 15px;
}

@media screen and (max-width: 576px) {
  .title {
    font-size: 20px;
  }
}

.subtitle {
  text-align: center;
  font-size: 15px;
  color: #939393;
  margin-bottom: 30px;
}

.subtitle .subtitle__link {
  color: #ff003d;
}

a {
  color: #ff003d;
  text-decoration: none;
}

.breadcrumbs {
  list-style: none !important;
  padding: 0 !important;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 15px !important;
}

.service .breadcrumbs {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.breadcrumbs .breadcrumbs__item::after {
  content: ">";
  color: #939393;
  margin-right: 10px;
}

.breadcrumbs .breadcrumbs__item:last-child::after {
  display: none;
}

.breadcrumbs .breadcrumbs__item:last-child .breadcrumbs__link {
  color: #c4c4c4;
}

.breadcrumbs .breadcrumbs__item:last-child .breadcrumbs__link:hover {
  text-decoration: none;
}

.breadcrumbs .breadcrumbs__link {
  text-decoration: none;
  margin-right: 10px;
  transition: 0.3s;
  color: #939393;
  font-size: 14px;
  font-weight: normal;
}

.breadcrumbs .breadcrumbs__link:hover {
  text-decoration: underline;
}

.header {
  padding: 20px 0;
  z-index: 100;
  position: fixed;
  top: 0;
  background: #fff;
  border-bottom: 1px solid #f3f3f3;
  width: 100%;
}

@media screen and (max-width: 576px) {
  .header {
    position: relative;
    padding: 20px 0;
  }
}

.header .header__container {
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  justify-content: space-between;
  z-index: 100;
}

@media screen and (max-width: 576px) {
  .header .header__container {
    flex-wrap: wrap;
  }
}

.header .header__block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.header .header__block--contacts {
  width: 25%;
}

@media screen and (max-width: 1023px) {
  .header .header__block {
    width: 30%;
  }
  .header .header__block--contacts {
    margin: 0 20px;
  }
}

@media screen and (max-width: 576px) {
  .header .header__block {
    align-items: flex-start;
    width: 100%;
    position: relative;
  }
}

@media screen and (max-width: 850px) and (max-height: 450px) {
  .header .header__block {
    width: 35%;
  }
}

@media screen and (max-width: 576px) {
  .header .header__block--contacts {
    order: 2;
    flex-direction: row;
    justify-content: space-between;
    /* padding: 0 15px; */
  }
}

.header .header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.header .header__row .socials__icon {
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
}

.header .header__row .socials__icon--mob {
  display: none;
}

@media screen and (max-width: 768px) {
  .header .header__row .socials__icon--mob {
    display: flex;
    width: 25px;
    align-items: center;
    justify-content: center;
  }

  .header .header__row .socials__icon:last-child {
    margin-right: 0;
  }
}

.header .header__row .socials__icon img {
  width: 100%;
  /* border: 1px solid #dcdcdc; */
  border-radius: 50%;
}

.header .header__row .row__icon-country {
  display: none;
}

@media screen and (max-width: 880px) {
  .header .header__row .row__icon-country {
    display: initial;
    width: 25px;
    margin-right: 10px;
    border: 1px solid #dcdcdc;
    border-radius: 50%;
  }
}

.header .header__city {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header .left__imgs {
  display: flex;
  position: relative;
  width: 150px;
  height: 30px;
}

@media screen and (max-width: 576px) {
  .header .left__imgs {
    margin: 10px 0;
    position: static;
  }
}

.header .left__imgs .imgs__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: static;
  transition: 0.3s;
  cursor: pointer;
  height: 30px;
  width: 30px;
  transition: 0.3s;
}

.header .left__imgs .imgs__item:hover {
  transition: 0.3s;
}

.header .left__imgs .imgs__item:hover .item__text {
  opacity: 1;
  transition: 0.3s;
  text-align: center;
}

.header .left__imgs .imgs__item:hover .hero__img {
  transform: rotate(90deg);
}

.header .left__imgs .imgs__item .hero__img {
  height: 30px;
  width: 30px;
  transition: 0.3s;
}

@media screen and (max-width: 576px) {
  .header .left__imgs .imgs__item .hero__img {
    height: 30px;
    width: 30px;
  }
}

.header .left__imgs .imgs__item .item__text {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 150px;
  height: 40;
  left: 0;
  right: 0;
  bottom: -20px;
  margin-right: auto;
  margin-left: auto;
  overflow: hidden;
  transition: 0.3s;
  position: absolute;
  color: #d0801f;
  opacity: 0;
}

@media screen and (max-width: 576px) {
  .header .left__imgs .imgs__item .item__text {
    left: initial;
    right: 0;
    bottom: 17px;
    justify-content: flex-end;
  }
}

.header .header__logo {
  z-index: 100;
}

@media screen and (max-width: 1023px) {
  .header .header__logo {
    width: 100%;
  }
}

@media screen and (max-width: 576px) {
  .header .header__logo {
    width: 80%;
    display: flex;
  }
}

.header .header__logo .logo__img {
  width: 100%;
}

.header .header__phone {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  font-size: 18px;
  z-index: 100;
  font-weight: bold;
  color: #ff003d;
  margin-right: auto;
}

.header .header__row:first-child {
  margin-bottom: 20px;
}

@media screen and (max-width: 576px) {
  .header .header__row:first-child {
    margin-bottom: 0;
    margin-top: 20px;
    order: 2;
  }

  .header .header__row {
    margin-top: 20px;
    width: 45%;
  }
}

@media screen and (max-width: 1023px) {
  .header .header__phone {
    font-size: 15px;
  }
}

@media screen and (max-width: 880px) {
  .header .header__phone {
    display: none;
  }

  .header .header__city--desk {
    display: none;
  }
}

@media screen and (max-width: 850px) and (max-height: 450px) {
  .header .header__phone {
    width: initial;
  }
}

.header .header__phone:hover {
  color: #ff003d;
}

.header .phone__icon {
  margin-right: 13px;
  width: 25px;
  /* border: 1px solid #dcdcdc; */
  border-radius: 50%;
}

@media screen and (max-width: 880px) {
  .header .phone__icon {
    margin-right: 0;
  }
}

.header .header__phone--mob {
  display: none;
}

@media screen and (max-width: 880px) {
  .header .header__phone--mob {
    display: flex;
    margin-right: 0;
  }
}

.header .header__wrap-block {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 576px) {
  .header .header__wrap-block {
    width: 100%;
    justify-content: space-between;
    align-items: flex-end;
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 850px) and (max-height: 450px) {
  .header .header__wrap-block {
    flex-direction: column;
  }
}

.header .header__wrap-block .header__socials-all {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.header .header__socials {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
  margin-right: 40px;
  position: relative;
}

@media screen and (max-width: 1023px) {
  .header .header__socials {
    width: 25%;
    margin-right: 10px;
  }
}

@media screen and (max-width: 576px) {
  .header .header__socials {
    width: initial;
    order: 3;
    margin-top: 20px;
    margin-right: 0;
    justify-content: space-around;
  }
}

@media screen and (max-width: 850px) and (max-height: 450px) {
  .header .header__socials {
    width: 100%;
    margin-bottom: 5px;
  }
}

.header .header__socials .socials__icon {
  transition: 0.3s;
  width: 25px;
  margin-right: 10px;
}

.header .header__socials .socials__icon:last-child {
  margin-right: 0;
}

.header .header__socials .socials__icon .icon__img {
  width: 100%;
}

.header .header__socials .socials__icon .icon__text {
  display: flex;
  align-items: center;
  text-align: center;
  width: 150px;
  height: 40px;
  top: 30px;
  left: 0;
  right: 0;
  bottom: 0;
  margin-right: auto;
  margin-left: auto;
  overflow: hidden;
  transition: 0.3s;
  position: absolute;
  color: #ff003d;
  opacity: 0;
}

@media screen and (max-width: 576px) {
  .header .header__socials .socials__icon .icon__text {
    left: initial;
    right: -145px;
    bottom: 5px;
  }
}

.header .header__socials .socials__icon:hover {
  opacity: 0.5;
}

.header .header__socials .socials__icon:hover .icon__text {
  opacity: 1;
  transition: 0.3s;
  text-align: center;
}

@media screen and (max-width: 576px) {
  .header .header__socials .socials__icon:hover .icon__text {
    opacity: 0;
  }
}

.header .header__buy {
  z-index: 100;
  margin-bottom: 10px;
}

.header .header__buy:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 1023px) {
  .header .header__btns {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }

  .header .header__buy {
    padding: 0;
    text-align: center;
    font-size: 16px;
    width: 45%;
    margin-right: 10px;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 576px) {
  .header .header__buy {
    order: 4;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    height: 35px;
  }
}

@media screen and (max-width: 850px) and (max-height: 450px) {
  .header .header__buy {
    padding: 4px 10px;
    text-align: center;
    width: 100%;
  }
}

.header .header__menu {
  border: none;
  background: none;
  cursor: pointer;
  transition: 0.3s;
  z-index: 100;
  padding: 0;
}

@media screen and (max-width: 576px) {
  .header .header__menu {
    position: absolute;
    height: 31px;
    right: 25px;
  }
}

.header .header__menu:active {
  outline: none;
}

.header .header__menu:focus {
  outline: none;
}

.header .header__menu:hover {
  transform: rotate(90deg);
}

@media screen and (max-width: 1023px) {
  .header .header__menu:hover {
    transform: none;
  }
}

@media screen and (max-width: 576px) {
  .header .header__menu .menu__img {
    height: 100%;
  }
}

.header .header__menu .menu__img--open {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header .header__menu .menu__img--open--active {
  display: none;
}

.header .header__menu .menu__img--exit {
  display: none;
}

.header .header__menu .menu__img--exit--active {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
}

.header__menu-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  z-index: 100;
  transition: 0.3s;
  height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
  border: none;
}

.header__menu-list--active {
  border-top: 1px solid #f3f3f3;
  margin-top: 20px;
  padding-top: 35px;
  height: inherit;
}

@media screen and (max-width: 850px) and (max-height: 450px) {
  .header__menu-list--active {
    margin-top: 20px;
    padding-top: 20px;
  }
}

.header__menu-list .menu-list__link {
  color: #484848;
  font-size: 20px;
  width: 16%;
  margin-bottom: 35px;
  z-index: 100;
  transition: 0.3s;
  text-align: center;
}

.header__menu-list .menu-list__link:nth-child(n + 7) {
  margin-bottom: 15px;
}

@media screen and (max-width: 576px) {
  .header__menu-list .menu-list__link {
    width: 45%;
    font-size: 18px;
  }

  .header__menu-list .menu-list__link:nth-child(n + 7) {
    margin-bottom: 35px;
  }

  .header__menu-list .menu-list__link:nth-child(n + 11) {
    margin-bottom: 35px;
  }
}

.header__menu-list .menu-list__link:hover {
  color: #ff003d;
}

.header__menu-list .menu-list__link--border {
  border: 1px solid #ff003d;
  border-radius: 30px;
}

.map-container {
  position: relative;
  width: 100%;
  height: 602px;
  margin: 20px auto;
  overflow: hidden;
}

.map-container img {
  height: 100%;
}

.map-container-mobile {
  display: none;
}

.hero__map {
  position: absolute;
  width: 100%;
  height: 602px;
  margin: 20px auto;
  overflow: hidden;
  z-index: 11;
}

/* @media screen and (max-width: 750px) {
  .hero__map {
    padding: 0 25px;
  }
} */

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

  .hero__map,
  .map-container {
    display: none;
    overflow: hidden;
  }

  .map-container-mobile {
    display: initial;
    position: relative;
    width: 100%;
    height: 260px;
    margin: 20px auto;
    overflow: hidden;
  }

  .hero__img {
    width: 100%;
  }
}

.country-link {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 8px;
  height: 8px;
  background-color: #dadcdb;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.country-link.highlighted {
  background-color: red;
  width: 8px;
  height: 8px;
  /* box-shadow: 0 0 12px rgba(255, 0, 0, 0.7); */
  z-index: 11;
}

.country-link:hover {
  background-color: red;
  width: 8px;
  height: 8px;
  /* box-shadow: 0 0 12px rgba(255, 0, 0, 0.7); */
  z-index: 10;
}

.country-link::after {
  content: attr(data-country);
  position: absolute;
  top: 8px;
  font-weight: bold;
  color: red;
  background: #ffffff98;
  padding: 0;
  border-radius: 4px;
  font-size: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
  white-space: nowrap;
  pointer-events: none;
}

@media screen and (max-width: 450px) {
  .country-link {
    width: 5px;
    height: 5px;
  }

  .country-link.highlighted {
    width: 5px;
    height: 5px;
  }

  .country-link:hover {
    width: 5px;
    height: 5px;
  }

  .country-link::after {
    top: 6px;
    font-size: 8px;
  }
}

.country-link:hover::after,
.country-link.highlighted::after {
  opacity: 1;
}

.hero {
  padding-top: 115px;
  margin-bottom: 10px;
}

@media screen and (max-width: 576px) {
  .hero {
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 20px;
    margin-bottom: 0;
  }
}

@media screen and (max-height: 780px) and (min-width: 576px) {
  .hero {
    margin-bottom: 15px;
  }
}

.hero .hero__container {
  height: 100%;
  width: 100%;
  position: relative;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 850px) and (max-height: 450px) {
  .hero .hero__container {
    padding-top: 15px;
  }
}

.hero .hero__title {
  font-family: "Lato", sans-serif;
  color: #fff;
  font-size: 3.35em;
  line-height: 1;
  text-shadow: 3px 3px 10px #000;
  margin: 0;
  position: absolute;
  bottom: 5%;
  right: 8.5%;
  text-transform: uppercase;
  text-align: center;
  padding: 10px 25px;
  z-index: 11;
  opacity: 0;
  animation: show-opacity 1s 1s forwards;
}

@keyframes show-opacity {
  to {
    opacity: 1;
  }
}

@media screen and (max-width: 1100px) {
  .hero .hero__title {
    font-size: 3.1em;
    line-height: 1.3;
  }
}

@media screen and (max-width: 800px) {
  .hero .hero__title {
    font-size: 1.3;
  }
}

@media screen and (max-width: 576px) {
  .hero .hero__title {
    font-size: 1.5em;
    text-transform: uppercase;
    left: 25px;
    right: 25px;
    padding: 5px 25px;
  }
}

.hero .slide__img {
  width: 100%;
}

.hero .hero__slider {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.hero__slider .hero__slide {
  width: 100%;
  display: flex;
}

.hero__slide .hero__img {
  width: 100%;
}

.hero .hero__img--mobile {
  display: none;
}

.hero .hero__img--doctors {
  position: absolute;
  width: 52%;
  z-index: 10;
  opacity: 0;
  right: 9%;
  bottom: 20px;
  animation: show-doctors 1s forwards;
}

.hero .hero__img--doctors-mobile {
  display: none;
}

@keyframes show-doctors {
  to {
    opacity: 1;
  }
}

@media screen and (max-width: 576px) {
  .hero .hero__slider {
    display: none;
    opacity: 0;
    overflow: hidden;
    width: 0;
    height: 0;
  }

  .hero__slide .hero__img {
    display: none;
  }

  .hero .hero__img--doctors {
    display: none;
  }

  .hero .hero__img--doctors-mobile {
    display: initial;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10;
    opacity: 0;
    /* transform: translateY(10vh); */
    animation: show-doctors 1s forwards;
  }
}

.hero .hero__img--mobile {
  display: none;
}

@media screen and (max-width: 576px) {
  .hero .hero__img--desktop {
    display: none;
  }

  .hero .hero__img--mobile {
    display: initial;
    padding: 0 25px;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
  }

  .hero .hero__img--desktop--1-mobile {
    opacity: 1;
    animation: hero-img-1-mobile 6s forwards infinite;
  }

  .hero .hero__img--desktop--2-mobile {
    animation: hero-img-2-mobile 6s forwards infinite;
  }

  .hero .hero__img--desktop--3-mobile {
    animation: hero-img-3-mobile 6s forwards infinite;
  }
}

@keyframes hero-img-1-mobile {
  0% {
    opacity: 1;
  }

  28% {
    opacity: 1;
  }

  33% {
    opacity: 0;
  }

  61% {
    opacity: 0;
  }

  66% {
    opacity: 0;
  }

  95% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes hero-img-2-mobile {
  0% {
    opacity: 0;
  }

  28% {
    opacity: 0;
  }

  33% {
    opacity: 1;
  }

  61% {
    opacity: 1;
  }

  66% {
    opacity: 0;
  }

  95% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@keyframes hero-img-3-mobile {
  0% {
    opacity: 0;
  }

  28% {
    opacity: 0;
  }

  33% {
    opacity: 0;
  }

  61% {
    opacity: 0;
  }

  66% {
    opacity: 1;
  }

  95% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.partners {
  padding-bottom: 30px;
  width: 100%;
}

.partners .partners__container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.partners .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

@media screen and (max-width: 576px) {
  .partners .partners__container {
    flex-wrap: wrap;
    padding-left: 15px;
    padding-right: 6px;
  }

  .partners {
    padding-bottom: 0;
  }
}

.partners .partners__title {
  width: 100%;
  color: #939393;
  margin-top: 0;
}

.partners .partners__img {
  filter: grayscale(100%);
  opacity: 0;
  transform: scale(.1);
  transition: .5s;
}

.partners .partners__img--1 {
  animation: show-scale 1s forwards;
}

.partners .partners__img--3 {
  animation: show-scale 1s .5s forwards;
}

.partners .partners__img--2 {
  animation: show-scale 1s 1s forwards;
}

.partners .partners__img--6 {
  animation: show-scale 1s 1.5s forwards;
}

.partners .partners__img--4 {
  animation: show-scale 1s 2s forwards;
}

.partners .partners__img--5 {
  animation: show-scale 1s 2.5s forwards;
}

@keyframes show-scale {
  to {
    opacity: 0.5;
    transform: scale(1);
  }
}

@media screen and (max-width: 850px) and (max-height: 450px) {
  .partners .partners__img {
    width: 15%;
  }
}

@media screen and (max-width: 1023px) {
  .partners .partners__img {
    width: 15%;
  }
}

@media screen and (max-width: 576px) {
  .partners .partners__img {
    width: 30%;
    height: inherit;
    margin-bottom: 15px;
  }
}

.partners .partners__img:hover {
  filter: grayscale(0%);
  opacity: 1 !important;
}

.plus {
  padding-top: 60px;
}

.plus .plus__title {
  display: flex;
  flex-direction: row;
  color: #ff003d;
  align-items: center;
  justify-content: center;
  width: 49%;
}

@media screen and (max-width: 576px) {
  .plus .plus__title {
    width: 100%;
    margin-bottom: 40px;
  }
}

.plus .plus__title .title__num {
  font-size: 197px;
  margin: 0;
  margin-right: 40px;
  line-height: 0;
}

@media screen and (max-width: 850px) and (max-height: 450px) {
  .plus .plus__title .title__num {
    font-size: 145px;
  }
}

@media screen and (max-width: 1023px) {
  .plus .plus__title .title__num {
    font-size: 170px;
  }
}

@media screen and (max-width: 576px) {
  .plus .plus__title .title__num {
    font-size: 120px;
    margin-right: 20px;
  }
}

.plus .plus__title .title__text {
  font-size: 42px;
  text-transform: uppercase;
  width: 360px;
  margin: 0;
}

@media screen and (max-width: 850px) and (max-height: 450px) {
  .plus .plus__title .title__text {
    font-size: 30px;
  }
}

@media screen and (max-width: 1023px) {
  .plus .plus__title .title__text {
    font-size: 25px;
  }
}

@media screen and (max-width: 576px) {
  .plus .plus__title .title__text {
    font-size: 25px;
  }
}

.plus .plus__row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

@media screen and (max-width: 576px) {
  .plus .plus__row {
    flex-wrap: wrap;
  }
}

.plus .plus__item {
  display: flex;
  flex-direction: column;
  border: 1px solid #dcdcdc;
  border-radius: 15px;
  align-items: flex-start;
  justify-content: center;
  width: 23%;
  padding: 15px 30px;
  height: 220px;
  transition: 0.3s;
  cursor: pointer;
}

@media screen and (max-width: 850px) and (max-height: 450px) {
  .plus .plus__item {
    padding: 15px;
    align-items: center;
  }
}

@media screen and (max-width: 1023px) {
  .plus .plus__item {
    padding: 15px 13px;
  }
}

@media screen and (max-width: 576px) {
  .plus .plus__item {
    width: 48%;
    padding: 10px;
    align-items: center;
    justify-content: space-around;
    text-align: center;
    height: 125px;
    margin-bottom: 15px;
  }
}

.plus .plus__item .item__img {
  height: 50px;
  transition: .7s;
}

.plus .plus__item:hover .item__img {
  transform: translateX(50px);
}

.plus .plus__item .item__title {
  font-size: 17px;
  color: #484848;
  margin: 10px 0 0 0;
  font-weight: bold;
}

@media screen and (max-width: 850px) and (max-height: 450px) {
  .plus .plus__item .item__title {
    font-size: 14px;
    text-align: center;
  }
}

@media screen and (max-width: 576px) {
  .plus .plus__item .item__title {
    font-size: 14px;
  }

  .plus .plus__item:hover .item__img {
    transform: translateX(25px);
  }
}

.plus .plus__item .item__text {
  color: #939393;
  font-size: 16px;
  margin: 10px 0 0 0;
}

@media screen and (max-width: 850px) and (max-height: 450px) {
  .plus .plus__item .item__text {
    font-size: 13px;
  }
}

@media screen and (max-width: 1023px) {
  .plus .plus__item .item__text {
    font-size: 13px;
  }
}

@media screen and (max-width: 576px) {
  .plus .plus__item .item__text {
    display: none;
  }
}

.callback {
  background: url("../images/callback-bg.svg"),
    linear-gradient(89.89deg, #ff3465 -8.67%, #ff4343 61.79%, #ff6230 106.22%);
  background-repeat: no-repeat, no-repeat;
  background-position: center right, center center;
  background-size: contain, cover;
  color: #ffffff;
  padding: 30px 0;
  width: 100%;
}

.callback .callback__title {
  font-size: 20px;
  text-align: center;
  margin: 0;
  margin-bottom: 40px;
  font-family: "Lato", sans-serif;
}

@media screen and (max-width: 576px) {
  .callback .callback__title {
    font-size: 20px;
  }
}

.callback .form__row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 30px;
}

@media screen and (max-width: 576px) {
  .callback .form__row:first-child {
    margin-bottom: 10px;
  }
}

.callback .form__row:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 576px) {
  .callback .form__row {
    flex-direction: column;
    margin-bottom: 0;
  }
}

.callback .form__row--recaptcha {
  align-items: center;
  justify-content: center;
}

.callback .form__item {
  display: flex;
  width: 30%;
  justify-content: center;
}

@media screen and (max-width: 576px) {
  .callback .form__item {
    width: 80%;
    margin-bottom: 10px;
    justify-content: center;
  }
}

@media screen and (max-width: 576px) {
  .callback .form__item--copy {
    order: 10;
  }
}

@media screen and (max-width: 576px) {
  .callback .form__item--btn {
    order: -1;
  }
}

.callback .form__item .item__link {
  color: #d2d2d2;
  transition: .7s;
  font-weight: 400;
}

.callback .form__item .item__link:hover {
  color: #fff;
}

.callback .form__item .item__label {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ff8d8d;
}

.callback .form__item .item__label .label__img {
  margin-right: 10px;
}

.callback .form__item .item__inp {
  background: none;
  border: none;
  border-bottom: 1px solid #ff8d8d;
  color: #ffffff;
  height: 50px;
  outline: none;
  width: 100%;
  font-size: 18px;
}

@media screen and (max-width: 576px) {
  .callback .form__item .item__inp {
    width: 100%;
  }
}

.callback .form__item .item__inp::-webkit-input-placeholder {
  color: #ffffff;
  opacity: 0.6;
}

/* @media screen and (max-width: 576px) {
  .callback .form__item .form__btn,
  .callback .form__item .form__link {
    width: 100%;
    padding: 0;
  }
} */
.callback .form__item .form__copy {
  text-align: center;
  color: #d2d2d2;
}

@media screen and (max-width: 576px) {
  .callback .form__item .form__copy {
    color: #d2d2d2;
    text-align: center;
  }
}

.callback .form__item .form__copy .copy__link {
  text-decoration: underline;
  color: #d2d2d2;
}

.callback .form__item .form__text {
  text-align: center;
  width: 100%;
  color: #d2d2d2;
  font-size: 16px;
}

@media screen and (max-width: 576px) {
  .callback .form__item .form__text--callback {
    font-weight: bold;
    color: #d2d2d2;
    text-align: center;
  }
}

.result {
  padding-top: 30px;
  background: url("../images/bg.png") center center no-repeat;
}

@media screen and (max-width: 576px) {
  .result {
    padding-top: 0;
  }
}

.result .result__container {
  flex-direction: row;
  justify-content: space-between;
}

@media screen and (max-width: 576px) {
  .result .result__container {
    flex-wrap: wrap;
    align-items: center;
  }
}

.result .result__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 20%;
}

@media screen and (max-width: 576px) {
  .result .result__left {
    width: 100%;
  }
}

.result .result__left .left__title {
  font-size: 36px;
  color: #ff003d;
  font-weight: bold;
  margin: auto 0 0 0;
}

@media screen and (max-width: 850px) and (max-height: 450px) {
  .result .result__left .left__title {
    margin: 45px 0;
    font-size: 23px;
  }
}

@media screen and (max-width: 1023px) {
  .result .result__left .left__title {
    margin: 45px 0;
    font-size: 23px;
  }
}

@media screen and (max-width: 576px) {
  .result .result__left .left__title {
    margin: 0;
    font-size: 24px;
    text-align: center;
  }
}

.result .result__left .left__title--big {
  transform: rotate(-90deg);
  color: #ff003d;
  font-size: 140px;
}

@media screen and (max-width: 850px) and (max-height: 450px) {
  .result .result__left .left__title--big {
    font-size: 110px;
  }
}

@media screen and (max-width: 1023px) {
  .result .result__left .left__title--big {
    font-size: 110px;
  }
}

@media screen and (max-width: 576px) {
  .result .result__left .left__title--big {
    font-size: 95px;
    transform: rotate(0);
    margin: 0;
  }
}

.result .result__center {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 45%;
}

@media screen and (max-width: 576px) {
  .result .result__center {
    width: 60%;
    margin-top: 20px;
    width: 100%;
  }
}

.result .result__center .center__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #484848;
  width: 45%;
  margin-bottom: 50px;
}

.result .result__center .center__item--no-margin {
  margin-bottom: 0;
}

@media screen and (max-width: 1023px) {
  .result .result__center .center__item {
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 576px) {
  .result .result__center .center__item {
    width: 100%;
    margin-bottom: 15px;
  }
}

.result .result__center .center__item .item__num {
  font-size: 36px;
  font-weight: bold;
  margin: 0;
}

@media screen and (max-width: 1023px) {
  .result .result__center .center__item .item__num {
    font-size: 35px;
  }
}

.result .result__center .center__item .item__text {
  margin: 0;
  font-size: 20px;
  text-align: center;
}

.result .result__center .center__item .item__text span {
  display: block;
}

@media screen and (max-width: 576px) {
  .result .result__center .center__item .item__text {
    text-align: center;
  }

  .result .result__center .center__item .item__text span {
    display: inline-block;
  }
}

.result__license {
  width: 28%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.service-about .service-about__news .result__license {
  width: 100%;
}

.result__license .license__btn {
  position: absolute;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 33px;
  height: 33px;
  z-index: 100;
  padding: 0;
  opacity: 0;
  cursor: pointer;
}

.result__license .license__btn:focus {
  outline: none;
}

/* .result__license .license__btn:hover {
  opacity: 1;
} */
.result__license .license__btn--left {
  left: -5px;
}

.result__license .license__btn--right {
  right: -5px;
}

/* .result__license:hover .license__btn {
  opacity: .5;
} */
.result__license .license__btn--right.slick-disabled::after {
  content: 'Документы';
  background: #fff;
  padding: 5px;
  color: #484848;
  border: 1px solid #dcdcdc;
  font-size: 14px;
  position: absolute;
  right: 0;
  border-radius: 10px;
  font-family: sans-serif;
}

.reviews .arrows__right.slick-disabled::after {
  display: flex;
  align-items: center;
  justify-content: center;
  content: 'Отзывы';
  background: #fff;
  padding: 5px;
  color: #484848;
  border: 1px solid #dcdcdc;
  font-size: 14px;
  position: absolute;
  right: 0;
  border-radius: 10px;
  font-family: sans-serif;
  width: 75px;
  height: 35px;
  opacity: 1;
}

.result__license .license__btn .btn__img {
  height: 100%;
}

.result__license .license__btn--right.slick-disabled .btn__img {
  display: none;
}

.reviews .arrows__right.slick-disabled .right__img {
  display: none;
}

.result__license .license__slider {
  width: 100%;
}

.result__license .license__item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.result__license .item__img {
  width: 100%;
}

@media screen and (max-width: 576px) {
  .result__license .item__img {
    width: 100%;
  }
}

@media screen and (max-width: 576px) {
  .result__license {
    width: 100%;
  }
}

.services {
  padding-top: 30px;
  padding-bottom: 10px;
  background: rgba(184, 139, 124, 0.03);
}

@media screen and (max-width: 576px) {
  .services {
    padding-top: 0;
  }
}

.services .services__container {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.services .services__title {
  width: 48.6%;
  display: flex;
  align-items: center;
  font-weight: bold;
}

@media screen and (max-width: 850px) and (max-height: 450px) {
  .services .services__title {
    margin-right: 10px;
  }
}

@media screen and (max-width: 1023px) {
  .services .services__title {
    margin-right: 10px;
  }
}

@media screen and (max-width: 576px) {
  .services .services__title {
    width: 100%;
  }
}

.services .services__title .title__num {
  color: #ff003d;
  font-size: 197px;
  margin: 0;
  margin-right: 40px;
}

@media screen and (max-width: 850px) and (max-height: 450px) {
  .services .services__title .title__num {
    font-size: 150px;
    margin-right: 20px;
  }
}

@media screen and (max-width: 1023px) {
  .services .services__title .title__num {
    font-size: 150px;
    margin-right: 20px;
  }
}

@media screen and (max-width: 576px) {
  .services .services__title .title__num {
    font-size: 120px;
    margin-right: 20px;
  }
}

.services .services__title .title__text {
  color: #ff003d;
  font-size: 42px;
  text-transform: uppercase;
  margin: 0;
}

@media screen and (max-width: 850px) and (max-height: 450px) {
  .services .services__title .title__text {
    font-size: 25px;
  }
}

@media screen and (max-width: 1023px) {
  .services .services__title .title__text {
    font-size: 25px;
  }
}

@media screen and (max-width: 576px) {
  .services .services__title .title__text {
    font-size: 25px;
  }
}

.services .services__item {
  width: 23%;
  padding: 20px 20px;
  display: flex;
  height: 266px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border-radius: 15px;
  background: #ffffff;
  margin-bottom: 30px;
  transition: 0.3s;
  border: 1px solid #dcdcdc;
}

.services .services__item:nth-child(3) {
  margin-right: 0;
}

.services .services__item:nth-child(7) {
  margin-right: 0;
}

.services .services__item:nth-child(11) {
  margin-right: 0;
}

.services .services__item:nth-child(15) {
  margin-right: 0;
}

.services .services__item:nth-child(19) {
  margin-right: 0;
}

@media screen and (max-width: 850px) and (max-height: 450px) {
  .services .services__item {
    height: 266px;
    margin-right: 10px;
  }
}

@media screen and (max-width: 1023px) {
  .services .services__item {
    height: 266px;
    margin-right: 10px;
  }
}

@media screen and (max-width: 576px) {
  .services .services__item {
    width: 45%;
    height: initial;
    justify-content: space-around;
    padding: 15px;
    align-items: center;
    text-align: center;
    margin-right: 25px;
  }

  .services .services__item:nth-child(5) {
    margin-right: 0;
  }

  .services .services__item:nth-child(9) {
    margin-right: 0;
  }

  .services .services__item:nth-child(13) {
    margin-right: 0;
  }

  .services .services__item:nth-child(17) {
    margin-right: 0;
  }
}

.services .services__item .item__title {
  text-align: center;
  font-size: 17px;
  color: #484848;
}

@media screen and (max-width: 850px) and (max-height: 450px) {
  .services .services__item .item__title {
    font-size: 12px;
    margin: 10px 0;
  }
}

@media screen and (max-width: 1023px) {
  .services .services__item .item__title {
    font-size: 18px;
    margin: 10px 0;
    font-weight: normal;
  }
}

@media screen and (max-width: 576px) {
  .services .services__item .item__title {
    margin: 15px 0 0 0;
  }
}

.services .services__item .item__text {
  text-align: center;
  color: #939393;
  font-size: 16px;
  margin: 0;
}

@media screen and (max-width: 850px) and (max-height: 450px) {
  .services .services__item .item__text {
    font-size: 10px;
    margin: 5px 0;
  }
}

@media screen and (max-width: 1023px) {
  .services .services__item .item__text {
    font-size: 10px;
    margin: 5px 0;
  }
}

@media screen and (max-width: 576px) {
  .services .services__item .item__text {
    display: none;
  }
}

.services .services__item .item__img {
  width: 80px;
  height: 51.2px;
  background-size: contain;
  border: 1px solid #dcdcdc;
  border-radius: 5px;
}

.services .services__item .item__img--msk {
  background: url("../images/main-city/msk.png") center center no-repeat;
  background-size: cover;
}

.services .services__item .item__img--spb {
  background: url("../images/main-city/sankt-peterburg.png") center center no-repeat;
  background-size: cover;
}

.services .services__item .item__img--kazan {
  background: url("../images/main-city/kazan.png") center center no-repeat;
  background-size: cover;
}

.services .services__item .item__img--sochi {
  background: url("../images/main-city/sochi.png") center center no-repeat;
  background-size: cover;
}

.services .services__item .item__img--kaliningrad {
  background: url("../images/main-city/kaliningrad.png") center center no-repeat;
  background-size: cover;
}

.services .services__item .item__img--ekaterinburg {
  background: url("../images/main-city/ekaterenburg.png") center center no-repeat;
  background-size: cover;
}

.services .services__item .item__img--1 {
  background: url("../images/services/svg/1.svg") center center no-repeat;
}

.services .services__item .item__img--2 {
  background: url("../images/services/svg/2.svg") center center no-repeat;
}

.services .services__item .item__img--3 {
  background: url("../images/services/svg/3.svg") center center no-repeat;
}

.services .services__item .item__img--4 {
  background: url("../images/services/svg/4.svg") center center no-repeat;
}

.services .services__item .item__img--5 {
  background: url("../images/services/svg/5.svg") center center no-repeat;
}

.services .services__item .item__img--6 {
  background: url("../images/services/svg/6.svg") center center no-repeat;
}

.services .services__item .item__img--7 {
  background: url("../images/services/svg/7.svg") center center no-repeat;
}

.services .services__item .item__img--8 {
  background: url("../images/services/svg/8.svg") center center no-repeat;
}

.services .services__item .item__img--9 {
  background: url("../images/services/svg/9.svg") center center no-repeat;
}

.services .services__item .item__img--10 {
  background: url("../images/services/svg/10.svg") center center no-repeat;
}

.services .services__item .item__img--11 {
  background: url("../images/services/svg/11.svg") center center no-repeat;
}

.services .services__item .item__img--12 {
  background: url("../images/services/svg/12.svg") center center no-repeat;
}

.services .services__item .item__img--13 {
  background: url("../images/services/svg/13.svg") center center no-repeat;
}

.services .services__item .item__img--14 {
  background: url("../images/services/svg/14.svg") center center no-repeat;
}

.services .services__item .item__img--15 {
  background: url("../images/services/svg/15.svg") center center no-repeat;
}

.services .services__item .item__img--16 {
  background: url("../images/services/svg/16.svg") center center no-repeat;
}

.services .services__item .item__img--17 {
  background: url("../images/services/svg/17.svg") center center no-repeat;
}

.services .services__item:hover {
  background: url("../images/services/active.png");
  background-size: cover;
  color: #ffffff;
}

.services .services__item:hover .item__title {
  color: #ffffff;
}

.services .services__item:hover .item__text {
  color: #ffffff;
}

.services .services__item:hover .item__img--1 {
  background: url("../images/services/svg/active/1.svg") center center no-repeat;
}

.services .services__item:hover .item__img--2 {
  background: url("../images/services/svg/active/2.svg") center center no-repeat;
}

.services .services__item:hover .item__img--3 {
  background: url("../images/services/svg/active/3.svg") center center no-repeat;
}

.services .services__item:hover .item__img--4 {
  background: url("../images/services/svg/active/4.svg") center center no-repeat;
}

.services .services__item:hover .item__img--5 {
  background: url("../images/services/svg/active/5.svg") center center no-repeat;
}

.services .services__item:hover .item__img--6 {
  background: url("../images/services/svg/active/6.svg") center center no-repeat;
}

.services .services__item:hover .item__img--7 {
  background: url("../images/services/svg/active/7.svg") center center no-repeat;
}

.services .services__item:hover .item__img--8 {
  background: url("../images/services/svg/active/8.svg") center center no-repeat;
}

.services .services__item:hover .item__img--9 {
  background: url("../images/services/svg/active/9.svg") center center no-repeat;
}

.services .services__item:hover .item__img--10 {
  background: url("../images/services/svg/active/10.svg") center center no-repeat;
}

.services .services__item:hover .item__img--11 {
  background: url("../images/services/svg/active/11.svg") center center no-repeat;
}

.services .services__item:hover .item__img--12 {
  background: url("../images/services/svg/active/12.svg") center center no-repeat;
}

.services .services__item:hover .item__img--13 {
  background: url("../images/services/svg/active/13.svg") center center no-repeat;
}

.services .services__item:hover .item__img--14 {
  background: url("../images/services/svg/active/14.svg") center center no-repeat;
}

.services .services__item:hover .item__img--15 {
  background: url("../images/services/svg/active/15.svg") center center no-repeat;
}

.services .services__item:hover .item__img--16 {
  background: url("../images/services/svg/active/16.svg") center center no-repeat;
}

.services .services__item:hover .item__img--17 {
  background: url("../images/services/svg/active/17.svg") center center no-repeat;
}

.services .services__item:hover .item__img {
  border: 1px solid #dcdcdc;
}

@media screen and (max-width: 576px) {
  .contacts {
    padding-top: 30px;
  }
}

.contacts--page {
  padding: 145px 0 30px 0;
}

@media screen and (max-width: 576px) {
  .contacts--page {
    padding: 15px 0 0 0;
  }
}

.contacts--page .contacts__title {
  width: 100%;
  text-align: center;
}

.contacts--page .contacts__container {
  flex-wrap: wrap;
}

@media screen and (max-width: 576px) {
  .contacts--page .contacts__content {
    padding-top: 0;
  }
}

.contacts .contacts__container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 576px) {
  .contacts .contacts__container {
    flex-wrap: wrap;
  }
}

.contacts .contacts__cities {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

@media screen and (max-width: 576px) {
  .contacts .contacts__cities {
    justify-content: space-between;
    margin-bottom: 15px;
  }
}

.contacts .contacts__cities .cities__btn {
  color: #ff003d;
  background: none;
  border: 1px solid #ff003d;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  text-align: center;
  font-size: 12px;
  padding: 10px;
  height: initial;
  width: 81px;
}

.contacts .contacts__cities .cities__btn--arrow {
  display: none;
}

@media screen and (max-width: 576px) {
  .contacts .contacts__cities .cities__btn {
    /* margin: 0 0 20px 0; */
    padding: 10px 5px;
    font-size: 12px;
    width: 25%;
    margin-right: 10px;
  }

  .contacts .contacts__cities .cities__btn--arrow {
    display: flex;
  }

  .contacts .contacts__cities .cities__btn--arrow .right__img {
    width: 25px;
  }

  .contacts .contacts__cities .cities__btn--hide {
    display: none;
  }
}

.contacts .contacts__cities .cities__btn:last-child {
  margin-right: 0;
}

.contacts .contacts__cities .cities__btn--active {
  background: #ff003d;
  color: #fff;
}

.contacts .contacts__cities .cities__btn:hover {
  background: #ff003d;
  color: #fff;
  transform: none;
}

.contacts .contacts__map {
  width: 45%;
  height: 350px;
  border-radius: 10px;
  overflow: hidden;
}

@media screen and (max-width: 576px) {
  .contacts .contacts__map {
    width: 100%;
    display: none;
  }
}

.contacts .contacts__content {
  width: 45%;
  padding-top: 30px;
  padding-bottom: 30px;
}

@media screen and (max-width: 576px) {
  .contacts .contacts__content {
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
  }
}

.contacts .contacts__title {
  text-transform: uppercase;
  font-size: 20px;
  color: #ff003d;
  margin: 0;
  margin-bottom: 20px;
}

@media screen and (max-width: 576px) {
  .contacts .contacts__title {
    margin-bottom: 15px;
  }
}

.contacts .contacts__text {
  font-size: 17px;
  color: #939393;
  margin: 0;
  margin-bottom: 70px;
}

.contacts .contacts__item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 25px;
}

.contacts .contacts__item a {
  color: #484848;
  transition: 0.3s;
}

.contacts .contacts__item .btn {
  color: #fff;
}

.contacts .contacts__item a:hover {
  color: #ff003d;
}

.contacts .contacts__item .item__img {
  margin-right: 20px;
  width: 25px;
}

.contacts .contacts__item .text__name {
  margin: 0;
  margin-bottom: 5px;
  color: #939393;
  font-size: 15px;
}

.contacts .contacts__item .text__about {
  margin: 0;
  font-size: 16px;
}

@media screen and (max-width: 576px) {
  .contacts .contacts__item .text__about {
    font-size: 16px;
  }
}

.contacts .contacts__item .contacts__btn {
  width: 37%;
}

.contacts .contacts__item .contacts__btn:first-child {
  margin-right: auto;
}

.contacts .contacts__item .contacts__btn--link {
  margin: 0;
  color: #ff003d;
  margin-right: 30px;
}

.contacts .contacts__item .contacts__btn--link:first-child {
  margin-right: auto;
}

.footer {
  background: linear-gradient(360deg,
      #484848 0.29%,
      rgba(72, 72, 72, 0) 116.67%);
  color: #fff;
  padding-top: 30px;
  padding-bottom: 30px;
  width: 100%;
}

.footer__container {
  padding-right: 32px;
  padding-left: 17px;
}

.footer .footer__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}

.footer .footer__row:first-child {
  margin-bottom: 50px;
  height: 220px;
}

@media screen and (max-width: 1023px) {
  .footer .footer__row {
    flex-direction: column;
    align-items: center;
  }

  .footer .footer__row:first-child {
    margin-bottom: 0px;
    height: initial;
  }
}

.footer .footer__row--menu {
  height: 150px;
  margin: 20px 0;
}

@media screen and (max-width: 1023px) {
  .footer .footer__row--menu {
    height: initial;
  }
}

.footer .left__logo {
  display: flex;
}

.footer .left__logo .logo__img {
  width: 29%;
}

@media screen and (max-width: 1023px) {
  .footer .left__logo {
    align-self: center;
    width: 80%;
  }

  .footer .left__logo .logo__img {
    width: 100%;
  }
}

.footer .left__text {
  margin-bottom: 45px;
  font-size: 17px;
}

@media screen and (max-width: 850px) and (max-height: 450px) {
  .footer .left__text {
    width: 100%;
    text-align: center;
  }
}

@media screen and (max-width: 1023px) {
  .footer .left__text {
    width: 100%;
    text-align: center;
  }
}

.footer .footer__left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30%;
  height: 100%;
  align-self: flex-end;
}

@media screen and (max-width: 850px) and (max-height: 450px) {
  .footer .footer__left {
    width: 100%;
    align-items: center;
  }
}

@media screen and (max-width: 1023px) {
  .footer .footer__left {
    width: 100%;
    align-items: center;
    margin-bottom: 20px;
  }
}

.footer .footer__left .left__iso {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 67%;
}

@media screen and (max-width: 850px) and (max-height: 450px) {
  .footer .footer__left .left__iso {
    width: 50%;
    justify-content: space-between;
  }
}

@media screen and (max-width: 1023px) {
  .footer .footer__left .left__iso {
    width: 50%;
    justify-content: space-between;
  }
}

@media screen and (max-width: 576px) {
  .footer {
    padding-bottom: 40px;
  }

  .footer .footer__left .left__iso {
    width: 60%;
  }
}

.footer .footer__left .left__iso .iso__img {
  width: 33.6px;
  height: 33.6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  border-radius: 50%;
  /* border: 1px solid #dcdcdc; */
}

@media screen and (max-width: 850px) and (max-height: 450px) {
  .footer .footer__left .left__iso .iso__img {
    margin-right: 0;
  }
}

@media screen and (max-width: 1023px) {
  .footer .footer__left .left__iso .iso__img {
    margin-right: 0;
  }
}

@media screen and (max-width: 576px) {
  .footer .footer__left .left__iso .iso__img {
    width: 25px;
    height: 25px;
  }
}

.footer .footer__left .left__iso .iso__img--9001 {
  background: url("../images/iso/9001.svg") center center no-repeat;
  background-size: contain;
}

.footer .footer__left .left__iso .iso__img--9001:hover {
  background: url("../images/iso/active/9001.svg") center center no-repeat;
  background-size: contain;
}

.footer .footer__left .left__iso .iso__img--14001 {
  background: url("../images/iso/14001.svg") center center no-repeat;
  background-size: contain;
}

.footer .footer__left .left__iso .iso__img--14001:hover {
  background: url("../images/iso/active/14001.svg") center center no-repeat;
  background-size: contain;
}

.footer .footer__left .left__iso .iso__img--18001 {
  background: url("../images/iso/18001.svg") center center no-repeat;
  background-size: contain;
}

.footer .footer__left .left__iso .iso__img--18001:hover {
  background: url("../images/iso/active/18001.svg") center center no-repeat;
  background-size: contain;
}

.footer .footer__left .left__iso .iso__img--7701 {
  background: url("../images/iso/7701.svg") center center no-repeat;
  background-size: contain;
}

.footer .footer__left .left__iso .iso__img--7701:hover {
  background: url("../images/iso/active/7701.svg") center center no-repeat;
  background-size: contain;
}

.footer .footer__left .left__iso .iso__img--7703 {
  background: url("../images/iso/7703.svg") center center no-repeat;
  background-size: contain;
}

.footer .footer__left .left__iso .iso__img--7703:hover {
  background: url("../images/iso/active/7703.svg") center center no-repeat;
  background-size: contain;
}

.footer .footer__left .left__text {
  margin-top: 0;
}

.footer .footer__left .left__link {
  color: #fff;
  font-size: 16px;
  transition: 0.3s;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 1024px) {
  .footer .footer__left .left__link {
    font-size: 15px;
  }
}

@media screen and (max-width: 850px) and (max-height: 450px) {
  .footer .footer__left .left__link {
    display: none;
  }
}

@media screen and (max-width: 1023px) {
  .footer .footer__left .left__link {
    display: none;
  }
}

.footer .footer__left .left__link .link__icon {
  margin-right: 20px;
  width: 25px;
  border-radius: 50%;
  /* border: 1px solid #dcdcdc; */
}

.footer .footer__left .left__link:hover {
  color: #ff003d;
}

.footer .footer__center {
  display: flex;
  align-self: center;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  width: 43%;
  height: 100%;
}

.footer .footer__center-mobile {
  display: none;
}

@media screen and (max-width: 850px) and (max-height: 450px) {
  .footer .footer__center {
    width: 60%;
  }
}

@media screen and (max-width: 1023px) {
  .footer .footer__center {
    width: 60%;
    align-self: center;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 576px) {
  .footer .footer__center {
    display: none;
  }

  .footer .footer__center-mobile {
    width: 100%;
    display: flex;
    align-items: center;
    font-size: 20px;
    padding: 0;
  }
}

.footer .footer__center .center__link {
  color: #fff;
  width: 21%;
  font-size: 16px;
  transition: 0.3s;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .footer .footer__center .center__link {
    font-size: 14px;
  }
}

@media screen and (max-width: 850px) and (max-height: 450px) {
  .footer .footer__center .center__link {
    width: 45%;
    margin-bottom: 20px;
    margin-top: 0;
  }
}

@media screen and (max-width: 1023px) {
  .footer .footer__center .center__link {
    width: 45%;
    margin-bottom: 20px;
    margin-top: 0;
    font-size: 18px;
  }
}

.footer .footer__center .center__link:hover {
  color: #ff003d;
}

.footer .footer__right {
  width: 25%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  height: 100%;
}

@media screen and (max-width: 850px) and (max-height: 450px) {
  .footer .footer__right {
    width: 100%;
    align-items: center;
    margin-top: inherit;
  }
}

@media screen and (max-width: 1023px) {
  .footer .footer__right {
    width: 100%;
    align-items: center;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
}

.footer .footer__right .right__btn {
  width: 80%;
}

@media screen and (max-width: 850px) and (max-height: 450px) {
  .footer .footer__right .right__btn {
    width: 60%;
  }
}

@media screen and (max-width: 1023px) {
  .footer .footer__right .right__btn {
    width: 45%;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 576px) {
  .footer .footer__right .right__btn {
    width: 60%;
  }
}

.footer .footer__right .right__btn--white {
  border: none;
  margin-bottom: 0;
  color: #484848;
}

@media screen and (max-width: 1023px) {
  .footer .footer__right .right__btn--white {
    margin: 20px 0 40px 0;
  }
}

.footer .footer__right .left__link {
  color: #fff;
  font-size: 17px;
  transition: 0.3s;
  display: flex;
  align-items: center;
  font-weight: bold;
  display: none;
}

@media screen and (max-width: 1022px) {
  .footer .footer__right .left__link {
    font-size: 18px;
    width: 45%;
    justify-content: center;
    display: flex;
    font-weight: normal;
  }
}

@media screen and (max-width: 576px) {
  .footer .footer__right .left__link {
    width: 60%;
    margin-bottom: 20px;
    justify-content: space-between;
  }

  .footer .footer__right .left__link:last-child {
    margin-bottom: 0;
  }
}

.footer .footer__right .left__link .link__icon {
  margin-right: 20px;
  width: 40px;
}

@media screen and (max-width: 576px) {
  .footer .footer__right .left__link .link__icon {
    width: 25px;
    margin-right: 10px;
  }
}

.footer .footer__right .left__link:hover {
  color: #ff003d;
}

.footer .footer__right .right__socials {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 80%;
}

@media screen and (max-width: 850px) and (max-height: 450px) {
  .footer .footer__right .right__socials {
    width: 80%;
    justify-content: space-between;
  }
}

@media screen and (max-width: 1023px) {
  .footer .footer__right .right__socials {
    width: 60%;
    justify-content: space-between;
    order: 2;
  }
}

.footer .footer__right .right__socials .socials__link {
  width: 15%;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .5s;
  filter: grayscale(100%);
}

.footer .footer__right .right__socials .socials__link--vk {
  background: url("../images/icons/socials/vk.svg") top left no-repeat;
  background-size: contain;
}

.footer .footer__right .right__socials .socials__link--dzen {
  background: url("../images/icons/socials/dzen.svg") top left no-repeat;
  background-size: contain;
}

.footer .footer__right .right__socials .socials__link--ok {
  background: url("../images/icons/socials/ok.svg") top left no-repeat;
  background-size: contain;
}

.footer .footer__right .right__socials .socials__link--rutube {
  background: url("../images/icons/socials/rutube.svg") top center no-repeat;
  background-size: contain;
}

.footer .footer__right .right__socials .socials__link--youtube {
  background: url("../images/icons/socials/youtube.svg") top right no-repeat;
  background-size: contain;
}

.footer .footer__right .right__socials .socials__link:hover {
  filter: grayscale(0) !important;
}

@media screen and (max-width: 850px) and (max-height: 450px) {
  .footer .footer__right .right__socials .socials__link {
    background-position: center center;
  }
}

@media screen and (max-width: 1023px) {
  .footer .footer__right .right__socials .socials__link {
    width: 25px;
  }
}

@media screen and (max-width: 576px) {
  .footer .footer__right .left__link .link__icon {
    width: 25px;
  }
}

.footer .row__text {
  color: #d2d2d2;
  font-size: 15px;
  margin: 0;
  transition: 0.3s;
  text-align: justify;
}

@media screen and (max-width: 850px) and (max-height: 450px) {
  .footer .row__text {
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }

  .footer .row__text:first-child {
    margin-top: 0;
  }
}

@media screen and (max-width: 1023px) {
  .footer .row__text {
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }

  .footer .row__text:first-child {
    margin-top: 0;
  }
}

@media screen and (max-width: 576px) {
  .footer .row__text {
    text-align: center;
  }
}

.footer .row__text:hover {
  color: #ff003d;
}

.footer .row__tex {
  color: #949494;
  margin-top: 20px;
  border-top: 1px solid #949494;
  padding-top: 10px;
  text-align: justify;
}

.footer .row__tex a {
  color: #949494;
  text-decoration: underline;
}

.products {
  padding: 145px 0 30px 0;
  background: #f7f7f7;
  width: 100%;
}

@media screen and (max-width: 576px) {
  .products {
    padding: 15px 0;
  }
}

.products .products__title {
  font-size: 20px;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  color: #ff003d;
  margin: 0;
  margin-bottom: 30px;
}

@media screen and (max-width: 576px) {
  .products .products__title {
    font-size: 20px;
    margin-bottom: 15px;
  }
}

.products .products__text {
  text-align: center;
  font-size: 15px;
  color: #939393;
}

.products .products__text .text__link {
  color: #ff003d;
}

.products .products__list {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  position: relative;
}

@media screen and (max-width: 576px) {
  .products .products__list {
    justify-content: space-between;
  }
}

.products .products__list .list__item {
  width: 23%;
  margin-bottom: 30px;
  margin-right: 2.6%;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  color: #484848;
  border: 1px solid rgba(184, 139, 124, 0.1);
  border-radius: 15px;
  overflow: hidden;
  align-items: center;
  justify-content: flex-start;
  transition: 0.3s;
  height: 266px;
}

.products .products__list .list__item:nth-child(4n) {
  margin-right: 0;
}

.products .products__list .list__item:hover {
  cursor: pointer;
  background: url(../images/services/active.png);
  background-size: cover;
  color: #ffffff;
}

@media screen and (max-width: 1023px) {
  .products .products__list .list__item {
    margin: 10px;
    width: 45%;
  }
}

@media screen and (max-width: 576px) {
  .products .products__list .list__item--last {
    margin: 0 0 15px 0;
  }

  .products .products__list .list__item {
    width: 100%;
    margin: 0 0 15px 0;
    height: initial;
  }
}

.products .products__list .list__item .item__exit {
  display: none;
}

.products .products__list .list__item .item__links {
  display: none;
}

.products .products__list .list__item .item__btn {
  background: #ffffff;
  border: 1px solid #ff003d;
  color: #ff003d;
  width: 60%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: initial;
  height: 35px;
}

@media screen and (max-width: 576px) {
  .products .products__list .list__item .item__btn {
    width: 70%;
  }
}

.products .products__list .list__item .item__btn:hover {
  background: #ff003d;
  color: #ffffff;
}

.products .products__list .list__item .item__link {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #484848;
  /* padding: 20px 20px; */
  transition: .3s;
  padding: 20px;
}

.products .products__list .list__item .item__link:hover {
  background: url(../images/services/active.png);
  background-size: cover;
  color: #ffffff;
}

.products .products__list .list__item .item__title {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}

@media screen and (max-width: 576px) {
  .products .products__list .list__item .item__title {
    font-size: 15px;
    margin: 0 0 20px 0;
  }
}

.products .products__list .list__item .item__text {
  margin: 0;
  font-size: 16px;
  text-align: center;
}

@media screen and (max-width: 1023px) {
  .products .products__list .list__item .item__text {
    margin: 10px 0;
  }
}

@media screen and (max-width: 576px) {
  .products .products__list .list__item .item__text {
    font-size: 15px;
    margin: 0 0 20px 0;
    text-align: center;
  }
}

.products .products__list .list__item--active {
  height: 410px;
  position: fixed;
  width: 350px;
  top: 50%;
  left: 50%;
  margin-top: -205px;
  margin-left: -175px;
  z-index: 999999;
}

@media screen and (max-width: 576px) {
  .products .products__list .list__item--active {
    width: 300px;
    height: 500px;
    margin-top: -250px;
    margin-left: -150px;
  }
}

.products .products__list .list__item--active .item__text {
  display: none;
}

.products .products__list .list__item--active .item__btn {
  display: none;
}

.products .products__list .list__item--active .item__exit {
  display: flex;
  background: none;
  border: none;
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 35px;
  color: #ff003d;
}

.products .products__list .list__item--active .item__links {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.products .products__list .list__item--active .item__links .links__link {
  font-size: 15px;
  color: #484848;
  margin-bottom: 15px;
  transition: 0.3s;
}

.products .products__list .list__item--active .item__links .links__link:hover {
  color: #ff003d;
}

.products .products__list .list__item--active .item__links .links__link .link__color {
  color: #ff003d;
}

.products .products__list .list__item .item__img {
  width: 50px;
  height: 50px;
  background-size: contain !important;
}

.products .products__list .list__item .item__img--image {
  width: initial;
  height: 51px;
  border: 1px solid #dcdcdc;
  border-radius: 5px;
}

@media screen and (max-width: 576px) {
  .products .products__list .list__item .item__img {
    margin-bottom: 20px;
  }
}

.products .products__list .list__item .item__img--underservice {
  height: initial;
  width: 50px;
  border: none;
}

.products .products__list .list__item .item__img--1 {
  background: url("../images/services/svg/1.svg") center center no-repeat;
}

.products .products__list .list__item .item__img--2 {
  background: url("../images/services/svg/2.svg") center center no-repeat;
}

.products .products__list .list__item .item__img--3 {
  background: url("../images/services/svg/3.svg") center center no-repeat;
}

.products .products__list .list__item .item__img--4 {
  background: url("../images/services/svg/4.svg") center center no-repeat;
}

.products .products__list .list__item .item__img--5 {
  background: url("../images/services/svg/5.svg") center center no-repeat;
}

.products .products__list .list__item .item__img--6 {
  background: url("../images/services/svg/6.svg") center center no-repeat;
}

.products .products__list .list__item .item__img--7 {
  background: url("../images/services/svg/7.svg") center center no-repeat;
}

.products .products__list .list__item .item__img--8 {
  background: url("../images/services/svg/8.svg") center center no-repeat;
}

.products .products__list .list__item .item__img--9 {
  background: url("../images/services/svg/9.svg") center center no-repeat;
}

.products .products__list .list__item .item__img--10 {
  background: url("../images/services/svg/10.svg") center center no-repeat;
}

.products .products__list .list__item .item__img--11 {
  background: url("../images/services/svg/11.svg") center center no-repeat;
}

.products .products__list .list__item .item__img--12 {
  background: url("../images/services/svg/12.svg") center center no-repeat;
}

.products .products__list .list__item .item__img--13 {
  background: url("../images/services/svg/13.svg") center center no-repeat;
}

.products .products__list .list__item .item__img--14 {
  background: url("../images/services/svg/14.svg") center center no-repeat;
}

.products .products__list .list__item .item__img--15 {
  background: url("../images/services/svg/15.svg") center center no-repeat;
}

.products .products__list .list__item .item__img--16 {
  background: url("../images/services/svg/16.svg") center center no-repeat;
}

.products .products__list .list__item .item__img--17 {
  background: url("../images/services/svg/17.svg") center center no-repeat;
}

.products .products__list .list__item .item__img--18 {
  background: url("../images/services/svg/18.svg") center center no-repeat;
}

.products .products__list .list__item .item__img--19 {
  background: url("../images/services/svg/19.svg") center center no-repeat;
}

.products .products__list .list__item .item__img--20 {
  background: url("../images/services/svg/20.svg") center center no-repeat;
}

.products .products__list .list__item .item__img--21 {
  background: url("../images/services/svg/21.svg") center center no-repeat;
}

.products .products__list .list__item .item__img--22 {
  background: url("../images/services/svg/22.svg") center center no-repeat;
}

.products .products__list .list__item--sales {
  height: inherit;
}

.products .products__list .list__item--sales .item__title {
  color: #939393;
  font-size: 15px;
  text-transform: uppercase;
  margin: 0;
  margin-top: 10px;
}

.products .products__list .list__item--sales .item__subtitle {
  color: #ff003d;
  font-size: 24px;
  margin: 0;
}

.products .products__list .list__item--sales .item__btn {
  color: #ffffff;
  background: #ff003d;
}

.products .products__list .list__item--sales .item__price {
  color: #ff003d;
  font-size: 17px;
  font-weight: bold;
}

.service {
  padding-bottom: 30px;
  padding-top: 145px;
}

@media screen and (max-width: 576px) {
  .service {
    padding-top: 15px;
  }
}

.service .title {
  color: #ff003d;
  font-size: 20px;
  margin-bottom: 15px;
}

.service p {
  font-size: 18px;
  margin-bottom: 0;
}

.service ol,
.service ul {
  margin: 0;
  font-size: 18px;
  padding-left: 20px;
}

.service ol {
  list-style-type: decimal;
}

.service ol li {
  list-style-type: decimal;
}

.service a {
  color: #ff003d;
  text-decoration: underline;
}

.service .service__breadcrumbs {
  list-style: none;
  padding: 0;
}

.service .service__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 470px;
}

@media screen and (max-width: 1023px) {
  .service .service__content {
    flex-direction: column;
    height: initial;
  }
}

.service .content__img {
  width: 55%;
  height: 100%;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

@media screen and (max-width: 1023px) {
  .service .content__img {
    width: 100%;
    margin-bottom: 20px;
  }
}

.service .content__img .img__img {
  height: 100%;
}

@media screen and (max-width: 1023px) {
  .service .content__img .img__img {
    height: initial;
    width: 100%;
  }
}

.service .content__img .img__sale {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: #ff0000;
  color: #ffffff;
  padding: 10px;
  width: 190px;
  text-align: center;
  border-radius: 0 0 50px 0;
}

@media screen and (max-width: 1023px) {
  .service .content__img .img__sale {
    width: 150px;
    padding: 10px;
  }
}

.service .content__img .img__sale .sale__text {
  margin: 0;
}

.service .content__about {
  width: 40%;
  height: 100%;
  padding: 0 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #ebebeb;
  border-radius: 15px;
  background: url(../images/bg.png) center center no-repeat;
}

@media screen and (max-width: 1023px) {
  .service .content__about {
    width: 100%;
    padding: 20px;
  }
}

.service .content__about .about__subtitle {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  color: #fff;
  background: #ff003d;
  border-radius: 10px;
  padding: 4px 25px;
  margin: 0 0 30px 0;
  border: 2px solid #ff003d;
}

.service .content__about .about__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  padding: 0;
}

.service .content__about .about__list .list__item {
  display: flex;
  margin-bottom: 20px;
}

.service .content__about .about__list .list__item:last-child {
  margin-bottom: 0;
}

.service .content__about .about__list .list__item .item__img {
  width: 50px;
  height: 50px;
  margin-right: 30px;
}

.service .content__about .about__list .list__item .item__text {
  font-size: 16px;
  margin: 0;
  text-align: center;
}

.service-about {
  padding: 30px 0;
}

.service-about .service-about__container {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}

@media screen and (max-width: 1023px) {
  .service-about .service-about__container {
    flex-direction: column;
  }
}

.service-about .service-about__text {
  width: 72%;
  font-size: 16px;
}

@media screen and (max-width: 1023px) {
  .service-about .service-about__text {
    width: 100%;
  }
}

.service-about .service-about__text p {
  margin: 0 0 15px 0;
  text-align: justify;
}

.service-about .service-about__text h2,
.service-about .service-about__text h3 {
  margin: 0;
  font-size: 16px;
}

.service-about .service-about__text ul,
.service-about .service-about__text ol {
  padding: 0;
  padding-left: 25px;
  margin: 0 0 15px 0;
  text-align: justify;
}

.service-about .service-about__text ol li {
  list-style: decimal;
}

.service-about .service-about__text li {
  list-style: square;
}

.service-about .service-about__text .text__border-red {
  background: linear-gradient(to right, red, white);
  padding: 2px;
  border-radius: 10px;
  margin-top: 20px;
}

.service-about .service-about__text .border-red__text {
  background: #fff;
  margin: 0;
  padding: 20px 30px;
  border-radius: 10px;
  font-weight: bold;
  font-size: 16px;
}

@media screen and (max-width: 1023px) {
  .service-about .service-about__text .border-red__text {
    padding: 10px 15px;
  }
}

.service-about .service-about__text .text__text--bg-gray {
  display: block;
  background: #f2f2f2;
  border-radius: 10px;
  padding: 20px 30px;
}

@media screen and (max-width: 1023px) {
  .service-about .service-about__text .text__text--bg-gray {
    padding: 10px 15px;
  }
}

.service-about .service-about__text .text__btns {
  display: flex;
  margin-top: 30px;
}

@media screen and (max-width: 1023px) {
  .service-about .service-about__text .text__btns {
    justify-content: space-between;
  }
}

@media screen and (max-width: 576px) {
  .service-about .service-about__text .text__btns {
    flex-direction: column;
  }
}

.service-about .service-about__text .text__btns .btns__link {
  margin-right: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-about .service-about__text .text__btns .btns__link--white {
  background: #fff;
  color: #ff003d;
  border: 1px solid #ff003d;
  transition: 0.5s;
}

.service-about .service-about__text .text__btns .btns__link--white:hover {
  color: #fff;
  background: #ff003d;
}

@media screen and (max-width: 1023px) {
  .service-about .service-about__text .text__btns .btns__link {
    margin-right: 0;
  }
}

@media screen and (max-width: 576px) {
  .service-about .service-about__text .text__btns .btns__link {
    width: 100%;
    margin-bottom: 20px;
  }
}

.service-about .service-about__text .text__btns .btns__btn {
  background: none;
  border: 1px solid #ff003d;
  color: #ff003d;
}

.service-about .service-about__news {
  width: 25%;
  /* height: 525px; */
  /* padding: 15px; */
  /* border: 1px solid #ebebeb; */
  /* border-radius: 15px; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 130px;
}

@media screen and (max-width: 1023px) {
  .service-about .service-about__news {
    width: 100%;
    height: initial;
    margin-top: 15px;
  }
}

.service-about .service-about__news .news__subtitle {
  font-size: 16px;
  font-weight: bold;
  margin-top: 0;
  background: #ff003d;
  color: #fff;
  padding: 4px 25px;
  border-radius: 10px;
  margin-bottom: 20px;
  border: 2px solid #ff003d;
}

@media screen and (max-width: 576px) {
  .service-about .service-about__news .news__subtitle {
    font-size: 16px;
  }
}

.service-about .service-about__news .news__list {
  display: flex;
  flex-direction: column;
}

.service-about .service-about__news .news__list .list__item {
  width: 100%;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 10px;
}

.service-about .service-about__news .news__list .list__item:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 1023px) {
  .service-about .service-about__news .news__list .list__item {
    height: 170px;
  }
}

@media screen and (max-width: 576px) {
  .service-about .service-about__news .news__list .list__item {
    width: 100%;
    height: 345px;
  }
}

.service-about .service-about__news .news__list .list__item .content__title {
  font-size: 14px;
  color: #484848;
  font-weight: normal;
  margin: 0 0 auto 0;
  transition: 0.3s;
}

@media screen and (max-width: 1023px) {
  .service-about .service-about__news .news__list .list__item .content__title {
    font-size: 14px;
    margin-bottom: 10px;
    word-wrap: break-word;
  }
}

.service-about .service-about__news .news__list .list__item .content__arrow {
  font-size: 30px;
  color: #484848;
  margin: 0;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 25px;
  position: absolute;
  right: 10px;
  bottom: 10px;
  transition: 0.3s;
  padding-right: 0;
  display: none;
}

@media screen and (max-width: 576px) {
  .service-about .service-about__news .news__list .list__item .content__arrow {
    font-size: 40px;
    position: initial;
    right: initial;
    bottom: initial;
    padding-right: 0;
    display: flex;
  }
}

.service-about .service-about__news .news__list .list__item .content__date {
  display: flex;
  align-items: center;
  margin: auto 0 10px 0;
  font-size: 14px;
  font-weight: bold;
  color: #484848;
  transition: 0.3s;
}

.service-about .service-about__news .news__list .list__item .content__date .content__date {
  margin: 0;
}

.service-about .service-about__news .news__list .list__item .content__date .date__icon {
  margin-right: 15px;
}

.service-about .service-about__news .news__list .list__item .content__date .date__text {
  margin: 0;
}

.service-about .service-about__news .news__list .list__item:hover .content__title,
.service-about .service-about__news .news__list .list__item:hover .content__arrow,
.service-about .service-about__news .news__list .list__item:hover .content__date {
  color: #fff;
}

.service-about .service-about__news .news__list .list__item:hover {
  background: url('../images/services/active.png');
  background-size: cover;
}

.service-about .service-about__news .news__list .list__item .item__link {
  width: 100%;
  display: flex;
  justify-content: space-between;
  border: 1px solid #c5c5c5;
  border-radius: 10px;
  padding: 0;
  overflow: hidden;
}

@media screen and (max-width: 1023px) {
  .service-about .service-about__news .news__list .list__item .item__link {
    height: 100%;
  }
}

@media screen and (max-width: 576px) {
  .service-about .service-about__news .news__list .list__item .item__link {
    flex-direction: column;
    justify-content: flex-start;
    height: initial;
  }
}

.service-about .service-about__news .news__list .list__item .item__link .link__img {
  width: 45%;
  padding: 5px;
  background-size: contain;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 1023px) {
  .service-about .service-about__news .news__list .list__item .item__link .link__img {
    height: 100%;
    overflow: hidden;
  }
}

@media screen and (max-width: 576px) {
  .service-about .service-about__news .news__list .list__item .item__link .link__img {
    width: 100%;
    overflow: hidden;
    height: 175px;
    align-items: flex-start;
  }
}

.service-about .service-about__news .news__list .list__item .item__link .link__img .img__img {
  width: 100%;
  border-radius: 10px;
}

@media screen and (max-width: 1023px) {
  .service-about .service-about__news .news__list .list__item .item__link .link__img .img__img {
    width: initial;
    height: 100%;
  }
}

@media screen and (max-width: 576px) {
  .service-about .service-about__news .news__list .list__item .item__link .link__img .img__img {
    height: initial;
    width: 100%;
  }
}

.service-about .service-about__news .news__list .list__item .item__link .link__content {
  width: 54%;
  display: flex;
  flex-direction: column;
  padding: 5px;
  position: relative;
  transition: 0.3s;
}

@media screen and (max-width: 576px) {
  .service-about .service-about__news .news__list .list__item .item__link .link__content {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
  }
}

.service-about .service-about__news .news__list .list__item .item__link .link__content .content__btn {
  width: 150px;
  padding: 0;
  height: 30px;
  position: absolute;
  bottom: 10px;
  display: none;
}

@media screen and (max-width: 576px) {
  .service-about .service-about__news .news__list .list__item .item__link .link__content .content__btn {
    position: initial;
    bottom: initial;
    display: initial;
    width: 135px;
  }
}

.news {
  padding: 145px 0 30px 0;
}

@media screen and (max-width: 576px) {
  .news {
    padding: 15px 0;
  }
}

.news .news__container {
  align-items: center;
}

.news .news__links {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

@media screen and (max-width: 576px) {
  .news .news__links {
    margin-bottom: 15px;
  }
}

.news .news__links .links__link {
  border: 1px solid #ff003d;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
  padding: 10px;
  margin-right: 20px;
  border-radius: 10px;
  font-weight: bold;
  font-size: 12px;
}

.news .news__links .links__link:last-child {
  margin-right: 0;
}

.news .news__links .links__link:hover {
  color: #ffffff;
  background: #ff003d;
}

.news .news__links .links__link--active {
  color: #ffffff;
  background: #ff003d;
}

.news .news__links .links__link--display-none {
  display: none;
}

.news .news__btn,
.docs .docs__btn {
  background: #ffffff;
  border: 1px solid #ff003d;
  padding: 4px 25px;
  color: #ff003d;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news .news__btn:hover,
.docs .docs__btn:hover {
  transform: none;
}

.docs .docs__btn--hide {
  display: none;
}

.news .news__list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  margin-top: 15px;
}

@media screen and (max-width: 576px) {
  .news .news__list {
    margin-top: 0;
  }
}

.news .news__list .list__item--hidden {
  display: none;
}

.news .news__list .list__item {
  width: 23%;
  height: 287px;
  margin-bottom: 60px;
  margin-right: 2.6%;
  overflow: hidden;
  border-radius: 10px;
}

.news .news__list .list__item:nth-child(4n) {
  margin-right: 0;
}

@media screen and (max-width: 1023px) {
  .news .news__list .list__item {
    height: 170px;
  }
}

@media screen and (max-width: 576px) {
  .news .news__list .list__item {
    width: 100%;
    height: initial;
    margin-bottom: 15px;
  }
}

.news .news__list .list__item .content__title {
  font-size: 16px;
  color: #484848;
  font-weight: normal;
  margin: 10px 0 0 0;
  transition: 0.3s;
}

@media screen and (max-width: 1023px) {
  .news .news__list .list__item .content__title {
    font-size: 15px;
    word-wrap: break-word;
  }
}

@media screen and (max-width: 576px) {
  .news .news__list .list__item .content__title {
    font-size: 15px;
    margin: 10px 0 10px;
  }
}

.news .news__list .list__item .content__arrow {
  font-size: 30px;
  color: #484848;
  margin: 0;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 25px;
  position: absolute;
  right: 10px;
  bottom: 10px;
  transition: 0.3s;
}

@media screen and (max-width: 576px) {
  .news .news__list .list__item .content__arrow {
    font-size: 40px;
    position: initial;
    right: initial;
    bottom: initial;
    padding-right: 0;
  }
}

.news .news__list .list__item .content__date {
  display: flex;
  align-items: center;
  margin: 0;
  font-size: 14px;
  font-weight: bold;
  transition: 0.3s;
}

.news .news__list .list__item .content__date .date__icon {
  margin-right: 15px;
}

.news .news__list .list__item .content__date .date__text {
  margin: 0;
}

.news .news__list .list__item:hover .content__title,
.news .news__list .list__item:hover .content__arrow,
.news .news__list .list__item:hover .content__date {
  color: #fff;
}

.news .news__list .list__item:hover {
  cursor: pointer;
  background: url(../images/services/active.png);
  background-size: cover;
  color: #ffffff;
}

.news .news__list .list__item .item__link {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border: 1px solid #c5c5c5;
  border-radius: 10px;
  padding: 5px 0 0 0;
  overflow: hidden;
  color: #484848;
}

@media screen and (max-width: 1023px) {
  .news .news__list .list__item .item__link {
    height: 100%;
  }
}

@media screen and (max-width: 576px) {
  .news .news__list .list__item .item__link {
    flex-direction: column;
    justify-content: flex-start;
    padding: 0;
  }
}

.news .news__list .list__item .item__link .link__img {
  width: 95%;
  background-size: contain;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 1023px) {
  .news .news__list .list__item .item__link .link__img {
    height: 100%;
    overflow: hidden;
  }
}

@media screen and (max-width: 576px) {
  .news .news__list .list__item .item__link .link__img {
    width: 100%;
    overflow: hidden;
    height: initial;
    align-items: flex-start;
  }
}

.news .news__list .list__item .item__link .link__img .img__img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 0 0 10px 10px;
}

@media screen and (max-width: 1023px) {
  .news .news__list .list__item .item__link .link__img .img__img {
    max-width: 100%;
    max-height: 100%;
  }
}

@media screen and (max-width: 576px) {
  .news .news__list .list__item .item__link .link__img .img__img {
    height: initial;
    width: initial;
  }
}

.news .news__list .list__item .item__link .link__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 10px;
  position: relative;
  transition: 0.3s;
}

@media screen and (max-width: 576px) {
  .news .news__list .list__item .item__link .link__content {
    width: 100%;
    height: 35%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
  }
}

.news .news__list .list__item .item__link .link__content .content__btn {
  height: 30px;
  position: absolute;
  bottom: 20px;
  background: #fff;
  color: #ff003d;
}

.news .news__list .list__item .item__link .link__content .content__btn:hover {
  background: #ff003d;
  color: #fff;
}

@media screen and (max-width: 576px) {
  .news .news__list .list__item .item__link .link__content .content__btn {
    position: initial;
    bottom: initial;
    width: 135px;
  }
}

.news .news__list .list__item .item__link .link__content .content__old-price {
  text-align: right;
  font-size: 16px;
  margin: 0;
  text-decoration: line-through;
  width: 49%;
}

.sales .content__new-price {
  text-align: right;
  color: #ff003d;
  font-size: 18px;
  margin: 0;
  width: 49%;
  transition: .3s;
}

.news .news__list .list__item .item__link .link__content .content__sale {
  font-size: 16px;
  background: #ff003d;
  color: #ffffff;
  padding: 5px 10px;
  margin: 0;
  margin-right: 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 576px) {
  .news .news__list .list__item .item__link .link__content .content__sale {
    padding: 5px 10px;
    margin-top: 10px;
  }
}

.sales .news__list .list__item .item__link {
  flex-direction: column;
  align-items: center;
  padding-top: 5px;
  color: #484848;
}

.sales .news__list .list__item .item__link:hover {
  cursor: pointer;
  background: url(../images/services/active.png);
  background-size: cover;
  color: #ffffff;
}

.sales .news__list .list__item:hover .content__title,
.sales .news__list .list__item:hover .content__arrow,
.sales .news__list .list__item:hover .content__date,
.sales .news__list .list__item:hover .content__new-price {
  color: #fff;
}

.sales .news__list .list__item {
  width: 23%;
  margin-right: 2.6%;
}

.sales .news__list .list__item:nth-child(4n) {
  margin-right: 0;
}

@media screen and (max-width: 576px) {
  .sales .news__list .list__item {
    width: 100%;
    height: initial;
  }
}

.sales .news__list .list__item--hidden {
  display: none;
}

/* .sales .news__list .list__item .item__link {
  height: 185px;
}
@media screen and (max-width: 576px) {
  .sales .news__list .list__item .item__link {
    height: initial;
  }
} */
.sales .news__list .list__item .item__link .link__img {
  overflow: hidden;
  width: 95%;
  border-radius: 10px;
}

.sales .news__list .list__item .item__link .link__img .img__img {
  height: initial;
  width: 100%;
}

@media screen and (max-width: 576px) {
  .sales .news__list .list__item .item__link .link__img .img__img {
    width: initial;
    height: initial;
    max-width: 100%;
    max-height: 100%;
  }
}

.sales .news__list .list__item .item__link .link__content {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 10px;
  width: 100%;
}

@media screen and (max-width: 576px) {
  .sales .news__list .list__item .item__link .link__content {
    justify-content: flex-start;
    align-items: center;
    padding: 15px 25px;
  }
}

.sales .news__list .list__item .item__link .link__content .content__sale {
  padding: 0 10px;
}

.sales .news__list .list__item .item__link .link__content .content__title {
  width: 100%;
  margin: 0;
  font-size: 16px;
  margin-bottom: 10px;
}

@media screen and (max-width: 576px) {
  .sales .news__list .list__item .item__link .link__content .content__title {
    width: 100%;
    margin-bottom: 10px;
    font-size: 15px;
  }
}

.sales .news__list .list__item .item__link .link__content .content__title span {
  display: block;
}

@media screen and (max-width: 576px) {
  .sales .news__list .list__item .item__link .link__content .content__title span {
    display: inline-block;
  }
}

.sales .news__list .list__item .item__link .link__content .content__old-price {
  text-align: center;
}

@media screen and (max-width: 576px) {
  .sales .news__list .list__item .item__link .link__content .content__old-price {
    margin-bottom: 10px;
    font-size: 15px;
  }
}

.sales .news__list .list__item .item__link .link__content .content__new-price {
  text-align: center;
  font-weight: bold;
  font-size: 16px;
}

@media screen and (max-width: 576px) {
  .sales .news__list .list__item .item__link .link__content .content__new-price {
    font-size: 15px;
  }
}

.sales .news__list .list__item .item__link .link__content .content__date {
  /* color: #484848; */
  margin-bottom: 10px;
}

@media screen and (max-width: 576px) {
  .sales .news__list .list__item .item__link .link__content .content__date {
    margin-bottom: 10px;
    width: 100%;
    text-align-last: left;
  }
}

.sales .news__list .list__item .item__link .link__content .content__btn {
  position: initial;
  align-self: start;
}

.jobs {
  padding: 145px 0 30px 0;
}

@media screen and (max-width: 576px) {
  .jobs {
    padding: 15px 0;
  }
}

.jobs .jobs__list {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.jobs .jobs__list .jobs__item {
  background: #ffffff;
  box-shadow: 0px 20px 70px rgba(0, 0, 0, 0.05);
  border-radius: 15px;
  width: 23%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 295px;
  margin-bottom: 50px;
  margin-right: 2.6%;
}

.jobs .jobs__list .jobs__item:nth-child(4n) {
  margin-right: 0;
}

@media screen and (max-width: 1023px) {
  .jobs .jobs__list .jobs__item {
    width: 45%;
  }
}

@media screen and (max-width: 576px) {
  .jobs .jobs__list .jobs__item {
    width: 100%;
    height: initial;
    padding: 25px;
  }
}

.jobs .jobs__list .jobs__item .item__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  color: #484848;
  height: 100%;
  width: 100%;
  padding: 25px;
  border-radius: 15px;
  transition: .3s;
}

.jobs .jobs__list .jobs__item .item__link:hover {
  background: url('../images/services/active.png');
  background-size: cover;
  color: #ffffff;
}

.jobs .jobs__list .jobs__item img {
  width: 50px;
}

.jobs .jobs__list .jobs__item .item__title {
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  margin: 0;
}

@media screen and (max-width: 576px) {
  .jobs .jobs__list .jobs__item .item__title {
    margin-top: 5px;
    margin-bottom: 0;
    margin-top: 15px;
    font-size: 15px;
  }
}

.jobs .jobs__list .jobs__item p {
  font-size: 16px;
}

@media screen and (max-width: 576px) {
  .jobs .jobs__list .jobs__item p {
    font-size: 15px;
  }
}

.jobs .jobs__list .jobs__item .item__text {
  font-size: 18px;
  color: #939393;
  text-align: center;
  margin: 0;
}

@media screen and (max-width: 576px) {
  .jobs .jobs__list .jobs__item .item__text {
    font-size: 15px;
  }
}

.jobs .jobs__list .jobs__item .item__block {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.jobs .jobs__list .jobs__item .item__btn {
  background: #ffffff;
  color: #ff003d;
  padding: 0;
  width: 65%;
  border: 1px solid red;
}

@media screen and (max-width: 576px) {
  .jobs .jobs__list .jobs__item .item__btn {
    width: 60%;
  }
}

.jobs .jobs__list .jobs__item .item__btn:hover {
  background: #ff003d;
  color: #ffffff;
}

.jobs .jobs__list .jobs__item .item__btn--link {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #ff003d;
  border: 1px solid red;
  height: 30px;
}

.jobs .jobs__list .jobs__item .item__btn--link:hover {
  background: #ff003d;
  color: #fff;
}

.price {
  padding: 145px 0 30px 0;
}

@media screen and (max-width: 576px) {
  .price {
    padding: 30px 0;
  }
}

.price .price__container {
  align-items: center;
  justify-content: center;
}

.price .price__btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

.price .price__text {
  width: 100%;
  margin-top: 0;
  margin-bottom: 20px;
  padding-left: 35px;
  font-size: 16px;
}

.price .price__text a {
  font-weight: bold;
}

.price .price__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

@media screen and (max-width: 576px) {
  .price .price__list {
    width: 100%;
  }
}

.price .price__list .list__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
  width: 100%;
}

.price .price__list .item__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: none;
  background: #ffffff;
  box-shadow: 0px 20px 70px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  color: #484848;
  font-size: 16px;
  padding: 10px 35px;
  cursor: pointer;
  transition: 0.3s;
  text-align: left;
}

@media screen and (max-width: 576px) {
  .price .price__list .item__btn {
    font-size: 16px;
    padding: 10px 15px;
  }
}

.price .price__list .item__btn:focus {
  outline: none;
  background: #7d7d7d;
  color: #ffffff;
}

.price .price__list .item__btn:hover {
  background: #7d7d7d;
  color: #ffffff;
}

.price .price__list .item__btn p {
  margin: 0;
  text-align: left;
}

.price .price__list .btn__icon {
  transform: rotate(180deg);
}

.price .price__list .item__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 94%;
  overflow: hidden;
  height: 0;
  transition: 1s;
}

.price .price__list .item__block--active {
  height: initial;
  background: #fff;
  transition: 1s;
}

.price .price__list .item__block .block__price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(184, 139, 124, 0.2);
  border-top: 1px solid #fff;
  background: #fff;
  width: 100%;
  transition: 0.3s;
  padding-top: 15px;
}

.price .price__list .item__block .block__price:hover {
  border-bottom: 1px solid #7d7d7d;
  border-top: 1px solid #7d7d7d;
}

@media screen and (max-width: 576px) {
  .price .price__list .item__block .block__price {
    flex-direction: column;
  }
}

.price .price__list .item__block .price__name {
  color: #939393;
  font-size: 16px;
  width: 70%;
  font-weight: normal;
}

@media screen and (max-width: 576px) {
  .price .price__list .item__block .price__name {
    width: 100%;
    font-size: 15px;
  }
}

.price .price__list .item__block .price__text {
  font-size: 14px;
  text-align: justify;
}

.price .price__list .item__block .price__num {
  display: flex;
  flex-direction: column;
  width: 30%;
}

@media screen and (max-width: 576px) {
  .price .price__list .item__block .price__num {
    width: 100%;
  }
}

.price .price__list .item__block .num__old-price {
  text-decoration: line-through;
  font-size: 16px;
  color: #484848;
  text-align: right;
  margin: 5px 0;
}

@media screen and (max-width: 576px) {
  .price .price__list .item__block .num__old-price {
    text-align: center;
  }
}

.price .price__list .item__block .num__new-price {
  color: #ff003d;
  font-size: 16px;
  text-align: right;
  margin: 5px 0;
}

@media screen and (max-width: 576px) {
  .price .price__list .item__block .num__new-price {
    text-align: center;
  }
}

.price .price__list .item__block .num__usual-price {
  color: #484848;
  font-size: 16px;
  text-align: right;
}

@media screen and (max-width: 576px) {
  .price .price__list .item__block .num__usual-price {
    text-align: center;
  }
}

.price .price__list .item__block .num__sale {
  color: #d2d2d2;
  font-size: 16px;
  text-align: right;
  margin: 5px 0;
}

@media screen and (max-width: 576px) {
  .price .price__list .item__block .num__sale {
    text-align: center;
  }
}

.price .price__list .item__link {
  background: #ffffff;
  border: 1px solid red;
  color: #ff003d;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 250px;
}

.price .price__list .item__link:hover {
  background: #ff003d;
  color: #ffffff;
}

.reviews {
  padding: 145px 0 30px 0;
}

.reviews--block {
  padding: 30px 0 0 0;
  background: url(../images/bg.png) center center no-repeat;
}

@media screen and (max-width: 576px) {
  .reviews {
    padding: 30px 0;
  }
}

.reviews .reviews__title {
  margin-bottom: 30px;
}

.reviews .review__years .years__item {
  border: 1px solid #939393;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
  padding: 10px;
  margin-right: 20px;
  border-radius: 10px;
}

.reviews .review__years .years__item:hover {
  background: #ff003d;
}

.reviews .review__years .years__item:hover .item__link {
  color: #fff;
}

.reviews .review__years .years__item .item__link {
  text-decoration: none;
  color: #939393;
  font-weight: bold;
}

.reviews .review__years .years__item--active {
  background: #ff003d;
}

.reviews .review__years .years__item--active .item__link {
  color: #fff;
}

.reviews .reviews__slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

/* .reviews .reviews__slider-wrap:hover .arrows__right {
  opacity: .5;
} */
.reviews .reviews__slider {
  width: 100%;
}

.reviews .reviews__slider .slider__slide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24%;
  overflow: hidden;
  position: relative;
}

@media screen and (max-width: 576px) {
  .reviews .reviews__slider .slider__slide {
    width: 100%;
  }
}

.reviews .reviews__slider .slider__slide .slide__img {
  width: 100%;
}

.reviews .reviews__slider .slider__slide .slide__link,
.result__license .license__item .license__link {
  position: absolute;
  color: rgb(147, 147, 147);
  font-size: 16px;
  font-weight: bold;
  padding: 5px 25px;
  border: 1px solid rgb(147, 147, 147);
  z-index: 10;
  border-radius: 10px;
  opacity: 0;
  transition: .5s;
  background: #fff;
}

.reviews .reviews__slider .slider__slide .slide__bg,
.result__license .license__item .license__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 5;
  opacity: 0;
  transition: .5s;
}

.reviews .reviews__slider .slider__slide:hover .slide__link,
.result__license .license__item:hover .license__link {
  opacity: 1;
  cursor: pointer;
}

.reviews .reviews__slider .slider__slide:hover .slide__bg,
.result__license .license__item:hover .license__bg {
  /* opacity: .8; */
}

.reviews .reviews__slider .slider__slide .slide__link:hover,
.result__license .license__item .license__link:hover {
  transform: rotate(-5deg);
}

.reviews .arrows__left {
  border: none;
  background: none;
  position: absolute;
  left: -18px;
  z-index: 50;
  outline: none;
  cursor: pointer;
  opacity: 0.5;
  width: 100px;
  height: 100px;
  padding: 0;
}

/* .reviews .arrows__left:hover {
  opacity: 1;
} */
.reviews .arrows__right {
  border: none;
  background: none;
  position: absolute;
  right: -18px;
  z-index: 50;
  outline: none;
  cursor: pointer;
  opacity: 0;
  width: 100px;
  height: 100px;
  padding: 0;
}

/* .reviews .arrows__right:hover {
  opacity: 1;
} */

.reviews .right__img,
.reviews .left__img {
  width: 100%;
}

.reviews .slick-arrow .right__img,
.reviews .slick-arrow .left__img {
  opacity: 0;
}

.reviews .content__menu {
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviews .content__menu .menu__btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: none;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-right: 15px;
}

.reviews .content__menu .btn__img {
  width: 100%;
}

.about {
  padding: 30px 0;
}

.about .about__text {
  font-size: 17px;
  color: #484848;
}

.about p {
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 10px;
}

.about ol {
  margin: 0;
  font-size: 18px;
  margin-bottom: 10px;
}

.about a {
  color: #ff003d;
  text-decoration: underline;
}

.about .about__img {
  width: 100%;
}

.buy {
  padding: 145px 0 30px 0;
}

@media screen and (max-width: 576px) {
  .buy {
    padding: 30px 0;
  }
}

.buy--text {
  padding: 30px 0;
}

.buy .buy__container {
  align-items: center;
}

.buy .products__title {
  margin-bottom: 30px;
}

.buy .buy__content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 30px;
  width: 100%;
}

.buy .buy__content .content__img {
  width: 55%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.buy .buy__content .content__btn {
  margin-bottom: 15px;
}

.buy .buy__content .content__qr {
  width: 40%;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.buy .buy__content .qr__img {
  width: 100%;
  margin-bottom: 10px;
}

@media screen and (max-width: 576px) {
  .buy .buy__content .content__img {
    display: none;
  }

  .buy .buy__content .content__qr {
    width: 100%;
  }
}

.buy .buy__content .content__img .img__img {
  width: 100%;
  border-radius: 15px;
}

.buy .buy__content .content__form {
  display: flex;
  flex-direction: column;
  width: 40%;
  border-radius: 15px;
  border: 1px solid #ebebeb;
  padding: 20px 30px;
}

@media screen and (max-width: 576px) {
  .buy .buy__content .content__form {
    width: 100%;
  }
}

.buy .buy__content .content__form .row {
  display: flex;
  align-items: center;
  margin: 10px 0;
}

.buy .buy__content .content__form .form__icon {
  margin-right: 20px;
  width: 20px;
}

.buy .buy__content .content__form .form__inp {
  border: none;
  border-bottom: 1px solid #d2d2d2;
  padding: 12px;
  font-size: 17px;
  outline: none;
  width: 95%;
}

.buy .buy__content .content__form .form__btn {
  margin-top: 20px;
  background: #ff003d;
  color: #ffffff;
  border: none;
  cursor: pointer;
  height: 50px;
  border-radius: 10px;
  font-size: 17px;
  font-weight: bold;
}

.buy .buy__content .content__form .form__about {
  font-size: 10px;
  color: #939393;
  text-align: center;
  margin-bottom: 0;
}

.buy .buy__content .content__form select {
  border: 1px solid #d2d2d2;
  color: #939393;
  font-size: 17px;
  padding: 12px;
  width: 100%;
}

.buy .buy__about {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 576px) {
  .buy .buy__about {
    width: 100%;
    flex-wrap: wrap;
  }
}

.buy .buy__about .about__text {
  width: 55%;
  font-size: 16px;
}

@media screen and (max-width: 576px) {
  .buy .buy__about .about__text {
    width: 100%;
  }
}

.buy .buy__about .about__text p {
  margin: 0 0 15px 0;
  text-align: justify;
}

.buy .buy__about .about__text h2,
.buy .buy__about .about__text h3 {
  margin: 0;
  font-size: 16px;
}

.buy .buy__about .about__text ul,
.buy .buy__about .about__text ol {
  padding: 0;
  padding-left: 25px;
  margin: 0 0 15px 0;
  text-align: justify;
}

.buy .buy__about .about__text ol li {
  list-style: decimal;
}

.buy .buy__about .about__text li {
  list-style: square;
}

.buy .buy__about .about__nav {
  width: 40%;
  height: 525px;
  padding: 30px;
  border: 1px solid #ebebeb;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 125px;
}

@media screen and (max-width: 1023px) {
  .buy .buy__about .about__nav {
    width: 100%;
    height: initial;
    margin-top: 30px;
  }
}

.buy .buy__about .about__nav .news__subtitle {
  font-size: 16px;
  font-weight: bold;
  margin-top: 0;
  background: #ff003d;
  color: #fff;
  padding: 5px 10px;
  border-radius: 10px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

@media screen and (max-width: 576px) {
  .buy .buy__about .about__nav .news__subtitle {
    font-size: 16px;
  }
}

.buy .buy__about .about__nav .news__list {
  display: flex;
  flex-direction: column;
}

.buy .buy__about .about__nav .news__list .list__item {
  width: 100%;
  margin-bottom: 20px;
  overflow: hidden;
}

.buy .buy__about .about__nav .news__list .list__item:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 1023px) {
  .buy .buy__about .about__nav .news__list .list__item {
    height: 170px;
  }
}

@media screen and (max-width: 576px) {
  .buy .buy__about .about__nav .news__list .list__item {
    width: 100%;
    height: 345px;
  }
}

.buy .buy__about .about__nav .news__list .list__item .content__title {
  font-size: 16px;
  color: #484848;
  font-weight: normal;
  margin: 10px 0 0 0;
  transition: 0.3s;
}

@media screen and (max-width: 1023px) {
  .buy .buy__about .about__nav .news__list .list__item .content__title {
    font-size: 15px;
    word-wrap: break-word;
  }
}

@media screen and (max-width: 576px) {
  .buy .buy__about .about__nav .news__list .list__item .content__title {
    font-size: 15px;
  }
}

.buy .buy__about .about__nav .news__list .list__item .content__arrow {
  font-size: 30px;
  color: #484848;
  margin: 0;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 25px;
  position: absolute;
  right: 10px;
  bottom: 10px;
  transition: 0.3s;
  padding-right: 0;
  display: none;
}

@media screen and (max-width: 576px) {
  .buy .buy__about .about__nav .news__list .list__item .content__arrow {
    font-size: 40px;
    position: initial;
    right: initial;
    bottom: initial;
    padding-right: 0;
    display: flex;
  }
}

.buy .buy__about .about__nav .news__list .list__item .content__date {
  display: flex;
  align-items: center;
  margin: 0;
  font-size: 14px;
  font-weight: bold;
  color: #484848;
  transition: 0.3s;
}

.buy .buy__about .about__nav .news__list .list__item .content__date .date__icon {
  margin-right: 15px;
}

.buy .buy__about .about__nav .news__list .list__item .content__date .date__text {
  margin: 0;
}

.buy .buy__about .about__nav .news__list .list__item:hover .content__title,
.buy .buy__about .about__nav .news__list .list__item:hover .content__arrow,
.buy .buy__about .about__nav .news__list .list__item:hover .content__date {
  color: #ff003d;
}

.buy .buy__about .about__nav .news__list .list__item .item__link {
  width: 100%;
  display: flex;
  justify-content: space-between;
  border: 1px solid #c5c5c5;
  border-radius: 10px;
  padding: 0;
  overflow: hidden;
}

@media screen and (max-width: 1023px) {
  .buy .buy__about .about__nav .news__list .list__item .item__link {
    height: 100%;
  }
}

@media screen and (max-width: 576px) {
  .buy .buy__about .about__nav .news__list .list__item .item__link {
    flex-direction: column;
    justify-content: flex-start;
  }
}

.buy .buy__about .about__nav .news__list .list__item .item__link .link__img {
  width: 45%;
  background-size: contain;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 1023px) {
  .buy .buy__about .about__nav .news__list .list__item .item__link .link__img {
    height: 100%;
    overflow: hidden;
  }
}

@media screen and (max-width: 576px) {
  .buy .buy__about .about__nav .news__list .list__item .item__link .link__img {
    width: 100%;
    overflow: hidden;
    height: 175px;
    align-items: flex-start;
  }
}

.buy .buy__about .about__nav .news__list .list__item .item__link .link__img .img__img {
  width: 100%;
}

@media screen and (max-width: 1023px) {
  .buy .buy__about .about__nav .news__list .list__item .item__link .link__img .img__img {
    width: initial;
    height: 100%;
  }
}

@media screen and (max-width: 576px) {
  .buy .buy__about .about__nav .news__list .list__item .item__link .link__img .img__img {
    height: initial;
    width: 100%;
  }
}

.buy .buy__about .about__nav .news__list .list__item .item__link .link__content {
  width: 54%;
  display: flex;
  flex-direction: column;
  padding: 5px;
  position: relative;
  transition: 0.3s;
}

@media screen and (max-width: 576px) {
  .buy .buy__about .about__nav .news__list .list__item .item__link .link__content {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 10px 25px;
  }
}

.buy .buy__about .about__nav .news__list .list__item .item__link .link__content .content__btn {
  width: 150px;
  padding: 0;
  height: 30px;
  position: absolute;
  bottom: 10px;
  display: none;
}

@media screen and (max-width: 576px) {
  .buy .buy__about .about__nav .news__list .list__item .item__link .link__content .content__btn {
    position: initial;
    bottom: initial;
    display: initial;
    width: 135px;
  }
}

.buy .buy__about .nav__title {
  text-align: center;
  font-size: 30px;
  margin-top: 0;
}

.buy .buy__about .nav__list {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0;
}

.buy .buy__about .nav__list .list__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.buy .buy__about .nav__list .item__img {
  width: 40%;
}

.buy .buy__about .nav__img {
  width: 100%;
}

.buy .buy__about .nav__link {
  margin-top: 30px;
  background: none;
  border: 1px solid #ff003d;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.buy .buy__about .nav__btn {
  margin-top: 30px;
}

.docs {
  padding: 145px 0 30px 0;
}

.docs__container {
  align-items: center;
}

@media screen and (max-width: 576px) {
  .docs {
    padding: 30px 0;
  }
}

.docs .docs__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
}

.docs .docs__list .list__item {
  width: 45%;
  border: 1px solid #dcdcdc;
  box-shadow: 0px 20px 70px rgba(0, 0, 0, 0.05);
  border-radius: 15px;
  height: 65px;
  padding-left: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.docs .docs__list .list__item--hidden {
  display: none;
}

@media screen and (max-width: 576px) {
  .docs .docs__list .list__item {
    width: 100%;
    margin-bottom: 20px;
    padding: 10px;
    height: initial;
  }
}

.docs .docs__list .list__item .item__link {
  width: 100%;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
  color: #484848;
  padding-right: 10px;
}

@media screen and (max-width: 1023px) {
  .docs .docs__list .list__item .item__link {
    font-size: 15px;
    padding-right: 0;
  }
}

.docs .docs__list .list__item .item__link .link__img {
  margin-right: 30px;
}

@media screen and (max-width: 1023px) {
  .docs .docs__list .list__item .item__link .link__img {
    margin-right: 15px;
  }
}

.popup-buy,
.popup-buy-org {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: fixed;
  width: 286px;
  height: 312px;
  padding: 20px 40px;
  top: -150%;
  left: 50%;
  margin-top: -156px;
  margin-left: -143px;
  background: #ffffff;
  border-radius: 10px;
  z-index: 150;
  transition: 0.3s;
  overflow: hidden;
}

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

  .popup-buy,
  .popup-buy-org {
    width: calc(100vw - 50px);
    height: initial;
    padding: 20px;
    margin-left: 0;
    left: initial;
  }
}

@media screen and (max-width: 850px) and (max-height: 450px) {

  .popup-buy,
  .popup-buy-org {
    height: 100%;
    margin-top: 0;
  }
}

.popup-buy--active,
.popup-buy-org--active {
  top: 50%;
}

@media screen and (max-width: 850px) and (max-height: 450px) {

  .popup-buy--active,
  .popup-buy-org--active {
    top: 0;
  }
}

.popup-buy .popup__btn,
.popup-buy-org .popup__btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 30px;
  color: #ff0000;
  background: none;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.popup-buy .popup__btn:hover,
.popup-buy-org .popup__btn:hover {
  opacity: 0.5;
}

.popup-buy .popup-buy__form,
.popup-buy-org .popup-buy__form {
  overflow: initial;
  display: flex;
  align-items: center;
  flex-direction: column;
}

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

  .popup-buy .popup-buy__form,
  .popup-buy-org .popup-buy__form {
    width: 95%;
  }
}

.popup-buy .form__title,
.popup-buy-org .form__title {
  font-size: 20px;
  font-weight: bold;
  color: #ff003d;
  text-align: center;
  margin: 0;
  margin-bottom: 10px;
}

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

  .popup-buy .form__title,
  .popup-buy-org .form__title {
    margin: 0 0 15px 0;
  }
}

.popup-buy .form__row,
.popup-buy-org .form__row {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 15px;
}

.popup-buy .form__row--recaptcha,
.popup-buy-org .form__row--recaptcha {
  width: 100%;
  margin-top: 20px;
  border: none;
}

/* @media screen and (max-width: 576px) {
  .popup-buy .form__row,
  .popup-buy-org .form__row {
    width: 304px;
  }
} */
.popup-buy .row__img,
.popup-buy-org .row__img {
  width: 20px;
  height: 25px;
}

.popup-buy .form__inp,
.popup-buy-org .form__inp {
  border: none;
  font-size: 16px;
  color: #484848;
  padding: 10px;
  outline: none;
  width: 95%;
}

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

  .popup-buy .form__inp,
  .popup-buy-org .form__inp {
    width: 80%;
  }
}

.popup-buy .form__btn,
.popup-buy-org .form__btn {
  margin-top: 12px;
}

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

  .popup-buy .form__btn,
  .popup-buy-org .form__btn {
    height: 50px;
    margin-top: 15px;
  }
}

/* .popup-buy .form__btn:hover,
.popup-buy-org .form__btn:hover {
  opacity: 0.5;
} */
.popup-buy .form__text,
.popup-buy-org .form__text {
  font-size: 10px;
  color: #939393;
  text-align: center;
  margin-bottom: 0;
  margin-top: 0;
}

.popup-delivery,
.popup-delivery-clinica-vao,
.popup-delivery-clinica-swao {
  display: none;
}

.popup-delivery--active {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 600px;
  height: 500px;
  background: #ffffff;
  color: #484848;
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -250px;
  margin-left: -300px;
  z-index: 100;
  padding: 20px;
  border-radius: 10px;
  font-size: 15px;
}

@media screen and (max-width: 576px) {
  .popup-delivery--active {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
  }
}

.popup-delivery .delivery__exit,
.popup-delivery-clinica-vao .delivery__exit,
.popup-delivery-clinica-swao .delivery__exit {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #ff003d;
  font-size: 30px;
  background: none;
  border: none;
  cursor: pointer;
}

.popup-delivery .delivery__title,
.popup-delivery-clinica-vao .delivery__title,
.popup-delivery-clinica-swao .delivery__title {
  font-size: 16px;
  color: #ffffff;
  background: #939393;
  padding: 5px 10px;
  border-radius: 10px;
  text-transform: uppercase;
}

.popup-delivery .delivery__text,
.popup-delivery-clinica-vao .delivery__text,
.popup-delivery-clinica-swao .delivery__text {
  font-size: 16px;
  text-align: justify;
  display: flex;
  flex-direction: column;
}

.popup-delivery .delivery__text a,
.popup-delivery-clinica-vao .delivery__text a,
.popup-delivery-clinica-swao .delivery__text a {
  margin-top: 10px;
}

.popup-job {
  display: none;
}

.popup-job--active {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 350px;
  height: 450px;
  background: #ffffff;
  color: #ff003d;
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -225px;
  margin-left: -175px;
  z-index: 50;
  padding: 20px;
  border-radius: 10px;
  font-size: 15px;
}

@media screen and (max-width: 576px) {
  .popup-job--active {
    width: 100%;
    height: 100%;
    margin: 0;
    left: 0;
    top: 0;
  }
}

.popup-job .job__title {
  font-size: 22px;
  margin: 20px 0;
}

.popup-job .job__form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.popup-job .job__form .form__row {
  display: flex;
  align-items: center;
  width: 80%;
}

.popup-job .job__form .form__row .row__img {
  width: 15px;
}

.popup-job .job__form .form__inp {
  width: 100%;
  border: none;
  background: none;
  border-bottom: 1px solid #e5e5e5;
  padding: 20px;
  font-size: 16px;
  color: #484848;
  outline: none;
}

.popup-job .job__form .form__inp::-webkit-input-placeholder {
  color: #484848;
}

.popup-job .job__form .form__inp--file {
  border: none;
}

.popup-job .job__form .form__wrap-file {
  position: relative;
  width: 70%;
  align-items: center;
  justify-content: center;
}

.popup-job .job__form .form__wrap-file .form__inp {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}

.popup-job .form__label {
  width: 100%;
}

.popup-job .form__btn {
  width: 70%;
}

.popup-job .job__form .form__wrap-file .label__btn {
  margin: 20px 0;
}

.popup-job .job__text {
  font-size: 10px;
  color: #939393;
  text-align: center;
  opacity: 0.6;
  width: 70%;
}

.popup-job .job__exit {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #ff003d;
  font-size: 35px;
  background: none;
  border: none;
  cursor: pointer;
}

.bg {
  background: #c4c4c4;
  opacity: 0.5;
  position: absolute;
  width: 100%;
  height: 0;
  left: 0;
  top: 0;
  z-index: 11;
  transition: 0.3s;
}

.bg--active {
  height: 100%;
}

.bg--active-popup {
  height: 100%;
  z-index: 100;
}

.phone-abs {
  display: none;
}

@media screen and (max-width: 576px) {
  .phone-abs {
    position: fixed;
    bottom: 0;
    background: none;
    background: #f3f3f3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px 0;
  }
}

.phone-abs .phone-abs__link {
  display: none;
}

@media screen and (max-width: 576px) {
  .phone-abs .phone-abs__link {
    display: flex;
    font-size: 16px;
    font-weight: bold;
    color: #d9251c;
  }
}

.phone-abs .phone-ads__img {
  margin-right: 20px;
  width: 25px;
}

.new {
  padding-bottom: 30px;
  padding-top: 150px;
}

@media screen and (max-width: 576px) {
  .new {
    padding-top: 15px;
  }
}

.new .container {
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.new .title {
  color: #ff003d;
  font-size: 20px;
  width: 100%;
  text-align: center;
  margin: 0 0 30px 0;
}

@media screen and (max-width: 576px) {
  .new .title {
    font-size: 20px;
    margin-bottom: 15px;
  }
}

.new p {
  font-size: 16px;
  margin-bottom: 0;
  text-align: justify;
}

.new ol,
.new ul {
  margin: 0;
  font-size: 16px;
  padding-left: 20px;
  text-align: justify;
}

.new h2 {
  font-size: 16px;
}

.new ul {
  list-style: initial;
}

.new a {
  color: #ff003d;
  text-decoration: none;
  font-weight: bold;
}

.new .content__border-red {
  background: linear-gradient(to right, red, white);
  padding: 2px;
  border-radius: 10px;
  margin-top: 20px;
}

.new .border-red__text {
  background: #fff;
  margin: 0;
  padding: 20px 30px;
  border-radius: 10px;
  font-weight: bold;
  font-size: 16px;
}

@media screen and (max-width: 1023px) {
  .new .border-red__text {
    padding: 10px 15px;
  }
}

.new .content__text--bg-gray {
  display: block;
  background: #f2f2f2;
  border-radius: 10px;
  padding: 20px 30px;
}

@media screen and (max-width: 1023px) {
  .new .content__text--bg-gray {
    padding: 10px 15px;
  }
}

.new .new__breadcrumbs {
  list-style: none;
  padding: 0;
}

.new h2 {
  margin-bottom: 0;
}

.new .new__content {
  width: 55%;
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 1023px) {
  .new .new__content {
    width: 100%;
    margin-bottom: 30px;
  }
}

.new .new__content .new__img {
  width: 100%;
  margin: 0;
  border-radius: 15px;
}

.new .new__content .content__callback {
  display: flex;
  align-items: center;
  margin-top: 30px;
  width: 100%;
}

@media screen and (max-width: 576px) {
  .new .new__content .content__callback {
    flex-direction: column;
  }
}

.new .new__content .content__link {
  color: #fff;
  text-decoration: none;
  margin-right: 75px;
}

.new .new__content .content__link:hover {
  color: #ff003d;
}

@media screen and (max-width: 576px) {
  .new .new__content .content__link {
    width: 100%;
    margin: 0;
    margin-bottom: 20px;
  }
}

.new .new__content .content__btn,
.new .new__content .content__btn-link {
  background: none;
  color: #ff003d;
  border: 1px solid #ff003d;
  display: flex;
  align-items: center;
  justify-content: center;
}

.new .new__content .content__btn-link:hover {
  color: #fff;
  background: #ff003d;
}

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

  .new .new__content .content__btn,
  .new .new__content .content__btn-link {
    width: 100%;
  }
}

.new .new__nav {
  display: flex;
  width: 40%;
  flex-direction: column;
  position: sticky;
  top: 10px;
}

@media screen and (max-width: 1023px) {
  .new .new__nav {
    width: 100%;
  }
}

.new .new__nav .nav__block {
  border: 1px solid #ebebeb;
  border-radius: 15px;
  margin-bottom: 30px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 1023px) {
  .new .new__nav .nav__block {
    padding: 20px;
  }
}

.new .new__nav .nav__block--img .nav__list {
  display: flex;
  flex-direction: column;
}

.new .new__nav .nav__block--img .nav__list .list__item {
  width: 100%;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 10px;
}

.new .new__nav .nav__block--img .nav__list .list__item:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 1023px) {
  .new .new__nav .nav__block--img .nav__list .list__item {
    height: 170px;
  }
}

@media screen and (max-width: 576px) {
  .new .new__nav .nav__block--img .nav__list .list__item {
    width: 100%;
    height: 375px;
  }
}

.new .new__nav .nav__block--img .nav__list .list__item .content__title {
  font-size: 14px;
  color: #484848;
  font-weight: normal;
  margin: 0 0 auto 0;
  transition: 0.3s;
  text-align: left;
}

@media screen and (max-width: 1023px) {
  .new .new__nav .nav__block--img .nav__list .list__item .content__title {
    font-size: 15px;
    word-wrap: break-word;
  }
}

@media screen and (max-width: 576px) {
  .new .new__nav .nav__block--img .nav__list .list__item .content__title {
    font-size: 15px;
  }
}

.new .new__nav .nav__block--img .nav__list .list__item .content__arrow {
  font-size: 30px;
  color: #484848;
  margin: 0;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 25px;
  position: absolute;
  right: 10px;
  bottom: 10px;
  transition: 0.3s;
  padding-right: 0;
  display: none;
}

@media screen and (max-width: 576px) {
  .new .new__nav .nav__block--img .nav__list .list__item .content__arrow {
    font-size: 40px;
    position: initial;
    right: initial;
    bottom: initial;
    padding-right: 0;
    display: flex;
  }
}

.new .new__nav .nav__block--img .nav__list .list__item .content__date {
  display: flex;
  align-items: center;
  margin: auto 0 10px 0;
  font-size: 14px;
  font-weight: bold;
  color: #484848;
  transition: 0.3s;
}

.new .new__nav .nav__block--img .nav__list .list__item .content__date .content__date {
  margin: 0;
}

.new .new__nav .nav__block--img .nav__list .list__item .content__date .date__icon {
  margin-right: 15px;
}

.new .new__nav .nav__block--img .nav__list .list__item .content__date .date__text {
  margin: 0;
}

.new .new__nav .nav__block--img .nav__list .list__item:hover .content__title,
.new .new__nav .nav__block--img .nav__list .list__item:hover .content__arrow,
.new .new__nav .nav__block--img .nav__list .list__item:hover .content__date {
  color: #fff;
}

.new .new__nav .nav__block--img .nav__list .list__item:hover {
  background: url('../images/services/active.png');
  background-size: cover;
}

.new .new__nav .nav__block--img .nav__list .list__item .item__link {
  width: 100%;
  display: flex;
  justify-content: space-between;
  border: 1px solid #c5c5c5;
  border-radius: 10px;
  padding: 0;
  overflow: hidden;
}

@media screen and (max-width: 1023px) {
  .new .new__nav .nav__block--img .nav__list .list__item .item__link {
    height: 100%;
  }
}

@media screen and (max-width: 576px) {
  .new .new__nav .nav__block--img .nav__list .list__item .item__link {
    flex-direction: column;
    justify-content: flex-start;
  }
}

.new .new__nav .nav__block--img .nav__list .list__item .item__link .link__img {
  width: 45%;
  padding: 5px;
  background-size: contain;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 1023px) {
  .new .new__nav .nav__block--img .nav__list .list__item .item__link .link__img {
    height: 100%;
    overflow: hidden;
  }
}

@media screen and (max-width: 576px) {
  .new .new__nav .nav__block--img .nav__list .list__item .item__link .link__img {
    width: 100%;
    overflow: hidden;
    height: 225px;
    align-items: flex-start;
  }
}

.new .new__nav .nav__block--img .nav__list .list__item .item__link .link__img .img__img {
  width: 100%;
  border-radius: 10px;
}

@media screen and (max-width: 1023px) {
  .new .new__nav .nav__block--img .nav__list .list__item .item__link .link__img .img__img {
    width: initial;
    height: 100%;
  }
}

@media screen and (max-width: 576px) {
  .new .new__nav .nav__block--img .nav__list .list__item .item__link .link__img .img__img {
    height: initial;
    width: 100%;
  }
}

.new .new__nav .nav__block--img .nav__list .list__item .item__link .link__content {
  width: 54%;
  display: flex;
  flex-direction: column;
  padding: 5px;
  position: relative;
  transition: 0.3s;
}

@media screen and (max-width: 576px) {
  .new .new__nav .nav__block--img .nav__list .list__item .item__link .link__content {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 10px 25px;
  }
}

.new .new__nav .nav__block--img .nav__list .list__item .item__link .link__content .content__btn {
  width: 150px;
  padding: 0;
  height: 30px;
  position: absolute;
  bottom: 10px;
  display: none;
}

@media screen and (max-width: 576px) {
  .new .new__nav .nav__block--img .nav__list .list__item .item__link .link__content .content__btn {
    position: initial;
    bottom: initial;
    display: initial;
    width: 135px;
  }
}

.new .new__nav .nav__block:last-child {
  margin-bottom: 0;
}

.new .new__nav .nav__title {
  text-align: center;
  font-size: 16px;
  color: #fff;
  background: #ff003d;
  border-radius: 10px;
  padding: 4px 25px;
  margin: 0 0 20px 0;
}

.new .new__nav .nav__list {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0;
}

.new .new__nav .nav__list .list__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.new .new__nav .nav__list .list__item:last-child {
  margin-bottom: 0;
}

.new .new__nav .nav__list .item__img {
  width: 40%;
}

.new .new__nav .nav__img {
  width: 100%;
}

.new .new__nav .nav__link {
  margin-top: 30px;
  background: none;
  border: 1px solid #ff003d;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.new .new__nav .nav__btn {
  margin-top: 30px;
}

.job {
  padding-bottom: 30px;
  padding-top: 145px;
}

@media screen and (max-width: 576px) {
  .job {
    padding-top: 30px;
  }
}

.job .container {
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.job .title {
  color: #ff003d;
  font-size: 20px;
  width: 100%;
  text-align: center;
  margin: 0 0 30px 0;
}

@media screen and (max-width: 576px) {
  .job .title {
    font-size: 20px;
  }
}

.job p {
  font-size: 16px;
  margin-bottom: 0;
  text-align: justify;
}

.job ol,
.job ul {
  margin: 0;
  font-size: 16px;
  padding-left: 20px;
}

.job ul {
  list-style: initial;
}

.job a {
  color: #ff003d;
  text-decoration: none;
  font-weight: bold;
}

.job .job__breadcrumbs {
  list-style: none;
  padding: 0;
}

.job .job__content {
  width: 55%;
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 1023px) {
  .job .job__content {
    width: 100%;
  }
}

.job .job__content .job__img {
  width: 100%;
  margin: 40px 0;
}

.job .job__content .content__border-red {
  background: linear-gradient(to right, red, white);
  padding: 2px;
  border-radius: 10px;
  margin: 20px 0;
}

.job .job__content .border-red__text {
  background: #fff;
  margin: 0;
  padding: 20px 30px;
  border-radius: 10px;
  font-weight: bold;
  font-size: 17px;
}

@media screen and (max-width: 1023px) {
  .job .job__content .border-red__text {
    padding: 10px 15px;
  }
}

.job__content .job__btns {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 20px;
}

.job__content .job__btns a {
  color: #fff;
  margin-right: 75px;
}

.job__content .job__btns a:hover {
  color: #ff003d;
}

@media screen and (max-width: 576px) {
  .job__content .job__btns .btn {
    width: 100%;
  }

  .job__content .job__btns a {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.job .job__nav {
  display: flex;
  width: 40%;
  flex-direction: column;
  align-items: center;
  position: sticky;
  top: 125px;
  border: 1px solid #dcdcdc;
  border-radius: 15px;
  padding: 30px;
}

@media screen and (max-width: 1023px) {
  .job .job__nav {
    width: 100%;
    margin-top: 30px;
  }
}

.job .job__nav .nav__title {
  margin-bottom: 20px;
  margin-top: 0;
}

.job .job__nav .nav__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding-left: 40px;
  font-size: 20px;
  padding: 0;
  list-style: none;
}

.job .job__nav .list__item {
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  font-size: 14px;
}

.job .job__nav .list__item:last-child {
  margin-bottom: 0;
}

.job .job__nav .list__item .item__img {
  margin-right: 30px;
  width: 60px;
}

.job .job__nav .nav__subtitle {
  font-size: 16px;
  text-align: center;
}

.job .job__nav .nav__btn {
  margin-left: 15px;
  width: 225px;
}

.succes-pay,
.unsucces-pay {
  height: 50vh;
  padding-top: 145px;
}

.succes-pay .succes-pay__title {
  color: green;
  font-size: 42px;
  text-transform: uppercase;
  text-align: center;
}

.unsucces-pay .unsucces-pay__title {
  color: #ff003d;
  font-size: 42px;
  text-transform: uppercase;
  text-align: center;
}

.not-found {
  padding: 150px 0 50px 0;
}

.not-found p {
  font-size: 16px;
}

.not-found h1 {
  text-align: center;
  color: #ff003d;
  font-size: 20px;
  margin: 0 0 30px 0;
}

.rnova-widget {
  padding: 110px 0 0 0;
}

.swiper {
  width: 69%;
  height: 40px;
}

.button-next,
.button-prev {
  color: #ff003d;
  border: 1px solid #939393;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
  padding: 10px;
  width: 15%;
  height: 40px;
  border-radius: 10px;
  top: 0;
  margin: 0;
}

.reviews__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 30px;
}

.reviews__pagination .years__item,
.news .news__links .years__item {
  border: 1px solid #ff003d;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
  padding: 10px;
  margin-right: 20px;
  border-radius: 10px;
  font-weight: bold;
  font-size: 12px;
  width: 50px;
  height: 40px;
}

.reviews__pagination .years__item:hover,
.news .news__links .years__item:hover {
  color: #fff;
  background: #ff003d;
}

.reviews__pagination .years__item--arrow:hover,
.news .news__links .years__item--arrow:hover {
  background: #fff;
}

.reviews__pagination .years__item:hover a,
.news .news__links .years__item:hover a {
  color: #fff;
}

.reviews__pagination .years__item--none,
.news .news__links .years__item--none {
  display: none;
}

.reviews__pagination .years__item--active,
.news .news__links .years__item--active {
  background: #ff003d;
  color: #fff;
}

.reviews__pagination .years__item--active a,
.news .news__links .years__item--active a {
  color: #fff;
}

.reviews__pagination .left__img,
.reviews__pagination .right__img,
.news .news__links .right__img,
.news .news__links .left__img {
  width: 25px;
}

.reviews__pagination .years__item--display-none,
.news .news__links .years__item--display-none {
  display: none;
}

@media screen and (max-width: 1023px) {
  .reviews__pagination {
    width: 100%;
  }

  .reviews__pagination .years__item--display-none-mobile,
  .news .news__links .years__item--display-none-mobile {
    display: none;
  }
}

.partners__slider {
  width: 100%;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* .partners__slider .slick-slide {
  width: 60px;
} */

.partners__slider img {
  width: 100%;
  border: 1px solid #dcdcdc;
  border-radius: 5px;
}

.partners__slider .slider__link {
  /* border: 1px solid #fff; */
  transition: .7s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  border-radius: 5px;
  border: 1px solid #fff;
}

.partners__slider .slider__link:hover {
  /* background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='5' ry='5' stroke='%23dcdcdc' stroke-width='2' stroke-dasharray='6%2c 14' stroke-dashoffset='2' stroke-linecap='square'/%3e%3c/svg%3e"); */
  border-radius: 5px;
  /* border: 1px solid #dcdcdc;
  background: #dcdcdc; */
  transform: translateY(-10px);
  /* border: 1px dashed #ff003d; */
}

@media screen and (max-width: 576px) {
  .partners__slider .slick-slide {
    margin: 0 10px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}