@charset "UTF-8";
a:active,
a:hover,
a {
   text-decoration: none !important;
}

html {
   scroll-behavior: smooth;
}

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

button:active,
button:hover,
button:focus,
button {
   outline: none !important;
   border: none;
}

html {
   overflow-x: hidden;
}

body {
   font-family: "Montserrat", sans-serif;
   overflow: hidden;
}

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

.header {
   position: fixed;
   width: calc(100% - 30px);
   top: 0;
   left: 0;
   z-index: 50;
   padding: 15px;
   padding-bottom: 35px;
   background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.83) 31.25%,
      rgba(255, 255, 255, 0) 100%
   );
}

.header ul {
   margin: 0;
   padding: 0;
}

.header:before {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   z-index: 2;
}

.header__body {
   width: 100%;
   position: relative;
   display: flex;
   max-width: 1650px;
   height: 140px;
   align-items: center;
   z-index: 3;
   margin: 0 auto;
   justify-content: space-between;
}

.header__logo {
   z-index: 3;
   width: 22%;
}

.header__logo img {
   max-width: 100%;
   margin-left: 10px;
}

.header__burger {
   display: none;
}

.header__menu {
   margin-right: 18px;
   width: 100%;
   display: flex;
   height: 100%;
   align-items: center;
   max-width: 1234px;
   padding-bottom: 1.7%;
}

.header__list {
   width: 100%;
   height: 100%;
   display: flex;
   position: relative;
   z-index: 2;
   padding-left: 10px;
   align-items: center;
   max-width: 1100px;
   justify-content: space-between;
}

.header__list li {
   margin: 0 5px;
   position: relative;
   list-style: none;
   font-style: normal;
   font-weight: normal;
   font-size: 16px;
   line-height: 20px;
   text-transform: uppercase;
   color: #292929;
   white-space: nowrap;
   transition: 0.5s;
}

.header__list li a {
   cursor: pointer;
}

.header li .header__link:before {
   content: url(../img/hover.png);
   position: absolute;
   top: 48%;
   right: -20%;
   z-index: -1;
   opacity: 0;
   transition: 1s;
}

.header li:hover {
   transition: 0s;
}

.header li:hover .header__link:before {
   opacity: 1;
   transition: 1s;
}

.header__icons {
   /*width: 5%;*/
   position: relative;
   display: flex;
   margin-left: 2.5%;
}

.header__icons li:nth-child(2) {
   margin: 0px 13px;
}

.header__icons li {
   height: fit-content;
   transition: 1s;
   list-style-type: none;
   margin: 0;
   margin-left: 17%;
}

.header__icons a {
   transition: 1s;
   max-width: 18px;
   overflow: hidden;
   display: flex;
}

.header__icons li:hover {
   transition: 1s;
}

.header__icons li:hover a {
   max-width: 136px;
   transition: 1s;
}

.header__icons li:hover .header__link:before {
   display: none;
}

.header__icons:before {
   content: "";
   position: absolute;
   border-left: 1px solid black;
   width: 1px;
   height: 185%;
   top: -12px;
}

.header__tel:hover {
   font-weight: 600;
}

.header__icons .header__list li:nth-child(1):hover {
   /* margin-left: 5%;
     margin-right: -75%; */
}

.header__icons .header__list li:nth-child(1):hover .header__tel {
   display: block;
}

@media (max-width: 1650px) {
   .header {
      width: 100%;
      padding: 15px 0;
   }

   .header__icons {
      width: 8%;
      margin-left: 0.5%;
   }

   .header__logo {
      z-index: 3;
      width: 19%;
   }

   .header__menu {
      width: 75%;
   }

   .header__list li {
      font-size: 14px;
   }

   .header__icons {
      width: unset;
      position: relative;
      display: flex;
      max-width: 189px;
      margin-left: 2.5%;
   }

   .header__icons li:nth-child(2) {
      margin: 0px 15px;
   }

   .con__text {
      padding: 0 5px;
      font-size: 17px;
   }
}

@media (max-width: 1200px) {
   .header {
      width: 100%;
      padding: 0;
      max-width: 100%;
   }

   .header__body {
      width: 95%;
      height: 100px;
      padding: 30px 5px 0 5px;
   }

   .header__logo {
      width: 20%;
   }

   .header__logo img {
      width: 100%;
      height: auto;
      margin-left: 0;
   }

   .header__burger {
      display: block;
      position: relative;
      width: 30px;
      height: 20px;
      z-index: 3;
   }

   .header__burger:before,
   .header__burger:after {
      content: "";
      background-color: black;
      position: absolute;
      width: 100%;
      height: 2px;
      left: 0;
   }

   .header__burger:before {
      top: 0;
      transition: all 0.6s ease 0s;
   }

   .header__burger:after {
      bottom: 0;
      transition: all 0.6s ease 0s;
   }

   .header__burger span {
      background-color: black;
      position: absolute;
      width: 100%;
      height: 2px;
      left: 0;
      top: 9px;
      transition: all 0.6s ease 0s;
   }

   .header__burger.active:before {
      transform: rotate(45deg);
      top: 9px;
      transition: all 0.6s ease 0s;
   }

   .header__burger.active:after {
      transform: rotate(-45deg);
      bottom: 9px;
      transition: all 0.6s ease 0s;
   }

   .header__burger.active span {
      transform: scale(0);
      transition: all 0.6s ease 0s;
   }

   .header__menu {
      position: fixed;
      margin: 0 auto;
      top: 0;
      left: -100%;
      width: 100%;
      height: auto;
      padding: 0 0 0 0;
      overflow: auto;
      transition: all 0.6s ease 0s;
   }

   .header__menu.active {
      padding-top: 130px;
      display: flex;
      left: 0;
      transition: all 0.6s ease 0s;
      flex-direction: column;
      background: #ff5a1f !important;
      opacity: 0.92;
   }

   .header__menu.active .header__list {
      width: 100%;
      max-width: 100%;
   }

   .header__list {
      display: block;
      margin: 79px 0 0 0;
      width: 100%;
   }

   .header__list li {
      padding: 15px 0 10px 0;
      text-align: center;
      margin: 0 0 0 0 !important;
      color: #ffffff !important;
   }

   .header__list li a:before,
   .header__list li a:after {
      display: none;
   }

   .header__icons {
      justify-content: space-around;
      display: flex;
      width: 15%;
      margin: 15px auto;
   }

   .header__icons .header__list {
      background: inherit;
      opacity: 1;
      display: flex;
      margin: 0;
      padding: 0;
   }

   .header__icons:before {
      display: none;
   }

   .header li:hover {
      transition: 0s;
   }

   .header li:hover .header__link:before {
      display: none;
   }
}

@media (max-width: 767px) {
   .header__logo {
      width: 35%;
   }
}

@media (max-width: 575px) {
   .header__body {
      padding-top: 0;
      height: 90px;
   }
}
.color {
   background-color: #ffffff;
}

.hero {
   width: 100%;
   position: relative;
   display: flex;
   flex-direction: column;
   display: none;
}

.hero img {
   width: 100%;
   height: auto;
}

.video__wrap {
   max-height: 100vh;
   overflow: hidden;
   width: 100%;
}

.video-wrap iframe {
   width: 100%;
   height: 100%;
   object-fit: cover;
}

.hero__video {
   position: relative;
   padding-bottom: 56.25%;
   height: 0;
   overflow: hidden;
   max-width: 100%;
}

.hero__video iframe {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
}

@media (max-width: 1200px) {
   .hero {
      padding-top: 130px;
   }
}

.cabinet {
   width: 100%;
   overflow: hidden;
   position: relative;
}

.cabinet p {
   font-style: normal;
   font-weight: normal;
   font-size: 16px;
   line-height: 23px;
   text-align: justify;
   color: #292929;
}

.cabinet__container {
   margin-left: auto;
   padding-top: 180px;
   max-width: 1240px;
   display: flex;
   flex-direction: column;
   margin-right: 6.5%;
   position: relative;
   padding-bottom: 178px;
}

.cabinet__orange {
   position: absolute;
   left: 0;
   top: 0;
   z-index: -1;
   overflow: hidden;
}

.cabinet__grey {
   position: absolute;
   top: -9%;
   left: 0;
   z-index: -1;
   overflow: hidden;
}

.cabinet__bottom {
   position: absolute;
   /*bottom: -7.7%;*/
   bottom: 0;
   right: 0;
   z-index: -1;
   overflow: hidden;
}

.cabinet__black {
   position: absolute;
   top: 0;
   right: 0;
}

.cabinet__item {
   position: absolute;
   top: 13%;
   left: 37%;
}

.cabinet__face {
   width: 50%;
   position: absolute;
   top: 20%;
   left: 0;
}

.cabinet__face img {
   object-fit: contain;
   height: auto;
}

.cabinet__title {
   max-width: 795px;
   font-style: normal;
   font-weight: normal;
   font-size: 40px;
   line-height: 54px;
   color: #292929;
   position: relative;
}

.cabinet__title p {
   margin: 0;
   display: contents;
   max-width: 795px;
   font-style: normal;
   font-weight: normal;
   font-size: 40px;
   line-height: 54px;
   color: #292929;
   position: relative;
}

.cabinet__info {
   padding-top: 330px;
   max-width: 630px;
   align-self: flex-end;
   display: flex;
   flex-direction: column;
}

.cabinet__header {
   font-style: normal;
   font-weight: normal;
   font-size: 30px;
   line-height: 40px;
   color: #292929;
}

.cabinet__header p {
   display: contents;
   font-style: normal;
   font-weight: normal;
   font-size: 30px;
   line-height: 40px;
   color: #292929;
}

.cabinet__contact {
   padding-top: 30px;
   align-items: center;
   display: flex;
   justify-content: space-between;
}

.cabinet__link {
   max-width: 350px;
   font-style: normal;
   font-weight: 600;
   font-size: 19px;
   line-height: 26px;
   color: #4e5156;
}

.cabinet__phone {
   position: relative;
}

.cabinet__phone img {
   padding-right: 10%;
}

.cabinet__phone a {
   font-style: normal;
   font-weight: 600;
   font-size: 24px;
   line-height: 32px;
   color: #4e5156;
   white-space: nowrap;
}

.cabinet__phone:before {
   content: url("../img/cabinet__hover.png");
   position: absolute;
   top: 22%;
   left: 77%;
   z-index: -1;
   opacity: 0;
   transition: 1s;
}

.cabinet__phone:hover:before {
   opacity: 1;
   transition: 1s;
}

@media (max-width: 1700px) {
   .cabinet__face {
      width: 50%;
   }
   .cabinet__face img {
      width: 100%;
   }
   .intro {
      margin: 0 0 0 0 !important;
   }
}

@media (max-width: 1442px) {
   .cabinet__grey {
      top: -10%;
   }

   .cabinet__container {
      /* padding-left: 20px;
      padding-right: 20px; */
      padding-bottom: 75px;
   }

   .cabinet__bottom {
      bottom: -17.7%;
   }

   .cabinet__face {
      top: 26%;
   }
}

@media (max-width: 1200px) {
   .cabinet__item {
      left: 24%;
   }

   .cabinet__container {
      padding-left: 20px;
      padding-right: 20px;
      margin: 0;
   }

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

   .cabinet__info {
      align-self: center;
   }
}

@media (max-width: 991px) {
   .cabinet__container {
      padding-top: 30px;
      margin: 75px 0 0 0;
   }

   .cabinet__item {
      display: none;
   }

   .cabinet__info {
      padding-top: 30px;
   }

   .cabinet__face {
      display: none;
   }

   .cabinet__black {
      display: none;
   }

   .cabinet__bottom {
      bottom: -56.7%;
   }

   .cabinet__grey {
      top: -13%;
   }
}

@media (max-width: 767px) {
   .cabinet__title {
      font-size: 25px;
      text-align: center;
   }

   .cabinet__header {
      font-style: normal;
      font-weight: normal;
      font-size: 25px;
   }
}

@media (max-width: 567px) {
   .cabinet__grey {
      display: none;
   }

   .cabinet__title p {
      text-align: center;
      display: block;
      line-height: 35px;
      font-size: 21px;
   }

   .cabinet__orange {
      display: none;
   }

   .cabinet__title {
      font-size: 21px;
   }

   .cabinet__phone {
      padding-top: 25px;
      align-self: flex-start;
   }

   .cabinet__contact {
      flex-direction: column;
   }

   .cabinet__header {
      font-size: 21px;
      line-height: 23px;
   }

   .cabinet p {
      font-size: 14px;
      line-height: 23px;
   }
   .cabinet__title p {
      font-size: 21px;
   }
   .cabinet__link {
      font-size: 14px;
   }

   .cabinet__phone:before {
      top: 55%;
   }
}

.intro {
   width: 100%;
   overflow: hidden;
}

.intro__container {
   width: 100%;
   display: flex;
}

.intro__card {
   flex: 0.1 100%;
   position: relative;
}

.intro__logo img {
   width: 100%;
   height: auto;
}

.intro .intro__card:nth-child(2) .intro__info {
   background: #0c95c1;
}

.intro .intro__card:nth-child(3) .intro__info {
   background: #9e51d6;
}
.intro .intro__card:nth-child(4) .intro__info {
   background: #5166d6;
}

.intro__info {
   transition: 0.5s;
   display: flex;
   justify-content: center;
   align-items: center;
   height: 35.5%;
   width: 100%;
   background: #ff5a1f;
   position: absolute;
   bottom: 0;
   font-style: normal;
   font-weight: 600;
   font-size: 24px;
   line-height: 32px;
   text-align: center;
   color: #ffffff;
}

.intro__item {
   bottom: 29%;
   position: absolute;
   left: 50%;
   transform: translateX(-50%);
   transition: 0.5s;
}

.intro__item_white {
   bottom: 46%;
   position: absolute;
   transform: translateX(-50%);
   left: 50%;
   transition: 0.5s;
   z-index: 1;
   visibility: hidden;
   opacity: 0;
}

.intro__description {
   max-width: 95%;
   margin: 0 auto;
}

.intro__card:hover .intro__item {
   opacity: 0;
   visibility: hidden;
   transition: 0.5s;
}

.intro__card:hover .intro__item_white {
   display: block;
   opacity: 1;
   visibility: unset;
}

.intro__card:hover .intro__info {
   height: 100%;
   background: rgba(255, 90, 31, 0.7);
}

.intro__card:hover .intro__description {
   padding-top: 34%;
}

.intro__card:nth-child(2):hover .intro__info {
   background: rgba(12, 149, 193, 0.7);
}

.intro__card:nth-child(3):hover .intro__info {
   background: rgba(158, 81, 214, 0.7);
}
.intro__card:nth-child(4):hover .intro__info {
   background: rgba(81, 102, 214, 0.7);
}

@media (max-width: 1700px) {
   .intro__item {
      /*left: 17%;*/
      bottom: 27%;
   }

   .intro__item_white {
      bottom: 41%;
      /*left: 12%;*/
   }
}

@media (max-width: 1400px) {
   .intro__item {
      /*left: 5%;*/
      bottom: 25%;
   }

   .intro__item_white {
      bottom: 41%;
      /*left: 15%;*/
   }
}

@media (max-width: 1200px) {
   .intro__container {
      width: 100%;
      flex-wrap: wrap;
   }

   .intro__card {
      width: 50%;
      flex: inherit;
      margin: 0 auto;
   }

   .intro__item {
      /*left: 14%;*/
      bottom: 27%;
   }
}

@media (max-width: 991px) {
   .intro__item {
      width: 68%;
   }

   .intro__item img {
      width: 100%;
      height: auto;
   }

   .intro__item_white {
      /*left: 15%;*/
      width: 68%;
   }

   .intro__item_white img {
      width: 100%;
      height: auto;
   }
}

@media (max-width: 767px) {
   .intro__card {
      width: 85%;
      margin: 30px auto;
   }
}

@media (max-width: 567px) {
   .intro__info {
      font-size: 16px;
   }
}

.sense {
   width: 100%;
   position: relative;
}

.sense__grey {
   position: absolute;
   left: 0;
   top: 0;
   z-index: -4;
   height: 200%;
}

.sense__grey img {
   height: 70%;
}

.sense__container {
   max-width: 1540px;
   margin: 0 auto;
   padding-top: 180px;
   z-index: 1;
   position: relative;
}

.sense__title {
   margin: 0 auto;
   font-style: normal;
   font-weight: 600;
   font-size: 34px;
   line-height: 40px;
   color: #4e5156;
   padding-bottom: 110px;
   text-align: center;
   position: relative;
   width: fit-content;
}

.sense__title:before {
   content: url("../img/sense__current.png");
   position: absolute;
   top: 8%;
   left: 61%;
   width: 96px;
   height: 40px;
   z-index: -1;
   opacity: 0;
   transition: 0.5s;
}

.sense__title.current:before {
   opacity: 1;
   transition: 0.5s;
}

.sense__cards {
   display: flex;
   width: 100%;
   justify-content: space-between;
}

.sense__card {
   display: flex;
   flex-direction: column;
   align-items: flex-start;
   width: 27%;
}

.sense__logo {
   width: 150px;
   height: 160px;
   padding-bottom: 30px;
}

.sense__logo img {
   width: 100%;
   height: auto;
}

.sense__header {
   font-style: normal;
   font-weight: 600;
   font-size: 24px;
   line-height: 32px;
   color: #292929;
   padding-bottom: 20px;
}

.sense__description {
   max-width: 420px;
   font-style: normal;
   font-weight: normal;
   font-size: 14px;
   line-height: 22px;
   color: #292929;
}

@media (max-width: 1600px) {
   .sense__container {
      padding-right: 30px;
      padding-left: 30px;
   }
}

@media (max-width: 1200px) {
   .sense__cards {
      flex-wrap: wrap;
   }

   .sense__card {
      margin: 0 auto;
      align-items: center;
      width: 40%;
   }

   .sense__card:nth-child(3) {
      padding-top: 100px;
   }
}

@media (max-width: 767px) {
   .sense__card {
      padding-top: 50px;
      width: 80%;
   }
}

@media (max-width: 567px) {
   .sense__container {
      padding-top: 165px;
      padding-right: 0;
      padding-left: 0;
   }

   .sense__title {
      padding-bottom: 30px;
   }

   .sense__header {
      text-align: center;
   }
}

.philosophie {
   width: 100%;
   position: relative;
   padding-top: 92px;
   z-index: 0;
}

.philosophie__container {
   margin: 0 auto;
   padding-top: 240px;
   width: 100%;
   max-width: 1423px;
   display: flex;
   justify-content: space-between;
}

.philosophie__info {
   padding: 0 20px;
   display: flex;
   flex-direction: column;
   max-width: 585px;
   align-self: center;
}

.philosophie__photo {
   z-index: -3;
   position: absolute;
   left: 44.4%;
   top: 11.6%;
   width: 56%;
}

.philosophie__photo img {
   width: 100%;
   height: auto;
}

.phi__blue {
   position: absolute;
   top: 99.8%;
   left: 27.1%;
}

.phi__blue img {
   width: inherit;
}

.phi__black {
   width: 116%;
   position: absolute;
   top: -15%;
   left: -80%;
   z-index: 1;
}

.phi__black img {
   width: 100%;
   height: auto;
}

.phi__nblue {
   position: absolute;
   top: 74.3%;
   left: 15%;
   z-index: 0;
}

.phi__nblue img {
   width: 100%;
   height: auto;
}

.phi__grey {
   width: 180%;
   position: absolute;
   top: -104%;
   left: -80%;
   z-index: -4;
}

.phi__orange {
   position: absolute;
   top: -24.7%;
   left: 66.8%;
   z-index: -4;
}

.philosophie h2 {
   font-style: normal;
   font-weight: 600;
   font-size: 34px;
   line-height: 40px;
   color: #ffffff;
}

.philosophie p {
   font-style: normal;
   font-weight: normal;
   font-size: 16px;
   line-height: 23px;
   color: #ffffff;
}

.philosophie h3 {
   font-style: normal;
   font-weight: 600;
   font-size: 24px;
   line-height: 32px;
   color: #ffffff;
}

.philosophie a {
   text-transform: uppercase;
   color: #ffffff !important;
   padding-left: 2%;
   position: relative;
}

.philosophie a:before {
   content: url("../img/phi__hover.png");
   position: absolute;
   top: 19%;
   left: 76%;
   z-index: -1;
   opacity: 0;
   transition: 1s;
}

.philosophie a:hover:before {
   opacity: 1;
   transition: 1s;
}

.philosophie__top {
   display: flex;
   flex-direction: column;
}

.philosophie__bottom {
   display: flex;
   flex-direction: column;
}

.philosophie__links {
   color: #ffffff;
}

.phi__pc {
   display: block;
}

.phi__mobile {
   display: none;
}

@media (max-width: 1750px) {
   .philosophie__container {
      padding-top: 247px;
   }

   .philosophie h2 {
      margin: 0;
      font-size: 30px;
   }

   .philosophie p {
      font-size: 14px;
   }

   .philosophie h3 {
      margin: 0;
      font-size: 20px;
   }
}

@media (max-width: 1570px) {
   .philosophie__container {
      padding-top: 92px;
   }

   .philosophie__info {
      padding: 0 13px;
      max-width: 432px;
   }

   .philosophie p {
      font-size: 12px;
   }
}

@media (max-width: 1340px) {
   .philosophie__photo {
      width: 58%;
   }

   .philosophie__container {
      padding-top: 72px;
   }
}

@media (max-width: 1200px) {
   .phi__pc {
      display: none;
   }

   .phi__mobile {
      display: block;
   }

   .phi__orange {
      display: none;
   }

   .phi__black {
      display: none;
   }

   .phi__nblue {
      display: none;
   }

   .phi__blue {
      display: none;
   }

   .philosophie__info {
      padding: 470px 20px 0 20px;
      margin: 0 auto;
   }

   .philosophie h2 {
      text-align: center;
      font-size: 34px;
      color: #292929;
   }

   .philosophie p {
      font-size: 16px;
      color: #292929;
   }

   .philosophie h3 {
      text-align: center;
      font-size: 24px;
      color: #292929;
   }

   .philosophie__photo {
      left: 21.4%;
      top: 10%;
      width: 58%;
   }

   .phi__grey {
      width: 216%;
      top: -302%;
      left: -80%;
   }

   .philosophie__links {
      color: #292929;
   }

   .philosophie a {
      color: #292929 !important;
      font-size: large;
   }

   .sense__grey {
      height: 275%;
      z-index: -3;
   }

   .philosophie__info {
      max-width: 668px;
   }
}

@media (max-width: 991px) {
   .phi__grey {
      display: none;
   }

   .philosophie__photo {
      left: 14.4%;
      width: 70%;
   }
}

@media (max-width: 767px) {
   .philosophie__photo {
      left: 10%;
      width: 80%;
   }

   .philosophie__info {
      padding: 52% 20px 0 20px;
      margin: 0 auto;
   }

   .philosophie__info {
      max-width: 450px;
   }

   .philosophie h2 {
      text-align: left;
   }

   .philosophie h3 {
      text-align: left;
      font-size: 23px;
   }

   .sense__grey {
      height: 225%;
   }
}

@media (max-width: 567px) {
   .philosophie__photo {
      left: 5%;
      width: 90%;
   }

   .philosophie h2 {
      font-size: 31px;
   }

   .philosophie p {
      font-size: 12px;
   }

   .philosophie h3 {
      font-size: 20px;
   }

   .philosophie__links {
      font-size: 15px;
      color: #292929;
   }

   .sense__grey {
      height: 230%;
   }

   .philosophie__info {
      max-width: unset;
      padding: 52% 4% 25px 5%;
   }
}

.staff {
   position: relative;
   width: 100%;
   padding-top: 300px;
}

.staff img {
   width: 100%;
   height: auto;
}

.staff__title {
   font-style: normal;
   font-weight: 600;
   font-size: 34px;
   line-height: 40px;
   color: #4e5156;
   width: fit-content;
   margin: 0 auto;
   position: relative;
}

.staff__title:before {
   content: url(../img/staff__hover.png);
   position: absolute;
   top: 39%;
   left: 74%;
   width: 96px;
   height: 40px;
   z-index: -1;
   opacity: 0;
   transition: 0.5s;
}

.staff__title.current:before {
   opacity: 1;
   transition: 0.5s;
}

.staff__container_doctors {
   display: flex;
   width: 100%;
   padding-top: 130px;
}

.staff__doctor {
   position: relative;
   max-width: 640px;
   display: flex;
   flex-direction: column;
   overflow: hidden;
}

.staff__doctor_logo {
   display: flex;
   flex-direction: column;
   transition: 1s;
   opacity: 1;
   width: 100%;
   position: relative;
}

.staff__doctor_logo img {
   max-width: 390px;
}

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

.staff__doctor_name {
   font-style: normal;
   font-weight: 600;
   font-size: 24px;
   line-height: 32px;
   color: #4e5156;
   text-align: center;
   padding: 37px 0 15px 0;
}

.staff__doctor_rang {
   font-style: normal;
   font-weight: normal;
   font-size: 20px;
   line-height: 23px;
   color: #4e5156;
   text-align: center;
}

.staff__container_doctors .staff__doctor:nth-child(1) .staff__doctor_logo img {
   align-self: flex-end;
}

.staff__container_doctors .staff__doctor:nth-child(2) .staff__doctor_logo img {
   align-self: flex-end;
}

.staff__container_doctors .staff__doctor:last-of-type .staff__doctor_logo {
   margin-left: 15px;
}

.staff__container_doctors .staff__doctor:nth-child(1) .staff__doctor_text {
   align-self: flex-start;
}

/*.staff__container_doctors .staff__doctor:nth-child(2) .staff__doctor_logo img {*/
/*    align-self: center; }*/

.staff__container_doctors .staff__doctor:nth-child(3) .staff__doctor_logo img {
   align-self: flex-end;
}

.staff__container_doctors .staff__doctor:last-of-type .staff__doctor_text {
   align-self: flex-start;
}

.doctor__info {
   top: -200%;
   position: absolute;
   left: 0;
   width: 100%;
   height: 100%;
   background-color: #ffffff;
   transition: 1s;
}

.doctor__info ul {
   max-width: 540px;
   margin: 34px 46px 26px 30px;
}

.doctor__info li {
   font-style: normal;
   font-weight: normal;
   font-size: 15px;
   line-height: 25px;
   color: #292929;
}

.staff__doctor_logo:hover img {
   visibility: hidden;
   transition: 1s;
}

.staff__doctor_logo:hover .doctor__info {
   opacity: 1;
   top: 0;
   transition: 1s;
}

.staff__help {
   display: flex;
   padding: 155px 20px 170px 20px;
   max-width: 1430px;
   margin: 0 auto;
   justify-content: space-between;
	 gap: 10px;
}

.staff__help_card {
   display: flex;
   flex: 1 0.1;
   flex-direction: column;
   max-width: 280px;
}

.staff__help_name {
   font-style: normal;
   font-weight: 600;
   font-size: 20px;
   line-height: 23px;
   color: #4e5156;
   padding: 20px 0 10px 0;
   text-align: left;
}

.staff__help_rank {
   text-align: left;
   font-style: normal;
   font-weight: normal;
   font-size: 16px;
   line-height: 23px;
   color: #292929;
}

.staff__back {
   z-index: -5;
   position: absolute;
   top: -1%;
   height: 101%;
}

.staff__back img {
   width: unset;
   height: 100%;
}

.staff__label {
   width: 31%;
   position: absolute;
   right: 0;
   z-index: -2;
   bottom: -16%;
}

.staff__line {
   padding-bottom: 13%;
   position: relative;
}

.staff__line img {
   position: absolute;
   width: 100%;
   height: 100%;
   top: 0;
   left: 0;
   display: block;
   object-fit: cover;
}

.staff__doctor {
   flex: 1 1;
}

@media (max-width: 1650px) {
   .staff__container_doctors .staff__doctor:nth-child(1) .staff__doctor_text {
      padding-left: 0;
      align-self: center;
   }

   .doctor__info li {
      font-size: 16px;
   }
}

@media (max-width: 1510px) {
   .doctor__info ul {
      margin: 15% 10px 60px 0;
   }

   .doctor__info li {
      font-size: 14px;
      line-height: 20px;
   }
}

@media (max-width: 1258px) {
   .doctor__info ul {
      margin: 2% 10px 60px 0;
   }
}

@media (max-width: 1200px) {
   .sense__grey {
      background-color: #eceef1;
      height: 193%;
      width: 100%;
      z-index: -5;
      top: 6%;
   }

   .sense__grey img {
      display: none;
   }

   .philosophie {
      background-color: unset;
      z-index: 0;
      padding-bottom: 10%;
   }

   .staff {
      padding-top: 15px;
   }

   .staff__container_doctors {
      /*flex-direction: column;*/
      padding-top: 55px;
      flex-wrap: wrap;
   }

   .staff__container_doctors .staff__doctor:last-of-type .staff__doctor_logo {
      margin-left: 0;
   }

   .staff__container_doctors .staff__doctor:last-of-type .staff__doctor_text {
      align-self: center;
   }

   .staff__doctor_logo img {
      max-width: 472px;
   }

   .staff__doctor {
      padding: 0 20px 50px 20px;
      margin: 0 auto;
      flex: 1 1 auto;
      max-width: 472px;
   }

   .staff__container_doctors
      .staff__doctor:nth-child(1)
      .staff__doctor_logo
      img {
      align-self: center;
   }

   .staff__container_doctors
      .staff__doctor:nth-child(2)
      .staff__doctor_logo
      img {
      align-self: center;
   }

   .staff__container_doctors
      .staff__doctor:nth-child(3)
      .staff__doctor_logo
      img {
      align-self: center;
   }

   .staff__container_doctors .staff__doctor:nth-child(1) .staff__doctor_text {
      padding-left: 0;
      align-self: center;
   }

   .staff__container_doctors .staff__doctor:nth-child(3) .staff__doctor_text {
      padding-right: 0;
      align-self: center;
   }

   .doctor__info ul {
      margin: 56px 50px 60px 50px;
   }

   .doctor__info li {
      font-size: 18px;
   }

   .staff__help {
      flex-wrap: wrap;
      padding: 155px 20px 40px 20px;
   }

   .staff__help_card {
      margin: 0 auto;
      padding-bottom: 50px;
   }

   .staff__label {
      width: 40%;
      bottom: -8%;
   }
}

@media (max-width: 991px) {
   .staff__label {
      width: 57%;
      bottom: -8%;
   }
}

@media (max-width: 767px) {
   .doctor__info li {
      font-size: 17px;
   }

   .staff__label {
      width: 62%;
   }
}

@media (max-width: 567px) {
   .staff__help {
      flex-wrap: wrap;
      padding: 15px 20px 40px 20px;
   }

   .staff__help_card {
      flex: 1 1 50%;
   }

   .staff__doctor_logo img {
      /*max-width: 90%;*/
   }

   .staff__doctor {
      max-width: 320px;
   }

   .doctor__info {
      top: -2000%;
      height: 109%;
      background-color: #ffffff;
      transition: 5.5s;
   }

   .staff__doctor_logo:hover img {
      transition: 0.5s;
   }

   .staff__doctor_logo:hover .doctor__info {
      transition: 0.5s;
   }

   .staff__label {
      width: 72%;
      bottom: -5%;
   }

   .doctor__info ul {
      margin: 11px 5px 0 0;
   }

   .doctor__info li {
      font-size: 13px;
   }
}

@media (max-width: 413px) {
   .doctor__info ul {
      padding: 0;
      margin: 2px 2px 0 16px;
   }

   .doctor__info li {
      font-size: 13px;
      line-height: 17px;
   }
}

.tools {
   position: relative;
   z-index: 1;
   /*z-index: 0; colision with orange label  */
   width: 100%;
   background-color: #292929;
   padding-top: 120px;
}

.tools__label {
   position: absolute;
   left: 0;
   bottom: -6%;
}

.tools__title {
   font-style: normal;
   font-weight: 600;
   font-size: 34px;
   line-height: 40px;
   color: #ffffff;
   width: fit-content;
   margin: 0 auto;
   position: relative;
}

.tools__title:before {
   content: url(../img/tools__title.png);
   position: absolute;
   top: 39%;
   left: 74%;
   width: 96px;
   height: 40px;
   z-index: -1;
   opacity: 0;
   transition: 0.5s;
}

.tools__title.current:before {
   opacity: 1;
   transition: 0.5s;
}

.tools__container {
   padding-top: 55px;
   padding-bottom: 100px;
   margin: 0 auto;
   display: flex;
   max-width: 1680px;
}

.tools__card {
   display: flex;
   position: relative;
   margin: 15px;
   max-width: 530px;
   height: 290px;
   /*height: 100%;*/
   background-position: center;
   background-repeat: no-repeat;
   background-size: cover;
   overflow: hidden;
}

.tools__card img {
   opacity: 0.86;
   width: 100%;
   height: auto;
}

.tools__info {
   padding-top: 43%;
   z-index: 1;
   max-width: 320px;
   font-style: normal;
   font-weight: 600;
   font-size: 24px;
   line-height: 32px;
   text-align: center;
   margin: 0 auto;
   color: #ffffff;
   align-self: flex-end;
   padding-bottom: 6%;
   transition: 1s;
}

.tools__card:before {
   position: absolute;
   width: 100%;
   height: 100%;
   content: "";
   background: linear-gradient(180deg, rgba(41, 41, 41, 0) 0%, #292929 100%);
   opacity: 0.46;
}

.tools__card:hover:before {
   opacity: 0;
}

.tools__card:after {
   position: absolute;
   width: 100%;
   height: 100%;
   content: "";
   background: rgba(255, 90, 31, 0.8);
   opacity: 0;
   transition: 1s;
}

.tools__card:hover:after {
   opacity: 1;
   transition: 1s;
}

.column {
   width: 100%;
   display: flex;
   flex-direction: column;
}

/*.tools__container .column:nth-child(1) .tools__card:nth-child(1) {*/
/*  background-image: url("../img/tools__first.png"); }*/

/*.tools__container .column:nth-child(1) .tools__card:nth-child(2) {*/
/*  background-image: url("../img/tools__fourth.png"); }*/

/*.tools__container .column:nth-child(1) .tools__card:nth-child(3) {*/
/*  background-image: url("../img/tools__seventh.png"); }*/

.tools__container .column:nth-child(2) {
   justify-content: space-between;
}

.tools__container .column:nth-child(2) .tools__card {
   max-width: 530px;
   height: 450px;
}

.tools__container .column:nth-child(2) .tools__card:nth-child(1) {
   background-image: url("../img/tools__second.png");
}

.tools__container .column:nth-child(2) .tools__card:nth-child(2) {
   background-image: url("../img/tools__eighth.png");
}

.tools__container .column:nth-child(3) .tools__card:nth-child(1) {
   background-image: url("../img/tools__third.png");
}

.tools__container .column:nth-child(3) .tools__card:nth-child(2) {
   background-image: url("../img/tools__fifth.png");
}

.tools__container .column:nth-child(3) .tools__card:nth-child(3) {
   background-image: url("../img/tools__ninth.png");
}

.tools__content {
   z-index: 1;
   position: absolute;
   flex-direction: column;
   padding: 0 10px;
   margin: 0 auto;
   opacity: 0;
}

.tools__card:hover .tools__info {
   display: none;
   transition: 1s;
}

.tools__card:hover .tools__content {
   justify-content: center;
   position: static;
   display: flex;
   transition: 1s;
   opacity: 1;
}

.tools__card:hover .tools__header {
   max-width: 390px;
}

.tools__header {
   font-style: normal;
   font-weight: 600;
   font-size: 24px;
   line-height: 32px;
   text-align: center;
   color: #ffffff;
   padding: 5% 0 20px;
}

.tools__description {
   text-align: center;
   font-style: normal;
   font-weight: normal;
   font-size: 16px;
   line-height: 23px;
   color: #ffffff;
   max-width: 390px;
   margin: 0 auto;
}

@media (max-width: 1500px) {
   .tools__info {
      padding-top: 37%;
   }
}

@media (max-width: 1300px) {
   .tools__description {
      font-size: 14px;
   }
}

@media (max-width: 1200px) {
   .tools {
      padding-bottom: 70px;
   }

   .tools__container {
      margin-top: 55px;
      margin-bottom: 70px;
      padding: 0 20px;
      justify-content: center;
      flex-wrap: wrap;
   }

   .column {
      width: 48%;
   }

   .tools__card {
      max-height: 233px;
   }

   .tools__container .column:nth-child(2) {
      justify-content: space-between;
      width: 96%;
      order: 1;
      flex-direction: row;
   }

   .tools__container .column:nth-child(2) .tools__card {
      width: 47.3%;
   }

   .tools__container .column:nth-child(2) .tools__info {
      padding-top: 64%;
   }

   .tools__info {
      padding-top: 43%;
      padding-bottom: 6%;
   }

   .tools__header {
      white-space: nowrap;
      font-size: 21px;
   }
}

@media (max-width: 991px) {
   .tools__info {
      padding-top: 37%;
   }

   .tools__container {
      width: 75%;
      flex-direction: column;
   }

   .column {
      width: 100%;
   }

   .tools__container .column:nth-child(2) {
      width: 100%;
      order: -1;
      flex-direction: column;
   }

   .tools__card {
      max-height: 390px;
      max-width: unset;
   }

   .tools__container .column:nth-child(2) .tools__card {
      max-width: unset;
      max-height: unset;
      width: unset;
   }

   .tools__container
      .column:nth-child(2)
      .tools__card
      .tools__card:hover
      .tools__content {
      padding-bottom: 41.8%;
   }

   .tools__container .column:nth-child(2) .tools__card:hover .tools__content {
      padding-bottom: 41.8%;
   }

   .tools__card:hover .tools__content {
      padding-bottom: 14.8%;
   }

   .tools__label {
      bottom: -2%;
   }
}

@media (max-width: 767px) {
   .tools__container {
      width: 90%;
      flex-direction: column;
   }
}

@media (max-width: 567px) {
   .tools__container {
      width: 95%;
      padding: 0;
   }

   .tools__info {
      font-size: 21px;
   }

   .tools__header {
      white-space: unset;
      font-size: 13px;
   }

   .tools__description {
      font-size: 12px;
   }
}

.promo {
   width: 100%;
   position: relative;
   background: #292929;
}

.promo__back img {
   max-width: 1920px;
   max-height: 710px;
   width: 100%;
   height: auto;
}

.treatments {
   width: 100%;
   position: relative;
   background: #292929;
   z-index: 0;
}

.treatments__header {
   position: relative;
   width: fit-content;
   padding: 8.2% 0 3% 14.2%;
}

.treatments__title {
   position: relative;
   margin: 0;
   width: fit-content;
   font-style: normal;
   font-weight: 600;
   font-size: 34px;
   line-height: 40px;
   color: #ffffff;
}

.treatments__title:before {
   content: url(../img/sense__current.png);
   position: absolute;
   top: 33%;
   left: 79%;
   width: 96px;
   height: 40px;
   z-index: -1;
   transition: 0.5s;
   opacity: 0;
}

.treatments__title.current:before {
   opacity: 1;
   transition: 0.5s;
}

.treatments__container {
   position: relative;
   display: flex;
   flex-direction: column;
}

.treatments__orange {
   width: 50%;
   position: absolute;
   bottom: 100%;
   right: 0;
}

.treatments__orange img {
   width: 100%;
   height: auto;
}

.care__black {
   width: 50%;
   position: absolute;
   top: 100%;
   right: 0;
}

.care__black img {
   width: 100%;
   height: auto;
}

.treatments:before img {
   width: 100%;
   height: auto;
}

.treatments__card {
   position: relative;
   width: 100%;
   display: flex;
   flex-direction: row-reverse;
}

.treatments__photo {
   overflow: hidden;
   width: 50%;
}

.treatments__photo img {
   width: 100%;
   object-fit: cover;
   height: 100%;
}

.treatments__info {
   position: relative;
   width: 50%;
   max-height: 425px;
   background: #f2f3f7;
}

.treatments__info img {
   z-index: -1;
}

.treatments__text {
   padding: 13% 3% 8% 29%;
   /* padding: 6.8% 3% 3% 29%; */
}

.treatments__info h3 {
   font-style: normal;
   font-weight: 600;
   font-size: 24px;
   line-height: 32px;
   color: #292929;
}

.treatments__info p {
   font-style: normal;
   font-weight: normal;
   font-size: 16px;
   line-height: 23px;
   color: #292929;
   max-width: 530px;
}

.treatments__info ul {
   padding: 0 0 0 3%;
   max-width: 530px;
}

.treatments__info a {
   visibility: hidden;
   opacity: 0;
   display: flex;
   justify-content: center;
   align-items: center;
   width: 210px;
   height: 46px;
   background: #4e5156;
   font-style: normal;
   font-weight: normal;
   font-size: 16px;
   line-height: 20px;
   text-align: center;
   text-transform: uppercase;
   color: #ffffff !important;
   transition: 0.5s;
   cursor: pointer;
}

.treatments__info:hover a {
   visibility: visible;
   opacity: 1;
   transition: 0.5s;
}

.treatments__container .treatments__card .treatments__info a:hover {
   background: #9e51d6 !important;
   color: #ffffff !important;
}

.treatments__card:nth-child(odd) {
   flex-direction: row;
}

.treatments__card:nth-child(odd) .treatments__info {
   background: #292929;
}

.treatments__card:nth-child(odd) .treatments__info a,
.treatments__card:nth-child(odd) p,
.treatments__card:nth-child(odd) h3,
.treatments__card:nth-child(odd) li {
   color: #ffffff;
}

.treatments__card:nth-child(odd) .treatments__info a {
   background: #ffffff;
   color: #4e5156 !important;
}

.treatments__card:nth-child(odd) .treatments__text {
   color: #ffffff !important;
}

.treatments__card:nth-child(odd) .treatments__text {
   padding: 13% 3% 8% 16%;
   /* padding: 6.8% 3% 3% 16%; */
}

@media (max-width: 1400px) {
   .treatments__text {
      padding: 6.8% 3% 7% 19%;
   }
}

@media (max-width: 1200px) {
   .treatments__card:nth-child(odd) {
      flex-direction: column;
   }

   .treatments__card {
      flex-direction: column;
   }

   .treatments__photo,
   .treatments__info {
      width: 100%;
   }

   .treatments__card:nth-child(odd) .treatments__text {
      padding: 4% 0 6% 0;
   }

   .treatments__text {
      padding: 4% 0 6% 0;
   }

   .treatments__text {
      width: fit-content;
      margin: 0 auto;
   }
}

@media (max-width: 767px) {
   .treatments__header {
      padding: 8.2% 0 3% 1.2%;
   }
}

@media (max-width: 567px) {
   .treatments__orange {
      display: none;
   }

   .treatments__header {
      padding: 10.2% 0 10% 0;
      margin: 0 auto;
   }

   .treatments__title {
      font-size: 30px;
   }

   .treatments__title.current:before {
      top: 33%;
      left: 72%;
   }

   .treatments__info h3 {
      font-size: 16px;
      margin: 0;
   }

   .treatments__info p,
   li {
      font-size: 12px;
   }

   .treatments__card:nth-child(odd) .treatments__text {
      padding: 2% 2% 6% 2%;
   }

   .treatments__text {
      padding: 2% 2% 6% 2%;
   }

   .treatments__info a {
      width: 170px;
      height: 46px;
      font-size: 14px;
   }
}

.care {
   z-index: -1;
   position: relative;
   width: 100%;
   padding-top: 180px;
   background: linear-gradient(110.83deg, #dfe3e9 24.92%, #eceef1 72.94%);
   overflow: hidden;
}

.care__title {
   font-style: normal;
   font-weight: 600;
   font-size: 34px;
   line-height: 40px;
   color: #4e5156;
   width: fit-content;
   margin: 0 auto;
   position: relative;
}

.care__title:before {
   content: url(../img/staff__hover.png);
   position: absolute;
   top: 24%;
   left: 85%;
   width: 96px;
   height: 40px;
   z-index: -1;
   opacity: 0;
   transition: 0.5s;
}

.care__title.current:before {
   opacity: 1;
   transition: 0.5s;
}

.care__description {
   margin: 0 auto;
   padding-top: 5px;
   font-style: normal;
   font-weight: normal;
   font-size: 22px;
   line-height: 40px;
   color: #292929;
   text-align: center;
   padding-bottom: 80px;
}

.care__container {
   display: flex;
   max-width: 1320px;
   margin: 0 auto;
   flex-direction: column;
   padding: 0 20px 10% 20px;
   position: relative;
}

.care__card {
   width: fit-content;
   display: flex;
   flex-direction: column;
}

.care__top {
   display: flex;
}

.care__header {
   align-self: flex-end;
   padding-left: 20px;
   font-style: normal;
   font-weight: 600;
   font-size: 24px;
   line-height: 32px;
   color: #292929;
   max-width: 528px;
}

.care__info {
   padding-top: 23px;
   font-style: normal;
   font-weight: normal;
   font-size: 16px;
   line-height: 23px;
   color: #292929;
   max-width: 500px;
}

.care__container .care__card:nth-child(2) {
   align-self: flex-end;
}

.care__container .care__card:nth-child(3) {
   padding-top: 135px;
}

.care__container .care__card:nth-child(4) {
   align-self: flex-end;
   max-width: 504px;
   padding-top: 15px;
}

.care__line {
   position: absolute;
   top: 2%;
   left: 39%;
}

.care__white {
   position: absolute;
   left: 0;
   top: 17%;
   width: 100%;
   z-index: -4;
}

.care__white img {
   width: 100%;
   height: auto;
}

.care__blue {
   position: absolute;
   left: 0;
   bottom: 0;
   width: 24%;
}

.care__blue img {
   width: 100%;
   height: auto;
}

@media (max-width: 1350px) {
   .care__container .care__card:nth-child(4) {
      max-width: 433px;
   }

   .care__info {
      font-size: 14px;
   }

   .care__card {
      width: fit-content;
      display: flex;
      flex-direction: column;
      max-width: 419px;
   }

   .care__white {
      top: 25%;
   }
}

@media (max-width: 1200px) {
   .care__line {
      display: none;
   }

   .care__white {
      top: 12%;
      left: -11%;
   }

   .care__white img {
      width: unset;
      height: auto;
   }

   .care__container .care__card:nth-child(2) {
      padding-top: 50px;
   }

   .care__container .care__card:nth-child(4) {
      padding-top: 50px;
   }

   .care__container .care__card:nth-child(3) {
      padding-top: 50px;
   }

   .care__blue {
      display: none;
   }
}

@media (max-width: 991px) {
   .care__white {
      left: -32%;
   }
}

@media (max-width: 767px) {
   .care__black {
      width: 100%;
      position: absolute;
      top: 100%;
      right: 0;
   }

   .care {
      padding-top: 380px;
   }
}

@media (max-width: 567px) {
   .care {
      padding-top: 180px;
   }

   .care__title.current:before {
      top: 39%;
      left: 70%;
   }

   .care__description {
      font-size: 20px;
   }

   .care__blue {
      width: 68%;
   }

   .care__black {
      display: none;
   }
}

.show {
   margin-top: -2px;
}

.show .slick-dots {
   position: absolute;
   top: 88%;
   left: 48.3%;
   width: unset;
   text-align: unset;
}

.show .slick-dots li button {
   background: url(../img/show__next.png) center center no-repeat;
   text-indent: -9999px;
   overflow: hidden;
}

.show .slick-dots .slick-active button {
   background: url(../img/show__active.png) center center no-repeat;
   text-indent: -9999px;
   overflow: hidden;
}

.show .slick-dotted.slick-slider {
   margin-bottom: 0;
}

.show .slick-dots li {
   margin: 0 9px;
}

.show__card {
   max-width: 1920px;
   max-height: 690px;
}

.show__card img {
   width: 100%;
   height: auto;
}

.сon {
   width: 100%;
   padding-top: 160px;
   background: #dfe3e9;
   position: relative;
   z-index: 0;
}

.con__grey {
   top: 0;
   right: 0;
   position: absolute;
   width: 43%;
   z-index: -1;
}

.сon__title {
   font-style: normal;
   font-weight: 600;
   font-size: 34px;
   line-height: 40px;
   color: #4e5156;
   width: fit-content;
   margin: 0 auto;
   position: relative;
}

.сon__title:before {
   content: url(../img/tools__title.png);
   position: absolute;
   top: 26%;
   left: 69%;
   width: 96px;
   height: 40px;
   z-index: -1;
   transition: 0.5s;
   opacity: 0;
}

.сon__title.current:before {
   opacity: 1;
   transition: 0.5s;
}

.con__container {
   display: flex;
   padding-top: 45px;
   padding-bottom: 230px;
}

.con__card {
   width: 100%;
   display: flex;
   flex-direction: column;
   transition: 0.5s;
}

.con__card img {
   width: 100%;
   height: 100%;
   object-fit: cover;
}

.con__logo {
   position: relative;
   overflow: hidden;
   max-height: 507px;
   height: 100%;
}

.con__logo:before {
   top: 0;
   z-index: 1;
   position: absolute;
   height: 100%;
   width: 100%;
   content: "";
   background: #292929;
   opacity: 0.55;
   transition: 1s;
}

.con__text {
   align-self: center;
   height: 100%;
   max-height: 80px;
   padding-top: 30px;
   max-width: 280px;
   font-style: normal;
   font-weight: 600;
   font-size: 20px;
   line-height: 23px;
   text-align: center;
   color: #292929;
   transition: 1s;
}

.con__card:hover {
   transition: 0.5s;
   /*width: 125%;*/
   z-index: 1;
   background-color: #292929;
}

.con__card:hover .con__logo:before {
   top: 100%;
   transition: 1s;
}

.con__card:hover .con__text {
   transition: 1s;
   color: #ffffff;
}

.con__card:hover .con__button {
   transition: 1s;
   opacity: 1;
   visibility: visible;
}

.con__button {
   transition: 1s;
   opacity: 0;
   visibility: hidden;
   align-self: center;
   display: flex;
   justify-content: center;
   align-items: center;
   font-style: normal;
   font-weight: normal;
   font-size: 16px;
   line-height: 20px;
   text-align: center;
   text-transform: uppercase;
   color: #4e5156;
   background: #ffffff;
   margin: 30px 0 20px 0;
   width: 210px;
   height: 46px;
}

.con__button:hover {
   transition: 1s;
   background: #ff5a1f;
   color: #ffffff !important;
}

@media (max-width: 1200px) {
   .con__container {
      /*justify-content: space-between;
        flex-wrap: wrap;*/
      margin: 0 20px;
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      grid-column-gap: 1em;
      grid-row-gap: 1em;
   }

   .con__card {
      /*width: 30%;*/
      width: 100%;
      transition: 1s;
   }

   .con__card:hover {
      /*width: 35%;*/
      width: 100%;
      transition: 1s;
   }

   .con__text {
      font-size: 18px;
   }
}

@media (max-width: 767px) {
   .con__card {
      /*width: 55%;*/
      transition: 1s;
      margin: 10px auto 0;
   }

   .con__card:hover {
      /*width: 60%;*/
      transition: 1s;
   }

   .con__container {
      padding-bottom: 10%;
      grid-template-columns: 1fr 1fr;
   }
}

@media (max-width: 567px) {
   .сon {
      padding-top: 100px;
   }

   .con__card {
      width: 90%;
   }

   .con__card:hover {
      width: 95%;
   }

   .con__container {
      padding-bottom: 5%;
      grid-template-columns: 1fr;
   }

   .show .slick-dots {
      top: 78%;
      left: 44.3%;
   }

   .con__text {
      height: fit-content;
   }

   .con__button {
      display: none;
   }

   .con__card:hover .con__button {
      display: flex;
   }
}

.videos {
   padding-bottom: 250px;
   z-index: 0;
   position: relative;
   width: 100%;
   background: #dfe3e9;
}

.videos .slick-slide {
   margin: 0 15px;
   outline: none !important;
}

.videos .slick-list {
   margin: 0 -15px;
   padding: 0 10% 0 0;
}

.videos .slick-dots li button {
   background: url(../img/videos__ncurrent.png) center center no-repeat;
   text-indent: -9999px;
   overflow: hidden;
}

.videos .slick-dots .slick-active button {
   background: url(../img/videos__current.png) center center no-repeat;
   text-indent: -9999px;
   overflow: hidden;
}

.videos .slick-dots {
   bottom: -40%;
   left: -32%;
}

.videos__container {
   width: 100%;
   display: flex;
}

.videos__left {
   width: 31%;
   display: flex;
   justify-content: flex-end;
   align-items: center;
}

.videos__title {
   margin-right: 15%;
   position: relative;
   width: fit-content;
   font-style: normal;
   font-weight: 600;
   font-size: 34px;
   line-height: 40px;
   color: #4e5156;
}

.videos__title:before {
   content: url(../img/sense__current.png);
   position: absolute;
   top: 33%;
   left: 46%;
   width: 96px;
   height: 40px;
   z-index: -1;
   opacity: 0;
   transition: 1s;
}

.videos__title.current:before {
   opacity: 1;
   transition: 1s;
}

.videos__carousel {
   width: 69%;
}

.videos__card {
   display: flex !important;
   flex-direction: column;
}

.videos__card:hover .videos__text {
   color: #ffffff;
   background-color: #9e51d6;
   transition: 1s;
}

.videos__video {
   width: 334px;
   padding-right: 20px;
}

.videos__text {
   transition: 1s;
   padding-top: 15px;
   max-width: 334px;
   max-height: 48px;
   font-style: normal;
   font-weight: 600;
   font-size: 18px;
   line-height: 24px;
   text-align: center;
   color: #292929;
   padding-bottom: 12px;
}

.videos__next {
   position: absolute;
   top: 67%;
   left: 56%;
   transform: rotate(180deg);
}

.videos__prev {
   position: absolute;
   top: 67%;
   left: 31%;
}

.videos__prev_active,
.videos__next_active {
   display: none;
}

.videos__prev:hover {
   transform: rotate(180deg);
}

.videos__prev:hover .videos__prev_current {
   display: none;
}

.videos__prev:hover .videos__prev_active {
   display: block;
}

.videos__next:hover {
   transform: rotate(0deg);
}

.videos__next:hover .videos__next_current {
   display: none;
}

.videos__next:hover .videos__next_active {
   display: block;
}

@media (max-width: 1650px) {
   .videos .slick-slide {
      margin: 0 10px;
   }

   .videos .slick-list {
      margin: 0 -20px;
      padding: 0 10% 0 0;
   }
}

@media (max-width: 1200px) {
   .videos__container {
      padding-top: 65px;
      flex-direction: column;
   }

   .videos__left {
      width: 100%;
      display: flex;
      justify-content: center;
   }

   .videos__title {
      margin-right: 0;
   }

   .videos__carousel {
      padding-top: 90px;
      margin: 0 auto;
      width: 90%;
   }

   .videos .slick-dots {
      bottom: -12%;
      left: 0;
   }

   .videos__next {
      top: 66%;
      left: 68%;
   }

   .videos__prev {
      position: absolute;
      top: 66%;
      left: 33%;
   }

   .videos .slick-slide {
      margin: 0 auto;
   }

   .videos .slick-list {
      margin: 0 0;
      padding: 0 0 0 0;
   }

   .videos__card {
      align-items: center;
      justify-content: center;
   }

   .videos__text {
      margin-right: 20px;
   }
}

@media (max-width: 991px) {
   .videos__next {
      top: 69%;
      left: 67%;
   }

   .videos__prev {
      position: absolute;
      top: 69%;
      left: 29%;
   }

   .videos .slick-dots {
      bottom: -17%;
      left: -1%;
   }

   .videos__video {
      max-width: 334px;
      padding-right: 0;
   }

   .videos__text {
      margin-right: 0;
   }
}

@media (max-width: 767px) {
   .videos .slick-dots {
      bottom: -12%;
      left: 0;
   }

   .videos__next {
      display: none !important;
   }

   .videos__prev {
      display: none !important;
   }
}

@media (max-width: 567px) {
   .videos__carousel {
      width: 95%;
   }

   .videos__container {
      padding-top: 10px;
   }

   .videos {
      padding-bottom: 25px;
   }
}

.work {
   position: relative;
   z-index: 1;
   width: 100%;
   background-color: #dfe3e9;
}

.work_title {
   font-style: normal;
   font-weight: 600;
   font-size: 34px;
   line-height: 40px;
   color: #4e5156;
   width: fit-content;
   margin: 0 auto;
   position: relative;
}

.work_title:before {
   content: url(../img/staff__hover.png);
   position: absolute;
   top: 24%;
   left: 80%;
   width: 96px;
   height: 40px;
   z-index: -1;
   transition: 1s;
   opacity: 0;
}

.work_title.current:before {
   transition: 1s;
   opacity: 1;
}

.work__container {
   margin-left: 22%;
   padding-bottom: 500px;
   display: flex;
   padding-top: 115px;
   max-width: 1260px;
   justify-content: space-between;
}

.work__address {
   position: relative;
   z-index: 2;
   display: flex;
   flex-direction: column;
}

.work__location {
   display: flex;
}

.work__location {
   max-width: 305px;
   max-height: 41px;
}

.work__location img {
   width: 14px;
   height: 20px;
}

.work__location_text {
   padding-left: 20px;
   max-width: 220px;
   max-height: 41px;
   font-style: normal;
   font-weight: normal;
   font-size: 16px;
   line-height: 23px;
   color: #ffffff;
}

.work__phone {
   display: flex;
   padding-top: 20px;
}

.work__phone img {
   width: 14px;
   height: 20px;
}

.work__phone_text {
   padding-left: 20px;
   font-style: normal;
   font-weight: normal;
   font-size: 16px;
   line-height: 23px;
   color: #ffffff;
}

.work__title {
   padding-top: 35px;
   font-style: normal;
   font-weight: 600;
   font-size: 18px;
   line-height: 24px;
   color: #ffffff;
}

.work__item {
   display: flex;
   font-style: normal;
   font-weight: normal;
   font-size: 15px;
   line-height: 34px;
   color: #ffffff;
}

.work__day {
   position: relative;
   min-width: 71px;
   padding-right: 15px;
}

.work__day.today {
   font-weight: 700;
   font-size: 16px;
}

.work__day.today:before {
   content: url("../img/work__today.png");
   position: absolute;
   top: 20%;
   left: -32%;
   z-index: -1;
}

.work__time.today {
   font-weight: 700;
   font-size: 16px;
}

.work__transport {
   display: flex;
   flex-direction: column;
   font-style: normal;
   font-weight: normal;
   font-size: 15px;
   line-height: 18px;
   color: #292929;
   width: 29%;
}

.work__bus {
   display: flex;
}

.work__bus img {
   padding-right: 15px;
}

.work__center {
   font-style: normal;
   font-weight: normal;
   font-size: 15px;
   line-height: 18px;
   color: #292929;
   max-width: 364px;
}

.work__trole {
   padding-top: 15px;
   display: flex;
   flex-wrap: wrap;
}

.work__trole img {
   padding-right: 15px;
}

.work__trole_info {
   display: flex;
   flex-direction: column;
}

.work__trole_second {
   width: 100%;
   padding-left: 29px;
}

.work__map {
   position: absolute;
   left: 0;
   bottom: 0;
   z-index: 0;
   width: 100%;
   height: 545px;
}

.work__black {
   pointer-events: none;
   position: absolute;
   bottom: -1%;
   left: 0;
   z-index: 1;
   width: 53%;
}

.work__black img {
   width: 100%;
   height: auto;
}

.work__house {
   position: absolute;
   top: 34.2%;
   left: 100%;
   width: 91%;
   z-index: -1;
}

.work__house img {
   width: 100%;
   height: auto;
}

@media (max-width: 1820px) {
   .work__black {
      bottom: 4%;
   }
}

@media (max-width: 1730px) {
   .work__container {
      margin-left: 18%;
   }

   .work__black {
      bottom: 8%;
   }
}

@media (max-width: 1565px) {
   .work__container {
      margin-left: 14%;
   }

   .work__black {
      bottom: 13%;
   }
}

@media (max-width: 1400px) {
   .work__container {
      margin-left: 8%;
   }

   .work__black {
      bottom: 18%;
   }
}

@media (max-width: 1280px) {
   .work__black {
      bottom: 23%;
      width: 53%;
   }
}

@media (max-width: 1200px) {
   .work__black {
      bottom: 27%;
   }

   .work__container {
      margin: 0 30px;
      padding-bottom: 470px;
   }

   .work__center {
      max-width: 203px;
   }

   .work__transport {
      width: 37%;
   }

   .work__house {
      display: none;
   }
}

@media (max-width: 991px) {
   .work__container {
      flex-direction: row-reverse;
      flex-wrap: wrap;
      padding-bottom: 570px;
   }

   .work__center {
      order: 3;
      max-width: unset;
      width: 46%;
      margin-top: -27%;
   }

   .work__transport {
      order: 2;
      width: 46%;
   }

   .work__address {
      order: 3;
      width: 47%;
      background-color: #292929;
      padding: 25px 0 23px 36px;
      border-radius: 50px;
      z-index: 2;
      max-width: 367px;
   }

   .work__black {
      display: none;
   }
}

@media (max-width: 767px) {
   .work__container {
      flex-direction: column;
      flex-wrap: nowrap;
      padding-bottom: 625px;
      padding-top: 90px;
   }

   .work__center {
      order: 0;
      padding-top: 61px;
      width: 67%;
      margin: 0 auto;
   }

   .work__transport {
      order: 0;
      padding-top: 50px;
      margin: 0 auto;
      width: 67%;
   }

   .work__address {
      order: 0;
      max-width: unset;
      margin: 0 auto;
      width: unset;
      background-color: #292929;
      padding: 25px 75px 23px 95px;
      border-radius: 50px;
      z-index: -1;
   }
}

@media (max-width: 567px) {
   .work__address {
      padding: 25px 5px 23px 31px;
   }

   .work_title {
      font-size: 30px;
   }

   .work__transport {
      font-size: 13px;
      width: 100%;
   }

   .work__center {
      width: 93%;
   }
}

.contact {
   max-height: 846px;
   position: relative;
   height: 100%;
   width: 100%;
   background-image: url("../img/contact__back.png");
   background-repeat: no-repeat;
   background-size: cover;
   background-position: left;
}

.contact:before {
   position: absolute;
   content: "";
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(41, 41, 41, 0.6);
}

.contact__container {
   max-width: 1090px;
   margin: 0 auto;
   display: flex;
   padding-top: 130px;
   position: relative;
   z-index: 1;
   padding-bottom: 370px;
   justify-content: space-between;
}

.contact__title {
   font-weight: 600;
   font-size: 34px;
   line-height: 40px;
   color: #ffffff;
   width: fit-content;
   position: relative;
}

.contact__title:before {
   content: url(../img/tools__title.png);
   position: absolute;
   top: 26%;
   left: 69%;
   width: 96px;
   height: 40px;
   z-index: -1;
   transition: 1s;
   opacity: 0;
}

.contact__title.current:before {
   transition: 1s;
   opacity: 1;
}

.contact__info {
   display: flex;
   flex-direction: column;
}

.contact__info p {
   font-style: normal;
   font-weight: normal;
   font-size: 16px;
   line-height: 23px;
   color: #ffffff;
   max-width: 427px;
}

.contact__form {
   padding-top: 107px;
   display: flex;
   flex-direction: column;
   max-width: 530px;
}

.contact__form input:focus {
   outline: none;
}

.contact__form textarea:focus {
   border: none;
   outline: none;
}

.contact__form input,
.contact__form textarea {
   resize: none;
   overflow: hidden;
   background: initial;
}

.contact__input {
   position: relative;
   margin-bottom: 25px;
   width: 530px;
   height: 58px;
   box-sizing: border-box;
   z-index: 2;
}
.contact__input p {
   height: 100%;
}

.contact__input input {
   border-bottom: 2px solid #ffffff !important;
   font-style: normal;
   font-weight: 600;
   font-size: 18px;
   line-height: 18px;
   color: #ffffff;
   padding-top: 10px;
   padding-left: 15px;
   z-index: 1;
   width: 98%;
   height: 82%;
   border: 0;
   box-sizing: border-box;
   background: initial;
}

.contact__input input textarea {
   border-bottom: 2px solid #ffffff !important;
}

.contact__area textarea {
   border-bottom: 2px solid #ffffff !important;
   padding-top: 20px;
   padding-left: 15px;
   width: 98%;
   height: 82%;
   border: 0;
   box-sizing: border-box;
   font-style: normal;
   font-weight: 600;
   font-size: 18px;
   line-height: 18px;
   color: #ffffff;
}

.contact__area label {
   top: -10%;
}

.contact__submit {
   margin-left: auto;
   width: 210px;
   height: 57px;
   align-self: flex-end;
   transition: 0.5s;
   border: none;
   margin-top: -1px;
   margin-bottom: 0;
}

.contact__submit input {
   display: flex;
   justify-content: center;
   align-items: center;
   font-style: normal;
   font-weight: normal;
   font-size: 16px;
   line-height: 20px;
   text-align: center;
   text-transform: uppercase;
   color: #4e5156;
   background-color: #ffffff;
   width: 100%;
   transition: 0.5s;
   padding: 0;
   border: none !important;
}

.wpcf7-response-output {
   color: red;
}

.contact__submit:hover {
   transition: 0.5s;
}

.contact__submit:hover input {
   background: #ff5a1f;
   color: #ffffff;
   transition: 0.5s;
}

.contact__label {
   position: absolute;
   pointer-events: none;
   left: 3%;
   top: -10%;
   transition: 0.3s;
   box-sizing: border-box;
   font-style: normal;
   font-weight: normal;
   font-size: 14px;
   line-height: 20px;
   color: #ffffff;
}

.contact__input input:focus,
textarea:focus {
   border-bottom: 2px solid #ff5a1f !important;
}

.contact__input.focus label {
   top: -44%;
   font-style: normal;
   font-weight: normal;
   font-size: 14px;
   line-height: 20px;
   color: #ffffff;
   box-sizing: border-box;
}

.contact__orange {
   width: 43%;
   position: absolute;
   bottom: 0;
   left: 0;
}

.contact__orange img {
   width: 100%;
   height: auto;
}

@media (max-width: 1200px) {
   .contact__container {
      padding-right: 20px;
      padding-left: 20px;
   }
}

@media (max-width: 991px) {
   .contact {
      max-height: 975px;
      background-position: 28%;
   }

   .contact__container {
      align-items: center;
      flex-direction: column;
   }
}

@media (max-width: 567px) {
   .contact {
      max-height: unset;
   }

   .contact__input {
      align-self: center;
      width: 100%;
   }

   .contact__form {
      width: 100%;
   }

   .contact__container {
      padding-bottom: 50px;
   }
}

.footer {
   position: relative;
   z-index: 5;
   background: #292929;
   font-family: "Montserrat", sans-serif !important;
}

.footer__container {
   padding: 45px 35px 25px;
   display: flex;
   max-width: 1434px;
   justify-content: space-between;
   /*align-items: center;*/
   margin: 0 auto;
}
.footer__nav a,
.footer__nav_links a {
   font-family: "Montserrat", sans-serif !important;
}
.footer__logo img {
   max-width: 280px;
   width: 100%;
   height: auto;
}

.footer__info {
   height: fit-content;
   max-width: 1014px;
   display: flex;
   width: 100%;
   padding: 0 15px;
   flex-direction: column;
   /*font-family: Averta Demo PE;*/
   /*font-style: normal;*/
   /*font-weight: normal;*/
   /*font-size: 14px;*/
   /*line-height: 18px;*/
   /*color: #FFFFFF; */
}

.footer__links {
   width: 100%;
   justify-content: space-between;
   display: flex;
   flex-wrap: wrap;
}

.footer__links a {
   width: 32%;
   font-style: normal;
   font-weight: 600;
   font-size: 16px;
   line-height: 20px;
   margin-bottom: 24px;
}
.footer__links a:nth-of-type(3n) {
   text-align: right;
}

.footer__nav {
   margin-top: 28px;
   width: 100%;
   display: flex;
   justify-content: space-between;
}

.footer__nav a {
   /* font-family: Averta CY; */
   font-style: normal;
   font-weight: normal;
   font-size: 14px;
   line-height: 15px;
   color: #ffffff;
}

.footer__nav_links {
   display: flex;
   flex-direction: column;
}
.mobile {
   display: none;
}
.footer__nav_links a {
   font-style: normal;
   font-weight: normal;
   font-size: 12px;
   line-height: 15px;
   color: #ffffff;
   opacity: 0.6;
}
.intro {
   margin: -111px 0 0 0;
}

.footer__info a {
   color: #ffffff !important;
}

.footer__container .footer__info.footer__item:nth-child(2) {
   padding: 0 10px;
}
@media (max-width: 768px) {
   .mobile {
      display: block;
   }
   .intro {
      margin: 0;
   }
}

@media (max-width: 1300px) {
   .footer__links a {
      font-size: 14px;
   }

   .footer__nav_links {
      max-width: 32%;
   }
}

@media (max-width: 1200px) {
   .footer__links a {
      width: 33%;
   }

   .footer__nav_links {
      max-width: 33%;
   }
}

@media (max-width: 991px) {
   .footer__container {
      padding: 25px 20px;
   }

   .footer__nav_links {
      max-width: 50%;
   }

   .footer__links a {
      width: 50%;
      margin-bottom: 10px;
   }

   .footer__nav {
      margin-top: 15px;
   }
}

@media (max-width: 767px) {
   .footer__container {
      flex-direction: column;
      align-items: center;
   }

   .footer__links a {
      margin-top: 15px;
   }

   .footer__links a {
      width: 43%;
   }

   .footer__nav {
      flex-direction: column;
      align-items: center;
   }

   .footer__nav_links {
      max-width: unset;
      margin-top: 15px;
   }
}

@media (max-width: 567px) {
   .footer__links a {
      width: 50%;
      font-size: 12px;
   }
}

.single__content {
   position: relative;
   padding: 0 20px;
   background-image: url("../img/single-back-new.png");
   background-position: center;
   background-size: cover;
   background-repeat: no-repeat;
   margin-top: 170px;
   text-align: center;
}

.single__content h2 {
   padding-top: 80px;
   margin: 0 auto;
   max-width: 810px;
   font-style: normal;
   font-weight: 600;
   font-size: 34px;
   line-height: 40px;
   text-align: center;
   color: #292929;
}

.single__content img {
   max-width: 810px;
   max-height: 312px;
   padding: 50px 0;
   width: 100%;
   height: auto;
   object-fit: cover;
}

.single__buttons {
   padding-top: 65px;
   max-width: 1232px;
   width: 100%;
   margin: 0 auto;
   display: flex;
   justify-content: space-between;
}

.crumbs {
   transform: translateX(-30%);
   max-width: unset;
}

.crumbs a {
   opacity: 0.8;
}

.crumbs a:first-child {
   font-style: normal;
   font-weight: normal;
   font-size: 16px;
   line-height: 23px;
   color: #292929;
}

.crumbs__border {
   margin: 0 20px;
}

.single__buttons svg {
   padding-right: 15px;
}

.single__buttons .single__buttons_current {
   opacity: 1;
   transition: 0.5s;
}

.single__buttons .single__buttons_hover {
   opacity: 0;
   transition: 0.5s;
}

.single__buttons a:hover .single__buttons_hover {
   opacity: 1;
   transition: 0.5s;
}

.single__buttons a:hover .single__buttons_current {
   opacity: 0;
   transition: 0.5s;
}

.single__container {
   display: flex;
   flex-direction: column;
   margin: 0 auto;
   max-width: 810px;
   width: 100%;
   text-align: left;
   padding-bottom: 125px;
}

.single__container h3 {
   font-style: normal;
   font-weight: 600;
   font-size: 24px;
   line-height: 32px;
   text-align: center;
   color: #292929;
}

.single__content a:hover {
   cursor: pointer;
}

.single__container p {
   font-style: normal;
   font-weight: normal;
   font-size: 16px;
   line-height: 23px;
   color: #292929;
}

.single__container h4 {
   font-style: normal;
   font-weight: 600;
   font-size: 20px;
   line-height: 23px;
   color: #292929;
}

.single__container h5 {
   font-style: normal;
   font-weight: 600;
   font-size: 18px;
   line-height: 24px;
   color: #292929;
}

.single__container ul {
   padding: 0 0 0 2%;
}

.single__container li {
   font-style: normal;
   font-weight: normal;
   font-size: 16px;
   line-height: 28px;
   text-align: justify;
   color: #292929;
}

.single__social {
   max-width: 810px;
   width: 100%;
   border-top: 1px solid black;
   margin: 0 auto;
}

.social__container {
   margin: 0 auto;
   display: flex;
   max-width: 120px;
   padding-top: 55px;
   padding-bottom: 110px;
   justify-content: space-between;
}

.social__container a {
   position: relative;
}

.social__container a path {
   transition: 0.5s;
   fill: #292929;
}

.social__container a:hover path {
   fill: #ffffff;
   transition: 0.5s;
}

@media (max-width: 1199px) {
   .single__content {
      margin-top: 130px;
   }
}

@media (max-width: 575px) {
   .single__content {
      margin-top: 90px;
   }

   .single__content h2 {
      font-size: 24px;
      padding-top: 30px;
   }

   .single__buttons {
      padding-top: 30px;
   }

   .single__content img {
      padding: 20px 0;
   }

   .single__container {
      padding-bottom: 55px;
   }

   .social__container {
      padding: 50px 0;
   }
}

@media (max-width: 1000px) {
   .crumbs {
      transform: translateX(0);
   }
}

@media (max-width: 1000px) {
   .single__buttons {
      flex-direction: column;
      align-items: start;
   }

   .crumbs {
      margin: 10px 0;
   }
}

@media print {
   header {
      display: none;
   }

   footer {
      display: none;
   }

   .content__buttons {
      display: none !important;
   }

   .single__social {
      display: none;
   }

   .single__buttons {
      display: none;
   }

   .traitement-post ul li {
      display: list-item !important;
   }

   .trait__img {
      -webkit-print-color-adjust: exact;
      color-adjust: exact !important;
   }

   .traitement-post ul li:before {
      -webkit-print-color-adjust: exact;
      color-adjust: exact !important;
   }
}

.sound {
   position: absolute;
   bottom: 8%;
   left: 8%;
   width: 40px;
   height: 40px;
   border-radius: 50%;
   background: url("../img/soundoff.png") no-repeat center;
   cursor: pointer;
}

.sound.active {
   background: url("../img/soundon.png") no-repeat center;
}

/*big resolution fix*/
@media (min-width: 1921px) {
   .treatments__container {
      max-width: 1920px;
      margin: 0 auto;
   }
   .cabinet {
      background-color: #f2f3f7;
      width: 100%;
      overflow: hidden;
      position: relative;
   }

   .cabinet__face {
      z-index: 1;
      width: 50%;
      position: absolute;
      top: 26%;
      left: 0;
   }

   .cabinet__orange {
      position: absolute;
      left: -4.3%;
      top: 0;
      z-index: 0;
      overflow: hidden;
   }

   .cabinet__grey {
      position: absolute;
      top: -9%;
      left: 0;
      z-index: 0;
      overflow: hidden;
   }

   .cabinet__bottom {
      display: none;
   }

   .intro {
      position: relative;
      z-index: 1;
   }

   .sense {
      background-color: #edeff2;
   }

   .philosophie {
      background-color: #edeff2;
   }

   .phi__orange {
      top: -24.7%;
      left: 66.9%;
      width: 33%;
   }

   .phi__orange img {
      width: 100%;
      height: 100%;
   }

   .philosophie__container {
      margin-left: 250px;
      padding-top: 340px;
   }

   .phi__nblue {
      display: none;
   }

   .staff__back {
      height: 133%;
   }

   .staff__container_doctors .staff__doctor:nth-child(1) .staff__doctor_text {
      padding-left: 0;
      align-self: center;
   }

   .staff__container_doctors .staff__doctor:last-of-type .staff__doctor_text {
      align-self: center;
   }

   .staff__container_doctors {
      justify-content: center;
      padding-top: 234px;
      max-width: 1920px;
      margin: 0 auto;
   }

   .staff__label {
      bottom: -20%;
   }

   .promo__back img {
      max-width: unset;
      max-height: unset;
   }

   .treatments__info {
      max-height: unset;
   }

   .con__grey img {
      width: 100%;
   }

   .work {
      max-width: 1920px;
      margin: 0 auto;
   }

   body {
      background: #dfe3e9;
   }
}
.treatments__orange {
   display: none;
}
@media (max-width: 575px) {
   .footer__links {
      flex-direction: column;
      align-items: flex-start;
   }
   .footer__links a {
      text-align: left !important;
      margin: 5px 0;
   }
   .treatments__info a {
      opacity: 1;
      visibility: visible;
   }
   .contact__area textarea {
      height: 100px;
   }
}
/* .cabinet-r {
  padding-top: 170px;
} */
.cabinet-r .cabinet__title {
   position: relative;
   z-index: 33;
   margin: 0 auto;
   text-align: center;
   /* width: 45%; */
   /* padding-top: 185px; */
   padding-top: 9%;
}
.cabinet-r .cabinet__title svg {
   position: absolute;
   bottom: -34px;
   right: -85px;
}
.cabinet-r .cabinet__title-bg {
   width: 100%;
   position: absolute;
   top: 0;
}
.cabinet-r .cabinet__title-bg img {
   width: 100%;
   display: block;
   object-fit: contain;
}
.cabinet-r .cabinet__info {
   padding-top: 0;
   /* padding-bottom: 330px; */
   box-sizing: border-box;
}
.cabinet-r .cabinet__container {
   /* padding-top: 138px;
  padding-bottom: 216px; */
   display: flex;
   align-items: center;
   /* justify-content: space-between; */
	 /* new styles 14.11.2024 */
	 justify-content: flex-start;
	 gap: 30px;
	 max-width: 100%;
	 /*  */
   width: 100%;
   /* max-width: 1785px; */
   flex-direction: row;
   padding-top: 0;
   padding-bottom: 0;
   margin: 0 auto 0 0;
   box-sizing: border-box;
}
.cabinet-r .cabinet__photo-filter {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: linear-gradient(
         360deg,
         rgba(255, 255, 255, 0.3) 0.25%,
         rgba(255, 255, 255, 0) 17.74%
      ),
      linear-gradient(270deg, #ffffff 0%, rgba(255, 255, 255, 0) 18.32%),
      url(ф8.jpg);
   z-index: 2;
   display: none;
}
.cabinet-r .cabinet__info {
   align-self: auto;
   max-width: 810px;
   width: 48%;
   padding-right: 10px;
}
.cabinet-r .cabinet__title-wrap {
   position: relative;
   z-index: 3;
}
.cabinet-r .cabinet__phone {
   width: 37%;
}
.cabinet-r .cabinet__header,
.cabinet-r .cabinet__contact {
   max-width: 645px;
}

.cabinet-r .cabinet__photo-team {
	width: 50.535%;
   /* width: 45.1%; */
   /* max-width: 805px; */
   position: relative;
}
.cabinet-r .cabinet__photo-team-mob {
   display: none;
}
.cabinet-r .cabinet__photo-team-mob img {
   width: 100%;
}
.cabinet-r .cabinet__photo-team img {
   width: 100%;
   height: 100%;
   display: block;
   object-fit: cover;
   position: relative;
   z-index: 0;
}
.intro-r {
   margin-top: 0;
}
@media screen and (min-width: 1920px) {
   /* .cabinet-r .cabinet__container {
      max-width: none;
      padding-right: 50px;
   } */
   /* .cabinet-r .cabinet__photo-team {
      max-width: none;
      width: 45.1%;
   } */
   /* .cabinet-r .cabinet__info {
      max-width: none;
      width: 46%;
   } */
}
@media screen and (max-width: 1670px) {
   .cabinet-r .cabinet__info {
      padding-top: 130px;
      padding-bottom: 67px;
   }
   .cabinet-r .cabinet__photo-team {
      height: auto;
   }
   /* .cabinet-r .cabinet__container {
      align-items: stretch;
   } */
}
@media screen and (max-width: 1550px) {
   /* .cabinet-r .cabinet__photo-team {
      width: 49.1%;
   } */
}
@media screen and (max-width: 1460px) {
   .cabinet-r .cabinet__info {
      padding-right: 30px;
   }
   .cabinet-r .cabinet__phone a {
      font-size: 19px;
   }
}
@media screen and (max-width: 1445px) {
   .cabinet-r {
      padding-top: 163px;
   }
   .cabinet-r .cabinet__title {
      padding-top: 6%;
   }
}
@media screen and (max-width: 1360px) {
   .cabinet-r .cabinet__title {
      padding-top: 4%;
   }
}
@media screen and (max-width: 1201px) {
   .cabinet-r .cabinet__title {
      padding-top: 2%;
   }
   .cabinet-r {
      padding-bottom: 50px;
   }
   .cabinet-r .cabinet__container {
      flex-direction: column;
      align-items: center;
      padding-left: 0;
      padding-top: 1%;
      padding-right: 0;
   }
   .cabinet-r .cabinet__photo-team {
      max-width: 668px;
      width: 100%;
   }
   .cabinet-r .cabinet__info {
      max-width: 805px;
      width: 100%;
      padding-left: 20px;
      padding-right: 20px;
      padding-top: 30px;
   }
   .cabinet-r .cabinet__title svg {
      display: none;
   }
   .cabinet-r .cabinet__photo-team-mob {
      display: block;
      /*     max-width: 805px; */
      width: 100%;
      padding-top: 2%;
   }
   .cabinet-r .cabinet__photo-team {
      display: none;
   }
}
@media screen and (max-width: 992px) {
   .cabinet-r .cabinet__photo-team-mob {
      width: 100%;
      padding-top: 0;
   }
   .cabinet-r .cabinet__photo-team-mob img {
      width: 100%;
   }
}
@media screen and (max-width: 930px) {
   .cabinet__title-bg {
      display: none;
   }
}
@media screen and (max-width: 576px) {
   .cabinet-r {
      padding-top: 101px;
   }
   .cabinet-r .cabinet__info {
      padding-bottom: 3px;
   }
   .cabinet__title {
      margin-bottom: 30px !important;
   }
   .cabinet__contact {
      align-items: flex-start;
   }
   .cabinet-r .cabinet__photo-team-mob {
      position: relative;
      width: 100%;
   }
   .cabinet-r .cabinet__photo-team-mob::before {
      content: "";
      display: block;
/*       padding-top: 62.25%; */
   }
}
.cabinet-r .cabinet__photo-team-mob img {
   /*     position: absolute; */
   top: 0;
   right: 0;
   bottom: 0;
   left: 0;
   display: block;
   object-fit: cover;
   width: 100%;
   height: 100%;
}
