@charset "UTF-8";
@import "./fonts/stylesheet.css";
html, body {
  scroll-behavior: smooth;
}

.popupnews { visibility: hidden;}
.popupnewsactive { visibility:visible }

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

button {
  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: "Raleway", sans-serif;
  font-size: 18px;
  color: #000;
  line-height: 35px;
  font-weight: 400;
  background: #fff;
  border: 10px solid #D5E7E2;
}
body.active {
  overflow: hidden;
}
body::before {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  border: 10px solid #D5E7E2;
  z-index: 100;
  pointer-events: none;
  border-bottom: unset;
}

a {
  text-decoration: none;
  opacity: 1;
  color: #000;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  cursor: pointer;
}
a:hover {
  opacity: 0.88;
}

ul li {
  list-style: none;
}

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

h1 {
  font-weight: 600;
  font-size: 42px;
  line-height: 135%;
}

h2 {
  font-weight: 600;
  font-size: 42px;
  line-height: 135%;
}

h5 {
  font-size: 30px;
  line-height: 130%;
  font-weight: 600;
}

h6 {
  font-size: 20px;
  line-height: 120%;
  font-weight: 600;
  text-transform: uppercase;
}

p.sm {
  font-size: 16px;
  line-height: 160%;
}
p.ex {
  font-size: 14px;
  line-height: 22px;
}

.main {
  overflow: hidden;
  padding-top: 201.05px;
}

.button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 10px;
  padding: 10px 18px;
  background-color: #fff;
  color: #000;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.button:hover {
  background-color: #D5E7E2;
  opacity: 1;
}
.button.uniq {
  background-color: #F8E9DD;
}
.button.uniq:hover {
  opacity: 1;
  -webkit-box-shadow: 0 6px 8px rgba(248, 233, 221, 0.3);
          box-shadow: 0 6px 8px rgba(248, 233, 221, 0.3);
}
.button span {
  width: 22px;
  height: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 12px;
}
.button span.sm {
  width: 13px;
}
.button span.mid {
  width: 18px;
}
.button span img {
  width: 100%;
}
.button b {
  font-weight: 600;
}

.modall {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 25px;
  display: none;
  z-index: 9999;
  overflow-y: auto;
}
.modall.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: fadeIn 0.4s;
          animation: fadeIn 0.4s;
}
.modall__inner {
  background-color: #fff;
  border-radius: 20px;
  padding: 80px 45px 55px;
  width: 100%;
  max-width: 612px;
  margin: auto;
  position: relative;
}
.modall__inner-close {
  display: block;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  position: absolute;
  top: 28px;
  right: 28px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #cccccc;
}
.modall__inner-close:hover {
  background-color: #000;
}
.modall__inner-close::before {
  border-radius: 3px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  content: "";
  position: absolute;
  left: 50%;
  width: 60%;
  background-color: #fff;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  height: 2px;
}
.modall__inner-close::after {
  height: 3px;
  border-radius: 3px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  content: "";
  position: absolute;
  left: 50%;
  width: 60%;
  background-color: #fff;
  bottom: 50%;
  -webkit-transform: translate(-50%, 50%) rotate(-45deg);
  transform: translate(-50%, 50%) rotate(-45deg);
  height: 2px;
}
.modall__inner .schedule {
  border: unset;
  padding: 0;
}
.modall__inner .schedule__icon {
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.header {
  position: absolute;
  top: 10px;
  left: 10px;
  width: calc(100% - 20px);
  z-index: 10;
  background-color: #fff;
}
.header .auto__container {
  max-width: 1520px;
}
.header.sticky {
  position: fixed;
  -webkit-animation-name: sticky;
          animation-name: sticky;
  -webkit-animation-duration: 0.4s;
          animation-duration: 0.4s;
  -webkit-box-shadow: 0px 4px 4px 0px #00000021;
          box-shadow: 0px 4px 4px 0px #00000021;
  background-color: #fff;
}
.header.sticky .header__inner {
  padding: 35px 0 24px;
}
.header.sticky .header__inner-logo {
  font-size: 13px;
  line-height: 17px;
}
.header.sticky .header__inner-logo span {
  width: 52px;
  margin-right: 18px;
}
.header__inner {
  padding: 85px 0 62px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__inner-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  font-size: 20px;
  line-height: 130%;
  font-family: "Nexa", sans-serif;
}
.header__inner-logo span {
  width: 76px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 26px;
}
.header__inner-logo span img {
  width: 100%;
}
.header__inner-logo b {
  font-weight: 400;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.header__inner-side {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__inner-insta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 21px;
  height: 21px;
}
.header__inner-insta:hover {
  opacity: 0.8;
}
.header__inner-insta img {
  width: 100%;
}

@-webkit-keyframes sticky {
  0% {
    top: -60px;
    opacity: 0;
  }
  100% {
    top: 10px;
    opacity: 1;
  }
}

@keyframes sticky {
  0% {
    top: -60px;
    opacity: 0;
  }
  100% {
    top: 10px;
    opacity: 1;
  }
}
@-webkit-keyframes sticky-mob {
  0% {
    top: -60px;
    opacity: 0;
  }
  100% {
    top: 5px;
    opacity: 1;
  }
}
@keyframes sticky-mob {
  0% {
    top: -60px;
    opacity: 0;
  }
  100% {
    top: 5px;
    opacity: 1;
  }
}
.nav {
  margin-right: 75px;
}
.nav__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.nav__inner-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.nav__inner-links li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 48px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.nav__inner-links li:last-child {
  margin: 0;
}
.nav__inner-link {
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  color: #000;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.nav__inner-link.current {
  color: #C0810F;
}
.nav__inner-link:hover {
  opacity: 1;
  color: #C0810F;
}
.nav__inner-social {
  display: none;
}
.nav__inner-info {
  display: none;
}
.navMain {
  display: none;
}

.drop {
  position: relative;
}
.drop:hover .dropMenu {
  opacity: 1;
  visibility: visible;
}
.dropMenu {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: -50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  border-radius: 0 0 10px 10px;
  padding: 30px 60px 30px 50px;
  background-color: #fff;
}
.dropMenu a {
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 28px;
}
.dropMenu a:last-child {
  margin: 0;
}
.dropMenu a:hover {
  color: #C0810F;
}
.dropMenu__inner {
  border-radius: 25px;
  padding: 12px 40px 12px 12px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-width: 693px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.burger {
  display: none;
}

.footer {
  background-color: #fff;
  padding: 85px 0;
  font-size: 16px;
  line-height: 26px;
}
.footer.light {
  background-color: #D5E7E2;
}
.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.footer__inner-logo {
  width: 76px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 36px;
}
.footer__inner-logo img {
  width: 100%;
}
.footer__inner-name {
  margin-bottom: 24px;
}
.footer__inner-name p br {
  display: none;
}
.footer__inner-name p b {
  font-weight: 600;
}
.footer__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 30px;
}
.footer__inner-row p {
  white-space: nowrap;
}
.footer__inner-row span {
  margin: 0 18px;
}
.footer__inner-row a {
  color: #000;
  text-decoration: underline;
}
.footer__inner-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer__inner-links a {
  font-size: 16px;
  line-height: 26px;
  margin-right: 30px;
  text-decoration: underline;
  color: #000;
}
.footer__inner-links a:last-child {
  margin: 0;
}

.interest {
  padding: 140px 0 160px;
}
.interest .auto__container {
  max-width: 1120px;
}
.interest__inner-title {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 30px;
}
.interest__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -24px;
}
.interestItem {
  width: calc(50% - 48px);
  margin: 18px 24px;
  height: 156px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  font-family: "Raleway", sans-serif;
}
.interestItem:hover {
  background-color: #F8E9DD;
  opacity: 1;
  cursor: pointer;
}
.interestItem__image {
  width: 160px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #F8E9DD;
}
.interestItem__image span {
  width: 35%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.interestItem__image span.big {
  width: 48%;
}
.interestItem__image span img {
  width: 100%;
}
.interestItem__image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.interestItem__content {
  width: calc(100% - 160px);
  padding: 20px 32px 20px 40px;
  border: 5px solid #F8E9DD;
  border-left: unset;
  border-radius: 0 10px 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.interestItem p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.interestItem p b {
  font-weight: 600;
  display: block;
}

.schedule {
  width: 100%;
  border-radius: 20px;
  border: 10px solid #F8E9DD;
  padding: 70px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.schedule__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  margin-bottom: 54px;
}
.schedule__icon {
  width: 56px;
  height: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
.schedule__icon img {
  width: 100%;
}
.schedule__list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.schedule__text {
  width: 100%;
  max-width: 460px;
}
.scheduleItem {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 19px 28px;
  border-radius: 20px;
  line-height: 100%;
  margin-bottom: 12px;
}
.scheduleItem.active {
  background-color: #efefef;
}
.scheduleItem:last-child {
  margin: 0;
}
.scheduleItem__day {
  width: 88px;
}
.scheduleItem__time {
  width: calc(100% - 114px);
  max-width: 310px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.scheduleItem__time p {
  width: calc(50% - 5px);
}

.hero {
  position: relative;
}
.hero .auto__container {
  max-width: 1520px;
}
.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.hero__inner {
  padding: 170px 0;
  min-height: calc(100vh - 211.05px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  position: relative;
}
.hero__inner-title {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.hero__inner-title h5 {
  margin-bottom: 24px;
}
.hero__inner-logo {
  width: 70%;
  max-width: 780px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 16px;
}
.hero__inner-logo img {
  width: 100%;
}
.hero__inner-foot {
  position: absolute;
  bottom: 90px;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.hero__inner-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.hero__inner-buttons .button {
  margin-right: 34px;
}
.hero__inner-buttons .button:nth-child(2) {
  margin: 0;
}
.hero__inner-buttons .button.ipad {
  display: none;
}

.welcome {
  padding-top: 110px;
  position: relative;
}
.welcome.sm {
  padding: 0;
}
.welcome.sm .welcome__inner {
  padding: 150px 0 0 0;
}
.welcome.sm .welcomeMain {
  padding: 100px 0;
}
.welcome .auto__container {
  position: static;
}
.welcome__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 100px;
}
.welcome__inner-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 54px;
}
.welcome__inner-logo img {
  width: 100%;
}
.welcomeMain {
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
}
.welcomeMain__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.welcomeMain__title {
  margin-bottom: 46px;
}
.welcomeMain__title h6 {
  text-transform: capitalize;
}
.welcomeMain__content {
  width: calc(50% - 24px);
  max-width: 510px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.welcomeMain__top {
  margin-bottom: 138px;
}
.welcomeMain__top:last-child {
  margin: 0;
}
.welcomeMain__image {
  position: absolute;
  top: 0;
  right: 0;
  width: calc(50% - 24px);
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 20px 0 0 20px;
  overflow: hidden;
}
.welcomeMain__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.welcomeMain__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.welcomeMain .interestItem {
  width: 100%;
  margin: 0 0 30px 0;
}
.welcomeMain .interestItem:last-child {
  margin: 0;
}
.welcomeMain h1,
.welcomeMain h2 {
  margin-bottom: 24px;
}
.welcomeMain h1:last-child,
.welcomeMain h2:last-child {
  margin: 0;
}

.highlight {
  padding: 180px 0;
}
.highlight__inner-title {
  text-align: center;
  max-width: 825px;
  margin: 0 auto 120px;
}
.highlight__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.highlight__inner h2 {
  margin-bottom: 40px;
}
.highlightItem {
  width: calc(33.3% - 15px);
  max-width: 376px;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  font-family: "Raleway", sans-serif;
  background-color: transparent;
  border-radius: 10px;
  overflow: hidden;
}
.highlightItem:hover {
  background-color: #F8E9DD;
  opacity: 1;
}
.highlightItem__image {
  width: 100%;
  position: relative;
  padding-bottom: 73%;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}
.highlightItem__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.highlightItem__content {
  border: 5px solid #F8E9DD;
  border-radius: 0 0 10px 10px;
  border-top: unset;
  padding: 50px;
}
.highlightItem p {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 155%;
}
.highlightItem p b {
  font-weight: 600;
  display: block;
}

.info {
  padding: 150px 0;
  background-color: #D5E7E2;
}
.info.orange {
  background-color: #F8E9DD;
}
.info.orange .infoItem:hover {
  background-color: #D5E7E2;
  opacity: 1;
}
.info .auto__container {
  max-width: 1120px;
}
.info__inner-title {
  text-align: center;
  margin-bottom: 100px;
}
.info__inner-title h6 {
  color: #fff;
  margin-bottom: 16px;
}
.info__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -24px;
}
.info__inner h2 {
  margin-bottom: 25px;
}
.infoItem {
  width: calc(50% - 48px);
  margin: 11px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  height: 156px;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  font-family: "Raleway", sans-serif;
}
.infoItem:hover {
  background-color: #F8E9DD;
  opacity: 1;
}
.infoItem__image {
  width: 160px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.infoItem__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.infoItem__content {
  width: calc(100% - 160px);
  padding: 40px 32px 40px 40px;
}
.infoItem p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.infoItem p b {
  font-weight: 600;
  display: block;
}

.practice {
  padding: 90px 0;
}
.practice__inner-title {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 90px;
}
.practice__inner-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.practice__inner h1,
.practice__inner h2 {
  margin-bottom: 30px;
}
.practiceImage {
  width: calc(50% - 24px);
  max-width: 588px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 20px;
  overflow: hidden;
}
.practiceImage.big {
  width: 100%;
  max-width: unset;
  margin: 60px 0;
}
.practiceImage.big:first-child {
  margin-top: 0;
}
.practiceImage.big:last-child {
  margin-bottom: 0;
}
.practiceImage.big .practiceImage__inner {
  padding-bottom: 65%;
}
.practiceImage.sm .practiceImage__inner {
  padding-bottom: 67%;
}
.practiceImage__inner {
  width: 100%;
  position: relative;
  padding-bottom: 150%;
}
.practiceImage__inner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}

.team {
  padding: 110px 0;
}
.team .auto__container {
  max-width: 1120px;
}
.team__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -24px;
}
.teamItem {
  width: calc(50% - 48px);
  margin: 38px 24px;
}
.teamItem:nth-child(even) .teamItem__image {
  border-radius: 0 20px 20px 0;
}
.teamItem__image {
  padding-bottom: 128%;
  position: relative;
  border-radius: 20px 0 0 20px;
  overflow: hidden;
}
.teamItem__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.teamItem__content {
  padding: 44px 0;
  text-align: center;
}
.teamItem h5 {
  margin-bottom: 3px;
}

.profile {
  padding-bottom: 60px;
}
.profile .auto__container {
  max-width: 1120px;
}
.profile__inner {
  border-radius: 20px;
  border: 15px solid #F8E9DD;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 50px;
}
.profileImage {
  width: calc(50% - 24px);
  max-width: 394px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.profileImage__inner {
  width: 100%;
  position: relative;
  padding-bottom: 100%;
}
.profileImage__inner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.profileContent {
  width: calc(50% - 24px);
  max-width: 430px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.profileContent h5 {
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 40px;
}
.profileContent a {
  font-weight: 600;
  text-decoration: underline;
}
.profileContent a:hover {
  opacity: 1;
  color: #F8E9DD;
}

.desire {
  max-width: 1440px;
  margin: 0 auto;
  width: calc(100% - 80px);
}
.desireTop {
  position: relative;
}
.desireTop__bg {
  position: relative;
  padding-bottom: 50%;
  border-radius: 0 0 20px 20px;
  overflow: hidden;
  pointer-events: none;
}
.desireTop__bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.desireTop__row {
  position: absolute;
  bottom: 66px;
  left: 50%;
  width: calc(100% - 96px);
  max-width: 1240px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.desireTop__row-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.desireTop__row .button {
  margin-right: 34px;
}
.desireTop__row .button:last-child {
  margin: 0;
}
.desireArticle {
  width: calc(100% - 16px);
  margin: 0 auto;
  max-width: 1040px;
  padding: 130px 0 40px;
}
.desireArticle__content {
  margin-bottom: 130px;
}
.desireArticle__content:last-child {
  margin: 0;
}
.desireArticle h1,
.desireArticle h2 {
  margin-bottom: 50px;
}

.intro {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  width: calc(100% - 80px);
}
.intro__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 0 0 20px 20px;
  overflow: hidden;
}
.intro__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #000;
  opacity: 0.1;
  z-index: 1;
}
.intro__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.intro__inner {
  padding: 160px 8px 140px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 2;
}
.intro__inner-content {
  width: calc(50% - 24px);
  max-width: 510px;
  color: #fff;
}
.intro__inner-col {
  width: calc(50% - 24px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.introLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 24px;
  border-radius: 20px;
  background-color: #D5E7E2;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  padding: 35px 90px 35px 40px;
  line-height: 150%;
}
.introLink:hover {
  opacity: 1;
  background-color: #fff;
}
.introLink:hover span {
  color: #000;
}
.introLink:last-child {
  margin: 0;
}
.introLink span {
  width: 42px;
  height: 42px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 32px;
  color: #fff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.introLink span.sm svg {
  max-width: 34px;
}
.introLink span svg {
  width: 100%;
  height: 100%;
}
.introLink p {
  width: calc(100% - 74px);
  max-width: 380px;
}
.introLink p.mob {
  display: none;
}

.contact {
  padding: 130px 0 15px;
}
.contact__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.contact__inner-map {
  width: calc(50% - 24px);
  max-width: 588px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 20px;
  overflow: hidden;
}
.contact__inner-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.contact__inner-content {
  width: calc(50% - 24px);
  max-width: 588px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.contact__inner .introLink {
  display: none;
}

@media (max-width: 1380px) {
  .main {
    padding-top: 140.08px;
  }

  h5 {
    font-size: 24px;
  }

  .header.sticky .header__inner {
    padding: 24px 0 18px;
  }
  .header__inner {
    padding: 52px 0 44px;
  }
  .header__inner-logo {
    font-size: 16px;
  }
  .header__inner-logo span {
    width: 62px;
    margin-right: 18px;
  }

  .hero__inner {
    min-height: calc(100vh - 150.08px);
    padding: 120px 0;
  }
  .hero__inner-foot {
    bottom: 42px;
  }

  .desireTop__row {
    bottom: 44px;
  }

  .intro__inner {
    padding: 120px 8px 100px;
  }
  .introLink {
    padding: 30px 40px 30px 35px;
  }
  .introLink span {
    width: 32px;
    height: 32px;
    margin-right: 24px;
  }
  .introLink p {
    width: calc(100% - 66px);
    max-width: unset;
  }

  .schedule {
    padding: 56px 24px;
  }
  .schedule__title {
    margin-bottom: 44px;
  }
  .scheduleItem {
    font-size: 16px;
    margin-bottom: 8px;
  }
}
@media (max-width: 1180px) {
  .main {
    padding-top: 102.13px;
  }

  h1,
h2 {
    font-size: 35px;
  }

  h5 {
    font-size: 20px;
  }

  p.sm {
    font-size: 14px;
    line-height: 22px;
  }

  body {
    font-size: 16px;
    line-height: 30px;
  }

  .button {
    font-size: 14px;
    line-height: 18px;
  }
  .button span {
    width: 20px;
    height: 20px;
  }
  .button span.mid {
    width: 16px;
  }
  .button span.sm {
    width: 11px;
  }

  .header.sticky .header__inner {
    padding: 20px 0 16px;
  }
  .header.sticky .header__inner-logo {
    font-size: 12px;
    line-height: 130%;
  }
  .header.sticky .header__inner-logo span {
    width: 48px;
    margin-right: 16px;
  }
  .header__inner {
    padding: 36px 0 32px;
  }
  .header__inner-logo {
    font-size: 12px;
  }
  .header__inner-logo span {
    width: 48px;
    margin-right: 16px;
  }

  .nav {
    margin-right: 52px;
  }
  .nav__inner-links li {
    margin-right: 38px;
  }
  .nav__inner-link {
    font-size: 14px;
    line-height: 18px;
  }

  .hero__inner {
    min-height: calc(100vh - 112.13px);
  }
  .hero__inner-buttons .button {
    margin-right: 30px;
  }
  .hero__inner-logo {
    width: 69%;
    margin-bottom: 14px;
  }
  .hero__inner h5 {
    margin-bottom: 18px;
    font-size: 24px;
  }

  .welcome {
    padding-top: 78px;
  }
  .welcome.sm {
    padding-top: 80px;
  }
  .welcome.sm .welcome__inner {
    padding-top: 120px;
  }
  .welcome.sm .welcome__inner-logo {
    width: 54px;
  }
  .welcome.sm .welcomeMain {
    padding: 0;
  }
  .welcome.sm .welcomeMain__image {
    border-radius: 10px 0 0 10px;
  }
  .welcome__inner {
    padding-bottom: 54px;
  }
  .welcome__inner-logo {
    width: 34px;
  }
  .welcomeMain__title {
    margin-bottom: 38px;
  }
  .welcomeMain__top {
    margin-bottom: 50px;
  }
  .welcomeMain .interestItem {
    margin: 0 0 20px 0;
  }

  .highlight {
    padding: 160px 0;
  }
  .highlight__inner-title {
    margin-bottom: 56px;
    max-width: 754px;
  }
  .highlight__inner h2 {
    max-width: 620px;
    margin: 0 auto 20px;
  }
  .highlightItem__content {
    padding: 30px;
  }
  .highlightItem p {
    font-size: 14px;
    line-height: 22px;
  }

  .info {
    padding: 132px 0;
  }
  .info__inner-title {
    margin-bottom: 70px;
  }
  .info__inner-title h6 {
    margin-bottom: 10px;
  }
  .infoItem {
    height: 138px;
  }
  .infoItem__content {
    width: calc(100% - 140px);
    padding: 38px 32px;
  }
  .infoItem__image {
    width: 140px;
  }

  .practice {
    padding: 90px 0 50px;
  }
  .practice__inner-title {
    margin-bottom: 68px;
  }
  .practice__inner h1,
.practice__inner h2 {
    margin-bottom: 20px;
  }
  .practiceImage.big {
    margin: 48px 0;
  }

  .interest {
    padding: 120px 0 110px;
  }
  .interest__inner-title {
    margin-bottom: 36px;
  }
  .interestItem {
    height: 138px;
    margin: 14px 24px;
  }
  .interestItem__content {
    width: calc(100% - 140px);
    padding: 20px 32px;
  }
  .interestItem__image {
    width: 140px;
  }

  .team {
    padding: 74px 0;
  }
  .teamItem {
    margin: 30px 24px;
  }
  .teamItem:nth-child(even) .teamItem__image {
    border-radius: 0 10px 10px 0;
  }
  .teamItem__content {
    padding: 36px 0;
  }
  .teamItem__image {
    border-radius: 10px 0 0 10px;
  }
  .teamItem p {
    font-size: 18px;
    line-height: 35px;
  }

  .profile {
    padding-bottom: 24px;
  }
  .profile__inner {
    padding: 0 40px;
    border-width: 10px;
    border-radius: 10px;
  }
  .profileImage {
    width: calc(41% - 14px);
  }
  .profileContent {
    width: calc(50% - 14px);
  }
  .profileContent h5 {
    font-size: 25px;
    line-height: 35px;
    margin-bottom: 28px;
  }

  .desireTop__bg {
    border-radius: 0 0 10px 10px;
    min-height: 290px;
  }
  .desireTop__row {
    bottom: 30px;
  }
  .desireTop__row .button {
    margin-right: 12px;
  }
  .desireTop__row .button span {
    width: 16px;
    height: 16px;
    margin-right: 6px;
  }
  .desireTop__row .button span.sm {
    width: 10px;
  }
  .desireTop__row .button span.mid {
    width: 15px;
  }
  .desireArticle {
    padding: 95px 0 30px;
  }
  .desireArticle__content {
    margin-bottom: 90px;
  }
  .desireArticle h1,
.desireArticle h2 {
    margin-bottom: 36px;
  }

  .intro__inner {
    padding: 95px 8px;
  }
  .intro__inner-col {
    width: calc(50% + 24px);
  }
  .intro__inner-content {
    width: calc(50% - 48px);
  }
  .introLink {
    padding: 21px 21px 21px 24px;
    border-radius: 10px;
    margin-bottom: 16px;
  }
  .introLink span {
    width: 24px;
    height: 24px;
  }
  .introLink p {
    width: calc(100% - 48px);
    max-width: unset;
    line-height: 20px;
  }

  .contact {
    padding: 85px 0 25px;
  }
  .contact__inner-map {
    width: calc(50% - 72px);
    border-radius: 10px;
  }
  .contact__inner-content {
    width: calc(50% + 24px);
  }

  .schedule {
    border-radius: 10px;
  }
  .schedule__title h5 {
    font-size: 24px;
  }
  .schedule__text p {
    line-height: 28px;
  }
  .schedule__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
  }
  .scheduleItem {
    padding: 15px 16px;
  }
  .scheduleItem__time {
    width: calc(100% - 100px);
  }

  .footer {
    padding: 70px 0;
  }
  .footer__inner-row span {
    margin: 0 10px;
  }
}
@media (max-width: 1024px) {
  ::-webkit-scrollbar {
    display: none;
  }

  .scheduleItem {
    font-size: 14px;
  }
}
@media (max-width: 930px) {
  .auto__container {
    padding: 0 30px;
  }

  .header.sticky .nav {
    top: 80.13px;
    height: calc(100% - 80.13px);
  }
  .header__inner-insta {
    display: none;
  }

  body.active {
    overflow: hidden;
  }

  .nav {
    position: fixed;
    top: 112.13px;
    left: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 112.13px);
    z-index: 9;
    background: rgba(0, 0, 0, 0.4);
    -webkit-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    opacity: 0;
    visibility: hidden;
  }
  .nav.active {
    opacity: 1;
    visibility: visible;
  }
  .nav.active .nav__inner {
    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 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: absolute;
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 390px;
    z-index: 1;
    padding: 44px 20px 60px 20px;
    height: 100%;
    overflow-y: auto;
    background: #fff;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
  }
  .nav__inner-links {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 60px;
  }
  .nav__inner-links li {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
    border-bottom: 1px solid #efefef;
  }
  .nav__inner-links li:last-child {
    border: unset;
  }
  .nav__inner-link {
    width: 100%;
    font-size: 22px;
    line-height: 26px;
    padding: 25px 30px;
    position: relative;
    text-transform: uppercase;
  }
  .nav__inner-link::before {
    position: absolute;
    top: 50%;
    right: 30px;
    -webkit-transform: translateY(-50%) rotate(135deg);
            transform: translateY(-50%) rotate(135deg);
    content: "";
    width: 8px;
    height: 8px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
  }
  .nav__inner-social {
    width: 100%;
    margin-bottom: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .nav__inner-info {
    display: block;
    width: 100%;
    padding-left: 30px;
  }
  .nav__inner-info a {
    text-decoration: underline;
    margin-right: 30px;
  }
  .nav__inner-info a:first-of-type {
    margin: 0;
  }
  .nav__inner-info p b {
    font-weight: 600;
  }
  .nav__inner a.nav__inner-link::before {
    -webkit-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
  }
  .navItem {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 10px;
    border: 5px solid #D5E7E2;
    margin-bottom: 16px;
    position: relative;
    padding: 14px 30px;
    cursor: pointer;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    font-size: 16px;
    line-height: 20px;
    transition: 0.3s ease;
    font-family: "Raleway", sans-serif;
    background-color: transparent;
    text-align: start;
  }
  .navItem:hover {
    opacity: 1;
    background-color: #D5E7E2;
  }
  .navItem::before {
    position: absolute;
    top: 50%;
    right: 30px;
    -webkit-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
    content: "";
    width: 8px;
    height: 8px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
  }
  .navItem:last-child {
    margin: 0;
  }
  .navItem span {
    width: 22px;
    height: 22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-right: 16px;
  }
  .navItem span.sm img {
    max-width: 17px;
  }
  .navItem span img {
    width: 100%;
  }
  .navItem p {
    width: calc(100% - 38px);
  }

  .burger {
    display: block;
    cursor: pointer;
    -webkit-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    position: relative;
    width: 24px;
    height: 24px;
  }
  .burger:hover {
    opacity: 0.8;
  }
  .burger::before {
    top: 10%;
    width: 100%;
    height: 3px;
    border-radius: 3px;
    background-color: #000;
    -webkit-transition: all 0.3s ease;
    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: 100%;
    height: 3px;
    border-radius: 3px;
    background-color: #000;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    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%);
    -webkit-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
  }
  .burger::after {
    bottom: 10%;
    width: 100%;
    height: 3px;
    border-radius: 3px;
    background-color: #000;
    -webkit-transition: all 0.3s ease;
    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 {
    background-color: #cccccc;
    border-radius: 50%;
  }
  .burger.active:hover {
    opacity: 1;
    background-color: #000;
  }
  .burger.active::before {
    width: 60%;
    background-color: #fff;
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
    height: 2px;
  }
  .burger.active span {
    opacity: 0;
  }
  .burger.active::after {
    width: 60%;
    background-color: #fff;
    bottom: 50%;
    -webkit-transform: translate(-50%, 50%) rotate(-45deg);
    transform: translate(-50%, 50%) rotate(-45deg);
    height: 2px;
  }

  .drop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .drop:hover .dropMenu {
    opacity: 1;
    visibility: visible;
  }
  .dropMenu {
    width: 100%;
    position: static;
    max-height: 0;
    opacity: 0;
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
    overflow: hidden;
    padding: 0 30px;
    visibility: visible;
  }
  .dropMenu.active {
    padding: 0 30px 30px 30px;
    opacity: 1;
    max-height: 400px;
  }

  .hero__inner-foot {
    bottom: 34px;
  }
  .hero__inner-buttons {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
  }
  .hero__inner-buttons:last-child {
    display: none;
  }
  .hero__inner-buttons .button {
    margin: 0;
  }
  .hero__inner-buttons .button.ipad {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  .hero__inner-logo {
    width: 90%;
  }
  .hero__inner h5 {
    font-size: 18px;
  }

  .welcome {
    padding-top: 150px;
  }
  .welcome.sm {
    padding: 0;
  }
  .welcome.sm .welcome__inner {
    padding-top: 80px;
  }
  .welcome.sm .welcomeMain__title {
    text-align: start;
    margin-bottom: 24px;
  }
  .welcome.sm .welcomeMain__text {
    text-align: start;
  }
  .welcome.sm .welcomeMain__image {
    width: calc(100% + 30px);
    margin-right: -30px;
  }
  .welcome.sm .welcomeMain h1,
.welcome.sm .welcomeMain h2 {
    margin-bottom: 18px;
  }
  .welcome__inner {
    padding-bottom: 48px;
  }
  .welcomeMain__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .welcomeMain__top {
    margin-bottom: 30px;
  }
  .welcomeMain__title {
    text-align: center;
  }
  .welcomeMain__text {
    text-align: center;
  }
  .welcomeMain__content {
    width: 100%;
    max-width: unset;
  }
  .welcomeMain__image {
    position: relative;
    width: 100%;
    margin-bottom: 48px;
    border-radius: 10px;
  }

  .highlight {
    padding: 130px 0;
  }
  .highlight__inner-title {
    margin-bottom: 44px;
  }
  .highlight__inner h2 {
    margin-bottom: 10px;
  }
  .highlightItem {
    width: calc(33.3% - 10px);
  }
  .highlightItem__content {
    padding: 20px;
    border-width: 3px;
  }

  .info {
    padding: 110px 0;
  }
  .info__inner-title {
    margin-bottom: 60px;
  }
  .info__inner-row {
    margin: 0 -15px;
  }
  .infoItem {
    width: calc(50% - 30px);
    height: 126px;
    margin: 10px 15px;
  }
  .infoItem__content {
    width: calc(100% - 110px);
    padding: 30px 20px;
  }
  .infoItem__image {
    width: 110px;
  }

  .practice {
    padding: 70px 0 20px;
  }
  .practiceImage {
    width: calc(50% - 15px);
  }
  .practiceImage.big {
    margin: 30px 0;
  }

  .interest__inner-row {
    margin: 0 -15px;
  }
  .interestItem {
    width: calc(50% - 30px);
    height: 126px;
    margin: 10px 15px;
  }
  .interestItem__content {
    width: calc(100% - 110px);
    padding: 20px;
  }
  .interestItem__image {
    width: 110px;
  }

  .team {
    padding: 70px 0 60px;
  }
  .team__inner-row {
    margin: 0 -15px;
  }
  .teamItem {
    margin: 20px 15px;
    width: calc(50% - 30px);
  }
  .teamItem__content {
    padding: 30px 0;
  }

  .profile__inner {
    padding: 0 20px;
  }
  .profileImage {
    width: calc(50% - 14px);
  }
  .profileContent h5 {
    font-size: 20px;
    line-height: 28px;
  }

  .desire {
    width: calc(100% - 60px);
  }
  .desireTop__row {
    width: calc(100% - 60px);
    bottom: 24px;
    display: none;
  }
  .desireTop__row-buttons {
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .desireTop__row-buttons:last-child {
    display: none;
  }
  .desireArticle {
    width: 100%;
  }

  .intro {
    width: calc(100% - 60px);
  }
  .intro__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 50px 0 40px;
  }
  .intro__inner-content {
    width: 100%;
    max-width: unset;
    margin-bottom: 24px;
    text-align: center;
  }
  .intro__inner-col {
    width: 100%;
    max-width: 540px;
  }

  .contact__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contact__inner-map {
    width: 100%;
    max-width: unset;
    padding-bottom: 90%;
    position: relative;
  }
  .contact__inner-map img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
  }
  .contact__inner-content {
    width: 100%;
    max-width: unset;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin-bottom: 60px;
  }

  .scheduleItem {
    font-size: 16px;
  }
  .scheduleItem__time {
    width: calc(100% - 140px);
    max-width: 480px;
  }

  .footer {
    padding: 54px 0;
  }
  .footer__inner-logo {
    width: 64px;
    margin-bottom: 28px;
  }
  .footer__inner-name {
    margin-bottom: 28px;
  }
  .footer__inner-row {
    margin-bottom: 28px;
  }
  .footer__inner-row span:last-of-type {
    display: none;
  }
}
@media (max-width: 750px) {
  .auto__container {
    padding: 0 20px;
  }

  .main {
    padding-top: 60.13px;
  }

  h1,
h2 {
    font-size: 28px;
  }

  body {
    border-width: 5px;
  }
  body::before {
    border-width: 5px;
  }

  .header {
    top: 5px;
    left: 5px;
    width: calc(100% - 10px);
  }
  .header.active .header__inner-logo b {
    opacity: 0;
    visibility: hidden;
  }
  .header.sticky {
    -webkit-animation-name: sticky-mob;
            animation-name: sticky-mob;
    -webkit-animation-duration: 0.4s;
            animation-duration: 0.4s;
  }
  .header.sticky .header__inner {
    padding: 13px 0;
  }
  .header.sticky .header__inner-logo {
    font-size: 12px;
  }
  .header.sticky .header__inner-logo span {
    width: 48px;
    margin-right: 16px;
  }
  .header.sticky .nav {
    top: 65.13px;
    height: calc(100% - 65.13px);
  }
  .header__inner {
    padding: 13px 0;
  }

  .nav {
    top: 65.13px;
    height: calc(100% - 65.13px);
    left: 5px;
    width: calc(100% - 10px);
  }

  .burger::before {
    top: 18%;
    width: 75%;
  }
  .burger span {
    width: 75%;
  }
  .burger::after {
    bottom: 18%;
    width: 75%;
  }

  .hero__inner {
    min-height: calc(100vh - 65.13px);
  }

  .highlight {
    padding: 110px 0 90px;
  }
  .highlight__inner-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .highlight__inner-title p {
    display: none;
  }
  .highlight__inner h2 {
    margin: 0;
  }
  .highlightItem {
    width: 100%;
    max-width: unset;
    margin-bottom: 44px;
  }
  .highlightItem:last-child {
    margin: 0;
  }
  .highlightItem__content {
    padding: 35px 40px 40px 40px;
    border-width: 5px;
  }
  .highlightItem p {
    font-size: 16px;
    line-height: 30px;
  }

  .info {
    padding: 90px 0;
  }
  .info__inner-title h6 {
    margin-bottom: 5px;
  }
  .info__inner-row {
    margin: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .infoItem {
    width: 100%;
    height: unset;
    margin: 10px 15px;
    margin: 0 0 14px 0;
  }
  .infoItem:last-child {
    margin: 0;
  }
  .infoItem__content {
    width: calc(100% - 90px);
    padding: 20px;
  }
  .infoItem__image {
    width: 90px;
    height: unset;
  }

  .practiceImage {
    width: 100%;
    max-width: unset;
    margin-bottom: 30px;
    border-radius: 10px;
  }
  .practiceImage:last-child {
    margin: 0;
  }
  .practiceImage.big {
    border-radius: unset;
    width: calc(100% + 40px);
    margin: 0 -20px 30px;
  }
  .practiceImage.big .practiceImage__inner {
    min-height: 400px;
  }

  .interest {
    padding: 100px 0;
  }
  .interest__inner-row {
    margin: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .interestItem {
    width: 100%;
    height: 108px;
    margin: 10px 15px;
    margin: 0 0 14px 0;
  }
  .interestItem:last-child {
    margin: 0;
  }
  .interestItem__content {
    width: calc(100% - 108px);
    padding: 16px 20px;
  }
  .interestItem__image {
    width: 108px;
  }

  .team__inner-row {
    margin: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .teamItem {
    width: 100%;
    margin: 0 0 30px 0;
  }
  .teamItem:last-child {
    margin: 0;
  }
  .teamItem__image {
    border-radius: 10px !important;
  }

  .profile {
    padding-bottom: 10px;
  }
  .profile__inner {
    padding: 0 35px 48px 35px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .profileImage {
    width: 100%;
    margin-bottom: 42px;
  }
  .profileContent {
    width: 100%;
    max-width: unset;
  }

  .desire {
    width: calc(100% - 40px);
  }
  .desireArticle {
    padding: 60px 0 30px;
  }
  .desireArticle h1, .desireArticle h2 {
    margin-bottom: 20px;
  }

  .intro {
    width: calc(100% - 40px);
  }

  .scheduleItem__time {
    width: calc(100% - 110px);
  }

  .footer__inner-logo {
    width: 56px;
  }
  .footer__inner-row a {
    width: 100%;
  }
}
@media (max-width: 650px) {
  .hero__inner-buttons:first-child {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: absolute;
    z-index: 2;
    top: calc(100% + 60px);
  }
  .hero__inner-buttons:first-child .button {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 100%;
    margin-bottom: 16px;
    padding: 15px 24px;
    position: relative;
    border: 5px solid #D5E7E2;
    border-radius: 10px;
  }
  .hero__inner-buttons:first-child .button:nth-child(2) {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .hero__inner-buttons:first-child .button::before {
    position: absolute;
    top: 50%;
    right: 20px;
    -webkit-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
    content: "";
    width: 8px;
    height: 8px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
  }
  .hero__inner-buttons:first-child .button:first-child {
    margin: 0;
  }
  .hero__inner-buttons:last-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .hero__inner-buttons:last-child .button {
    width: 44px;
    height: 44px;
    padding: 0;
  }
  .hero__inner-buttons:last-child .button b {
    display: none;
  }
  .hero__inner-buttons:last-child .button span {
    width: 22px;
    height: 22px;
    margin: 0;
  }
  .hero__inner-buttons:last-child .button span.sm {
    width: 16px;
  }
  .hero__inner-buttons .button {
    font-size: 16px;
    line-height: 20px;
  }
  .hero__inner-buttons .button span {
    width: 21px;
    height: 21px;
  }
  .hero__inner-buttons .button.ipad {
    display: none;
  }

  .welcome {
    padding-top: 220px;
  }
}
@media (max-width: 540px) {
  .modall__inner {
    padding: 74px 22px 44px;
  }
  .modall__inner-close {
    top: 20px;
    right: 20px;
  }
  .modall__inner .schedule__title {
    margin-bottom: 50px;
  }
  .modall__inner .schedule__title h5 {
    font-size: 20px;
  }

  .nav__inner {
    width: 100%;
    max-width: unset;
  }

  .hero__inner {
    padding: 100px 0 140px;
  }
  .hero__inner-logo {
    width: 100%;
    margin-bottom: 5px;
  }
  .hero__inner-title .button {
    display: none;
  }
  .hero__inner h5 {
    font-size: 14px;
    line-height: 18px;
    margin: 0;
  }

  .highlight__inner-title {
    margin-bottom: 36px;
  }
  .highlightItem {
    margin-bottom: 30px;
  }
  .highlightItem p {
    font-size: 14px;
    line-height: 22px;
  }

  .desire {
    width: 100%;
  }
  .desireTop__row {
    display: none;
  }
  .desireTop__bg {
    border-radius: 0;
  }

  .intro {
    width: 100%;
  }
  .intro__bg {
    border-radius: 0;
  }
  .intro__inner {
    min-height: 290px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 50px 0;
  }
  .intro__inner-content {
    margin: 0;
  }
  .intro__inner-col {
    position: absolute;
    top: calc(100% + 30px);
    left: 0;
    width: 100%;
  }
  .introLink {
    border: 5px solid #D5E7E2;
    background-color: #fff;
    position: relative;
    padding: 16px 25px;
    margin-bottom: 14px;
  }
  .introLink::before {
    position: absolute;
    top: 50%;
    right: 26px;
    -webkit-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
    content: "";
    width: 8px;
    height: 8px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    opacity: 0;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  .introLink:hover {
    background-color: #D5E7E2;
  }
  .introLink:hover::before {
    opacity: 1;
  }
  .introLink:hover span {
    color: #000;
  }
  .introLink:nth-child(2) {
    display: none;
  }
  .introLink span {
    width: 20px;
    height: 20px;
    margin-right: 18px;
    color: #000;
  }
  .introLink p {
    width: calc(100% - 38px);
    display: none;
  }
  .introLink p.mob {
    display: block;
  }

  .contact {
    padding: 192px 0 0;
  }
  .contact__inner-map {
    margin-bottom: 20px;
  }
  .contact__inner .introLink {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .schedule {
    border-width: 5px;
    padding: 40px 12px;
  }
  .schedule__title {
    margin-bottom: 36px;
  }
  .schedule__icon {
    width: 32px;
    height: 32px;
    margin-bottom: 13px;
  }
  .schedule__title h5 {
    font-size: 18px;
  }
  .scheduleItem {
    border-radius: 10px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 13px 18px;
  }
  .scheduleItem__time {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 50%;
  }
  .scheduleItem__time p {
    width: 100%;
    margin-bottom: 10px;
  }
  .scheduleItem__time p:last-child {
    margin: 0;
  }
}
@media (max-width: 440px) {
  .footer__inner-name p br {
    display: block;
  }
  .footer__inner-row span:nth-of-type(2) {
    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%);
  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: 0;
}

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

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

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

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-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;
  height: 100%;
}
.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;
}