@charset "UTF-8";
/*** 

====================================================================
	Reset
====================================================================

***/
html {
  scroll-behavior: smooth;
}

* {
  margin: 0px;
  padding: 0px;
  border: none;
  outline: none;
}

button {
  outline: none;
}

button:focus {
  outline: none;
}

button:focus {
  outline: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* width */
::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #fff;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
}

/***
  ====================================================================
      Global Settings
  ====================================================================
   ***/
body {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 19px;
  line-height: 34px;
  color: #6c6c6c;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
}

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

a[href] {
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  position: relative;
  font-weight: normal;
  margin: 0px;
  background: none;
}

.auto__container {
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 30px;
}

ul,
li {
  /*list-style: none;*/
  padding: 0px;
  margin: 0px;
}

h1 {
  font-weight: 700;
  font-size: 60px;
  line-height: 70px;
}
h1.big {
  font-weight: 700;
  font-size: 60px;
  line-height: 93px;
}

h2 {
  font-weight: 700;
  font-size: 50px;
  line-height: 65px;
}

h3, .layoutBlog__content h1 {
  font-weight: 700;
  font-size: 39px;
  line-height: 56px;
}

h5, .layoutBlog__content h2 {
  font-weight: 700;
  font-size: 27px;
  line-height: 40px;
}

h6 {
  font-weight: 700;
  font-size: 23px;
  line-height: 35px;
}

.button {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  cursor: pointer;
}
.button.primary {
  padding: 20px 60px;
  font-weight: 700;
  font-size: 15px;
  line-height: 22px;
  color: #fff;
  background: #f2892b;
}
.button.primary:hover {
  background: #f2a900;
}

p.big {
  font-weight: 500;
  font-size: 23px;
  line-height: 38px;
}
p.sm {
  font-size: 17px;
  line-height: 26px;
}

main {
  overflow: hidden;
  position: relative;
}

.wrapper {
  padding-top: 152px;
}

.lang {
  position: relative;
}
.lang label {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 26px;
  color: #060606;
  padding: 4px 20px;
  display: block;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.lang label:hover {
  color: #f2892b;
}
.lang input {
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
}
.lang input:hover + label {
  color: #f2892b;
}
.lang input:checked + label .lang__en {
  display: none;
}
.lang input:checked + label .lang__cz {
  display: block;
}
.lang__en {
  display: block;
}
.lang__cz {
  display: none;
}

.tag {
  padding: 4px 22px;
  font-weight: 500;
  font-size: 19px;
  line-height: 32px;
  margin: 5px;
  color: #060606;
  background: #e8e8e8;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}
.tagCheck {
  margin: 5px;
  position: relative;
}
.tagCheck input {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  cursor: pointer;
}
.tagCheck input:checked + label {
  background: #f2892b;
  color: #fff;
}
.tagCheck label {
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  padding: 4px 22px;
  font-weight: 500;
  font-size: 19px;
  line-height: 32px;
  color: #060606;
  background: #e8e8e8;
}

.input input,
.input textarea {
  resize: none;
  background: #fff;
  padding: 20px;
  width: 100%;
  font-size: 19px;
  line-height: 30px;
  font-weight: 400;
  box-sizing: border-box;
  color: #060606;
}
.input input::placeholder,
.input textarea::placeholder {
  color: #6c6c6c;
  opacity: 1;
}
.input__row {
  display: flex;
  justify-content: space-between;
  margin: 0 -25px 30px -25px;
  flex-wrap: wrap;
}
.input__row .input__outer.flex {
  display: flex;
  justify-content: space-between;
  width: calc(50% - 50px);
  margin: 15px 25px;
}
.input__row .input__outer.flex label {
  width: 245px;
  line-height: 70px;
}
.input__row .input__outer.flex .input {
  width: calc(100% - 245px);
}
.input__row .input__outer.flexCh {
  display: flex;
  justify-content: space-between;
  margin: 10px 25px;
}
.input__row .input__outer.flexCh:last-child {
  margin-bottom: 0;
}
.input__row .input__outer.flexCh label {
  width: 245px;
}
.input__row .input__outer.flexCh .check {
  width: calc(100% - 245px);
}
.input__row .input__outer.w100 {
  width: calc(100% - 50px);
}
.input__row .input__outer label {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 19px;
  line-height: 28px;
  display: block;
  color: #6c6c6c;
}

.check {
  position: relative;
}
.check input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
}
.check input:checked + label::before {
  background: #f2892b;
}
.check input:checked + label::after {
  opacity: 1;
}
.check label {
  display: block;
  position: relative;
  width: 100% !important;
  font-family: "Poppins";
  font-weight: 400;
  font-size: 19px;
  line-height: 34px !important;
  color: #6c6c6c;
  box-sizing: border-box;
  padding-left: 70px;
}
.check label::before {
  position: absolute;
  left: 0;
  width: 40px;
  height: 40px;
  background: #fff;
  content: "";
  top: 50%;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  transform: translateY(-50%);
  -moz-ransform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.check label::after {
  position: absolute;
  top: calc(50% - 3px);
  opacity: 0;
  left: 16px;
  width: 6px;
  opacity: 0;
  content: "";
  height: 16px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}

.footer {
  padding: 38px 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__inner-links {
  width: 300px;
}
.footer__inner-links a {
  display: block;
  text-decoration: underline;
  font-size: 0.95rem;
  line-height: normal;
  color: #6c6c6c;
}
.footer__inner-socials {
  order: 3;
  width: 300px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.footer__inner-socials a {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 30px;
}
.footer__inner-socials a:first-child {
  margin-left: 0;
}
.footer__inner-socials a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.footer__inner-socials a:hover img {
  filter: invert(43%) sepia(64%) saturate(4124%) hue-rotate(329deg) brightness(94%) contrast(102%);
}
.footer__inner-copy {
  order: 2;
  text-align: center;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background: #fff;
}
.header.uniq {
  background: transparent;
}
.header.uniq .header__inner {
  border-bottom: 0;
}
.header.uniq .header__inner-logo img {
  filter: brightness(0) invert(1);
}
.header.uniq .nav__inner-link {
  color: #fff;
}
.header.uniq .lang label {
  color: #fff;
}
.header.uniq .lang label:hover {
  color: #f2892b;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 41px 0;
  position: relative;
  border-bottom: 1px solid #000;
}
.header__inner-row {
  display: flex;
  align-items: center;
}
.header__inner-logo {
  width: 116px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__inner-logo img {
  width: 100%;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  filter: brightness(0);
}
.headerBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  margin-left: 20px;
  cursor: pointer;
  background: #f2892b;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.headerBtn.mob {
  display: none;
}
.headerBtn:hover {
  background: #f2a900;
}
.headerBtn img {
  width: 19px;
  height: 19px;
  pointer-events: none;
  object-fit: contain;
}
.headerBtn img.closeIcon {
  display: none;
}
.headerBtn.active img.closeIcon {
  display: inline-block;
}
.headerBtn.active img.searchIcon {
  display: none;
}
.header.sticky {
  position: fixed;
  animation: sticky 0.2s linear;
  background: #fff;
}
.header.sticky .header__inner-logo img {
  filter: brightness(0) !important;
}
.header.sticky .nav__inner-link {
  color: #060606;
}
.header.sticky .nav__inner-link span::before {
  background: #6c6c6c;
}
.header.sticky .lang label {
  color: #060606;
}
.header.sticky .lang label:hover {
  color: #f2892b;
}
.header.white {
  background: #fff;
}
.header.white .header__inner-logo img {
  filter: brightness(0) !important;
}
.header.white .nav__inner-link {
  color: #060606 !important;
}
.header.white .nav__inner-link:hover {
  color: #060606 !important;
}
.header.white .nav__inner-link span::before {
  background: #060606;
}
.header.white .lang label {
  color: #060606;
}
.header.white .lang label:hover {
  color: #f2892b;
}

@keyframes sticky {
  0% {
    top: -60px;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}
.nav__inner {
  display: flex;
  align-items: center;
}
.nav__inner-link {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 17px;
  line-height: 26px;
  text-transform: uppercase;
  color: #060606;
  cursor: pointer;
  padding: 4px 20px;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.nav__inner-link:hover {
  color: #f2a900;
}
.nav__inner-link svg {
  width: 12px;
  height: 12px;
  margin-left: 4px;
}
.nav__inner-link span {
  position: relative;
  display: inline-block;
}
.nav__inner-link span::before {
  position: absolute;
  content: "";
  bottom: -2px;
  height: 2px;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  width: 0;
  background: #fff;
}
.nav__inner-link:hover span::before {
  width: 100%;
}
.nav__inner-drop {
  position: relative;
}
.nav__inner-drop:hover .nav__inner-drop-cont {
  max-height: 250px;
  opacity: 1;
}
.nav__inner-drop:hover .nav__inner-link {
  color: #f2a900;
}
.nav__inner-drop-cont {
  position: absolute;
  top: 100%;
  width: 100%;
  left: 0;
  background: #fff;
  max-height: 0;
  overflow: hidden;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  opacity: 0;
}
.nav__inner-drop-cont .nav__inner-link {
  color: #060606 !important;
}
.nav__inner-drop-cont .nav__inner-link:hover {
  color: #f2a900 !important;
}

.menu {
  height: 65px;
}
.menu .nav__inner-link {
  box-sizing: border-box;
  height: 100%;
  position: relative;
  /*
  &::after {
      position: absolute;
      content: "";
      height: 41px;
      top: 100%;
      left: 0;
      width: 100%
  }*/
}
.menu .nav__inner-link::before {
  position: absolute;
  content: "";
  height: 41px;
  top: 0;
  left: 0;
  width: 100%;
}
.menu .nav__inner-link.active svg {
  transform: rotate(180deg);
}
.menuContent {
  position: absolute;
  top: 100%;
  background: #fff;
  z-index: 10;
  display: none;
  left: 0;
  animation: tab 0.2s linear;
  width: 100%;
  box-sizing: border-box;
  color: #060606;
  max-height: calc(100vh - 150.83px);
}
.menuContent.active {
  padding: 0 0 48px 0;
  display: block;
}
.menuContent__back {
  display: none;
}
.menuContent__info {
  display: flex;
  align-items: center;
  padding: 30px;
  background: #e8e8e8;
  color: #060606;
}
.menuContent__info-text {
  display: flex;
  width: calc(100% - 160px);
}
.menuContent__info-text img {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  position: relative;
  bottom: -10px;
}
.menuContent__info-text strong {
  display: block;
  font-weight: 700;
  font-size: 27px;
  line-height: 30px;
  color: #000000;
}
.menuContent__link {
  font-weight: 500;
  font-size: 19px;
  line-height: 32px;
  display: block;
  color: #060606;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  padding: 4px 0;
}
.menuContent__link:hover {
  color: #f2892b;
}
.menuContent__links {
  margin-bottom: 24px;
}
.menuContent__links h5 {
  margin-bottom: 10px;
}
.menuContent__links:last-child {
  margin-bottom: 0;
}
.menuContent__inner {
  display: flex;
  justify-content: space-between;
  overflow-y: auto;
}
.menuContent__inner::-webkit-scrollbar {
  display: none;
}
.menuContent__inner {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none;
}
.menuContent__col {
  width: calc(33.3% - 10px);
  max-width: 500px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.menuContent::before {
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  background: #fff;
  box-sizing: border-box;
  height: 100%;
  content: "";
}
.menuContent::after {
  position: absolute;
  top: 0;
  right: 100%;
  box-sizing: border-box;
  width: 100%;
  background: #fff;
  height: 100%;
  content: "";
}
.table {
  width: 100%;
  overflow-x: auto;
  margin-bottom: 40px;
}
.table::-webkit-scrollbar {
  display: none;
}
.table {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.table table {
  border-collapse: collapse;
  width: 100%;
}
.table table th,
.table table td {
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  text-align: center;
  color: #060606;
  border-bottom: 1px solid #f2a900;
  padding: 16px;
  box-sizing: border-box;
  position: relative;
  max-width: 140px;
}
.table table th.bold,
.table table td.bold {
  font-weight: 700;
}
.table table th:nth-child(1),
.table table td:nth-child(1) {
  text-align: left;
  max-width: unset;
  padding-left: 0;
}
.table table th.sm,
.table table td.sm {
  font-size: 14px;
  line-height: 18px;
}
.table table th img,
.table table td img {
  width: 30px;
}
.table table th button,
.table table td button {
  width: 18px;
  height: 18px;
  display: flex;
  align-content: center;
  justify-content: center;
  position: absolute;
  cursor: pointer;
  top: 50%;
  background: transparent;
  transform: translateY(-50%);
  -moz-ransform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  right: 0;
}
.table table th button img,
.table table td button img {
  width: 100%;
  height: 100%;
}
.table table th button img.minus,
.table table td button img.minus {
  display: none;
}
.table table th button.active img.minus,
.table table td button.active img.minus {
  display: inline-block;
}
.table table th button.active img.plus,
.table table td button.active img.plus {
  display: none;
}
.table table th {
  font-weight: 700;
  vertical-align: bottom;
}
.table table th:nth-child(1) {
  color: #f2892b;
}
.table table tfoot td {
  font-weight: 700;
}
.table .hidden {
  display: none;
  animation: tab 0.3s linear;
}
.table .hidden.active {
  display: table-row-group;
}

.table-description {
  margin-bottom: 1rem;
}

.intro {
  padding: 290px 0;
  position: relative;
}
.introSlider {
  margin-bottom: 0 !important;
  height: 900px;
  overflow: hidden;
}
.introSlider .slick-dots {
  bottom: 216px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.introSlider .slick-dots li {
  width: 16px;
  height: 16px;
  background: #fff;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  border-radius: 50%;
  margin: 0 8px;
}
.introSlider .slick-dots li.slick-active {
  background: #f2892b;
}
.introSlider .slick-dots li button {
  width: 100%;
  height: 100%;
  padding: 0;
}
.introSlider .slick-dots li button::before {
  display: none;
}
.intro__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.intro__bg picture {
  width: 100%;
  height: 100%;
}
.intro__bg picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.intro__bg::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}
.intro__inner {
  position: relative;
  z-index: 1;
  max-width: 730px;
  color: #fff;
}
.intro h1 {
  margin-bottom: 16px;
}
.intro p {
  max-width: 500px;
  margin-bottom: 30px;
}

.avai {
  margin-top: -190px;
}
.avai__inner {
  display: flex;
  margin: 0 -24px;
}
.avaiItem {
  width: calc(33.3% - 48px);
  padding: 32px 48px;
  color: #fff;
  box-sizing: border-box;
  margin: 0 24px;
}
.avaiItem a:hover {
  text-decoration: underline;
}
.avaiItem h6 {
  font-size: 20px;
  line-height: 26px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.avaiItem:nth-child(1) {
  background: #f3713b;
}
.avaiItem:nth-child(2) {
  background: #f2892b;
}
.avaiItem:nth-child(3) {
  background: #f2a900;
}
.avaiItem__info {
  display: flex;
  align-items: center;
}
.avaiItem__info-icon {
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  margin-right: 25px;
}
.avaiItem__info-icon img {
  width: 19px;
  height: 19px;
  object-fit: contain;
}
.avaiItem__info-text {
  width: calc(100% - 90px);
}
.avaiItem__content p {
  margin-bottom: 16px;
}
.avaiItem__content-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.avaiItem__content-row p {
  margin-bottom: 0;
}
.avaiItem .divider {
  margin: 30px 0;
  width: 100%;
  height: 1px;
  background: #fff;
}
.avaiItem a {
  color: #fff;
}

.about {
  padding: 48px 0;
}
.about__image {
  width: 100%;
  max-width: 438px;
}
.about__image-inner {
  padding-bottom: 100%;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
}
.about__image-inner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.about__inner-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.about__inner-col {
  width: calc(33.3% - 10px);
  padding: 48px 0;
  max-width: 500px;
}
.about__inner-col:nth-child(4), .about__inner-col:nth-child(5), .about__inner-col:nth-child(6) {
  border-top: 1px solid #d4d4d4;
}
.about__inner-col h6 {
  font-weight: 700;
  color: #060606;
}
.about__inner-col p {
  margin-bottom: 40px;
}
.about__inner-col p:last-child {
  margin-bottom: 0;
}
.about__inner-col h5 {
  color: #060606;
  margin-bottom: 9px;
}
.about__inner-col h3 {
  color: #060606;
  margin-bottom: 32px;
}
.about__inner-col h3:last-child {
  margin-bottom: 0;
}

.banner__video {
  width: 100%;
  padding-bottom: 41.6%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.banner__video::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2666666667);
}
.banner__video.active::after {
  display: none;
}
.banner__video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.banner__video video:hover ~ .banner__video-play.active {
  opacity: 1;
}
.banner__video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  border: 2px solid #ffffff;
  z-index: 3;
  cursor: pointer;
  width: 120px;
  border-radius: 50%;
  height: 120px;
  transition: 0.4s linear;
}
.banner__video-play.active {
  opacity: 0;
}
.banner__video-play.active span img {
  display: none;
}
.banner__video-play.active span::after {
  display: block;
}
.banner__video-play.active span::before {
  display: block;
}
.banner__video-play span {
  display: flex;
  width: 60%;
  height: 60%;
  justify-content: center;
  align-items: center;
  position: relative;
}
.banner__video-play span::after {
  display: none;
  content: "";
  position: absolute;
  top: 50%;
  left: 30%;
  width: 10px;
  height: 45%;
  background-color: #fff;
  transform: translateY(-50%);
}
.banner__video-play span::before {
  content: "";
  display: none;
  position: absolute;
  top: 50%;
  right: 30%;
  width: 10px;
  height: 45%;
  background-color: #fff;
  transform: translateY(-50%);
}
.banner__video-play span img {
  width: 40%;
}

.faq {
  padding: 150px 0;
  background: #e8e8e8;
}
.faq__head {
  margin-bottom: 10px;
}
.faq h3 {
  margin-bottom: 20px;
  max-width: 600px;
  color: #060606;
}
.faq__head {
  margin-bottom: 10px;
}
.faq__inner-row {
  display: flex;
  justify-content: space-between;
}
.faq__inner-col {
  width: calc(50% - 25px);
  max-width: 770px;
}
.faq .button {
  margin-top: 50px;
}
.faqItem {
  margin-bottom: 32px;
}
.faqItem:last-child {
  margin-bottom: 0;
}
.faqItem__header {
  display: flex;
  align-items: center;
  cursor: pointer;
  justify-content: space-between;
  padding: 16px 0;
  color: #060606;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.faqItem__header h5 {
  width: calc(100% - 30px);
}
.faqItem__header span {
  width: 18px;
  height: 18px;
  margin-left: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faqItem__header span .minus {
  display: none;
}
.faqItem__header.active span .plus {
  display: none;
}
.faqItem__header.active span .minus {
  display: block;
}
.faqItem__content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  box-sizing: border-box;
}
.faqItem__content.active {
  padding: 16px 0;
  max-height: 1000px;
  opacity: 1;
}

.review {
  position: relative;
  padding: 160px 0 30px 0;
  overflow: hidden;
}
.review .auto__container {
  max-width: 1325px;
}
.review__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.review__bg picture {
  width: 100%;
  height: 100%;
}
.review__bg picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.review__icon {
  width: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px auto;
}
.review__icon img {
  width: 100%;
}
.review__btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.reviewSlider {
  margin-bottom: 50px !important;
  padding-bottom: 50px;
}
.reviewSlider .slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
}
.reviewSlider .slick-dots li {
  width: 16px;
  height: 16px;
  background: #fff;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  border-radius: 50%;
  margin: 0 8px;
}
.reviewSlider .slick-dots li.slick-active {
  background: #f2892b;
}
.reviewSlider .slick-dots li button {
  width: 100%;
  height: 100%;
  padding: 0;
}
.reviewSlider .slick-dots li button::before {
  display: none;
}
.reviewItem {
  text-align: center;
}
.reviewItem__image {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
}
.reviewItem__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.reviewItem__name {
  font-weight: 700;
  font-size: 27px;
  line-height: 40px;
  color: #060606;
  margin-bottom: 9px;
}
.reviewItem__prof {
  margin-bottom: 30px;
  font-weight: 400;
  font-size: 19px;
  line-height: 34px;
  color: #6c6c6c;
}
.reviewItem__text {
  font-weight: 400;
  font-size: 33px;
  line-height: 55px;
  color: #060606;
}

.advent {
  padding: 60px 0;
  background: linear-gradient(135deg, #f26e3d 0%, #f29f16 100%);
}
.advent__inner {
  display: flex;
  justify-content: space-between;
}
.adventItem {
  width: calc(25% - 10px);
  font-weight: 400;
  font-size: 19px;
  line-height: 34px;
  color: #fff;
  box-sizing: border-box;
  padding: 30px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.adventItem strong {
  font-weight: 600;
  font-size: 50px;
  line-height: 56px;
  display: block;
}

.news {
  padding: 60px 0 40px 0;
}
.news__btn {
  display: flex;
  justify-content: flex-end;
}
.newsSlider {
  padding: 25px 0;
  margin: 0 -25px;
}
.newsSlider .slick-track {
  display: flex !important;
}
.newsSlider .slick-slide {
  height: auto;
}
.news h3 {
  color: #060606;
  margin-bottom: 32px;
}
.newsItem {
  padding: 0 25px;
  box-sizing: border-box;
  cursor: pointer;
}
.newsItem__date {
  position: absolute;
  bottom: 0;
  left: 25px;
  width: 85px;
  height: 65px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 400;
  font-size: 15px;
  line-height: 18px;
  color: #f2a900;
  background: #fff;
}
.newsItem__date strong {
  font-weight: 700;
  font-size: 23px;
  line-height: 30px;
  display: flex;
}
.newsItem__image {
  padding-bottom: 66.8%;
  position: relative;
  margin-bottom: 32px;
  overflow: hidden;
}
.newsItem__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.newsItem h6 {
  line-height: 32px;
  height: 64px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #060606;
  margin-bottom: 12px;
}
.newsItem__btn {
  display: flex;
  justify-content: center;
}
.newsItem__row {
  display: flex;
  flex-wrap: wrap;
  margin: -25px -25px 0 -25px;
  animation: newsAnime 0.2s linear;
}
.newsItem__row .newsItem {
  width: 33%;
  padding: 25px;
}
.newsItem__row.hidden {
  display: none;
}
.newsItem:hover h6 {
  text-decoration: underline;
}
.newsItem:hover .newsItem__image img {
  transform: scale(1.1);
}

@keyframes newsAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.search {
  padding: 50px 0;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  display: none;
}
.search.active {
  display: block;
  animation: tab 0.2s linear;
}
.search__input {
  width: 100%;
  margin: 0 auto;
  max-width: 1050px;
  position: relative;
}
.search__input input {
  padding: 22px 50px 22px 30px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  background: #e8e8e8;
  box-sizing: border-box;
  width: 100%;
  color: #060606;
}
.search__input input::placeholder {
  color: #6c6c6c;
  opacity: 1;
}
.search__input button {
  position: absolute;
  top: 50%;
  right: 24px;
  width: 18px;
  height: 18px;
  display: flex;
  transform: translateY(-50%);
  -moz-ransform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  align-items: center;
  justify-content: center;
}
.search__input button img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.layout {
  padding: 40px 0;
}
.layout .divider {
  margin: 50px 0;
  height: 1px;
  width: 100%;
  background: rgba(0, 0, 0, 0.15);
}
.layout__mob {
  display: none;
}
.layout__head {
  margin-bottom: 80px;
}
.layout__head h1 {
  color: #060606;
  line-height: 1.1;
  margin-bottom: 10px;
}
.layout__head h1:last-child {
  margin-bottom: 0;
}
.layout__head h2 {
  color: #060606;
  line-height: 1.1;
  margin-bottom: 10px;
}
.layout__head h2:last-child {
  margin-bottom: 0;
}
.layout__head h5 {
  margin-bottom: 20px;
}
.layout__head h5 a {
  text-decoration: underline;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.layout__head h5 a:hover {
  color: #f2892b;
}
.layout__head p {
  line-height: 1.2;
}
.layout__inner-row {
  display: flex;
  justify-content: space-between;
  margin: 0 -25px;
}
.layout__inner-col {
  margin: 0 25px;
}
.layout__inner-col.w-66 {
  width: calc(66.6% - 50px);
}
.layout__inner-col.w-33 {
  width: calc(33.3% - 50px);
}
.layout__links h3 {
  padding: 20px 0;
  margin: 0 !important;
}
.layout__links-row {
  margin: 0 -25px;
  display: flex;
  justify-content: space-between;
}
.layout__links-col {
  width: calc(50% - 50px);
  margin: 0 25px 21px 25px;
}
.layout__links-specializations {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  grid-gap: 7px;
}
.layout__links-specializations .layout__link {
  margin: 0 !important;
}
@media (max-width: 700px) {
  .layout__links-specializations {
    grid-template-columns: 1fr;
  }
}
.layoutHot {
  width: calc(50% - 50px);
  margin: 25px;
  box-sizing: border-box;
  padding: 32px 48px;
  color: #fff;
  background: #f7f7f7;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.layoutHot__row {
  flex-wrap: wrap;
  display: flex;
  margin: 0px -15px 50px -15px;
}
.layoutHot__row:last-child {
  margin-bottom: 0;
}
.layoutHot__row .layout__image {
  margin-left: 15px;
  margin-right: 15px;
  width: 100%;
}
.layoutHot.pri-600 {
  background: #f3713b;
}
.layoutHot.pri-600:hover {
  background: #f2a900;
}
.layoutHot.pri-500 {
  background: #f2892b;
}
.layoutHot.pri-500:hover {
  background: #f2a900;
}
.layoutHot.pri-400 {
  background: #f2a900;
}
.layoutHot.pri-400:hover {
  background: #fabb29;
}
.layoutHot p {
  margin-bottom: 20px;
}
.layoutHot__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.layoutHot__info span {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 22px;
  line-height: 26px;
  font-weight: 700;
}
.layoutHot__info span img {
  width: 22px;
  margin-right: 16px;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.layoutHot h5 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.layoutHot h5 span {
  display: flex;
  align-items: center;
}
.layoutHot h5 img {
  width: 30px;
  margin-left: 6px;
}
.layoutHot:hover .layoutHot__info span img {
  margin-right: 8px;
}
.layout__link {
  padding: 24px 30px;
  background: #e8e8e8;
  font-weight: 500;
  font-size: 19px;
  line-height: 24px;
  color: #060606;
  display: block;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  margin-bottom: 7px;
}
.layout__link:last-child {
  margin-bottom: 0;
}
.layout__link:hover {
  color: #f2892b;
}
.layout__image {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}
.layout__image img {
  width: 100%;
}
.layout__btn {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}
.layout__btn:last-child {
  margin-bottom: 0;
}
.layout__quote {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.layout__quote img {
  width: 84px;
  margin-right: 16px;
}
.layout__quote p {
  width: calc(100% - 100px);
  color: #060606;
}
.layout__body {
  padding-bottom: 30px;
  margin-bottom: 30px;
  /*border-bottom: 1px solid rgba($color: #000000, $alpha: 0.15);*/
}
.layout__body p {
  margin-bottom: 20px;
}
.layout__body p.big {
  margin-bottom: 50px;
}
.layout__body h3 {
  margin-bottom: 24px;
  color: #060606;
}
.layoutInfo {
  box-sizing: border-box;
  padding: 36px;
  background: #e8e8e8;
  margin-bottom: 50px;
}
.layoutInfo:last-child {
  margin-bottom: 0;
}
.layoutInfo h5 {
  margin-bottom: 24px;
  color: #060606;
}
.layoutInfo__ter {
  margin-bottom: 12px;
}
.layoutInfo__ter:last-child {
  margin-bottom: 0;
}
.layoutInfo__ter p a {
  color: #060606;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  font-weight: 700;
}
.layoutInfo__ter p a[href]:hover {
  color: #f2892b;
}
.layoutInfo__more {
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  display: flex;
  align-items: center;
  cursor: pointer;
  justify-content: space-between;
}
.layoutInfo__more:hover {
  opacity: 0.6;
}
.layoutInfo__more p strong {
  color: #060606;
}
.layoutInfo ul li {
  font-weight: 700;
  font-size: 17px;
  line-height: 33px;
  position: relative;
  padding-left: 17px;
  list-style: initial;
  /*
  &::before {
      position: absolute;
      content: "";
      top: 50%;
      @include transformY;
      left: 0;
      width: 2px;
      height: 2px;
      background: $main-500;
  }*/
}
.layoutInfo ul li:last-child {
  margin-bottom: 0;
}
.layoutInfo ul li a {
  text-decoration: underline;
  color: #000;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.layoutInfo ul li a[href]:hover {
  color: #f2892b;
}
.layoutInfo p.mb {
  margin-bottom: 20px;
}
.layoutInfo p.med {
  font-weight: 700;
  font-size: 17px;
  line-height: 33px;
  margin-bottom: 24px;
}
.layoutInfo p.med:last-child {
  margin-bottom: 0;
}
.layoutInfo p.med a {
  color: #6c6c6c;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.layoutInfo p.med a[href]:hover {
  color: #f2892b;
}
.layoutInfo__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.layoutInfo__row.uniq h5 {
  width: 165px;
  margin: 0;
}
.layoutInfo__row.uniq .layoutInfo__text {
  width: calc(100% - 165px);
  max-width: 220px;
}
.layoutInfo .button {
  padding: 22px 42px;
}
.layoutInfo .button.uniq {
  padding: 22px 42px !important;
}
.layoutInfo__text {
  display: flex;
  width: calc(100% - 185px);
}
.layoutInfo__text img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  margin-right: 16px;
  position: relative;
  bottom: -10px;
}
.layoutInfo__text p {
  color: #060606;
  width: calc(100% - 34px);
}
.layoutInfo__text p strong {
  font-size: 27px;
  line-height: 1.2;
  display: block;
}
.layoutInfo__more {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  /*
  &:last-child {
    margin-bottom: 0;
  } */
}
.layoutInfo__more-icon {
  width: 65px;
  height: 65px;
  border: 1px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
}
.layoutInfo__more-icon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}
.layoutInfo__more p {
  width: calc(100% - 90px);
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  color: #000;
}
.layoutInfo__more p strong {
  font-weight: 700;
  font-size: 27px;
  line-height: 30px;
  display: block;
}
.layoutInfo h3 {
  color: #060606;
}
.layoutInfo .input__outer {
  margin-bottom: 30px;
}
.layoutInfo .check {
  margin-bottom: 20px !important;
}
.layoutInfo__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
}
.layoutInfo__drop-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.layoutInfo__drop-btn h6 {
  width: calc(100% - 90px);
  font-weight: 700;
  color: #000;
}
.layoutInfo__drop-btn img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}
.layoutInfo__drop-btn img.minus {
  display: none;
}
.layoutInfo__drop-btn.active img.minus {
  display: inline-block;
}
.layoutInfo__drop-btn.active img.plus {
  display: none;
}
.layoutInfo__drop:last-child {
  margin-bottom: 0;
}
.layoutInfo__drop-content {
  max-height: 0;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  opacity: 0;
}
.layoutInfo__drop-content.active {
  opacity: 1;
  max-height: 500px;
  padding-top: 20px;
}
.layoutAvatar {
  padding-bottom: 100%;
  position: relative;
  margin-bottom: 50px;
}
.layoutAvatar img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.layoutBlog {
  display: flex;
  justify-content: space-between;
}
.layoutBlog.grid {
  flex-wrap: wrap;
}
.layoutBlog.grid .layoutBlog__content {
  padding: 50px 0;
  /*border-bottom: 1px solid rgba($color: #000000, $alpha: 0.15);*/
}
.layoutBlog__btn {
  display: flex;
  justify-content: flex-end;
}
.layoutBlog__image {
  width: calc(50% - 25px);
}
.layoutBlog__image-inner {
  position: relative;
  padding-bottom: 100%;
}
.layoutBlog__image-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.layoutBlog__content {
  width: calc(50% - 40px);
}
.layoutBlog__content-text {
  margin-bottom: 50px;
}
.layoutBlog__content-text:last-child {
  margin-bottom: 0;
}
.layoutBlog__content h3, .layoutBlog__content h1 {
  color: #060606;
  margin-bottom: 32px;
}
.layoutBlog__content h5, .layoutBlog__content h2 {
  color: #060606;
  margin-bottom: 32px;
}
.layoutBlog__content p {
  margin-bottom: 32px;
}
.layoutBlog__content p:last-child {
  margin-bottom: 0;
}
.layoutGallery {
  display: flex;
  flex-wrap: wrap;
  margin: 40px -14px;
}
.layoutGallery h3 {
  width: calc(100% - 28px);
  margin: 0 14px 20px 14px;
  color: #060606;
}
.layoutGallery__item {
  width: calc(25% - 28px);
  margin: 14px;
}
.layoutGallery__item-image {
  padding-bottom: 100%;
  position: relative;
}
.layoutGallery__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  top: 0;
  left: 0;
  position: absolute;
}
.layoutPrice {
  padding: 50px 0;
  margin-bottom: 50px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.layoutPrice__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid #f2892b;
  padding: 16px 0;
  color: #060606;
}
.layoutPrice__item:first-child {
  border-top: 2px solid #f2892b;
}
.layoutSearch {
  position: relative;
  margin-bottom: 50px;
}
.layoutSearch input {
  padding: 24px 50px 24px 30px;
  background: #e8e8e8;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 30px;
  width: 100%;
  color: #060606;
}
.layoutSearch input::placeholder {
  color: #6c6c6c;
  opacity: 1;
}
.layoutSearch button {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -moz-ransform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  right: 24px;
}
.layoutSearch button img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.layout__uniq-image {
  display: none;
}

@keyframes tab {
  0% {
    margin-top: 20px;
    opacity: 0;
  }
  100% {
    margin-top: 0;
    opacity: 1;
  }
}
.order {
  background: #e8e8e8;
  overflow: hidden;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-bottom: 50px;
  z-index: 100;
  animation: tab 0.2s linear;
  overflow-y: auto;
}
.order::-webkit-scrollbar {
  display: none;
}
.order {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.order.active {
  display: block;
}
.order__back {
  padding: 48px 0;
  display: flex;
  justify-content: flex-end;
}
.order__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #060606;
  margin-bottom: 30px;
}
.order__head-text {
  width: 55%;
}
.order__head-info {
  padding: 30px;
  background: #fff;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  max-width: 530px;
}
.order__head-info-text {
  width: 50%;
  display: flex;
}
.order__head-info-text img {
  width: 18px;
  height: 18px;
  position: relative;
  bottom: -10px;
  margin-right: 10px;
}
.order__head-info-text p strong {
  font-size: 27px;
  line-height: 32px;
  display: block;
}
.order__head p {
  color: #6c6c6c;
}
.order__body .button {
  margin-left: 245px;
}

.doctor {
  margin-bottom: 60px;
}
.doctor:last-child {
  margin-bottom: 0;
}
.doctor h3 {
  color: #060606;
  margin-bottom: 30px;
}
.doctor h6 {
  color: #060606;
}
.doctor h6 a {
  color: #060606;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.doctor h6 a[href]:hover {
  color: #f2892b;
}
.doctor__row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -25px;
}
.doctorItem {
  margin: 10px 25px;
  width: calc(50% - 50px);
}

.contact__inner {
  display: flex;
  flex-wrap: wrap;
  margin: -25px -25px 40px -25px;
}
.contact__inner .layout__head {
  margin: 25px 25px 70px 25px;
  flex: 0 0 100%;
}
.contact__col {
  width: calc(50% - 50px);
  margin: 25px;
}
.contact__image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact__image img {
  width: 100%;
}
.contact__text h3 {
  color: #060606;
  margin-bottom: 30px;
}
.contact__text p {
  margin-bottom: 30px;
}
.contact__text p:last-child {
  margin-bottom: 0;
}
.contact .avaiItem {
  width: 100%;
  padding: 32px 40px;
  box-sizing: border-box;
  height: 100%;
  margin-left: 0;
}
.contact .avaiItem h5.mb {
  margin-bottom: 20px;
}
.contact .avaiItem ul li {
  font-weight: 700;
  font-size: 17px;
  line-height: 33px;
  position: relative;
  padding-left: 17px;
}
.contact .avaiItem ul li::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -moz-ransform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  left: 0;
  width: 2px;
  height: 2px;
  background: #f2892b;
}
.contact .avaiItem ul li:last-child {
  margin-bottom: 0;
}
.contact .avaiItem ul li a {
  text-decoration: underline;
  color: #6c6c6c;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.contact .avaiItem ul li a:hover {
  color: #f2892b;
}
.contact .avaiItem__btn {
  margin: 30px 0;
  display: flex;
  justify-content: center;
}
.contact .avaiItem__image {
  margin: 0 -40px -32px -40px;
  width: calc(100% + 80px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact .avaiItem__image img {
  width: 100%;
}
.contact .avaiItem.gray {
  background: #e8e8e8;
  color: #060606;
}
.contact .avaiItem.gray .avaiItem__info-icon {
  border: 1px solid #000;
}
.contact .avaiItem.gray .divider {
  background: #000;
}
.contact .avaiItem .divider {
  background: #fff;
  margin: 20px 0;
}
.contact .avaiItem__content p.uniq {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 54px;
  margin: 0;
  line-height: 27px;
}
.contact .map {
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact .map img {
  width: 100%;
}

@media (max-width: 1640px) {
  .menuContent__info h5 {
    font-size: 20px;
    line-height: 26px;
  }
  .menuContent__info-text {
    width: calc(100% - 200px);
  }
  .menuContent__info-text strong {
    font-size: 20px;
    line-height: 26px;
  }
  .avai__inner {
    margin: 0 -16px;
  }
  .avaiItem {
    padding: 24px;
    margin: 0 16px;
    width: calc(33.3% - 32px);
  }
  .avaiItem h5 {
    font-size: 24px;
    line-height: 34px;
  }
  .avaiItem h6 {
    font-size: 20px;
    line-height: 30px;
  }
  .layout__links-row {
    margin: 0 -10px;
  }
  .layout__links-col {
    margin: 0 10px 21px 10px;
    width: calc(50% - 20px);
  }
  .layout__inner-row {
    margin: 0 -10px;
  }
  .layout__inner-col.w-33 {
    width: calc(33.3% - 32px);
    margin: 0 16px;
  }
  .layout__inner-col.w-66 {
    width: calc(66.6% - 32px);
    margin: 0 16px;
  }
  .layoutInfo {
    margin-bottom: 32px;
    padding: 20px;
  }
  .layoutInfo__text {
    width: calc(100% - 140px);
  }
  .layoutInfo .button {
    padding: 20px !important;
  }
  .layoutInfo__more p {
    font-size: 16px;
    line-height: 24px;
  }
  .layoutInfo__more p strong {
    font-size: 24px;
    line-height: 32px;
  }
  .layoutAvatar {
    margin-bottom: 32px;
  }
  .layoutSearch {
    margin-bottom: 32px;
  }
  .layoutGallery {
    margin: 32px -8px;
  }
  .layoutGallery__item {
    margin: 8px;
    width: calc(25% - 16px);
  }
  .layoutHot {
    width: calc(50% - 32px);
    margin: 16px;
  }
  .layoutHot__row {
    margin: 0 -16px;
    margin-bottom: 35px;
  }
  .layoutBlog__image {
    width: calc(50% - 16px);
  }
  .layoutBlog__content {
    /*width: calc(50% - 15px);*/
  }
  .faq__inner-col {
    width: calc(50% - 20px);
  }
  .newsItem__row {
    margin: -24px -16px 0 -16px;
  }
  .newsItem__row .newsItem {
    padding: 24px 16px;
  }
  .doctor__row {
    margin: 0 -10px;
  }
  .doctorItem {
    width: calc(50% - 20px);
    margin: 10px;
  }
  .contact__inner {
    margin: -10px -10px 30px -10px;
  }
  .contact__inner .layout__head {
    margin: 10px 10px 60px 10px;
  }
  .contact__col {
    width: calc(50% - 20px);
    margin: 10px;
  }
}
@media (max-width: 1440px) {
  .auto__container {
    max-width: 1200px;
  }
  h1 {
    font-size: 50px;
    line-height: 60px;
  }
  h1.big {
    font-size: 54px;
    line-height: 64px;
  }
  h2 {
    font-size: 40px;
    line-height: 50px;
  }
  h3, .layoutBlog__content h1 {
    font-size: 30px;
    line-height: 40px;
  }
  h5, .layoutBlog__content h2 {
    font-size: 24px;
    line-height: 36px;
  }
  h6 {
    font-size: 20px;
    line-height: 26px;
  }
  p.big {
    font-size: 20px;
    line-height: 30px;
  }
  body {
    font-size: 16px;
    line-height: 24px;
  }
  .button.primary {
    padding: 18px 38px;
  }
  .lang label {
    font-size: 15px;
    padding: 4px 16px;
    line-height: 20px;
  }
  .wrapper {
    padding-top: 114px;
  }
  .headerBtn {
    width: 50px;
    height: 50px;
  }
  .header__inner {
    padding: 24px 0;
  }
  .header__inner-logo {
    width: 100px;
  }
  .nav__inner-link {
    font-size: 15px;
    line-height: 20px;
    padding: 4px 16px;
  }
  .menu .menu__inner-link {
    height: 50px;
  }
  .menu .menu__inner-link::before {
    height: 24px;
  }
  .menu .menu__inner-link::after {
    height: 24px;
  }
  .menuContent__link {
    font-size: 16px;
    line-height: 24px;
  }
  .menuContent__info {
    padding: 16px;
  }
  .menuContent__info h5 {
    font-size: 16px;
    line-height: 24px;
  }
  .menuContent__info-text {
    width: calc(100% - 160px);
  }
  .menuContent__info-text strong {
    font-size: 16px;
    line-height: 24px;
  }
  .input input,
  .input textarea {
    font-size: 16px;
    line-height: 24px;
  }
  .input__row {
    margin: 0 -10px 30px -10px;
  }
  .input__row .input__outer.flex {
    margin: 10px;
    width: calc(50% - 20px);
  }
  .input__row .input__outer.flex label {
    width: 160px;
  }
  .input__row .input__outer.flex .input {
    width: calc(100% - 160px);
  }
  .input__row .input__outer.flexCh {
    margin: 10px;
  }
  .input__row .input__outer.flexCh label {
    width: 160px;
  }
  .input__row .input__outer.flexCh .check {
    width: calc(100% - 160px);
  }
  .input__row .input__outer.w100 {
    width: calc(100% - 20px);
  }
  .input__row .input__outer label {
    font-size: 16px;
    line-height: 64px;
  }
  .intro {
    padding-top: 200px;
  }
  .about__image {
    max-width: 280px;
  }
  .about__inner-col p {
    margin-bottom: 20px;
  }
  .avai__inner {
    margin: 0 -10px;
  }
  .avaiItem {
    margin: 0 10px;
    width: calc(33.3% - 20px);
  }
  .avaiItem h5 {
    font-size: 20px;
    line-height: 30px;
  }
  .avaiItem h6 {
    font-size: 16px;
    line-height: 24px;
  }
  .avaiItem__info-icon {
    width: 45px;
    height: 45px;
    margin-right: 15px;
  }
  .avaiItem__info-text {
    width: calc(100% - 60px);
  }
  .news h3 {
    margin-bottom: 10px;
  }
  .newsSlider {
    margin: 0 -16px;
  }
  .newsItem {
    padding: 0 16px;
  }
  .newsItem h6 {
    line-height: 26px;
    height: 52px;
  }
  .newsItem__row {
    margin: -20px -10px 0 -10px;
  }
  .newsItem__row .newsItem {
    padding: 20px 10px;
  }
  .faq {
    padding: 120px 0;
  }
  .faq .button {
    margin-top: 32px;
  }
  .faqItem {
    margin-bottom: 10px;
  }
  .review {
    padding: 120px 0 30px 0;
  }
  .review__icon {
    width: 42px;
  }
  .reviewItem__name {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 0;
  }
  .reviewItem__prof {
    font-size: 16px;
    line-height: 32px;
  }
  .reviewItem__text {
    font-size: 24px;
    line-height: 32px;
  }
  .layout__inner-col.w-33 {
    width: calc(33.3% - 20px);
    margin: 0 10px;
  }
  .layout__inner-col.w-66 {
    width: calc(66.6% - 20px);
    margin: 0 10px;
  }
  .layout__head {
    margin-bottom: 40px;
  }
  .layout__image {
    margin-bottom: 32px;
  }
  .layoutSearch {
    margin-bottom: 20px;
  }
  .layoutAvatar {
    margin-bottom: 20px;
  }
  .layoutInfo {
    margin-bottom: 20px;
  }
  .layoutInfo__text {
    flex-direction: column;
  }
  .layoutInfo__text img {
    display: none;
  }
  .layoutInfo__text p {
    width: 100%;
  }
  .layoutInfo__text p strong {
    font-size: 20px;
    line-height: 30px;
  }
  .layoutInfo__more-icon {
    width: 45px;
    height: 45px;
    margin-right: 15px;
  }
  .layoutInfo__more p {
    width: calc(100% - 60px);
  }
  .layoutInfo__more p strong {
    font-size: 20px;
    line-height: 26px;
  }
  .layoutInfo__row.uniq {
    flex-direction: column;
  }
  .layoutInfo__row.uniq h5 {
    width: 100%;
    margin-bottom: 8px;
  }
  .layoutInfo__row.uniq .layoutInfo__text {
    flex-direction: row;
    max-width: unset;
    width: 100%;
  }
  .layoutInfo__row.uniq .layoutInfo__text img {
    bottom: -8px;
  }
  .layout__quote {
    margin-bottom: 16px;
  }
  .layout__quote img {
    width: 40px;
  }
  .layout__quote p {
    width: calc(100% - 56px);
  }
  .layout__body {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
  .layout__body h3 {
    margin-bottom: 16px;
  }
  .layout__body p {
    margin-bottom: 16px;
  }
  .layout__body p.big {
    margin-bottom: 32px;
  }
  .layoutBlog__image {
    width: calc(50% - 10px);
  }
  .layoutBlog__content {
    /*width: calc(50% - 10px);*/
  }
  .layoutBlog__content h1 {
    margin-bottom: 16px;
  }
  .layoutBlog__content h2 {
    margin-bottom: 16px;
  }
  .layoutBlog__content p {
    margin-bottom: 16px;
  }
  .layoutHot {
    width: calc(50% - 20px);
    margin: 10px;
    padding: 20px 24px;
    cursor: default;
  }
  .layoutHot[href] {
    cursor: pointer;
  }
  .layoutHot__row {
    margin: 0 -10px;
    margin-bottom: 30px;
  }
  .layoutHot__row .layout__image {
    margin-left: 10px;
    margin-right: 10px;
  }
  .order {
    min-height: calc(100vh - 114px);
  }
  .order__back {
    padding: 32px 0;
  }
  .order__head-info {
    max-width: 430px;
    padding: 20px;
  }
  .order__head-info h5 {
    font-size: 20px;
    line-height: 30px;
  }
  .order__head-info-text p strong {
    font-size: 20px;
    line-height: 30px;
  }
  .order__body .button {
    margin-left: 160px;
  }
  .doctor {
    margin-bottom: 40px;
  }
  .contact .avaiItem {
    padding: 24px;
  }
  .contact .avaiItem__image {
    margin: 0 -24px -24px -24px;
    width: calc(100% + 48px);
  }
  .contact .avaiItem__content p.uniq {
    height: 44px;
    line-height: 22px;
    margin-bottom: 8px;
  }
  .contact__col p.big {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (max-width: 1340px) {
  h2 {
    font-size: 38px;
    line-height: 52px;
  }
  h2.big {
    font-size: 46px;
    line-height: 54px;
  }
  .intro {
    padding: 150px 0;
  }
  .introSlider .slick-dots {
    bottom: 20px;
  }
  .about__inner-col {
    padding: 24px 0;
  }
  .avai {
    margin: 0;
  }
  .avai .auto__container {
    padding: 0;
  }
  .faqItem__header h5 {
    font-size: 16px;
    line-height: 24px;
  }
  .layoutBlog__content-text {
    margin-bottom: 24px;
  }
  .layoutBlog__content p {
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 20px;
  }
  .layoutHot h6 {
    font-size: 20px;
    line-height: 30px;
  }
  .layoutHot h5 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 12px;
  }
  .layoutHot h5 img {
    width: 20px;
  }
  .layoutHot__info span {
    font-size: 16px;
    line-height: 22px;
  }
  .layoutHot__info span img {
    width: 20px;
  }
}
@media (max-width: 1180px) {
  .menu:hover .menuContent {
    padding: 24px 0;
  }
  .menuContent__info {
    flex-direction: column;
    align-items: flex-start;
  }
  .menuContent__info h5 {
    margin-bottom: 10px;
  }
  .menuContent__info-text {
    width: 100%;
  }
  .news {
    overflow: hidden;
  }
  .newsSlider .slick-list {
    overflow: visible;
  }
  .faq {
    padding: 84px 0;
  }
  .layoutInfo__text {
    margin-bottom: 16px;
    width: 100%;
  }
  .layoutInfo__text p {
    width: 100%;
  }
  .layoutInfo__row {
    flex-direction: column;
  }
  .layoutInfo__row .button {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
  }
}
@media (max-width: 1024px) {
  h2 {
    font-size: 36px;
    line-height: 42px;
  }
  .auto__container {
    padding: 0 20px;
  }
  .wrapper {
    padding-top: 78.11px;
  }
  .header.uniq .header__inner {
    border-bottom: 1px solid #fff;
  }
  .header.uniq .header__inner-logo img {
    filter: brightness(0) invert(1);
  }
  .header__inner {
    padding: 14px 0;
    position: static;
  }
  .header__inner-logo {
    width: 84px;
  }
  .headerBtn {
    width: 40px;
    height: 40px;
    margin-left: 9px;
  }
  .headerBtn.mob {
    display: flex;
  }
  .nav {
    position: fixed;
    top: 77.11px;
    left: 0;
    width: 100%;
    height: calc(100% - 77.11px);
    z-index: 100;
    background: rgba(0, 0, 0, 0.4);
    transform: translateX(100%);
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
  }
  .nav.active {
    transform: translate(0, 0);
    -moz-ransform: translate(0, 0);
    -o-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
  }
  .nav__inner {
    flex-direction: column;
    -ms-flex-direction: column;
    position: absolute;
    justify-content: unset;
    align-items: unset;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 350px;
    box-sizing: border-box;
    padding: 0;
    z-index: 1;
    padding: 20px;
    height: 100%;
    overflow-y: auto;
    background: #fff;
    /* Hide scrollbar for IE, Edge and Firefox */
  }
  .nav__inner::-webkit-scrollbar {
    display: none;
  }
  .nav__inner {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
  }
  .nav__inner-link {
    border: none;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    text-align: left;
    width: unset;
    color: #060606 !important;
    margin-right: 0;
    font-size: 16px;
    line-height: 1;
  }
  .nav__inner-link svg {
    transform: rotate(-90deg);
  }
  .nav .btn {
    margin: 15px 0;
    text-align: center;
  }
  body.active {
    overflow: hidden;
  }
  .burger {
    position: relative;
    width: 30px;
    height: 30px;
  }
  .burger::before {
    top: 20%;
    width: calc(100% - 0.4rem);
    height: 4px;
    background-color: #fff;
    border-radius: 0.125rem;
    transition: all 0.3s ease;
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -moz-ransform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
  }
  .burger span {
    top: 50%;
    width: calc(100% - 0.4rem);
    height: 4px;
    background-color: #fff;
    border-radius: 0.125rem;
    transition: all 0.3s ease;
    content: "";
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    -moz-ransform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
  }
  .burger::after {
    bottom: 20%;
    width: calc(100% - 0.4rem);
    height: 4px;
    background-color: #fff;
    border-radius: 0.125rem;
    transition: all 0.3s ease;
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -moz-ransform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
  }
  .burger.active::before {
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .burger.active span {
    opacity: 0;
  }
  .burger.active::after {
    bottom: 50%;
    -webkit-transform: translate(-50%, 50%) rotate(-45deg);
    transform: translate(-50%, 50%) rotate(-45deg);
  }
  .footer__inner {
    flex-wrap: wrap;
  }
  .footer__inner-links {
    width: 50%;
  }
  .footer__inner-socials {
    order: 2;
    width: 50%;
    justify-content: flex-end;
  }
  .footer__inner-copy {
    width: 100%;
    margin-top: 2rem;
  }
  .menu {
    height: unset;
  }
  .menu .menu__inner-link::before {
    height: 14px;
  }
  .menu .menu__inner-link::after {
    height: 14px;
  }
  .menuContent {
    position: absolute;
    top: 0;
    display: block;
    animation: unset;
    opacity: 1;
    left: 0;
    height: 100%;
    width: 100%;
    padding: 30px !important;
    transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    transform: translateX(100%);
    overflow-y: auto;
    /* Hide scrollbar for IE, Edge and Firefox */
  }
  .menuContent::-webkit-scrollbar {
    display: none;
  }
  .menuContent {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
  }
  .menuContent.active {
    transform: unset;
  }
  .menuContent__back {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #6c6c6c;
    margin-bottom: 12px;
  }
  .menuContent__back svg {
    width: 20px;
    height: 20px;
    transform: rotate(90deg);
  }
  .menuContent__link {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  }
  .menuContent__inner {
    flex-direction: column;
  }
  .menuContent__col {
    width: 100%;
    max-width: unset;
    margin-bottom: 30px;
  }
  .menuContent::before {
    display: none;
  }
  .menuContent::after {
    display: none;
  }
  .input__row .input__outer.flex {
    flex-direction: column;
  }
  .input__row .input__outer.flex label {
    line-height: 24px;
    width: 100%;
    margin-bottom: 10px;
  }
  .input__row .input__outer.flex .input {
    width: 100%;
  }
  .input__row .input__outer.flexCh > label {
    display: none;
  }
  .input__row .input__outer.flexCh label {
    width: 100%;
    line-height: 24px;
  }
  .input__row .input__outer.flexCh .check {
    width: 100%;
  }
  .search {
    padding: 40px 0 50px 0;
  }
  .avai__inner {
    margin: 0;
  }
  .avaiItem {
    padding: 20px;
    margin: 0;
    width: 33.3%;
  }
  .avaiItem__info-icon {
    width: 40px;
    height: 40px;
    margin-right: 20px;
  }
  .avaiItem__info-text {
    width: calc(100% - 60px);
  }
  .avaiItem .divider {
    margin: 10px 0;
  }
  .about__image {
    margin: 0 auto;
    max-width: 300px;
  }
  .about__inner-row {
    flex-direction: column;
  }
  .about__inner-col {
    width: 100%;
    max-width: unset;
    text-align: center;
  }
  .about__inner-col:nth-child(2) {
    order: -1;
  }
  .advent {
    padding: 34px 0;
  }
  .adventItem {
    text-align: center;
    font-size: 16px;
    line-height: 20px;
  }
  .adventItem strong {
    font-size: 40px;
    line-height: 46px;
  }
  .banner__video-play {
    width: 80px;
    height: 80px;
  }
  .banner__video-play span::before {
    width: 5px;
  }
  .banner__video-play span::after {
    width: 5px;
  }
  .faqItem__header h5 {
    font-size: 24px;
    line-height: 36px;
  }
  .faq__inner-row {
    display: block;
  }
  .faq__inner-col {
    max-width: unset;
    width: 100%;
  }
  .faq__inner-col:nth-child(2) {
    display: none;
  }
  .layout__uniq {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 32px;
  }
  .layout__uniq p {
    width: calc(50% - 14px);
    margin: 0;
  }
  .layout__uniq p.big {
    font-size: 16px;
    line-height: 26px;
  }
  .layout__uniq-image {
    width: calc(50% - 14px);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .layout__uniq-image img {
    width: 100%;
  }
  .layoutInfo.mob {
    display: none;
  }
  .layout__mob {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 16px;
  }
  .layout__mob .layoutSearch {
    width: 100%;
  }
  .layout__mob .layoutSearch input {
    padding: 16px 32px 16px 16px;
    font-size: 14px;
    line-height: 20px;
  }
  .layout__mob .layoutSearch button {
    right: 12px;
  }
  .layout__mob .button {
    padding: 18px 32px;
  }
  .layoutBlog__content h1 {
    margin-bottom: 30px;
  }
  .layoutBlog__content h2 {
    margin-bottom: 30px;
  }
  .layoutBlog__content p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  .layout__image {
    margin: 0 -20px 34px -20px;
    width: calc(100% + 40px);
  }
  .layout__inner-row {
    flex-wrap: wrap;
  }
  .layout__inner-col.w-66 {
    width: calc(100% - 20px);
    margin-bottom: 38px;
  }
  .layout__inner-col.w-33:last-child {
    width: calc(100% - 20px);
  }
  .layoutAvatar {
    display: none;
  }
  .order {
    min-height: calc(100vh - 78.11px);
  }
  .order__head {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 16px;
  }
  .order__head-text {
    width: 100%;
    margin-bottom: 20px;
  }
  .order__body .button {
    margin-left: 0;
  }
}
@media (max-width: 840px) {
  .footer {
    padding: 40px 0 12px 0;
  }
  .footer__inner {
    flex-direction: column;
  }
  .footer__inner-links {
    width: 100%;
    text-align: center;
  }
  .footer__inner-socials {
    width: 100%;
    justify-content: center;
    margin: 2rem 0;
  }
  .footer__inner-copy {
    margin: 0;
  }
  .footer__inner-copy span {
    display: block;
  }
  h1 {
    font-size: 32px;
    line-height: 40px;
  }
  h1.big {
    font-size: 40px;
    line-height: 50px;
  }
  .button span.rm {
    display: none;
  }
  .button.primary {
    padding: 15px 38px;
  }
  .tag {
    padding: 4px 8px;
    line-height: 22px;
    font-size: 16px;
  }
  .intro {
    padding: 352px 0 64px 0;
  }
  .intro__inner {
    text-align: center;
    max-width: unset;
  }
  .intro__inner p {
    display: none;
  }
  .introSlider .slick-dots {
    bottom: 26px;
  }
  .introSlider .slick-dots li {
    width: 15px;
    height: 15px;
  }
  .avai__inner {
    flex-direction: column;
  }
  .avaiItem {
    width: 100%;
  }
  .avaiItem h6 {
    line-height: 28px;
    font-size: 18px;
  }
  .avaiItem h5 {
    line-height: 28px;
    font-size: 18px;
  }
  .avaiItem__content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    border-top: 1px solid transparent;
  }
  .avaiItem__content.active {
    display: block;
    max-height: 250px;
    margin-top: 20px;
    opacity: 1;
    border-top: 1px solid #fff;
    padding-top: 20px;
  }
  .avaiItem .divider {
    display: none;
  }
  .advent .auto__container {
    padding: 0;
  }
  .advent__inner {
    flex-wrap: wrap;
  }
  .adventItem {
    width: 50%;
  }
  .newsSlider {
    padding: 0;
  }
  .news h3 {
    margin-bottom: 20px;
  }
  .news__btn {
    justify-content: center;
  }
  .newsItem h6 {
    font-size: 24px;
    line-height: 36px;
    height: 72px;
  }
  .review {
    padding: 30px 0 50px 0;
  }
  .layout__uniq {
    flex-direction: column;
  }
  .layout__uniq-image {
    order: 1;
    margin-bottom: 24px;
    width: 100%;
  }
  .layout__uniq-image img {
    max-width: 390px;
  }
  .layout__uniq p {
    order: 2;
    width: 100%;
  }
  .layoutBlog__content h1 {
    margin-bottom: 16px;
  }
  .layoutBlog__content h2 {
    margin-bottom: 16px;
  }
  .layoutBlog__content p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 16px;
  }
  .layoutGallery__item {
    width: calc(50% - 16px);
  }
  .contact .avaiItem {
    padding: 16px;
  }
  .contact .avaiItem h5.mb {
    margin-bottom: 0;
  }
  .contact .avaiItem__content.active {
    max-height: 600px;
  }
  .contact__col {
    width: calc(100% - 20px);
  }
  .table table th,
  .table table td {
    font-size: 16px;
    line-height: 24px;
    padding: 10px 5px;
  }
  .table table th br,
  .table table td br {
    display: none;
  }
  .table table th img,
  .table table td img {
    width: 20px;
  }
  .table table tfoot td {
    white-space: nowrap;
  }
}
@media (max-width: 700px) {
  .input__row .input__outer.flex {
    width: calc(100% - 20px);
  }
  .search {
    padding: 0 0 40px 0;
  }
  .search__input input {
    font-size: 16px;
    line-height: 24px;
    padding: 16px 40px 16px 16px;
  }
  .search__input button {
    right: 16px;
  }
  .newsItem__row {
    margin: 0;
  }
  .newsItem__row .newsItem {
    padding: 0 0 16px 0;
    width: 100%;
  }
  .layout__links h3 {
    padding-right: 30px;
    position: relative;
    font-size: 20px;
    line-height: 24px;
  }
  .layout__links h3::before {
    width: 20px;
    right: 0;
    height: 20px;
    position: absolute;
    content: "";
    top: 50%;
    transform: translateY(-50%);
    -moz-ransform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    background: url(../images/icons/plus.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }
  .layout__links h3.active::before {
    background: url(../images/icons/minus.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }
  .layout__links-row {
    flex-wrap: wrap;
    animation: tab 0.2s linear;
  }
  .layout__links-row.active {
    display: flex;
  }
  .layout__links-col {
    width: calc(100% - 20px);
  }
  .layout__link {
    font-size: 16px;
    line-height: 20px;
  }
  .layoutBlog {
    flex-direction: column;
  }
  .layoutBlog__image {
    width: 100%;
  }
  .layoutBlog__content {
    order: -1;
    width: 100%;
    margin-bottom: 30px;
  }
  .layoutBlog__content h1 {
    margin-bottom: 30px;
  }
  .layoutBlog__content h2 {
    margin-bottom: 30px;
  }
  .layoutBlog__content p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  .layoutBlog.grid .layoutBlog__content {
    padding: 0;
    border: unset;
  }
  .layoutHot {
    width: calc(100% - 20px);
  }
  .layoutInfo .button.uniq {
    padding: 16px 32px !important;
  }
  .order__head-info {
    max-width: unset;
    width: 100%;
    justify-content: space-between;
  }
  .doctor {
    margin-bottom: 20px;
  }
  .doctor__row {
    flex-wrap: wrap;
  }
  .doctorItem {
    width: calc(100% - 20px);
  }
  .table table th {
    vertical-align: center;
  }
  .table table th:nth-child(1) {
    min-width: 240px;
  }
  .table table th,
  .table table td {
    font-size: 14px;
    line-height: 20px;
  }
  .table table th.sm,
  .table table td.sm {
    font-size: 12px;
    line-height: 18px;
  }
  .table table th img,
  .table table td img {
    width: 16px;
  }
  .table table th button,
  .table table td button {
    width: 16px;
    height: 16px;
  }
}
@media (max-width: 540px) {
  .check label {
    font-size: 14px !important;
    line-height: 24px !important;
    padding-left: 40px;
  }
  .check label::before {
    width: 30px;
    height: 30px;
  }
  .check label::after {
    left: 12px;
  }
  .search {
    padding: 20px 0 30px 0;
  }
  .tag {
    font-size: 14px;
    line-height: 20px;
  }
  .review__icon {
    width: 30px;
    margin-bottom: 32px;
  }
  .reviewSlider {
    margin-bottom: 50px !important;
    padding-bottom: 30px;
  }
  .reviewItem__image {
    width: 55px;
    height: 55px;
  }
  .reviewItem__name {
    font-size: 18px;
    line-height: 24px;
  }
  .reviewItem__prof {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 8px;
  }
  .reviewItem__text {
    font-size: 16px;
    line-height: 24px;
  }
  .banner__video {
    padding-bottom: 63%;
  }
  .banner__video-play {
    width: 40px;
    height: 40px;
  }
  .banner__video-play span::before {
    width: 5px;
  }
  .banner__video-play span::after {
    width: 5px;
  }
  .layout {
    padding: 16px 0;
  }
  .layout__quote {
    align-items: flex-start;
    padding: 12px 0;
  }
  .layout__quote img {
    width: 84px;
    margin-right: 18px;
  }
  .layout__quote p {
    width: calc(100% - 102px);
    margin: 0;
  }
  .layout__head {
    margin-bottom: 20px;
  }
  .layout__body p.big {
    font-size: 16px;
    line-height: 24px;
  }
  .layoutInfo {
    margin: 0 -20px 18px -20px;
    padding: 32px 20px;
  }
  .layoutInfo.mob {
    display: none;
  }
  .layoutInfo:last-child {
    margin-bottom: 0;
  }
  .layoutPrice h6 {
    font-size: 16px;
    line-height: 22px;
  }
  .layoutSearch.mob {
    display: none;
  }
  .order__back {
    padding: 20px 0;
  }
  .order__head-info {
    flex-direction: column;
    align-items: flex-start;
  }
  .order__head-info h5 {
    margin-bottom: 10px;
    width: 100%;
  }
  .order__head-info-text {
    width: 100%;
  }
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

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

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

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

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

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

.errors {
  color: red;
}

.animate-message {
  animation: fadeInOut 4s ease-in-out;
}

.form-message {
  text-align: center;
}

@keyframes fadeInOut {
  0%, 100% {
    opacity: 0;
  }
  20%, 80% {
    opacity: 1;
  }
}
.text-right {
  text-align: right;
}

.check label, .check label a {
  font-size: 14px !important;
  line-height: 140% !important;
}

.check label a {
  text-decoration: underline !important;
}

.btnMessage {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 50px;
}

.input input::-webkit-input-placeholder,
.input textarea::-webkit-input-placeholder {
  color: #6c6c6c;
  opacity: 1;
}

.input input::-moz-placeholder,
.input textarea::-moz-placeholder {
  color: #6c6c6c;
  opacity: 1;
}

.input input:-ms-input-placeholder,
.input textarea:-ms-input-placeholder {
  color: #6c6c6c;
  opacity: 1;
}

.input input::-ms-input-placeholder,
.input textarea::-ms-input-placeholder {
  color: #6c6c6c;
  opacity: 1;
}

.search__input input::-webkit-input-placeholder {
  color: #6c6c6c;
  opacity: 1;
}

.search__input input::-moz-placeholder {
  color: #6c6c6c;
  opacity: 1;
}

.search__input input:-ms-input-placeholder {
  color: #6c6c6c;
  opacity: 1;
}

.search__input input::-ms-input-placeholder {
  color: #6c6c6c;
  opacity: 1;
}

.layoutInfo ul {
  list-style: none;
  margin-left: 20px;
}

.layoutBlog__content-text ul {
  margin-left: 20px;
}

.additionalHeaders {
  color: black;
}

.layout__body ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

@media (max-width: 1440px) {
  .layout__body ul {
    margin-bottom: 16px;
  }
}
label a {
  position: relative;
  z-index: 89999;
}

textarea#message {
  font-family: "Poppins", sans-serif;
}

.menuContent__links h5 a:hover,
.hover:hover {
  color: #f2a900;
}

.programmes table thead th a {
  display: block;
}

.newsItem.hidden {
  display: none !important;
}

/* Modal Styles */
.modal-container {
  display: none;
  position: fixed;
  bottom: 4%;
  right: 1%;
  /* transform: translate(-50%, -50%); */
  background-color: rgba(0, 0, 0, 0.8);
  padding: 20px;
  border-radius: 10px;
  color: #fff;
  text-align: center;
  z-index: 1000;
}

/* Form Message Styles */
.form-message {
  padding: 10px;
  border-radius: 5px;
}

.success {
  background-color: #4caf50;
  color: white;
}

.layout__inner-col.w-66 .review {
  width: 100vw;
  margin-left: -3%;
}

@media only screen and (min-width: 1680px) {
  .layout__inner-col.w-66 .review {
    margin-left: -7%;
  }
}
@media only screen and (min-width: 1800px) {
  .layout__inner-col.w-66 .review {
    margin-left: -12%;
  }
}
@media screen and (max-width: 1340px) {
  .intro__bg {
    height: 100%;
  }
  .introSlider {
    height: unset;
  }
}
@media screen and (max-width: 768px) {
  .slick-track {
    display: flex !important;
    height: auto;
  }
  .slick-slide {
    height: inherit !important;
  }
  .slick-slide > div {
    height: 100%;
    position: relative;
  }
  .intro {
    height: -webkit-fill-available;
  }
}
ul.results li {
  margin-bottom: 10px;
  line-height: 1.5rem;
  list-style: none;
}
ul.results a {
  font-weight: bold;
  text-decoration: underline;
}
ul.results a:hover {
  color: #f2892b;
}

.highlight {
  background-color: #000;
  color: #fff;
  padding: 0 1px;
}

#vyhledavani p {
  margin: 2rem 0;
}

.pri-gray {
  background: #e7e7e7;
  color: black;
}

.pri-gray div span {
  color: black;
}

.pri-gray div span img {
  filter: brightness(0%);
}

.layoutBlog {
  margin-bottom: 75px;
}

.layout__links.mobile {
  display: none;
}

.layout__links.desktop {
  display: block;
}

@media (max-width: 700px) {
  .layout__links.mobile {
    display: block;
  }
  .layout__links.desktop {
    display: none;
  }
}
.mt-20 {
  margin-top: 20px;
}

.w-100 {
  width: 100%;
}

.pt-0 {
  padding-top: 0;
}

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

.faqItem__content ul,
.faqItem__content li {
  list-style: inside;
  font-size: 16px;
  margin-left: 10px;
}

.faq.bg-white {
  background: unset;
}

.faq__inner-col.full-w {
  width: 100%;
}

@media only screen and (max-width: 1024px) {
  .layoutSearch.mob {
    display: none;
  }
}
.validity {
  white-space: nowrap;
  font-size: 18px;
}

.layout__links-container a.layout__link {
  height: auto;
  display: flex;
  align-items: center;
  margin-bottom: 0px;
}

.layout__links-container .layout__links-row {
  display: grid;
  grid-template: 1fr/1fr 1fr;
  gap: 20px;
}

.noPlus::before {
  content: unset !important;
}

@media (max-width: 700px) {
  .layout__links-container .layout__links-row {
    grid-template: unset;
    display: flex;
    flex-direction: column;
  }
}
.buy-product {
  text-decoration: underline;
}
.buy-product:hover {
  text-decoration: none;
}

.schedule {
  display: flex;
  font-size: 18px;
  overflow-x: auto;
  padding-bottom: 1rem;
}
.schedule > div {
  flex-grow: 1;
  border-right: 5px solid white;
}
.schedule > div:last-child {
  border-right: none;
}
.schedule > div > div {
  box-sizing: border-box;
  height: 40px;
  max-height: 40px;
  overflow: hidden;
  width: 100%;
}
.schedule > div > div:first-child {
  padding: 0 0.5rem;
}
.schedule > div:first-child {
  width: 80px;
  max-width: 80px;
}
.schedule > div:first-child > div {
  display: flex;
  align-items: center;
  justify-content: center;
}
.schedule .interval-2 {
  height: 80px;
  max-height: 80px;
}
.schedule .events2 {
  display: block;
  width: 50%;
  float: left;
}
.schedule .events3 {
  display: inline-block;
  width: 33.333%;
}
.schedule .event {
  background-color: #F3F3F3;
  font-size: 1rem;
  line-height: 140%;
  color: #000;
  padding: 0.5rem;
}
.schedule .event span {
  display: block;
  white-space: nowrap;
}
.schedule .event span:first-child {
  font-weight: bold;
}
.schedule .event:hover {
  background-color: #f2892b;
}
.schedule div div {
  text-align: left;
  border-bottom: 1px solid #f2892b;
}

.rozvrh {
  padding: 40px 30px;
}
.rozvrh p {
  margin-bottom: 2rem;
}
.rozvrh p a:hover {
  color: #f2892b;
}

@media screen and (max-width: 700px) {
  .schedule {
    display: grid;
  }
  .schedule > div {
    border-right: none;
  }
  .schedule > div:first-child, .schedule .empty {
    display: none;
  }
  .schedule .event {
    margin-bottom: 1rem;
  }
  .schedule div div {
    border-bottom: none;
  }
  .rozvrh {
    padding: 40px 20px !important;
    text-align: center;
  }
}
.error404 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.error404 .big404 {
  font-size: 140px;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.05);
}
@media screen and (min-width: 500px) {
  .error404 .big404 {
    font-size: 200px;
  }
}
.error404 p {
  color: #333;
  margin-bottom: 1rem;
}
.error404 a.button {
  margin-top: 1rem;
}


/*# sourceMappingURL=main.dev.css.map */
