html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*, *::before, *::after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
}

.tailor-author {
  padding: 0;
  margin-bottom: 1rem;
  font-size: 1em;
  color: inherit;
  background-color: transparent;
  border: 1px solid #efefef;
  border-radius: 2px;
  box-shadow: none;
  overflow: hidden;
}

.tailor-author__wrap {
  padding: 0 2em 1em;
}

.tailor-author__header {
  padding-top: 1rem;
  text-align: center;
}

.tailor-author__avatar {
  margin: 0;
  width: 100px;
  border-radius: 50%;
  border: 5px solid #fff;
}

.tailor-author__name {
  margin: 0 0 1rem;
  font-size: 1.25em;
  text-align: center;
}

.tailor-author__social-links {
  padding: 0;
  margin: 0 0 0.5rem;
  list-style: none;
  text-align: center;
}

.tailor-author__social-links li {
  display: inline-block;
  margin-right: 0.5rem;
}

.tailor-author__social-links a {
  text-decoration: none;
}

.tailor-author.has-header-image .tailor-author__header {
  position: relative;
  margin-bottom: 50px;
  min-height: 10rem;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}

.tailor-author.has-header-image .tailor-author__avatar {
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.tailor-box {
  padding: 2em;
  margin-bottom: 1rem;
  font-size: 1em;
  color: inherit;
  background-color: transparent;
  border: 1px solid #efefef;
  border-radius: 0;
  box-shadow: none;
}

.tailor-box__title {
  display: block;
  margin: 1em 0;
}

.tailor-box__graphic {
  -webkit-transition: all 150ms;
  -moz-transition: all 150ms;
  transition: all 150ms;
}

.tailor-box--icon .tailor-box__title {
  margin-top: 0;
}

.tailor-box--icon .tailor-box__graphic {
  position: relative;
  display: table;
  width: 5em;
  height: 5em;
  border-radius: 50%;
}

.tailor-box--icon .tailor-box__graphic span {
  position: relative;
  z-index: 2;
  display: table-cell;
  width: 100%;
  text-align: inherit;
  vertical-align: middle;
  font-size: 2.5em;
}

.tailor-box--image .tailor-box__graphic {
  margin-bottom: 1rem;
  max-width: 5em;
}

.tailor-box.u-text-left .tailor-box__graphic {
  margin-left: 0;
}

.tailor-box.u-text-center .tailor-box__graphic {
  margin-left: auto;
  margin-right: auto;
}

.tailor-box.u-text-right .tailor-box__graphic {
  margin-left: auto;
}

@media only screen and (min-width: 321px) and (max-width: 720px) {
  .tailor-box.u-text-left-tablet .tailor-box__graphic {
    margin-left: 0;
    margin-right: auto;
  }
  .tailor-box.u-text-center-tablet .tailor-box__graphic {
    margin-left: auto;
    margin-right: auto;
  }
  .tailor-box.u-text-right-tablet .tailor-box__graphic {
    margin-left: auto;
    margin-right: 0;
  }
}

@media only screen and (max-width: 320px) {
  .tailor-box.u-text-left-mobile .tailor-box__graphic {
    margin-left: 0;
    margin-right: auto;
  }
  .tailor-box.u-text-center-mobile .tailor-box__graphic {
    margin-left: auto;
    margin-right: auto;
  }
  .tailor-box.u-text-right-mobile .tailor-box__graphic {
    margin-left: auto;
    margin-right: 0;
  }
}

.tailor-button {
  margin-bottom: 1rem;
  width: 100%;
}

.tailor-button__inner {
  display: inline-block;
  padding: 0.5em 1.5em;
  margin: 0;
  text-align: center;
  cursor: pointer;
  font-family: inherit;
  font-size: 1em;
  color: inherit;
  background-color: #fdfdfd;
  border: 1px solid #efefef;
  border-radius: 2px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1), 0 1px 0 rgba(0, 0, 0, 0.05);
  text-decoration: none;
  -webkit-transition: all 150ms;
  -moz-transition: all 150ms;
  transition: all 150ms;
}

.tailor-button__inner > * {
  display: inline-table;
  line-height: inherit;
  font-size: inherit;
}

.tailor-button__inner i:not(:only-child) {
  margin-right: 0.25em;
}

.tailor-button__inner:focus, .tailor-button__inner:hover {
  outline: 0;
  background-color: #f8f8f8;
}

.tailor-button__inner:active {
  background-color: #f0f0f0;
}

.tailor-button__inner:focus, .tailor-button__inner:hover, .tailor-button__inner:active {
  border-color: #e2e2e2;
}

.tailor-button--primary .tailor-button__inner {
  color: #fff;
  background-color: #0f95ee;
  border-color: #0e8fe4;
}

.tailor-button--primary .tailor-button__inner:focus, .tailor-button--primary .tailor-button__inner:hover {
  background-color: #0e8fe4;
}

.tailor-button--primary .tailor-button__inner:active {
  background-color: #0d86d6;
}

.tailor-button--primary .tailor-button__inner:hover, .tailor-button--primary .tailor-button__inner:focus, .tailor-button--primary .tailor-button__inner:active {
  border-color: #0d80cc;
}

.tailor-button--block .tailor-button__inner, .tailor-button.u-text-justify .tailor-button__inner {
  display: block;
}

@media only screen and (min-width: 321px) and (max-width: 720px) {
  .tailor-button--block-mobile .tailor-button__inner, .tailor-button.u-text-justify-tablet .tailor-button__inner {
    display: block;
  }
  .tailor-button.u-text-left-tablet .tailor-button__inner, .tailor-button.u-text-center-tablet .tailor-button__inner, .tailor-button.u-text-right-tablet .tailor-button__inner {
    display: inline-block;
  }
}

@media only screen and (max-width: 320px) {
  .tailor-button--block-mobile .tailor-button__inner, .tailor-button.u-text-justify-mobile .tailor-button__inner {
    display: block;
  }
  .tailor-button.u-text-left-mobile .tailor-button__inner, .tailor-button.u-text-center-mobile .tailor-button__inner, .tailor-button.u-text-right-mobile .tailor-button__inner {
    display: inline-block;
  }
}

.tailor-button--small {
  font-size: 0.8em;
}

.tailor-button--large {
  font-size: 1.6em;
}

@media only screen and (min-width: 321px) and (max-width: 720px) {
  .tailor-button--small-tablet {
    font-size: 0.8em;
  }
  .tailor-button--medium-tablet {
    font-size: 1em;
  }
  .tailor-button--large-tablet {
    font-size: 1.6em;
  }
}

@media only screen and (max-width: 320px) {
  .tailor-button--small-mobile {
    font-size: 0.8em;
  }
  .tailor-button--medium-mobile {
    font-size: 1em;
  }
  .tailor-button--large-mobile {
    font-size: 1.6em;
  }
}

.tailor-content {
  padding: 0;
  margin-bottom: 1rem;
  font-size: 1em;
  color: inherit;
  background-color: transparent;
  border: 1px none #efefef;
  border-radius: 0;
  box-shadow: none;
}

.tailor-content::after {
  content: "";
  display: table;
  clear: both;
}

.tailor-content > :last-child {
  margin-bottom: 0;
}

.tailor-content--placeholder p {
  opacity: 0.5;
}

.tailor-form {
  padding: 0;
  margin-bottom: 1rem;
  font-size: 1em;
  color: inherit;
  background-color: transparent;
  border: 1px none #efefef;
  border-radius: 0;
  box-shadow: none;
}

.tailor-tabs {
  padding: 0;
  margin-bottom: 1rem;
  font-size: 1em;
  color: inherit;
  background-color: transparent;
  border: 1px none #efefef;
  border-radius: 0;
  box-shadow: none;
}

.tailor-tabs__navigation, .tailor-tabs__content {
  padding: 0;
  margin: 0;
  list-style: none;
}

.tailor-tabs__navigation-item {
  background-color: #454545;
  position: relative;
  z-index: 1;
  display: block;
  padding: 0.5em 1em;
  margin-bottom: -1px;
  border: 1px solid #efefef;
  font-weight: bold;
  cursor: pointer;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.tailor-tabs__navigation-item.is-active {
  z-index: 3;
  background-color: #fff;
}

.tailor-tabs__navigation-item:not(.is-active) {
  background-color: #fdfdfd;
}

.tailor-tab {
  position: relative;
  z-index: 2;
  padding: 1em;
  margin: 0;
  border: 1px solid #efefef;
  background-color: #fff;
}

.tailor-tab:not(:first-child) {
  display: none;
}

.tailor-editor .tailor-tabs__content .tailor-tab,
.no-js .tailor-tabs__content .tailor-tab {
  display: block;
}

@media only screen and (min-width: 321px) {
  .tailor-tabs__navigation::after {
    content: "";
    display: table;
    clear: both;
  }
  .tailor-tabs__navigation-item {
    max-width: 180px;
  }
  .tailor-tabs--top .tailor-tabs__navigation {
    margin-bottom: -1px;
  }
  .tailor-tabs--top .tailor-tabs__navigation-item {
    float: left;
    margin-bottom: 0;
    border-bottom: none;
  }
  .tailor-tabs--top .tailor-tabs__navigation-item:not(:last-child) {
    margin-right: -1px;
  }
  .tailor-tabs--left .tailor-tabs__navigation {
    float: left;
    margin-right: -1px;
  }
  .tailor-tabs--left .tailor-tabs__navigation-item {
    margin-bottom: 0;
    border-right: none;
  }
  .tailor-tabs--left .tailor-tabs__navigation-item.is-active {
    border-right-color: #fff;
  }
  .tailor-tabs--right .tailor-tabs__navigation {
    float: right;
    margin-left: -1px;
  }
  .tailor-tabs--right .tailor-tabs__navigation-item {
    margin-bottom: 0;
    border-left: none;
  }
  .tailor-tabs--right .tailor-tabs__navigation-item.is-active {
    border-left-color: #fff;
  }
  .tailor-tabs--left .tailor-tabs__navigation-item:not(:first-child), .tailor-tabs--right .tailor-tabs__navigation-item:not(:first-child) {
    margin-top: -1px;
  }
  .tailor-tabs--left .tailor-tabs__content .tailor-tab, .tailor-tabs--right .tailor-tabs__content .tailor-tab {
    display: block;
    overflow: hidden;
  }
  .tailor-tabs--left::after, .tailor-tabs--right::after {
    content: "";
    display: table;
    clear: both;
  }
}

.tailor-carousel {
  position: relative;
  margin-bottom: 1rem;
  font-size: 1em;
  color: inherit;
  background-color: transparent;
  border: 1px solid #efefef;
  border-radius: 0;
  box-shadow: none;
}

.tailor-carousel--slider > .slick-dots,
.tailor-carousel--slider > .tailor-carousel__wrap > .slick-dots {
  position: absolute;
  bottom: 0;
  border-top-width: 0;
}

.tailor-carousel:not([data-slides="1"]) > .tailor-carousel__wrap > .slick-list > .slick-track {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.tailor-carousel__wrap, .tailor-carousel__item {
  padding: 0;
  margin: 0;
  list-style: none;
}

.tailor-carousel__item {
  padding: 1em 1.25em;
}

.tailor-carousel__item.u-align-top, .tailor-carousel__item.u-align-middle, .tailor-carousel__item.u-align-bottom {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
}

.tailor-row {
  position: relative;
  padding: 0;
  margin-bottom: 1rem;
  font-size: 1em;
  color: inherit;
  background-color: transparent;
  border: 1px none #efefef;
  border-radius: 0;
  box-shadow: none;
}

.tailor-column {
  position: relative;
  min-height: 1px;
  padding: 0;
  margin-bottom: 0;
  width: 100%;
  font-size: 1em;
  color: inherit;
  background-color: transparent;
  border: 1px none #efefef;
  border-radius: 0;
  box-shadow: none;
}

[dir=rtl] .tailor-row {
  flex-direction: row-reverse;
}

.mobile-columns {
  margin-left: -1rem;
  margin-right: -1rem;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.mobile-columns .columns-1 {
  width: 8.33333%;
}

.mobile-columns .columns-2 {
  width: 16.66667%;
}

.mobile-columns .columns-3 {
  width: 25%;
}

.mobile-columns .columns-4 {
  width: 33.33333%;
}

.mobile-columns .columns-5 {
  width: 41.66667%;
}

.mobile-columns .columns-6 {
  width: 50%;
}

.mobile-columns .columns-7 {
  width: 58.33333%;
}

.mobile-columns .columns-8 {
  width: 66.66667%;
}

.mobile-columns .columns-9 {
  width: 75%;
}

.mobile-columns .columns-10 {
  width: 83.33333%;
}

.mobile-columns .columns-11 {
  width: 91.66667%;
}

.mobile-columns .columns-12 {
  width: 100%;
}

@media only screen and (min-width: 321px) and (max-width: 720px) {
  .mobile-columns .columns-tablet-1 {
    width: 8.33333%;
  }
}

@media only screen and (min-width: 321px) and (max-width: 720px) {
  .mobile-columns .columns-tablet-2 {
    width: 16.66667%;
  }
}

@media only screen and (min-width: 321px) and (max-width: 720px) {
  .mobile-columns .columns-tablet-3 {
    width: 25%;
  }
}

@media only screen and (min-width: 321px) and (max-width: 720px) {
  .mobile-columns .columns-tablet-4 {
    width: 33.33333%;
  }
}

@media only screen and (min-width: 321px) and (max-width: 720px) {
  .mobile-columns .columns-tablet-5 {
    width: 41.66667%;
  }
}

@media only screen and (min-width: 321px) and (max-width: 720px) {
  .mobile-columns .columns-tablet-6 {
    width: 50%;
  }
}

@media only screen and (min-width: 321px) and (max-width: 720px) {
  .mobile-columns .columns-tablet-7 {
    width: 58.33333%;
  }
}

@media only screen and (min-width: 321px) and (max-width: 720px) {
  .mobile-columns .columns-tablet-8 {
    width: 66.66667%;
  }
}

@media only screen and (min-width: 321px) and (max-width: 720px) {
  .mobile-columns .columns-tablet-9 {
    width: 75%;
  }
}

@media only screen and (min-width: 321px) and (max-width: 720px) {
  .mobile-columns .columns-tablet-10 {
    width: 83.33333%;
  }
}

@media only screen and (min-width: 321px) and (max-width: 720px) {
  .mobile-columns .columns-tablet-11 {
    width: 91.66667%;
  }
}

@media only screen and (min-width: 321px) and (max-width: 720px) {
  .mobile-columns .columns-tablet-12 {
    width: 100%;
  }
}

@media only screen and (max-width: 320px) {
  .mobile-columns .columns-mobile-1 {
    width: 8.33333%;
  }
}

@media only screen and (max-width: 320px) {
  .mobile-columns .columns-mobile-2 {
    width: 16.66667%;
  }
}

@media only screen and (max-width: 320px) {
  .mobile-columns .columns-mobile-3 {
    width: 25%;
  }
}

@media only screen and (max-width: 320px) {
  .mobile-columns .columns-mobile-4 {
    width: 33.33333%;
  }
}

@media only screen and (max-width: 320px) {
  .mobile-columns .columns-mobile-5 {
    width: 41.66667%;
  }
}

@media only screen and (max-width: 320px) {
  .mobile-columns .columns-mobile-6 {
    width: 50%;
  }
}

@media only screen and (max-width: 320px) {
  .mobile-columns .columns-mobile-7 {
    width: 58.33333%;
  }
}

@media only screen and (max-width: 320px) {
  .mobile-columns .columns-mobile-8 {
    width: 66.66667%;
  }
}

@media only screen and (max-width: 320px) {
  .mobile-columns .columns-mobile-9 {
    width: 75%;
  }
}

@media only screen and (max-width: 320px) {
  .mobile-columns .columns-mobile-10 {
    width: 83.33333%;
  }
}

@media only screen and (max-width: 320px) {
  .mobile-columns .columns-mobile-11 {
    width: 91.66667%;
  }
}

@media only screen and (max-width: 320px) {
  .mobile-columns .columns-mobile-12 {
    width: 100%;
  }
}

.mobile-columns .tailor-column {
  padding-left: 1rem;
  padding-right: 1rem;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
}

.mobile-columns .tailor-column > :last-child {
  margin-bottom: 0;
}

@media only screen and (min-width: 321px) {
  .tablet-columns {
    margin-left: -1rem;
    margin-right: -1rem;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .tablet-columns .columns-1 {
    width: 8.33333%;
  }
  .tablet-columns .columns-2 {
    width: 16.66667%;
  }
  .tablet-columns .columns-3 {
    width: 25%;
  }
  .tablet-columns .columns-4 {
    width: 33.33333%;
  }
  .tablet-columns .columns-5 {
    width: 41.66667%;
  }
  .tablet-columns .columns-6 {
    width: 50%;
  }
  .tablet-columns .columns-7 {
    width: 58.33333%;
  }
  .tablet-columns .columns-8 {
    width: 66.66667%;
  }
  .tablet-columns .columns-9 {
    width: 75%;
  }
  .tablet-columns .columns-10 {
    width: 83.33333%;
  }
  .tablet-columns .columns-11 {
    width: 91.66667%;
  }
  .tablet-columns .columns-12 {
    width: 100%;
  }
}

@media only screen and (min-width: 321px) and (min-width: 321px) and (max-width: 720px) {
  .tablet-columns .columns-tablet-1 {
    width: 8.33333%;
  }
}

@media only screen and (min-width: 321px) and (min-width: 321px) and (max-width: 720px) {
  .tablet-columns .columns-tablet-2 {
    width: 16.66667%;
  }
}

@media only screen and (min-width: 321px) and (min-width: 321px) and (max-width: 720px) {
  .tablet-columns .columns-tablet-3 {
    width: 25%;
  }
}

@media only screen and (min-width: 321px) and (min-width: 321px) and (max-width: 720px) {
  .tablet-columns .columns-tablet-4 {
    width: 33.33333%;
  }
}

@media only screen and (min-width: 321px) and (min-width: 321px) and (max-width: 720px) {
  .tablet-columns .columns-tablet-5 {
    width: 41.66667%;
  }
}

@media only screen and (min-width: 321px) and (min-width: 321px) and (max-width: 720px) {
  .tablet-columns .columns-tablet-6 {
    width: 50%;
  }
}

@media only screen and (min-width: 321px) and (min-width: 321px) and (max-width: 720px) {
  .tablet-columns .columns-tablet-7 {
    width: 58.33333%;
  }
}

@media only screen and (min-width: 321px) and (min-width: 321px) and (max-width: 720px) {
  .tablet-columns .columns-tablet-8 {
    width: 66.66667%;
  }
}

@media only screen and (min-width: 321px) and (min-width: 321px) and (max-width: 720px) {
  .tablet-columns .columns-tablet-9 {
    width: 75%;
  }
}

@media only screen and (min-width: 321px) and (min-width: 321px) and (max-width: 720px) {
  .tablet-columns .columns-tablet-10 {
    width: 83.33333%;
  }
}

@media only screen and (min-width: 321px) and (min-width: 321px) and (max-width: 720px) {
  .tablet-columns .columns-tablet-11 {
    width: 91.66667%;
  }
}

@media only screen and (min-width: 321px) and (min-width: 321px) and (max-width: 720px) {
  .tablet-columns .columns-tablet-12 {
    width: 100%;
  }
}

@media only screen and (min-width: 321px) and (max-width: 320px) {
  .tablet-columns .columns-mobile-1 {
    width: 8.33333%;
  }
}

@media only screen and (min-width: 321px) and (max-width: 320px) {
  .tablet-columns .columns-mobile-2 {
    width: 16.66667%;
  }
}

@media only screen and (min-width: 321px) and (max-width: 320px) {
  .tablet-columns .columns-mobile-3 {
    width: 25%;
  }
}

@media only screen and (min-width: 321px) and (max-width: 320px) {
  .tablet-columns .columns-mobile-4 {
    width: 33.33333%;
  }
}

@media only screen and (min-width: 321px) and (max-width: 320px) {
  .tablet-columns .columns-mobile-5 {
    width: 41.66667%;
  }
}

@media only screen and (min-width: 321px) and (max-width: 320px) {
  .tablet-columns .columns-mobile-6 {
    width: 50%;
  }
}

@media only screen and (min-width: 321px) and (max-width: 320px) {
  .tablet-columns .columns-mobile-7 {
    width: 58.33333%;
  }
}

@media only screen and (min-width: 321px) and (max-width: 320px) {
  .tablet-columns .columns-mobile-8 {
    width: 66.66667%;
  }
}

@media only screen and (min-width: 321px) and (max-width: 320px) {
  .tablet-columns .columns-mobile-9 {
    width: 75%;
  }
}

@media only screen and (min-width: 321px) and (max-width: 320px) {
  .tablet-columns .columns-mobile-10 {
    width: 83.33333%;
  }
}

@media only screen and (min-width: 321px) and (max-width: 320px) {
  .tablet-columns .columns-mobile-11 {
    width: 91.66667%;
  }
}

@media only screen and (min-width: 321px) and (max-width: 320px) {
  .tablet-columns .columns-mobile-12 {
    width: 100%;
  }
}

@media only screen and (min-width: 321px) {
  .tablet-columns .tailor-column {
    padding-left: 1rem;
    padding-right: 1rem;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
  }
  .tablet-columns .tailor-column > :last-child {
    margin-bottom: 0;
  }
}

@media only screen and (min-width: 721px) {
  .desktop-columns {
    margin-left: -1rem;
    margin-right: -1rem;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .desktop-columns .columns-1 {
    width: 8.33333%;
  }
  .desktop-columns .columns-2 {
    width: 16.66667%;
  }
  .desktop-columns .columns-3 {
    width: 25%;
  }
  .desktop-columns .columns-4 {
    width: 33.33333%;
  }
  .desktop-columns .columns-5 {
    width: 41.66667%;
  }
  .desktop-columns .columns-6 {
    width: 50%;
  }
  .desktop-columns .columns-7 {
    width: 58.33333%;
  }
  .desktop-columns .columns-8 {
    width: 66.66667%;
  }
  .desktop-columns .columns-9 {
    width: 75%;
  }
  .desktop-columns .columns-10 {
    width: 83.33333%;
  }
  .desktop-columns .columns-11 {
    width: 91.66667%;
  }
  .desktop-columns .columns-12 {
    width: 100%;
  }
}

@media only screen and (min-width: 721px) and (min-width: 321px) and (max-width: 720px) {
  .desktop-columns .columns-tablet-1 {
    width: 8.33333%;
  }
}

@media only screen and (min-width: 721px) and (min-width: 321px) and (max-width: 720px) {
  .desktop-columns .columns-tablet-2 {
    width: 16.66667%;
  }
}

@media only screen and (min-width: 721px) and (min-width: 321px) and (max-width: 720px) {
  .desktop-columns .columns-tablet-3 {
    width: 25%;
  }
}

@media only screen and (min-width: 721px) and (min-width: 321px) and (max-width: 720px) {
  .desktop-columns .columns-tablet-4 {
    width: 33.33333%;
  }
}

@media only screen and (min-width: 721px) and (min-width: 321px) and (max-width: 720px) {
  .desktop-columns .columns-tablet-5 {
    width: 41.66667%;
  }
}

@media only screen and (min-width: 721px) and (min-width: 321px) and (max-width: 720px) {
  .desktop-columns .columns-tablet-6 {
    width: 50%;
  }
}

@media only screen and (min-width: 721px) and (min-width: 321px) and (max-width: 720px) {
  .desktop-columns .columns-tablet-7 {
    width: 58.33333%;
  }
}

@media only screen and (min-width: 721px) and (min-width: 321px) and (max-width: 720px) {
  .desktop-columns .columns-tablet-8 {
    width: 66.66667%;
  }
}

@media only screen and (min-width: 721px) and (min-width: 321px) and (max-width: 720px) {
  .desktop-columns .columns-tablet-9 {
    width: 75%;
  }
}

@media only screen and (min-width: 721px) and (min-width: 321px) and (max-width: 720px) {
  .desktop-columns .columns-tablet-10 {
    width: 83.33333%;
  }
}

@media only screen and (min-width: 721px) and (min-width: 321px) and (max-width: 720px) {
  .desktop-columns .columns-tablet-11 {
    width: 91.66667%;
  }
}

@media only screen and (min-width: 721px) and (min-width: 321px) and (max-width: 720px) {
  .desktop-columns .columns-tablet-12 {
    width: 100%;
  }
}

@media only screen and (min-width: 721px) and (max-width: 320px) {
  .desktop-columns .columns-mobile-1 {
    width: 8.33333%;
  }
}

@media only screen and (min-width: 721px) and (max-width: 320px) {
  .desktop-columns .columns-mobile-2 {
    width: 16.66667%;
  }
}

@media only screen and (min-width: 721px) and (max-width: 320px) {
  .desktop-columns .columns-mobile-3 {
    width: 25%;
  }
}

@media only screen and (min-width: 721px) and (max-width: 320px) {
  .desktop-columns .columns-mobile-4 {
    width: 33.33333%;
  }
}

@media only screen and (min-width: 721px) and (max-width: 320px) {
  .desktop-columns .columns-mobile-5 {
    width: 41.66667%;
  }
}

@media only screen and (min-width: 721px) and (max-width: 320px) {
  .desktop-columns .columns-mobile-6 {
    width: 50%;
  }
}

@media only screen and (min-width: 721px) and (max-width: 320px) {
  .desktop-columns .columns-mobile-7 {
    width: 58.33333%;
  }
}

@media only screen and (min-width: 721px) and (max-width: 320px) {
  .desktop-columns .columns-mobile-8 {
    width: 66.66667%;
  }
}

@media only screen and (min-width: 721px) and (max-width: 320px) {
  .desktop-columns .columns-mobile-9 {
    width: 75%;
  }
}

@media only screen and (min-width: 721px) and (max-width: 320px) {
  .desktop-columns .columns-mobile-10 {
    width: 83.33333%;
  }
}

@media only screen and (min-width: 721px) and (max-width: 320px) {
  .desktop-columns .columns-mobile-11 {
    width: 91.66667%;
  }
}

@media only screen and (min-width: 721px) and (max-width: 320px) {
  .desktop-columns .columns-mobile-12 {
    width: 100%;
  }
}

@media only screen and (min-width: 721px) {
  .desktop-columns .tailor-column {
    padding-left: 1rem;
    padding-right: 1rem;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
  }
  .desktop-columns .tailor-column > :last-child {
    margin-bottom: 0;
  }
}

.tailor-jetpack-portfolio {
  padding: 0;
  margin-bottom: 1rem;
  font-size: 1em;
  color: inherit;
  background-color: transparent;
  border: 1px none #efefef;
  border-radius: 0;
  box-shadow: none;
}

.tailor-jetpack-testimonials {
  padding: 0;
  margin-bottom: 1rem;
  font-size: 1em;
  color: inherit;
  background-color: transparent;
  border: 1px none #efefef;
  border-radius: 0;
  box-shadow: none;
}

.tailor-jetpack-testimonials .testimonial-entry {
  margin-bottom: 0;
}

.tailor-list {
  padding: 0;
  margin: 0;
  font-size: 1em;
  color: inherit;
  background-color: transparent;
  border: 1px none #efefef;
  border-radius: 0;
  box-shadow: none;
}

.tailor-list__graphic {
  position: relative;
  float: left;
  text-align: center;
  -webkit-transition: all 150ms;
  -moz-transition: all 150ms;
  transition: all 150ms;
}

.tailor-list__body {
  display: block;
  overflow: hidden;
}

.tailor-list__title {
  display: block;
  padding: 0;
  margin: 0.65em 0 0.5em;
  font-size: inherit;
  line-height: inherit;
}

.tailor-list__content :last-child {
  margin-bottom: 0;
}

.tailor-list__item {
  padding: 0;
  margin: 0 0 1rem;
  list-style: none;
  border-color: #efefef;
}

.tailor-list__item::after {
  content: "";
  display: table;
  clear: both;
}

.tailor-list__item--image .tailor-list__graphic {
  max-width: 3em;
}

.tailor-list__item--image.tailor-list__item--left .tailor-list__graphic {
  margin-right: 1rem;
}

.tailor-list__item--image.tailor-list__item--right .tailor-list__graphic {
  margin-left: 1rem;
}

.tailor-list__item--number {
  counter-increment: step-counter;
}

.tailor-list__item--number .tailor-list__graphic span {
  font-weight: 600;
}

.tailor-list__item--number .tailor-list__graphic span::before {
  content: counter(step-counter);
}

.tailor-list__item--icon .tailor-list__graphic, .tailor-list__item--number .tailor-list__graphic {
  display: table;
  width: 3em;
  height: 3em;
  border-radius: 50%;
}

.tailor-list__item--icon .tailor-list__graphic span, .tailor-list__item--number .tailor-list__graphic span {
  position: relative;
  z-index: 2;
  display: table-cell;
  width: 100%;
  vertical-align: middle;
}

.tailor-list__item--icon .tailor-list__graphic span {
  font-size: 1.5em;
}

.tailor-list__item.u-text-left .tailor-list__graphic {
  float: left;
}

.tailor-list__item.u-text-right .tailor-list__graphic {
  float: right;
}

@media only screen and (min-width: 321px) and (max-width: 720px) {
  .tailor-list__item.u-text-left-tablet .tailor-list__graphic {
    float: left;
  }
  .tailor-list__item.u-text-right-tablet .tailor-list__graphic {
    float: right;
  }
}

@media only screen and (max-width: 320px) {
  .tailor-list__item.u-text-left-mobile .tailor-list__graphic {
    float: left;
  }
  .tailor-list__item.u-text-right-mobile .tailor-list__graphic {
    float: right;
  }
}

.tailor-list__item.u-text-left::after, .tailor-list__item.u-text-left-tablet::after, .tailor-list__item.u-text-left-mobile::after, .tailor-list__item.u-text-right::after, .tailor-list__item.u-text-right-tablet::after, .tailor-list__item.u-text-right-mobile::after {
  content: "";
  display: table;
  clear: both;
}

[dir=rtl] .tailor-list__graphic {
  float: right;
}

[dir=rtl] .tailor-list__item.u-text-left .tailor-list__graphic {
  float: left;
}

.tailor-gallery {
  position: relative;
  padding: 0;
  margin-bottom: 1rem;
  font-size: 1em;
  color: inherit;
  background-color: transparent;
  border: 1px none #efefef;
  border-radius: 0;
  box-shadow: none;
}

.tailor-grid {
  padding: 0;
  margin-bottom: 1rem;
  font-size: 1em;
  color: inherit;
  background-color: transparent;
  border: 1px none #efefef;
  border-radius: 0;
  box-shadow: none;
}

.tailor-grid__item {
  min-height: 1px;
  width: 100%;
  border: 1px none #efefef;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
}

.tailor-grid--posts .tailor-grid {
  display: block;
}

.tailor-grid--posts .tailor-grid__item {
  padding: 1em;
}

.tailor-grid--mobile .tailor-grid__item {
  padding: 1em;
}

.tailor-grid--mobile.tailor-grid--1 > .tailor-grid__item {
  width: 100%;
}

.tailor-grid--mobile.tailor-grid--1 > .tailor-grid__item:nth-child(1n + 2) {
  clear: left;
}

.tailor-grid--mobile.tailor-grid--bordered.tailor-grid--1 > .tailor-grid__item:nth-child(-n + 1) {
  border-top-style: solid;
}

.tailor-grid--mobile.tailor-grid--bordered.tailor-grid--1 > .tailor-grid__item:nth-child(1n + 1) {
  border-left-style: solid;
}

.tailor-grid--mobile.tailor-grid--2 > .tailor-grid__item {
  width: 50%;
}

.tailor-grid--mobile.tailor-grid--2 > .tailor-grid__item:nth-child(2n + 3) {
  clear: left;
}

.tailor-grid--mobile.tailor-grid--bordered.tailor-grid--2 > .tailor-grid__item:nth-child(-n + 2) {
  border-top-style: solid;
}

.tailor-grid--mobile.tailor-grid--bordered.tailor-grid--2 > .tailor-grid__item:nth-child(2n + 1) {
  border-left-style: solid;
}

.tailor-grid--mobile.tailor-grid--3 > .tailor-grid__item {
  width: 33.33333%;
}

.tailor-grid--mobile.tailor-grid--3 > .tailor-grid__item:nth-child(3n + 4) {
  clear: left;
}

.tailor-grid--mobile.tailor-grid--bordered.tailor-grid--3 > .tailor-grid__item:nth-child(-n + 3) {
  border-top-style: solid;
}

.tailor-grid--mobile.tailor-grid--bordered.tailor-grid--3 > .tailor-grid__item:nth-child(3n + 1) {
  border-left-style: solid;
}

.tailor-grid--mobile.tailor-grid--4 > .tailor-grid__item {
  width: 25%;
}

.tailor-grid--mobile.tailor-grid--4 > .tailor-grid__item:nth-child(4n + 5) {
  clear: left;
}

.tailor-grid--mobile.tailor-grid--bordered.tailor-grid--4 > .tailor-grid__item:nth-child(-n + 4) {
  border-top-style: solid;
}

.tailor-grid--mobile.tailor-grid--bordered.tailor-grid--4 > .tailor-grid__item:nth-child(4n + 1) {
  border-left-style: solid;
}

.tailor-grid--mobile.tailor-grid--5 > .tailor-grid__item {
  width: 20%;
}

.tailor-grid--mobile.tailor-grid--5 > .tailor-grid__item:nth-child(5n + 6) {
  clear: left;
}

.tailor-grid--mobile.tailor-grid--bordered.tailor-grid--5 > .tailor-grid__item:nth-child(-n + 5) {
  border-top-style: solid;
}

.tailor-grid--mobile.tailor-grid--bordered.tailor-grid--5 > .tailor-grid__item:nth-child(5n + 1) {
  border-left-style: solid;
}

.tailor-grid--mobile.tailor-grid--6 > .tailor-grid__item {
  width: 16.66667%;
}

.tailor-grid--mobile.tailor-grid--6 > .tailor-grid__item:nth-child(6n + 7) {
  clear: left;
}

.tailor-grid--mobile.tailor-grid--bordered.tailor-grid--6 > .tailor-grid__item:nth-child(-n + 6) {
  border-top-style: solid;
}

.tailor-grid--mobile.tailor-grid--bordered.tailor-grid--6 > .tailor-grid__item:nth-child(6n + 1) {
  border-left-style: solid;
}

.tailor-grid--mobile:not(.tailor-grid--masonry) {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}

.tailor-grid--mobile.tailor-grid--bordered > .tailor-grid__item {
  border-left-style: none;
  border-top-style: none;
  border-right-style: solid;
  border-bottom-style: solid;
}

@media only screen and (min-width: 321px) {
  .tailor-grid--tablet .tailor-grid__item {
    padding: 1em;
  }
  .tailor-grid--tablet.tailor-grid--1 > .tailor-grid__item {
    width: 100%;
  }
  .tailor-grid--tablet.tailor-grid--1 > .tailor-grid__item:nth-child(1n + 2) {
    clear: left;
  }
  .tailor-grid--tablet.tailor-grid--bordered.tailor-grid--1 > .tailor-grid__item:nth-child(-n + 1) {
    border-top-style: solid;
  }
  .tailor-grid--tablet.tailor-grid--bordered.tailor-grid--1 > .tailor-grid__item:nth-child(1n + 1) {
    border-left-style: solid;
  }
  .tailor-grid--tablet.tailor-grid--2 > .tailor-grid__item {
    width: 50%;
  }
  .tailor-grid--tablet.tailor-grid--2 > .tailor-grid__item:nth-child(2n + 3) {
    clear: left;
  }
  .tailor-grid--tablet.tailor-grid--bordered.tailor-grid--2 > .tailor-grid__item:nth-child(-n + 2) {
    border-top-style: solid;
  }
  .tailor-grid--tablet.tailor-grid--bordered.tailor-grid--2 > .tailor-grid__item:nth-child(2n + 1) {
    border-left-style: solid;
  }
  .tailor-grid--tablet.tailor-grid--3 > .tailor-grid__item {
    width: 33.33333%;
  }
  .tailor-grid--tablet.tailor-grid--3 > .tailor-grid__item:nth-child(3n + 4) {
    clear: left;
  }
  .tailor-grid--tablet.tailor-grid--bordered.tailor-grid--3 > .tailor-grid__item:nth-child(-n + 3) {
    border-top-style: solid;
  }
  .tailor-grid--tablet.tailor-grid--bordered.tailor-grid--3 > .tailor-grid__item:nth-child(3n + 1) {
    border-left-style: solid;
  }
  .tailor-grid--tablet.tailor-grid--4 > .tailor-grid__item {
    width: 25%;
  }
  .tailor-grid--tablet.tailor-grid--4 > .tailor-grid__item:nth-child(4n + 5) {
    clear: left;
  }
  .tailor-grid--tablet.tailor-grid--bordered.tailor-grid--4 > .tailor-grid__item:nth-child(-n + 4) {
    border-top-style: solid;
  }
  .tailor-grid--tablet.tailor-grid--bordered.tailor-grid--4 > .tailor-grid__item:nth-child(4n + 1) {
    border-left-style: solid;
  }
  .tailor-grid--tablet.tailor-grid--5 > .tailor-grid__item {
    width: 20%;
  }
  .tailor-grid--tablet.tailor-grid--5 > .tailor-grid__item:nth-child(5n + 6) {
    clear: left;
  }
  .tailor-grid--tablet.tailor-grid--bordered.tailor-grid--5 > .tailor-grid__item:nth-child(-n + 5) {
    border-top-style: solid;
  }
  .tailor-grid--tablet.tailor-grid--bordered.tailor-grid--5 > .tailor-grid__item:nth-child(5n + 1) {
    border-left-style: solid;
  }
  .tailor-grid--tablet.tailor-grid--6 > .tailor-grid__item {
    width: 16.66667%;
  }
  .tailor-grid--tablet.tailor-grid--6 > .tailor-grid__item:nth-child(6n + 7) {
    clear: left;
  }
  .tailor-grid--tablet.tailor-grid--bordered.tailor-grid--6 > .tailor-grid__item:nth-child(-n + 6) {
    border-top-style: solid;
  }
  .tailor-grid--tablet.tailor-grid--bordered.tailor-grid--6 > .tailor-grid__item:nth-child(6n + 1) {
    border-left-style: solid;
  }
  .tailor-grid--tablet:not(.tailor-grid--masonry) {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
  }
  .tailor-grid--tablet.tailor-grid--bordered > .tailor-grid__item {
    border-left-style: none;
    border-top-style: none;
    border-right-style: solid;
    border-bottom-style: solid;
  }
}

@media only screen and (min-width: 721px) {
  .tailor-grid--desktop .tailor-grid__item {
    padding: 1em;
  }
  .tailor-grid--desktop.tailor-grid--1 > .tailor-grid__item {
    width: 100%;
  }
  .tailor-grid--desktop.tailor-grid--1 > .tailor-grid__item:nth-child(1n + 2) {
    clear: left;
  }
  .tailor-grid--desktop.tailor-grid--bordered.tailor-grid--1 > .tailor-grid__item:nth-child(-n + 1) {
    border-top-style: solid;
  }
  .tailor-grid--desktop.tailor-grid--bordered.tailor-grid--1 > .tailor-grid__item:nth-child(1n + 1) {
    border-left-style: solid;
  }
  .tailor-grid--desktop.tailor-grid--2 > .tailor-grid__item {
    width: 50%;
  }
  .tailor-grid--desktop.tailor-grid--2 > .tailor-grid__item:nth-child(2n + 3) {
    clear: left;
  }
  .tailor-grid--desktop.tailor-grid--bordered.tailor-grid--2 > .tailor-grid__item:nth-child(-n + 2) {
    border-top-style: solid;
  }
  .tailor-grid--desktop.tailor-grid--bordered.tailor-grid--2 > .tailor-grid__item:nth-child(2n + 1) {
    border-left-style: solid;
  }
  .tailor-grid--desktop.tailor-grid--3 > .tailor-grid__item {
    width: 33.33333%;
  }
  .tailor-grid--desktop.tailor-grid--3 > .tailor-grid__item:nth-child(3n + 4) {
    clear: left;
  }
  .tailor-grid--desktop.tailor-grid--bordered.tailor-grid--3 > .tailor-grid__item:nth-child(-n + 3) {
    border-top-style: solid;
  }
  .tailor-grid--desktop.tailor-grid--bordered.tailor-grid--3 > .tailor-grid__item:nth-child(3n + 1) {
    border-left-style: solid;
  }
  .tailor-grid--desktop.tailor-grid--4 > .tailor-grid__item {
    width: 25%;
  }
  .tailor-grid--desktop.tailor-grid--4 > .tailor-grid__item:nth-child(4n + 5) {
    clear: left;
  }
  .tailor-grid--desktop.tailor-grid--bordered.tailor-grid--4 > .tailor-grid__item:nth-child(-n + 4) {
    border-top-style: solid;
  }
  .tailor-grid--desktop.tailor-grid--bordered.tailor-grid--4 > .tailor-grid__item:nth-child(4n + 1) {
    border-left-style: solid;
  }
  .tailor-grid--desktop.tailor-grid--5 > .tailor-grid__item {
    width: 20%;
  }
  .tailor-grid--desktop.tailor-grid--5 > .tailor-grid__item:nth-child(5n + 6) {
    clear: left;
  }
  .tailor-grid--desktop.tailor-grid--bordered.tailor-grid--5 > .tailor-grid__item:nth-child(-n + 5) {
    border-top-style: solid;
  }
  .tailor-grid--desktop.tailor-grid--bordered.tailor-grid--5 > .tailor-grid__item:nth-child(5n + 1) {
    border-left-style: solid;
  }
  .tailor-grid--desktop.tailor-grid--6 > .tailor-grid__item {
    width: 16.66667%;
  }
  .tailor-grid--desktop.tailor-grid--6 > .tailor-grid__item:nth-child(6n + 7) {
    clear: left;
  }
  .tailor-grid--desktop.tailor-grid--bordered.tailor-grid--6 > .tailor-grid__item:nth-child(-n + 6) {
    border-top-style: solid;
  }
  .tailor-grid--desktop.tailor-grid--bordered.tailor-grid--6 > .tailor-grid__item:nth-child(6n + 1) {
    border-left-style: solid;
  }
  .tailor-grid--desktop:not(.tailor-grid--masonry) {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
  }
  .tailor-grid--desktop.tailor-grid--bordered > .tailor-grid__item {
    border-left-style: none;
    border-top-style: none;
    border-right-style: solid;
    border-bottom-style: solid;
  }
}

.wpcf7 {
  padding: 0;
  margin-bottom: 0;
  font-size: 1em;
  color: inherit;
  background-color: transparent;
  border: 1px none #efefef;
  border-radius: 0;
  box-shadow: none;
}

.wpcf7 input,
.wpcf7 select,
.wpcf7 textarea {
  max-width: 100%;
}

.tailor-map {
  padding: 0;
  margin-bottom: 1rem;
  font-size: 1em;
  color: inherit;
  background-color: transparent;
  border: 1px solid #efefef;
  border-radius: 0;
  box-shadow: none;
  width: 100%;
}

.tailor-map__canvas {
  height: 400px;
}

.tailor-map__marker {
  display: none;
}

.tailor-card {
  margin-bottom: 1rem;
  font-size: 1em;
  color: inherit;
  background-color: transparent;
  border: 1px solid #efefef;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1), 0 1px 0 rgba(0, 0, 0, 0.05);
}

.tailor-card__header {
  margin: 0;
  display: table;
  width: 100%;
  border-bottom: 1px solid #efefef;
}

.tailor-card__title {
  display: table-cell;
  vertical-align: bottom;
  color: inherit;
  font-size: 1.25em;
}

.tailor-card__header:not(:empty), .tailor-card__content {
  padding: 1em 1.25em;
}

.tailor-card.has-header-image .tailor-card__header {
  color: #fff;
  text-shadow: 1px 1px #666;
  height: 180px;
}

.tailor-hero {
  padding: 2em;
  margin-bottom: 1rem;
  font-size: 1em;
  color: inherit;
  background-color: transparent;
  border: 1px solid #efefef;
  border-radius: 0;
  box-shadow: none;
}

.tailor-hero h1 {
  font-size: 3em;
}

.tailor-hero h2 {
  font-size: 2.25em;
}

.tailor-hero h1,
.tailor-hero h2 {
  color: inherit;
  font-weight: inherit;
}

@media only screen and (min-width: 321px) {
  .tailor-hero {
    padding: 2.5em;
    font-size: 1.25em;
  }
}

.tailor-toggles {
  padding: 0;
  margin-bottom: 1rem;
  font-size: 1em;
  color: inherit;
  background-color: transparent;
  box-shadow: none;
}

.tailor-toggle {
  margin-bottom: 0.5rem;
  font-size: 1em;
  color: inherit;
  background-color: transparent;
  box-shadow: none;
}

.tailor-toggle__title {
  display: block;
  padding: 0.5em 1em;
  margin: 0;
  font-size: 1em;
  font-weight: bold;
  line-height: inherit;
  border: 1px solid #efefef;
  background-color: #fff;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.tailor-toggle__title i {
  margin-right: 0.5em;
  font-size: inherit;
  line-height: inherit;
}

.tailor-toggle__title.is-active {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.tailor-toggle__title.is-active ~ .tailor-toggle__body {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.tailor-toggle__body {
  display: none;
  padding: 1em;
  margin: 0;
  border: 1px solid #efefef;
  border-top-width: 0;
  border-radius: 0;
}

.tailor-editor .tailor-toggle__body,
.no-js .tailor-toggle__body {
  display: block;
}

#canvas .tailor-toggle:not(.is-selected) .tailor-toggle__title {
  pointer-events: none;
}

.tailor-posts {
  padding: 0;
  margin-bottom: 1rem;
  font-size: 1em;
  color: inherit;
  background-color: transparent;
  border: 1px none #efefef;
  border-radius: 0;
  box-shadow: none;
}

.tailor-posts .entry {
  margin-bottom: 1.5rem;
}

.tailor-posts .entry__title {
  margin: 1rem 0 0.5rem;
}

.tailor-posts .entry__title a {
  color: inherit;
}

.tailor-posts .entry__meta {
  display: block;
  font-size: 0.8em;
}

.tailor-posts .entry__meta span {
  position: relative;
  display: inline-block;
}

.tailor-posts .entry__meta span:not(:last-child) {
  padding-right: 0.5rem;
  margin-right: 0.5rem;
}

.tailor-posts .entry__meta span:not(:last-child)::after {
  position: absolute;
  right: 0;
  content: '|';
}

.tailor-posts .entry__thumbnail {
  overflow: hidden;
}

.tailor-posts .entry__thumbnail a {
  display: block;
}

.tailor-posts .entry__thumbnail img {
  margin: 0;
}

.tailor-posts .entry__more {
  display: inline-block;
  margin-top: 0.25rem;
}

.tailor-posts .entry:last-child {
  margin-bottom: 0;
}

.tailor-posts .entry-pagination {
  margin-top: 1rem;
}

.tailor-posts--boxed .entry {
  border: 1px solid #efefef;
  background-color: #fff;
  overflow: hidden;
}

.tailor-posts--boxed .entry__content {
  padding: 0 2rem 2rem;
}

.tailor-section {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin-bottom: 1rem;
  font-size: 1em;
  color: inherit;
  background-color: transparent;
  border: 1px none #efefef;
  border-radius: 0;
  box-shadow: none;
}

.tailor-section__content {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  width: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
}

.tailor-section__background {
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center center;
  -webkit-transform: translatez(0);
  -moz-transform: translatez(0);
  -ms-transform: translatez(0);
  -o-transform: translatez(0);
  transform: translatez(0);
}

.tailor-section.is-parallax, .tailor-section.has-background-image {
  overflow: hidden;
}

.tailor-section.u-align-top .tailor-section__content {
  justify-content: flex-start;
}

.tailor-section.u-align-middle .tailor-section__content {
  justify-content: center;
}

.tailor-section.u-align-bottom .tailor-section__content {
  justify-content: flex-end;
}

@media only screen and (min-width: 321px) and (max-width: 720px) {
  .tailor-section.u-align-top-tablet .tailor-section__content {
    justify-content: flex-start;
  }
  .tailor-section.u-align-middle-tablet .tailor-section__content {
    justify-content: center;
  }
  .tailor-section.u-align-bottom-tablet .tailor-section__content {
    justify-content: flex-end;
  }
}

@media only screen and (max-width: 320px) {
  .tailor-section.u-align-top-mobile .tailor-section__content {
    justify-content: flex-start;
  }
  .tailor-section.u-align-middle-mobile .tailor-section__content {
    justify-content: center;
  }
  .tailor-section.u-align-bottom-mobile .tailor-section__content {
    justify-content: flex-end;
  }
}

.tailor-section.is-skewed {
  transform: skew(0deg, -3deg);
}

.tailor-section.is-skewed .tailor-section__content {
  transform: skew(0deg, 3deg);
}

.tailor-widget {
  padding: 0;
  margin-bottom: 1rem;
  font-size: 1em;
  color: inherit;
  background-color: transparent;
  border: 1px none #efefef;
  border-radius: 0;
  box-shadow: none;
}

.tailor-widget-area {
  padding: 0;
  margin-bottom: 1rem;
  font-size: 1em;
  color: inherit;
  background-color: transparent;
  border: 1px none #efefef;
  border-radius: 0;
  box-shadow: none;
}

.tailor-responsive-embed {
  position: relative;
  display: block;
  padding: 0;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.tailor-responsive-embed iframe,
.tailor-responsive-embed embed,
.tailor-responsive-embed object,
.tailor-responsive-embed video {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  border: 0;
}

.tailor-responsive-embed.tailor-responsive-embed-4by3 {
  padding-bottom: 75%;
}

.tailor-slideshow {
  padding: 0;
}

.tailor-slideshow__slides, .tailor-slideshow__slide {
  padding: 0;
  margin: 0;
  list-style: none;
}

.tailor-slideshow__slide img {
  max-width: 100%;
}

.tailor-slideshow .slick-track {
  display: block;
}

.tailor-slideshow .slick-dots li {
  margin: 0 4px;
  list-style: none;
}

.tailor-slideshow .slick-dots {
  bottom: 0;
  text-align: center;
  border-top: none;
  margin: 1rem 0;
}

.tailor-slideshow .slick-dots li {
  margin: 0;
  display: inline-block;
  width: 80px;
  height: auto;
  max-width: calc( 25% - 4px);
  cursor: pointer;
}

.tailor-slideshow .slick-dots li:not(.slick-active) {
  opacity: 0.5;
}

.tailor-slideshow .slick-dots li img {
  max-width: 100%;
}

.entry-pagination .next,
.entry-pagination .previous,
.entry-pagination .page-numbers {
  display: inline-block;
  padding: 0.125em 0.5em;
  border-radius: 4px;
  background-color: #fefefe;
  font-size: 0.85em;
}

.entry-pagination a {
  border: 1px solid #efefef;
}

.tailor-attachment {
  margin: 0;
}

.tailor-attachment__image {
  position: relative;
  display: block;
  margin: 0;
  outline: none;
  border: none;
  box-shadow: none;
  height: 100%;
}

.tailor-attachment__image img {
  display: block;
  margin: 0 auto;
}

.tailor-attachment__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  display: inline-block;
  padding: 0.5em 1em;
  color: #fff;
  background-color: rgba(35, 35, 35, 0.4);
  font-size: 14px;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.is-stretched img {
  width: 100%;
}

.aspect-ratio-1-1 {
  position: relative;
  overflow: hidden;
}

.aspect-ratio-1-1::before {
  display: block;
  content: " ";
  width: 100%;
  padding-top: 100%;
}

.aspect-ratio-1-1.is-stretched img {
  min-height: 100%;
  min-width: 100%;
}

.aspect-ratio-1-1 > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.aspect-ratio-1-1 > * img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  backface-visibility: hidden;
}

.aspect-ratio-1-1 > * img {
  width: auto;
}

.aspect-ratio-3-2 {
  position: relative;
  overflow: hidden;
}

.aspect-ratio-3-2::before {
  display: block;
  content: " ";
  width: 100%;
  padding-top: 66.66667%;
}

.aspect-ratio-3-2.is-stretched img {
  min-height: 100%;
  min-width: 100%;
}

.aspect-ratio-3-2 > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.aspect-ratio-3-2 > * img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  backface-visibility: hidden;
}

.aspect-ratio-3-2 > * img {
  width: 100%;
  height: auto;
  max-height: none;
}

.aspect-ratio-2-3 {
  position: relative;
  overflow: hidden;
}

.aspect-ratio-2-3::before {
  display: block;
  content: " ";
  width: 100%;
  padding-top: 150%;
}

.aspect-ratio-2-3.is-stretched img {
  min-height: 100%;
  min-width: 100%;
}

.aspect-ratio-2-3 > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.aspect-ratio-2-3 > * img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  backface-visibility: hidden;
}

.aspect-ratio-2-3 > * img {
  width: auto;
  max-width: none;
  height: 100%;
}

.aspect-ratio-4-3 {
  position: relative;
  overflow: hidden;
}

.aspect-ratio-4-3::before {
  display: block;
  content: " ";
  width: 100%;
  padding-top: 75%;
}

.aspect-ratio-4-3.is-stretched img {
  min-height: 100%;
  min-width: 100%;
}

.aspect-ratio-4-3 > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.aspect-ratio-4-3 > * img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  backface-visibility: hidden;
}

.aspect-ratio-4-3 > * img {
  width: 100%;
  height: auto;
  max-height: none;
}

.aspect-ratio-3-4 {
  position: relative;
  overflow: hidden;
}

.aspect-ratio-3-4::before {
  display: block;
  content: " ";
  width: 100%;
  padding-top: 133.33333%;
}

.aspect-ratio-3-4.is-stretched img {
  min-height: 100%;
  min-width: 100%;
}

.aspect-ratio-3-4 > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.aspect-ratio-3-4 > * img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  backface-visibility: hidden;
}

.aspect-ratio-3-4 > * img {
  width: auto;
  max-width: none;
  height: 100%;
}

.aspect-ratio-16-9 {
  position: relative;
  overflow: hidden;
}

.aspect-ratio-16-9::before {
  display: block;
  content: " ";
  width: 100%;
  padding-top: 56.25%;
}

.aspect-ratio-16-9.is-stretched img {
  min-height: 100%;
  min-width: 100%;
}

.aspect-ratio-16-9 > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.aspect-ratio-16-9 > * img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  backface-visibility: hidden;
}

.aspect-ratio-16-9 > * img {
  width: 100%;
  height: auto;
  max-height: none;
}
/*
.slick-arrow.slick-hidden {
  display: none;
}

.slick-slider {
  display: block;
  -moz-box-sizing: border-box;
  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-track,
.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;
}

.slick-track::before, .slick-track::after {
  content: "";
  display: table;
}

.slick-track::after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  min-height: 1px;
  outline: 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-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow {
  position: absolute;
  top: calc( 50% - 41px);
  z-index: 99;
  padding: 0;
  margin: 0;
  width: 36px;
  outline: none;
  border: 1px solid #efefef;
  background-color: #fff;
  color: #0f95ee;
  border-radius: 2px;
  opacity: 0;
  -webkit-transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slick-arrow::before {
  position: relative;
  top: -2px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 2.5em;
  font-style: normal;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  text-align: center;
  speak: none;
  color: inherit;
  line-height: 80px;
}

.slick-arrow.slick-prev {
  left: 4px;
}

.slick-arrow.slick-prev::before {
  content: '\2039';
}

.slick-arrow.slick-next {
  right: 4px;
}

.slick-arrow.slick-next::before {
  content: '\203A';
}

.slick-arrow.slick-disabled {
  color: rgba(0, 0, 0, 0.1);
}

.slick-slider:hover .slick-arrow {
  opacity: 1;
}

.slick-dots {
  position: relative;
  display: block;
  padding: 0;
  margin: 0;
  border-width: 0;
  border-top-width: 1px;
  border-style: solid;
  border-color: #efefef;
  list-style: none;
  text-align: center;
  width: 100%;
}

.slick-dots li {
  position: relative;
  padding: 0;
  margin: 12px 3px;
  display: inline-block;
  display: -moz-inline-stack;
  cursor: pointer;
}

.slick-dots li button {
  display: block;
  margin: 0;
  padding: 0;
  height: 12px;
  width: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 100%;
  position: relative;
  transition: border-color 700ms cubic-bezier(0.19, 1, 0.22, 1) 0ms;
  background: transparent;
  color: transparent;
  line-height: 0;
  outline: none;
  pointer-events: none;
}

.slick-dots li button:hover, .slick-dots li button:focus {
  margin: 0;
  outline: none;
}

.slick-dots li button::before {
  display: block;
  height: 14px;
  width: 14px;
  position: absolute;
  content: ' ';
  top: -2px;
  left: -2px;
  border-radius: 100%;
  background-color: #0f95ee;
  opacity: 0;
  transition: -webkit-transform 700ms cubic-bezier(0.19, 1, -1.78, 1) 0ms, background 500ms cubic-bezier(0.19, 1, 0.22, 1) 0ms, opacity 700ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
  transition: transform 700ms cubic-bezier(0.19, 1, 0.22, 1) 0ms, background 500ms cubic-bezier(0.19, 1, 0.22, 1) 0ms, opacity 350ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition: transform 700ms cubic-bezier(0.19, 1, 0.22, 1) 0ms, background 500ms cubic-bezier(0.19, 1, 0.22, 1) 0ms, opacity 350ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
  -moz-transition: transform 700ms cubic-bezier(0.19, 1, 0.22, 1) 0ms, background 500ms cubic-bezier(0.19, 1, 0.22, 1) 0ms, opacity 350ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
  transition: transform 700ms cubic-bezier(0.19, 1, 0.22, 1) 0ms, background 500ms cubic-bezier(0.19, 1, 0.22, 1) 0ms, opacity 350ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
}

.slick-dots li.slick-active button::before {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.slick-dots li:hover button {
  border: 1px solid rgba(0, 0, 0, 0.2);
}
*/
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
  filter: alpha(opacity=80);
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.mfp-container::before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container::before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #CCC;
}

.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close, button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
  box-shadow: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  filter: alpha(opacity=65);
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover, .mfp-close:focus {
  opacity: 1;
  filter: alpha(opacity=100);
}

.mfp-close:active {
  transform: translateY(1px);
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  filter: alpha(opacity=65);
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
  transform: translateY(1px);
}

.mfp-arrow:hover, .mfp-arrow:focus {
  opacity: 1;
  filter: alpha(opacity=100);
}

.mfp-arrow::before, .mfp-arrow::after,
.mfp-arrow .mfp-b,
.mfp-arrow .mfp-a {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow::after,
.mfp-arrow .mfp-a {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow::before,
.mfp-arrow .mfp-b {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left::after,
.mfp-arrow-left .mfp-a {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}

.mfp-arrow-left::before,
.mfp-arrow-left .mfp-b {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right::after,
.mfp-arrow-right .mfp-a {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}

.mfp-arrow-right::before,
.mfp-arrow-right .mfp-b {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

.mfp-figure {
  line-height: 0;
}

.mfp-figure::after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure::after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}

.mfp-zoom-in .mfp-figure,
.mfp-zoom-in .mfp-iframe-holder .mfp-iframe-scaler {
  opacity: 0;
  -webkit-transform: scale(0.92);
  -moz-transform: scale(0.92);
  -ms-transform: scale(0.92);
  -o-transform: scale(0.92);
  transform: scale(0.92);
  -webkit-transition: all 250ms ease-out;
  -moz-transition: all 250ms ease-out;
  transition: all 250ms ease-out;
}

.mfp-zoom-in.mfp-bg,
.mfp-zoom-in .mfp-preloader {
  opacity: 0;
  -webkit-transition: all 250ms ease-out;
  -moz-transition: all 250ms ease-out;
  transition: all 250ms ease-out;
}

.mfp-zoom-in.mfp-loaded .mfp-figure {
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.mfp-zoom-in.mfp-ready .mfp-iframe-holder .mfp-iframe-scaler {
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.mfp-zoom-in.mfp-ready.mfp-bg,
.mfp-zoom-in.mfp-ready .mfp-preloader {
  opacity: 0.8;
}

.mfp-zoom-in.mfp-removing .mfp-figure,
.mfp-zoom-in.mfp-removing .mfp-iframe-holder .mfp-iframe-scaler {
  opacity: 0;
  -webkit-transform: scale(0.92);
  -moz-transform: scale(0.92);
  -ms-transform: scale(0.92);
  -o-transform: scale(0.92);
  transform: scale(0.92);
}

.mfp-zoom-in.mfp-removing.mfp-bg,
.mfp-zoom-in.mfp-removing .mfp-preloader {
  opacity: 0;
}

.placeholder-image {
  width: 100%;
  background-color: #efefef;
}

.error {
  padding: 0.5em 1em;
  margin-bottom: 0;
  border: 1px solid #efefef;
}

.tailor-notification {
  padding: 0.5em 1em;
  margin-bottom: 0;
  border: 1px solid #efefef;
}

.tailor-notification--success, .tailor-notification--warning, .tailor-notification--error {
  border-left-width: 2px;
}

.tailor-notification--success {
  border-left-color: #7ad03a;
}

.tailor-notification--warning {
  border-left-color: #ffba00;
}

.tailor-notification--error {
  border-left-color: #dd3d36;
}

.tailor-icon,
.tailor-editor .tailor-icon {
  line-height: 1.4;
}

.lede {
  font-size: 1.125em;
  letter-spacing: .5px;
  font-weight: 600;
}

.dropcap:first-child:first-letter {
  float: left;
  display: block;
  font-style: normal;
  font-size: 5.5em;
  line-height: 1;
  margin: -.12em .08em -.12em -0.05em;
}

.pullquote {
  display: block;
  float: left;
  padding: 1.5em;
  margin: 0 1.5em 0 0;
  width: 20.5em;
  background: #fdfdfd;
}

.pullquote--right {
  float: right;
  margin: 0 0 0 1.5em;
}

.pullquote p:last-child {
  margin-bottom: 0;
}

.u-text-left {
  text-align: left;
}

.u-text-center {
  text-align: center;
}

.u-text-right {
  text-align: right;
}

.u-text-justify {
  text-align: justify;
}

.u-align-top {
  justify-content: flex-start;
}

.u-align-middle {
  justify-content: center;
}

.u-align-bottom {
  justify-content: flex-end;
}

@media only screen and (min-width: 321px) and (max-width: 720px) {
  .u-text-left-tablet {
    text-align: left;
  }
  .u-text-center-tablet {
    text-align: center;
  }
  .u-text-right-tablet {
    text-align: right;
  }
  .u-text-justify-tablet {
    text-align: justify;
  }
  .u-align-top-tablet {
    justify-content: flex-start;
  }
  .u-align-middle-tablet {
    justify-content: center;
  }
  .u-align-bottom-tablet {
    justify-content: flex-end;
  }
}

@media only screen and (max-width: 320px) {
  .u-text-left-mobile {
    text-align: left;
  }
  .u-text-center-mobile {
    text-align: center;
  }
  .u-text-right-mobile {
    text-align: right;
  }
  .u-text-justify-mobile {
    text-align: justify;
  }
  .u-align-top-mobile {
    justify-content: flex-start;
  }
  .u-align-middle-mobile {
    justify-content: center;
  }
  .u-align-bottom-mobile {
    justify-content: flex-end;
  }
}

.u-full-width {
  width: 100vw;
  margin-left: calc( 50% - 50vw);
  margin-right: calc( 50% - 50vw);
}

@media only screen and (max-width: 320px) {
  .elementor:not(.is-canvas) .u-hidden-mobile {
    display: none !important;
  }
}

@media only screen and (min-width: 321px) and (max-width: 720px) {
  .elementor:not(.is-canvas) .u-hidden-tablet {
    display: none !important;
  }
}

@media only screen and (min-width: 721px) {
  .elementor:not(.is-canvas) .u-hidden-desktop {
    display: none !important;
  }
}

.screen-reader-text {
  position: absolute;
  margin: -1px;
  padding: 0;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
  word-wrap: normal !important;
}

.not-a-button {
  background: 0 0;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-border-radius: 0;
  border-radius: 0;
  outline: 0;
  padding: 0;
  margin: 0;
}

.is-hidden {
  display: none !important;
}

/*# sourceMappingURL=frontend.css.map */

#elementor video {
  background: transparent;
}

.gal-tailor {
  text-align: center;
}

.circles-tailor {
    display: flex;
    padding: 0 40%;
    margin-top: 5px;
}

.circles-tailor .circle {
    border-radius: 25px;
    background-color: rgba(85,177,216,0.85);
    width: 15px;
    height: 15px;
    margin: 0 auto;
    cursor: pointer;
}