/* lustria-regular - latin */
@font-face {
  font-family: 'Lustria';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/lustria-v13-latin-regular.eot'); /* IE9 Compat Modes */
  src: local(''),
  url('/fonts/lustria-v13-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
  url('/fonts/lustria-v13-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
  url('/fonts/lustria-v13-latin-regular.woff') format('woff'), /* Modern Browsers */
  url('/fonts/lustria-v13-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
  url('/fonts/lustria-v13-latin-regular.svg#Lustria') format('svg'); /* Legacy iOS */
}
/* raleway-100 - latin */
@font-face {
  font-family: 'Raleway';
  font-display: swap;
  font-style: normal;
  font-weight: 100;
  src: url('/fonts/raleway-v27-latin-100.eot'); /* IE9 Compat Modes */
  src: local(''),
  url('/fonts/raleway-v27-latin-100.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
  url('/fonts/raleway-v27-latin-100.woff2') format('woff2'), /* Super Modern Browsers */
  url('/fonts/raleway-v27-latin-100.woff') format('woff'), /* Modern Browsers */
  url('/fonts/raleway-v27-latin-100.ttf') format('truetype'), /* Safari, Android, iOS */
  url('/fonts/raleway-v27-latin-100.svg#Raleway') format('svg'); /* Legacy iOS */
}
/* raleway-regular - latin */
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/raleway-v27-latin-regular.eot'); /* IE9 Compat Modes */
  src: local(''),
  url('/fonts/raleway-v27-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
  url('/fonts/raleway-v27-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
  url('/fonts/raleway-v27-latin-regular.woff') format('woff'), /* Modern Browsers */
  url('/fonts/raleway-v27-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
  url('/fonts/raleway-v27-latin-regular.svg#Raleway') format('svg'); /* Legacy iOS */
}
/* raleway-500 - latin */
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/raleway-v27-latin-500.eot'); /* IE9 Compat Modes */
  src: local(''),
  url('/fonts/raleway-v27-latin-500.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
  url('/fonts/raleway-v27-latin-500.woff2') format('woff2'), /* Super Modern Browsers */
  url('/fonts/raleway-v27-latin-500.woff') format('woff'), /* Modern Browsers */
  url('/fonts/raleway-v27-latin-500.ttf') format('truetype'), /* Safari, Android, iOS */
  url('/fonts/raleway-v27-latin-500.svg#Raleway') format('svg'); /* Legacy iOS */
}

:root {
  --primary:#b47d2a;
  --primary-dark: #8f6624;
  --primary-light:#ffe7ca;
  --secondary:#e94c71;
  --secondary-light:#ffefef;
  --thirds:#161b4e;
  --bg:#fffbf6;
  --block-padding: 30px 0;
  --block-marging: 30px 0;
  --basic-width: 1300px;
}
.show {
  display: block !important;
}
.hidden,
.desktop-hide {display: none !important;}
.container {
  position: relative;
  margin: auto;
  max-width: var(--basic-width);
}
.row {
  display: flex;
  text-align: center;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.col-2 {max-width: 49.33333%;}
.col-3 {max-width: 32.33333%;}
.col-4 {max-width: 24.33333%;}


body {
  background-color: var(--bg);
  font-family: 'Lustria', sans-serif;
  color: var(--thirds);
}
a {
  color: var(--thirds);
  text-decoration: none;
}

/* HEADER */

#header .header-wrap {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  max-width: 1300px;
  margin: 20px auto;
}
#main-menu-block {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-content: center;
  align-items: center;
}
#main-menu-block li {list-style: none;}
#main-menu-block .menu-item {
  position: relative;
  margin: 0 15px;
  font-size: 18px;
  text-align: center;
  text-decoration: none;
}
#main-menu-block li.current a.menu-item,
#main-menu-block .menu-item:hover {
  transition: all 0.3s;
  color: var(--secondary);
}
#main-menu-block .menu-item:before {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0%;
  height: 2px;
  background-color: var(--secondary);
  transition: all 0.3s;
}
#main-menu-block .menu-item:hover:before {
  width: 100%;
  transition: all 0.3s;
}



/* MAIN SLIDER */
.slide-text-block {
  max-width: 840px;
  padding: 120px 0 0 10%;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
}
.slider-title{
  width: 100%;
  font-size: 70px;
  line-height: 84px;
  text-transform: capitalize;
  color: #b47d2a;
  background: rgb(178,124,42);
  background: -moz-linear-gradient(top,  rgba(178,124,42,1) 0%, rgba(250,176,68,1) 50%, rgba(178,124,42,1) 100%);
  background: -webkit-linear-gradient(top,  rgba(178,124,42,1) 0%,rgba(250,176,68,1) 50%,rgba(178,124,42,1) 100%);
  background: linear-gradient(to bottom,  rgba(178,124,42,1) 0%,rgba(250,176,68,1) 50%,rgba(178,124,42,1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.main-slider-item .sub-heading {
 padding: var(--block-padding);
  font-size: 24px;
  max-width: 80%;
}

.call-to-action-link {
  display: inline-block;
  padding: 18px 28px;
  border: 1px solid var(--thirds);
  border-radius: 42px;
  font-size: 28px;
  transition: all 0.3s;
}
.call-to-action-link:hover {
  transition: all 0.3s;
  border: 1px solid var(--secondary);
  color: var(--secondary);
}
.main-slider-item {
  position: relative;

}
.main-slider-item .bgi {
  position: absolute;
  top: -73px;
  right: 120px;
  height: 720px;
  width: 603px;
  background-position: right top;
  background-repeat: no-repeat;
  background-size: 603px;
  z-index: -1;
}
.slide-1 .bgi{background-image: url(/img/slide-1.jpg);}
.slide-2 .bgi{background-image: url(/img/slide-2.jpg);}
@keyframes bg_animation {
  0% {background-position: 100% 50%;}
  100% {background-position: 0% 50%;}
}

.stumb-block {
  width: 300px;
  height: 300px !important;
  min-height: 373px !important;
  margin-right: 50px;
  position: relative;
  background: rgb(227,227,227);
  background: linear-gradient(320deg, rgba(227,227,227,1) 0%, rgba(227,227,227,1) 42%, rgba(240,240,240,1) 50%, rgba(227,227,227,1) 57%, rgba(227,227,227,1) 100%);
  background-size: 400% 400%;
  animation: bg_animation 2s ease infinite;
}
.vimeo-thumb {
  display: block;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.vimeo-thumb:before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
  background-image: url("/img/vimeo-play.png");
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 1;
}
.vimeo-storage {text-align: center;}
.vimeo-thumb img {
  position: relative;
  margin: auto;
  z-index: 0;
}
/* our courses */
h2.block-heading,
#our-speakers h2 ,
.block-heading h2{
  font-size: 70px;
  font-weight: normal;
  font-family: 'Lustria', sans-serif;
  text-align: left;
  line-height: 108px;
}
.alic {
  align-items: center;
}
.block-title-description {max-width: 40%;}
.block-title-description p {
  font-family: 'Raleway', sans-serif;
  font-size: 17px;
  text-align: left;
}
.treatments-card {
  background: var(--secondary-light);
  max-width: 300px;
}
.treatments-card h3 {
  font-size: 38px;
  margin: 15px;
  font-weight: normal;
  color: var(--secondary);
  text-align: left;
  line-height: 42px;
}
.treatments-card p {
  padding: 15px;
  font-family: "Raleway", sans-serif;
  font-weight: normal;
  font-size: 20px;
}

/* OUR CLIENTS */
#meet-our-speaker {
  margin-top: 60px;
}
#meet-our-speaker h2 {
  font-size: 72px;
  font-weight: normal;
  margin: var(--block-marging);
}
#meet-our-speaker .our-clients-carousel-item {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: stretch;
}
#meet-our-speaker figure {
  max-width: 360px;
  margin: 0;
  text-align: right;
}
#meet-our-speaker figure img {
  height: auto;
  width: 100%;
}
#meet-our-speaker figcaption {
  font-family: 'Raleway';
  font-size: 21px;
}
#meet-our-speaker a.call-to-action-link {
  display: inline-block;
  margin: var(--block-marging);
}


/* OUR TEAM */
#our-team .title {
  align-items: center;
}
.our-team-card {
  position: relative;

  padding: 50px 30px;
  justify-content: space-between;
}
.our-team-person-wrap {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  text-align: left;
}
.odd {background-color: var(--primary-light);}
.even {background-color: #fff2e0;}

.our-team-heading-description {
  width: 70%;
  font-size: 20px;
  line-height: 28px;
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
}
.our-team-image {max-width: 33%;}
.our-team-image img {
  position: relative;
  display: inline-block;
  max-width: 100%;
}
.our-team-description-block {
  max-width: 60%;
}
.our-team-description {
  padding-right: 100px;
  font-size: 17px;
  line-height: 28px;
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
}
.our-team-title {
  width: 100%;
  margin: 0;
  font-size: 72px;
  text-align: left;
  line-height: 120px;
  font-family: 'Lustria', sans-serif;
  font-weight: 300;
  color: #b47d2a;
  background: rgb(178,124,42);
  background: -moz-linear-gradient(left,  rgba(178,124,42,1) 0%, rgba(250,176,68,1) 50%, rgba(178,124,42,1) 100%);
  background: -webkit-linear-gradient(left,  rgba(178,124,42,1) 0%,rgba(250,176,68,1) 50%,rgba(178,124,42,1) 100%);
  background: linear-gradient(to right,  rgba(178,124,42,1) 0%,rgba(250,176,68,1) 50%,rgba(178,124,42,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b27c2a', endColorstr='#b27c2a',GradientType=1 );
  background-clip: content-box;
  -webkit-background-clip: text;
  text-fill-color:transparent;
  -webkit-text-fill-color: transparent;
}
.iryna img ,
.monica img {
  top: 0px;
}

/*BENEFITS*/
#benefits  h2 {
  line-height: 70px;
}
#benefits .block-title-description {
  max-width: 320px;
}
.benefits-item {
  margin: 20px auto;
  padding: 15px 30px;
  background: #FFEFEF;
}
.benefits-item h3 {
  font-size: 34px;
  font-family: 'Lustria', serif;
  font-weight: 400;
  line-height: 32px;
  color: #E94C71;
}
.benefits-item p {
  color: #161B4E;
  font-size: 18px;
  font-family: 'Raleway', sans-serif;
  line-height: 28px;
}
#benefits .call-to-action-link  {margin-top: 20px;}
  /* TESTIMONIALS */
#testimonials {margin-bottom: 60px;}
#testimonials h2.block-heading {
  margin-bottom: 10px;
}
#testimonials-carousel .stumb-block {
  height: 210px !important;
  min-height: 210px !important;
}

/* HOW TO REGISTER */
.register-steps-block {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-content: center;
}
#how-to-register .block-heading {
  margin-bottom: 20px;
}
.register-step {
  background-color: #FFF2E0;
  display: flex;
  flex-flow: column;
  justify-content: center;
  max-width: 30%;
  padding: 30px 15px;
}
.register-step h3 {
  margin: 0;
  font-family: 'Lustria', sans-serif;
  font-weight: 400;
  font-size: 34px;
  color: var(--thirds);
}
.register-step p {
  font-family: 'Raleway', sans-serif;
  font-size: 18px;
  line-height: 28px;
}

/* WORKSHOP SCHEDULE */
#workshop-schedule {  margin-bottom: 30px;}
#workshop-schedule .block-title-description p{
  font-size: 32px;
  font-family: 'Relaway', sans-serif;
}
.schedule-table {
  background-color: #FFEFEF;
  padding: 20px 70px 55px 70px;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;

}
.schedule-row {
  max-width: 50%;
  width: 100%;
}
.schedule-table h3 {
  font-family: 'Lustria', sans-serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 37px;
  text-align: left;
  color: var(--secondary);
}
.schedule-table ul {
  margin: 0;
  padding-left: 0;
}
.schedule-table li {
  list-style: none;
  font-family: Raleway;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.05em;
  text-align: left;

}
/* CONTACT */
#contact {
  padding: var(--block-padding);
  background-color: var(--primary-light);
}
#contact h2 {margin: var(--block-marging);}
#contact .container {
  align-items: center;
}
#contact .form-block ,
#contact .block-heading {
  max-width: 50%;
  width: 100%;
}
#main-form {
  width: 100%;
  max-width: 456px;
  text-align: left;
  float: right;
  margin-top: 30px;
  padding-right: 15px;
}
.dropdown-list,
#main-form input {
  position: relative;
  width: 100%;
  margin: 10px;
  display: block;
  line-height: 40px;
  text-indent: 10px;
  border: 1px solid #ccc;
  background-color: #ffefdc;
}
.list {
  position: relative;
  width: 100%;
  background: #fff8f0;
  left: -1px;
  border: 1px solid #ccc;
  border-top: none;
  display: none;
  max-height: 120px;
  overflow-x: hidden;
  overflow-y: scroll;
}
.list a {
  transition: all 0.3s;
  padding-left: 10px;
  display: block;
  width: 100%;
}
.list a:focus ,
.list a:hover {
  transition: all 0.3s;
  background-color: #ffd5dd;
}
a.select-in-list {
  width: 100%;
  display: block;
  color: #777;
}
#contact input[type="submit"] {
  transition: all 0.3s;
  background: #161b4e !important;
  border: 1px solid #161b4e;
  color: #fff;
  font-family: 'Relaway', sans-serif;
  width: 100%;
  display: block;
}
#contact input[type="submit"]:hover,
#contact input[type="submit"]:focus {
  cursor: pointer;
  background: var(--secondary) !important;
  border: 1px solid  var(--secondary);
}
.field-error {
  border: 1px solid #f00 !important;
}

/* FOOTER */
#main-footer {
  padding: var(--block-padding);
  background: var(--thirds);
}
#main-footer * {
color: #fff ;
  font-family: 'Lustria', serif;
}
#main-footer .menu a {
  position: relative;
  display: inline-block;
  margin: 0 10px;
  font-size: 18px;
  line-height: 18px;
}
#main-footer .menu a:before {
  content: '';
  position: absolute;
  right: 0;
  bottom: -5px;
  background-color: #afafaf;
  height: 2px;
  width: 0;
  transition: all 0.3s;
}
#main-footer .menu a:hover:before {
  transition: all 0.3s;
  width: 100%;
}
.disclaimer p {
  padding-top: 20px;
  text-indent: 10px;
  color: #a8a8a8 !important;
  font-size: 14px;
}
#to-top {
  visibility: hidden;
  display: block;
  position: fixed;
  right: 30px;
  bottom: 30px;
  background-color: var(--secondary);
  width: 48px;
  height: 48px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-size: 32px;
  border-radius: 26px;
  line-height: 48px;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 120000;
}
#to-top.show {
  visibility: visible;}
#to-top:before {
  content: url("/img/up-arrow.png");
}
#to-top:hover {
  transition: all 0.3s;
  background-color: var(--thirds);
}

@media screen and (min-width: 1024px) {
  @keyframes bnc {
    0%, 20%, 50%, 80%, 100% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
    }

    40% {
      -webkit-transform: translateY(-5px);
      transform: translateY(-5px);
    }

    60% {
      -webkit-transform: translateY(-2px);
      transform: translateY(-2px);
    }
  }
  #main-menu-block {
    width: 80%;
    justify-content: flex-end;
  }
  #header-social {
    display: flex;
    flex-flow: row nowrap;
    max-width: 200px;
    align-items: center;
  }
  #main-menu-block .menu-item {
    margin: 0 40px;
  }
  #header-social a {
    display: block;
    width: 49px;
    padding: 0;
    margin: 0 10px;
  }
  #header-social a:hover {
    animation: 0.3s bnc ;
  }
  #header-social svg {
    max-width: 26px;
    height: 26px;
    padding: 0;
    margin: 0;
  }
  .shadow {
    transition: all 0.3s;
    box-shadow: 0px 3px 12px 0px rgba(120,120,120,0.3);
  }
  #content {
    margin-top: 120px;
  }
  #header {
    transition: all 0.3s;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color:  var(--bg );
    z-index: 111111;
  }

}

@media screen and (min-width: 1024px) and (max-width: 1440px) {
  .container {
    max-width: unset;
    padding: 15px;
  }
  .main-slider-item .bgi {right: 0;}
  .odd, .even {
    left: unset;
    right: unset;
  }
  #our-team {
    padding: 0px;
  }
  #our-team .title {
    padding: 0 15px;
  }
}

@media screen and (max-width: 767px) {
  .desktop-hide {display: block !important;}
  .mobile-toggle {
    width: 32px;
    height: 32px;
    display: block;
    position: relative;
    font-size: 30px;
  }
  #header .header-wrap {
    display: block;
    position: relative;
    flex-flow: unset;
    justify-content: unset;
    margin: 0;
  }

  #main-menu-block li{
    list-style: none;
  }
  .mobile-toggle {
    width: 32px;
    height: 32px;
    display: block;
    position: absolute;
    right: 20px;
    top: 8px;
  }
  #main-menu-block {
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    align-content: center;
    align-items: center;
    width: 100%;
    padding: 10px 0;
    margin-top: 0px;
    margin-bottom: 0;
    background: var(--primary-light);
  }
  .mobile-hide {display: none !important;}
  #main-menu-block .menu-item {
    display: block;
    line-height: 40px;
    text-transform: uppercase;
  }
/* SLIDER */
  .slide-text-block {
    padding: 10px;
  }
  #main-slider .bgi {
    top: -26px;
    right: 0;
    width: 200px;
    height: 300px;
    background-size: 200px;
  }
  .slider-title {
    padding-top:0px;
    font-size: 26px;
    line-height: 46px;
    max-width: 60%;
  }
  .main-slider-item .sub-heading {
    font-size: 20px;
    max-width: 100%;
  }
  .call-to-action-link {
    max-width: 220px;
    width: 100%;
    display: block;
    position: relative;
    margin: auto;
    margin-bottom: 20px;
    padding: 15px;
    font-size: 20px;
    text-align: center;
  }

  .row {
    flex-flow: column;
  }
  .block-title-description,
  .block-heading {
    max-width: 100%;
    padding: 10px 15px;
    width: calc(100% - 30px) !important;
  }
  .block-heading h2 {
    margin-bottom: 0;
    font-size: 34px;
    line-height: 38px;
    text-align: center;
  }
  .block-title-description p{
    font-size: 20px;
  }
  #treatments  .block-heading h2 {
    letter-spacing: 2px;
  }
  .treatments-card {
    max-width: 90%;
    margin:10px auto;
    position: relative;
  }
  .treatments-card h3 {
    font-size: 26px;
    text-align: center;
    margin-bottom:  0;
  }
  .treatments-card p {
    padding-top: 0;
    margin-top: 10px;
  }
  #meet-our-speaker {margin-top: 30px;}
  #meet-our-speaker h2 {
    font-size: 34px;
    text-align: center;
  }
  #meet-our-speaker figure {max-width: 30%;}
  #meet-our-speaker figcaption {
    font-size: 16px;
    text-align: center;
  }
  #meet-our-speaker a.call-to-action-link {
    display: block;
    position: relative;
    margin: auto;
    margin-top: 20px;
    max-width: 218px;
    text-align: center;

  }
  .our-team-card {padding: 20px 0;}
  .our-team-person-wrap {
    flex-flow: column;
  }
  .our-team-image,
  .our-team-description-block {
    max-width: 100% ;
  }
  .our-team-image img {
    top: 0;
    left: -10px;
    max-width: 250px;
    display: block;
    margin: auto;
    text-align: center;
  }
  .our-team-title {
    font-size: 36px;
    text-align: center;
  }
  .our-team-description {
    position: relative;
    margin-top: -20px;
    padding: 0px 15px;
    font-size: 20px;
    text-align: justify;
  }


  #contact .form-block,
  #contact .block-heading {
    max-width: 90%;
    position: relative;
    margin: auto;
  }
  .dropdown-list, #main-form input {
    margin: 10px 0;
    padding: 0;
  }
  #main-form {
    max-width: 100%;
    margin-top: 0;
    padding: 0;
   }
  #main-footer .menu {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
  }
  #main-footer .menu a {
    margin: 10px;
  }
  div#call-us-block-footer {
    display: block;
    text-align: center;
    width: 100%;
    margin: 20px 0 0 0;
  }
  .disclaimer.container {
    display: block;
    position: relative;
    margin: auto;
    max-width: 80%;
    text-align: center;
  }
  .slick-arrow {display: none !important;}
  .col-* {
    max-width: 100% !important;
  }#content {
     margin-top: 80px;
   }
  header#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 50px;
    background-color:var(--bg);
    z-index: 10;
  }
  svg.svg-icon {
    width: 26px;
    max-height: 26px;
  }
  header#header.shadow {
    box-shadow: 0px 3px 7px 0px rgba(120,120,120,0.3);
  }
  #header-social {
    position: relative;
    top: 13px;
    left: 20px;
    width: 155px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
  }
  h2.block-heading,
  #our-speakers h2,
  .block-heading h2 {
    margin-top: 0;
    font-size: 32px;
    line-height: 40px;
    text-align: center;
  }
  .stumb-block {
    margin: auto;
  }
  #benefits h2 {
    line-height: 40px;
    margin-bottom: -20px;
    margin-top: 30px;
  }
  .benefits-item h3 {
    font-size: 26px;
  }
  .register-step {
    max-width: 80%;
    position: relative;
    margin: 10px auto;
  }
  #workshop-schedule h2 {
    margin-top: 30px;
  }
  #workshop-schedule .block-title-description p {
    text-align: center;
    margin: 5px 0;
  }
  .schedule-row {max-width: 100%;}
  .slick-dots li button:before {
    font-size: 14px !important;
    line-height: 26px !important;
  }
.desktop-hide.open + #header-social {
  display: none !important;
}
}
