/* Vars */

:root {
  --primary-color: #000;
  --red-color: #f00;
  --red-color-hover: #eb1111;
  --blue-color: #0095ff;
  --blue-color-hover: #0d80d3;
  --yellow-color: #ffc900;
  --yellow-color-hover: #f1bf03;
  --orange-color: #ffb400;
  --green-color: #00ff00;
  --green-color-hover: #09e709;
  --light-gray-color: #f0f0f0;
  --purple-color: #a39edc;

  --primary-shadow: 0 3px 10px .3px rgba(0, 0, 0, 0.15);
  --secondary-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.15);
  --text-shadow-black: 0 4px 2px rgba(0, 0, 0, 0.07);

  --base-font-size: 16px;
  --base-line-height: 1.6;

  --gutter: 15px;

  --base-transition: .3s;
}

/* END Vars */


/* Base */

body {
  font-size: var(--base-font-size);
  line-height: var(--base-line-height);
  color: var(--primary-color);
}

/* END Base */


/* Typography */

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

h1 {
  font-size: 36px;
}

@media (max-width: 991px) {
  h1 {
    font-size: 30px;
  }
}

h2 {
  font-size: 32px;
}

@media (max-width: 991px) {
  h2 {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  h2 {
    font-size: 26px;
  }
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 18px;
}

a {
  transition: none;
}

a:hover {
  color: var(--blue-color);
}

b,
strong {
  font-weight: 700;
}

.highlight {
  position: relative;
  z-index: 0;
  display: inline-block;
}

.highlight::before {
  content: '';
  position: absolute;
  left: -4px;
  right: -4px;
  top: 0;
  bottom: 0;
  z-index: -1;
  background-color: var(--yellow-color);
}

.checked-list {
  margin-left: 0;
  margin-top: 0;
  list-style: none;
}

.checked-list li::before {
  content: '\2713';
  margin-right: 6px;
  font-weight: 700;
}

.dashed-list {
  margin-left: 0;
  list-style: none;
}

.dashed-list li::before {
  content: '-';
  margin-right: 6px;
}

.white-color {
  color: #fff !important;
}

.red-color {
  color: var(--red-color) !important;
}

.yellow-color {
  color: var(--yellow-color) !important;
}

.green-color {
  color: var(--green-color) !important;
}

.blue-color {
  color: var(--blue-color) !important;
}

.text-left {
  text-align: left !important;
}

.text-center {
  text-align: center !important;
}

.text-small {
  font-size: 80% !important;
}

.text-shadow-black {
  text-shadow: 0 4px 2px rgba(0, 0, 0, 0.07) !important;
}

.text-shadow-white {
  text-shadow: 0 4px 2px rgba(255, 255, 255, 0.07) !important;
}

.iframe-video {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  box-shadow: var(--primary-shadow);
}

.iframe-video iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

/* END Typography */


/* Buttons */

.b-btn {
  padding: 14px 50px;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  color: #fff;
  border-radius: 0;
  text-shadow: 0 7px 4.85px rgba(0, 0, 0, 0.07);
  box-shadow: 0 7px 4.85px 0.15px rgba(0, 0, 0, 0.07);
  transition: background-color var(--base-transition);
}

@media (max-width: 767px) {
  .b-btn {
    padding: 12px 30px;
    font-size: 18px;
  }
}

.b-btn:hover {
  color: #fff;
}

.b-btn-red {
  background-color: var(--red-color);
}

.b-btn-red:hover {
  background-color: var(--red-color-hover);
}

.b-btn-blue {
  background-color: var(--blue-color);
}

.b-btn-blue:hover {
  background-color: var(--blue-color-hover);
}

.b-btn-yellow {
  background-color: var(--yellow-color);
}

.b-btn-yellow:hover {
  background-color: var(--yellow-color-hover);
}

.b-btn-green {
  background-color: var(--green-color);
}

.b-btn-green:hover {
  background-color: var(--green-color-hover);
}

.scroll-to-btn {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 56px;
  cursor: pointer;
  user-select: none;
}

.scroll-to-btn::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 44px 56px 44px;
  border-color: transparent transparent #fff transparent;
}

.scroll-to-btn::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 14px;
  background: url(../images/icons/icon-arrow-down-black.png) no-repeat center;
  background-size: contain;
}

/* END Buttons */


/* Tooltip */

.tooltip {
  position: relative;
  display: inline-block;
  font-size: var(--base-font-size);
  line-height: 1.4;
  text-transform: none;
}

@media (max-width: 767px) {
  .tooltip {
    position: static;
  }
}

.tooltip:hover .tooltip__text {
  opacity: 1;
  visibility: visible;
}

.tooltip__icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid currentColor;
  cursor: pointer;
}

.tooltip__text {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  padding: 10px 20px;
  margin-bottom: 15px;
  font-weight: 400;
  font-size: 14px;
  background-color: #fff;
  color: var(--primary-color);
  box-shadow: var(--primary-shadow);
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s;
}

.tooltip__text::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 9px 0 9px;
  border-color: #fff transparent transparent transparent;
}

@media (max-width: 767px) {
  .tooltip__text::after {
    display: none;
  }
}

.tooltip__text::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 20px;
}

/* END Tooltip */


/* Header */

#site-header {
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: none;
}

@media (max-width: 767px) {
  #site-header {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

@media (max-width: 1199px) {
  body #site-logo #site-logo-inner a img,
  body #site-header.center-header #site-navigation-wrap .middle-site-logo a img {
    max-width: 180px;
  }
}

/* END Header */


/* Main Nav */

#site-navigation-wrap .dropdown-menu > li > a {
  font-size: 14px;
  letter-spacing: 0;
  color: var(--primary-color);
}

#site-navigation-wrap .dropdown-menu > li > a:hover {
  color: var(--blue-color);
}

@media (max-width: 1199px) {
  #site-navigation-wrap .dropdown-menu > li > a {
    padding: 0 10px;
    font-size: 13px;
  }
}

@media (max-width: 1049px) {
  #site-navigation-wrap .dropdown-menu > li > a {
    padding: 0 6px;
    font-size: 13px;
  }
}

.dropdown-menu ul li a.menu-link {
  color: var(--primary-color);
}

/* END Main Nav */


/* Content */

.content-area {
  border-right: none;
}

/* END Content */


/* Sidebar */

.sidebar-container .widget-title {
  margin-bottom: 25px;
  padding-left: 0;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0;
  text-transform: none;
  border-left: none;
}

.sidebar-container .oceanwp-custom-links li {
  padding-top: 0;
  padding-bottom: 0;
}

.sidebar-container .oceanwp-custom-links li a {
  display: block;
  padding: 12px 8px;
  font-size: 14px;
  line-height: 1.3;
  border-bottom: 1px solid var(--light-gray-color);
}

.sidebar-container .oceanwp-custom-links li a:hover {
  margin-left: 0;
  background-color: var(--light-gray-color);
}

.sidebar-container .oceanwp-custom-links li a:hover::before {
  color: inherit;
}

.sidebar-container .oceanwp-custom-links li a::before {
  /* counter-increment: link; */
  /* content: counter(link)'.'; */
  display: none;
  margin-top: 0;
  margin-right: 4px;
  vertical-align: unset;
  color: inherit;
  font: inherit;
}

/* END Sidebar */


/** Home Page **/

/* Hero */

.hero {
  position: relative;
  color: #fff;
}

.hero--secondary {
  padding-top: 50px;
  padding-bottom: 50px;
}

.hero__row {
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  .hero--secondary .hero__row {
    display: block;
  }
}

.hero__img {
  align-self: flex-end;
  flex-shrink: 0;
  width: 40%;
}

@media (max-width: 767px) {
  .hero__img {
    display: none;
  }
}

.hero__img img {
  max-height: 500px;
}

.hero--secondary .hero__img {
  align-self: center;
}

@media (max-width: 767px) {
  .hero--secondary .hero__img {
    display: block;
    width: 100%;
    max-width: 380px;
    margin: 25px auto 30px;
  }

  .hero--secondary .hero__img img {
    display: block;
    max-height: 300px;
    margin-left: auto;
    margin-right: auto;
  }
}

.hero__content {
  min-width: 1px;
  flex-grow: 1;
  padding-top: 130px;
  padding-bottom: 130px;
  text-align: right;
}

@media (max-width: 1199px) {
  .hero__content {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

@media (max-width: 991px) {
  .hero__content {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media (max-width: 767px) {
  .hero__content {
    text-align: center;
    padding-top: 40px;
  }
}

.hero--secondary .hero__content {
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 30px;
}

@media (max-width: 767px) {
  .hero--secondary .hero__content {
    padding-right: 0;
  }
}

.hero__content--align-left {
  text-align: left;
}

@media (max-width: 767px) {
  .hero__content--align-left {
    text-align: center;
  }
}

.hero__title {
  margin-bottom: 10px;
  font-size: 36px;
  text-transform: uppercase;
  color: #fff;
}

@media (max-width: 991px) {
  .hero__title {
    font-size: 30px;
  }
}

.hero--secondary .hero__title {
  font-size: 44px;
}

@media (max-width: 991px) {
  .hero--secondary .hero__title {
    font-size: 38px;
  }
}

@media (max-width: 767px) {
  .hero--secondary .hero__title {
    font-size: 34px;
  }
}

.hero__subtitle {
  margin-bottom: 10px;
  font-size: 28px;
  text-transform: uppercase;
  color: #fff;
}

@media (max-width: 767px) {
  .hero__subtitle {
    font-size: 24px;
  }
}

.hero__desc {
  margin-bottom: 30px;
  font-size: 17px;
  line-height: 1.4;
  letter-spacing: .5px;
}

/* END Hero */


/* Section */

.section {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #fff;
  background-repeat: no-repeat;
}

@media (max-width: 991px) {
  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .section {
    padding-top: 40px;
    padding-bottom: 40px;
    background-image: none !important;
  }
}

.section__header {
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 45px;
  text-align: center;
}

@media (max-width: 991px) {
  .section__header {
    max-width: 100%;
  }
}

.section__title {
  margin-bottom: 0;
  font-size: 32px;
  text-transform: uppercase;
  color: inherit;
}

@media (max-width: 991px) {
  .section__title {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .section__title {
    font-size: 24px;
  }
}

.section__desc {
  margin-top: 15px;
  font-size: 17px;
  line-height: 1.4;
  letter-spacing: .5px;
}

@media (max-width: 767px) {
  .section__desc {
    font-size: 16px;
  }
}

/* END Section */


/* Cards */

.cards {
  color: var(--primary-color);
}

.cards__row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.cards__col {
  flex-shrink: 0;
  width: 33.3333%;
  margin-bottom: 35px;
  padding-left: 15px;
  padding-right: 15px;
}

@media (max-width: 1199px) {
  .cards__col {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .cards__col {
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
}

.cards__item {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 40px 35px 60px;
  text-align: center;
  background-color: #fff;
  box-shadow: 0 3px 10px 0.3px rgba(0, 0, 0, 0.15);
}

@media (max-width: 1199px) {
  .cards__item {
    transition: none;
  }
}

@media (max-width: 767px) {
  .cards__item {
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 40px;
  }
}

.cards__item--border-top-blue {
  border-top: 3px solid var(--blue-color);
}

.cards__item--border-top-green {
  border-top: 3px solid var(--green-color);
}

.cards__item--border-top-yellow {
  border-top: 3px solid var(--yellow-color);
}

.cards__item-icon {
  width: 140px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 25px;
}

.cards__item-icon img {
  display: block;
}

.cards__item-title {
  position: relative;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.1;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .cards__item-title {
    font-size: 28px;
  }
}

.cards__item-title--red {
  color: var(--red-color);
}

.cards__item-title--yellow {
  color: var(--yellow-color);
}

.cards__item-title--green {
  color: var(--green-color);
}

.cards__item-title--blue {
  color: var(--blue-color);
}

.cards__item-desc {
  flex-grow: 1;
}

.cards__item-btn {
  display: block;
  padding-left: 0;
  padding-right: 0;
  margin-top: 25px;
}

.cards__item .tooltip {
  vertical-align: 4px;
}

@media (max-width: 991px) {
  .cards__item .tooltip {
    vertical-align: 3px;
  }
}

/* END Cards */


/* CTA */

.cta__row {
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  .cta__row {
    display: block;
  }
}

.cta__img {
  flex-shrink: 0;
  width: 40%;
}

@media (max-width: 767px) {
  .cta__img {
    width: 90%;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 35px;
  }
}

.cta__img img {
  display: block;
}

.cta__text {
  min-width: 1px;
  flex-grow: 1;
  padding-left: 30px;
}

@media (max-width: 767px) {
  .cta__text {
    padding-left: 0;
    text-align: center;
  }
}

.cta__title {
  margin-bottom: 30px;
  font-size: 36px;
  line-height: 1.1;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .cta__title {
    font-size: 32px;
  }
}

@media (max-width: 767px) {
  .cta__title {
    margin-bottom: 20px;
    font-size: 30px;
  }
}

.cta__desc {
  margin-bottom: 35px;
}

/* END CTA */


/* Features */

.features__row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.features__col {
  flex-shrink: 0;
  width: 33.3333%;
  margin-bottom: 35px;
  padding-left: 15px;
  padding-right: 15px;
}

@media (max-width: 1199px) {
  .features__col {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .features__col {
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
}

.features__item {
  position: relative;
  padding: 20px;
  text-align: center;
}

@media (max-width: 1199px) {
  .features__item {
    transition: none;
  }
}

@media (max-width: 767px) {
  .features__item {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }
}

.features__item-icon {
  height: 100px;
  margin-bottom: 25px;
}

.features__item-icon img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-height: 100%;
}

.features__item-title {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.2;
  text-transform: uppercase;
}

.features__item-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 2px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 15px;
  background-color: currentColor;
}

.features__item-desc {
  text-align: left;
}

/* END Features */


/* Reviews */

.reviews {
  max-width: 960px;
  padding: 30px;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  box-shadow: var(--primary-shadow);
}

.reviews__item-text {
  position: relative;
  padding-left: 50px;
  padding-top: 10px;
  font-style: italic;
}

@media (max-width: 767px) {
  .reviews__item-text {
    padding-left: 0;
    padding-top: 50px;
  }
}

.reviews__item-text::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  background: url(../images/icons/icon-quote-blue.svg) no-repeat center;
  background-size: contain;
}

.reviews__item-author {
  margin-top: 30px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

/* END Reviews */


/* Text Section */

.text-section {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.text-section h3 {
  font-size: 24px;
}

.text-section h3:not(:first-child) {
  margin-top: 35px;
}

/* END Text Section */


/* Videos */

.videos {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 60px;
  padding-right: 60px;
}

@media (max-width: 767px) {
  .videos {
    padding-left: 0;
    padding-right: 0;
  }
}

.videos .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 90px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-color: transparent !important;
}

@media (max-width: 767px) {
  .videos .slick-arrow {
    display: none !important;
  }
}

.videos .slick-prev {
  left: 0;
  background-image: url(../images/icons/icon-angle-left-white.png);
}

.videos .slick-next {
  right: 0;
  background-image: url(../images/icons/icon-angle-right-white.png);
}

.videos .slick-dots {
  display: none !important;
}

@media (max-width: 767px) {
  .videos .slick-dots {
    display: block !important;
  }
}

.videos__item .iframe-wrap {
  position: relative;
  padding-bottom: 56.25%;
}

.videos__item iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* END Videos */


/* Footer CTA */

.footer-cta {
  background-image: url(../images/english-bg.png);
  background-repeat: no-repeat;
  background-position: center top 15px;
  background-size: 750px;
}

.footer-cta .section__title {
  font-size: 36px;
  color: #fff;
}

@media (max-width: 767px) {
  .footer-cta .section__title {
    font-size: 30px;
  }
}

.footer-cta__content {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.footer-cta__buttons {
  padding-top: 30px;
  text-align: center;
}

@media (max-width: 767px) {
  .footer-cta__buttons {
    display: table;
    padding-top: 0;
    margin-left: auto;
    margin-right: auto;
  }
}

.footer-cta__buttons .b-btn {
  margin-left: 15px;
  margin-right: 15px;
}

@media (max-width: 767px) {
  .footer-cta__buttons .b-btn {
    display: table;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 20px;
  }
}

/* END Footer CTA */

/** END Home Page **/


/** Module Template **/

.lessons h2 {
  margin-bottom: 30px;
  text-transform: uppercase;
  text-align: center;
}

.lessons__row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.lessons__col {
  flex-shrink: 0;
  width: 33.3333%;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .lessons__col {
    width: 50%;
  }
}

@media (max-width: 575px) {
  .lessons__col {
    width: 100%;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
}

.lessons__link {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100px;
  padding: 20px;
  font-weight: 700;
  text-align: center;
  box-shadow: var(--secondary-shadow);
}

.lessons__link:hover {
  background-color: #fbfbfb;
}

.lessons__link::before {
  content: '';
  display: block;
  width: 80px;
  height: 80px;
  margin: auto;
  background: url(../images/icons/icon-blackboard-black.svg) no-repeat center;
  background-size: contain;
  margin-bottom: 20px;
}

/** END Module Template **/


/** Lesson Template **/

.page-template-lesson .page-header {
  background-color: var(--orange-color);
}

.page-template-lesson .page-header-title {
  font-weight: 700;
  font-size: 36px;
  line-height: 1.2;
  text-align: center;
  color: #fff;
  text-shadow: var(--text-shadow-black);
}

@media (max-width: 991px) {
  .page-template-lesson .page-header-title {
    font-size: 28px;
  }
}

.su-spoiler.su-spoiler-style-default {
  background-color: #fff;
  box-shadow: var(--secondary-shadow);
}

.su-spoiler.su-spoiler-style-default > .su-spoiler-title {
  position: relative;
  padding: 15px 40px 15px 15px;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  /* text-transform: uppercase; */
  background-color: #fff;
  color: var(--primary-color);
}

@media (max-width: 767px) {
  .su-spoiler.su-spoiler-style-default > .su-spoiler-title {
    font-size: 20px;
  }
}

.su-spoiler.su-spoiler-style-default > .su-spoiler-title > .su-spoiler-icon {
  position: absolute;
  top: 19px;
  right: 15px;
  left: auto;
}

@media (max-width: 767px) {
  .su-spoiler.su-spoiler-style-default > .su-spoiler-title > .su-spoiler-icon {
    top: 17px;
  }
}

.su-spoiler.su-spoiler-style-default > .su-spoiler-content {
  padding: 25px;
}

@media (max-width: 767px) {
  .su-spoiler.su-spoiler-style-default > .su-spoiler-content {
    padding: 25px 15px 15px;
  }
}

/** END Lesson Template **/


/** Auth Pages **/

body.tml-action .site-main {
  min-height: 600px;
  background-image: url(../images/girl-4.png);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: auto 540px;
  background-color: var(--purple-color);
}

@media (max-width: 767px) {
  body.tml-action .site-main {
    min-height: 1px;
    background-size: auto 240px;
    /* background-image: none; */
  }
}

body.tml-action .page-header {
  padding-top: 90px;
  padding-bottom: 0;
  background-color: transparent;
}

@media (max-width: 991px) {
  body.tml-action .page-header {
    padding-top: 50px;
  }
}

body.tml-action .page-header-title {
  font-weight: 700;
  font-size: 36px;
  text-transform: uppercase;
  color: #fff;
  text-shadow: var(--text-shadow-black);
}

@media (max-width: 991px) {
  body.tml-action .page-header-title {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  body.tml-action #main #content-wrap {
    padding-top: 30px;
  }
}

body.tml-action .site-content {
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
}

.tml .tml-field-wrap {
  margin-bottom: 1.5em;
}

.tml .tml-rememberme-wrap {
  text-align: center;
}

.tml form input:not([type="checkbox"]) {
  height: 50px;
  font-size: 16px;
  color: var(--primary-color);
  background-color: #fff;
  box-shadow: var(--primary-shadow);
  border: none;
  border-radius: 0;
}

.tml form input:focus {
  color: var(--primary-color);
  border: none;
}

input[type=checkbox]:checked:before {
  color: var(--primary-color);
}

body .tml .tml-action-confirmaction .success,
body .tml .tml-error,
body .tml .tml-message,
body .tml .tml-success {
  background-color: #fff;
  color: var(--primary-color);
}

.tml p {
  text-align: center;
}

.tml .tml-submit-wrap {
  padding-top: 25px;
  text-align: center;
}

.tml .tml-button {
  min-width: 180px;
  padding: 14px 30px;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #fff;
  border-radius: 0;
  text-shadow: 0 7px 4.85px rgba(0, 0, 0, 0.07);
  box-shadow: 0 7px 4.85px 0.15px rgba(0, 0, 0, 0.07);
  background-color: var(--red-color);
  transition: background-color var(--base-transition);
}

.tml .tml-button:hover {
  background-color: var(--red-color-hover);
}

.tml .tml-links {
  margin-left: 0;
  list-style: none;
  text-align: center;
}

.tml .tml-links a {
  color: #fff;
}

.tml .tml-links a:hover {
  text-decoration: underline;
}

/** END Auth Pages **/


/** Template Contact **/

.page-template-contact .site-main {
  min-height: 600px;
  background-image: url(../images/girl-5.png);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: auto 540px;
  background-color: #E1DCE5;
}

@media (max-width: 767px) {
  .page-template-contact .site-main {
    min-height: 1px;
    background-image: none;
  }
}

.page-template-contact .page-header {
  padding-top: 90px;
  padding-bottom: 0;
  background-color: transparent;
}

@media (max-width: 991px) {
  .page-template-contact .page-header {
    padding-top: 50px;
  }
}

.page-template-contact .page-header-title {
  font-weight: 700;
  font-size: 36px;
  text-transform: uppercase;
  color: var(--primary-color);
}

@media (max-width: 991px) {
  .page-template-contact .page-header-title {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .page-template-contact #main #content-wrap {
    padding-top: 30px;
  }
}

.page-template-contact .site-content {
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
}

.page-template-contact .wpcf7-form > p {
  margin-bottom: 1.5em;
}

.page-template-contact .wpcf7-form input:not([type="checkbox"]):not([type="submit"]),
.page-template-contact .wpcf7-form textarea {
  height: 50px;
  font-size: 16px;
  color: var(--primary-color);
  background-color: #fff;
  box-shadow: var(--primary-shadow);
  border: none;
  border-radius: 0;
}

.page-template-contact .wpcf7-form textarea {
  height: 200px;
}

.page-template-contact .wpcf7-form input:not([type="checkbox"]):not([type="submit"]):focus {
  color: var(--primary-color);
  border: none;
}

.page-template-contact .wpcf7-form-control-wrap {
  display: block;
  margin-top: 8px;
}

.page-template-contact .wpcf7-form label {
  display: block;
  color: var(--primary-color);
}

.page-template-contact .wpcf7-submit {
  min-width: 180px;
  padding: 14px 30px;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #fff;
  border-radius: 0;
  text-shadow: 0 7px 4.85px rgba(0, 0, 0, 0.07);
  box-shadow: 0 7px 4.85px 0.15px rgba(0, 0, 0, 0.07);
  background-color: var(--red-color);
  transition: background-color var(--base-transition);
}

.page-template-contact .wpcf7-submit:hover,
.page-template-contact .wpcf7-submit:focus {
  background-color: var(--red-color-hover);
}

.page-template-contact .wpcf7-form .wpcf7-response-output {
  color: var(--primary-color);
}

/** END Template Contact **/


/** Search Page **/

.search-results .site-breadcrumbs {
  display: none;
}

.search-results .page-header-title {
  font-weight: 700;
}

.search-results article .search-entry-title {
  text-transform: uppercase;
}

/** END Search Page **/


/** 404 **/

.error404 .site-main {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #36B336;
  color: #fff;
}

@media (max-width: 991px) {
  .error404 .site-main {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media (max-width: 767px) {
  .error404 .site-main {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.error404 .page-header {
  padding: 0;
  background-color: transparent;
}

.error404 .page-header-title {
  margin-bottom: 25px;
  font-weight: 700;
  font-size: 56px;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  text-shadow: var(--text-shadow-black);
}

@media (max-width: 767px) {
  .error404 .page-header-title {
    font-size: 36px;
  }
}

.error404 .site-breadcrumbs {
  display: none;
}

.error404 #main #content-wrap {
  padding: 0;
}

.error404 .error404-content .error-title {
  font-size: 32px;
  text-transform: uppercase;
  color: #fff;
  text-shadow: var(--text-shadow-black);
}

@media (max-width: 767px) {
  .error404 .error404-content .error-title {
    font-size: 24px;
  }
}

.error404 .error404-content .error-text {
  font-weight: 400;
}

.error404 .error404-content input[type="search"] {
  height: 50px;
  font-size: 16px;
  color: var(--primary-color);
  background-color: #fff;
  box-shadow: var(--primary-shadow);
  border: none;
  border-radius: 0;
}

.error404 .error404-content .error-btn {
  padding: 15px 50px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0;
  color: #fff;
  border-radius: 0;
  text-shadow: 0 7px 4.85px rgba(0, 0, 0, 0.07);
  box-shadow: 0 7px 4.85px 0.15px rgba(0, 0, 0, 0.07);
  background-color: var(--red-color);
  transition: background-color var(--base-transition);
}

@media (max-width: 767px) {
  .error404 .error404-content .error-btn {
    padding: 14px 24px;
    font-size: 18px;
  }
}

.error404 .error404-content .error-btn:hover {
  background-color: var(--red-color-hover);
}

/** END 404 **/


/* Quiz */

.b-quiz {
	margin-top: 24px;
	margin-bottom: 24px;
	padding: 8px 15px;
	border: 1px solid #dee2e6;
}

.b-quiz__title {
	margin-bottom: 10px;
	padding: 16px;
	text-align: center;
	color: #343a40;
	background-color: #f8f9fa;
}

.b-quiz__grid-row {
	display: flex;
	margin-right: -5px;
  margin-left: -5px;
  margin-bottom: 10px;
}

@media (max-width: 767px) {

  .b-quiz__grid-row {
    margin-left: -2px;
    margin-right: -2px;
    margin-bottom: 4px;
  }

}

.b-quiz__grid-item {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
  min-height: 40px;
  margin-left: 5px;
  margin-right: 5px;
  padding-left: 5px;
  padding-right: 5px;
  overflow: hidden;
}

@media (max-width: 767px) {

  .b-quiz__grid-item {
    font-size: 12px;
    padding-left: 2px;
    padding-right: 2px;
    margin-left: 2px;
    margin-right: 2px;
  }

}

@media (max-width: 479px) {

  .b-quiz__grid-item {
    font-size: 10px;
  }

}

@media (max-width: 379px) {

  .b-quiz__grid-item {
    font-size: 9px;
  }

}

.b-quiz__progress-wrap {
  display: flex;
  align-items: center;
  padding-top: 10px;
}

.b-quiz__hint-btn {
  flex-shrink: 0;
  margin-right: 15px;
  font-size: 13px;
  padding: 6px 10px;
}

@media (max-width: 767px) {

  .b-quiz__hint-btn {
    padding-left: 8px;
    padding-right: 8px;
    margin-right: 8px;
    font-size: 12px;
  }

}

.b-quiz__progress-line {
  flex-grow: 1;
  min-width: 1px;
}

/* END Quiz */


/* Footer */

#footer-widgets .footer-box .widget-title {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0;
  border: none;
  padding-left: 0;
  text-transform: none;
}

body .site-footer .widget_nav_menu li:first-child {
  border-top: none;
}

body .site-footer .widget_nav_menu li {
  border-bottom: none;
}

#footer-widgets .footer-box a {
  font-size: 14px;
}

/* END Footer */


/** Libs **/

/* Slick */

body .slick-dots {
  left: 0;
  bottom: -50px;
}

body .slick-dots li {
  width: 28px;
  height: 6px;
  background-color: var(--light-gray-color);
  transition: background-color var(--base-transition);
  cursor: pointer;
}

body .slick-dots li.slick-active {
  background-color: var(--blue-color);
}

body .slick-dots li button {
  display: none;
}

/* END Slick */

/** END Libs **/