@charset "UTF-8";
/*----------------------------------------*/
/* Template default CSS
/*----------------------------------------*/
html, body {
  height: 100%;
  font-family: "Roboto", sans-serif;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  background: none;
}

h1, h2, h3, h4, h5 {
  margin: 0;
  color: #111111;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
}

h1 {
  font-size: 50px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 18px;
}

p {
  font-size: 18px;
  color: #858585;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 28px;
  margin: 0 0 8px 0;
}
p.perex {
  color: #9bb70d;
  font-family: "Oswald", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 150%;
  margin-bottom: 2rem;
}
p > a {
  text-decoration: underline;
}

img {
  margin-top: 0.25rem;
  max-width: 100%;
}

input:focus, select:focus, button:focus, textarea:focus {
  outline: none;
}

a {
  color: #9bb70d;
}
a:hover, a:focus {
  color: unset;
  outline: none;
  text-decoration: unset;
}

ul {
  padding: 0;
  margin: 0;
}

[class^=flaticon-]:before, [class*=" flaticon-"]:before, [class^=flaticon-]:after, [class*=" flaticon-"]:after {
  font-family: Flaticon;
  font-size: 60px;
  font-style: normal;
}

.hidden {
  display: none !important;
}

section.background {
  background-color: #F3F4FF;
  padding-top: 5rem;
}
section.dark {
  background-color: #4c4c4c;
}
section.dark .about-text h2, section.dark .about-text h3, section.dark .about-text p {
  color: white;
}

.read-more-expand {
  display: none;
  background-color: #4c4c4c;
  border-radius: 4px;
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 1rem;
  padding: 0.25rem 1.5rem 0.25rem 2.5rem;
  position: relative;
}
.read-more-expand:visited {
  color: white;
}
.read-more-expand::before {
  content: "";
  font-family: "FontAwesome";
  font-size: 1rem;
  color: #9bb70d;
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.read-more.desktop {
  display: none;
}
.read-more.hide + .read-more-expand {
  margin-top: 0.5rem;
}
.read-more.expanded + .read-more-expand {
  display: none;
}
.read-more.desktop + .read-more-expand {
  display: inline-block;
}

.flex-perex {
  display: flex;
}
@media only screen and (max-width: 992px) {
  .flex-perex {
    flex-direction: column;
  }
}

/*---------------------
  Helper CSS
-----------------------*/
.section-title {
  margin-bottom: 76px;
}
.section-title h1, .section-title h2 {
  color: #081624;
  font-size: 48px;
  font-weight: 500;
  line-height: 120%;
  position: relative;
}
.section-title h1::after, .section-title h2::after {
  position: absolute;
  left: 0;
  top: -30px;
  width: 52px;
  height: 7px;
  background: #9bb70d;
  content: "";
  right: 0;
  margin: 0 auto;
}

.set-bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}

.spad {
  padding-top: 80px;
  padding-bottom: 50px;
  /*    + .spad {
          padding-top: 0;
      }*/
}

.tpad {
  padding-top: 50px;
}
.tpad .about-text {
  margin-bottom: 0;
}

.bpad {
  padding-bottom: 50px;
}

.about-img.family {
  margin: -3rem 0 -1rem 0;
}

/* buttons */
.primary-btn {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  padding: 22px 55px;
  color: #ffffff;
  background: #9bb70d;
  letter-spacing: 0.5px;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  transition: background-color 0.5s;
}
.primary-btn:hover {
  background-color: rgba(155, 183, 13, 0.7);
}

.submit-btn {
  color: #ffffff;
  background: #9bb70d;
  font-size: 14px;
  font-weight: 400;
  border: none;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.5s;
}
.submit-btn:hover {
  background-color: rgba(155, 183, 13, 0.7);
}

/* Preloder */
#preloder {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999999;
  background: #000;
}

.loader {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -13px;
  margin-left: -13px;
  border-radius: 60px;
  animation: loader 0.8s linear infinite;
  -webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    border: 4px solid #f44336;
    border-left-color: transparent;
  }
  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    border: 4px solid #673ab7;
    border-left-color: transparent;
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    border: 4px solid #f44336;
    border-left-color: transparent;
  }
}
.element {
  margin-bottom: 100px;
}
.element:last-child {
  margin-bottom: 0;
}

/*---------------------
  Header
-----------------------*/
.header-section {
  background-color: #4c4c4c;
}

.inner-header {
  position: relative;
}
.inner-header .logo {
  width: 100%;
  text-align: center;
}
.inner-header .logo a {
  display: block;
  width: 100%;
}
.inner-header .logo img {
  max-height: 5rem;
  margin: 0 auto;
}
.inner-header .main-menu {
  float: right;
  margin-right: -15px;
}
.inner-header .main-menu ul li {
  list-style: none;
  display: inline-block;
}
.inner-header .main-menu ul li:not(:last-child) {
  margin-left: 30px;
}
.inner-header .main-menu ul li a {
  font-size: 15px;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  color: white;
  text-transform: uppercase;
  padding: 36px 20px;
  position: relative;
  z-index: 1;
}
.inner-header .main-menu ul li a.active {
  background: #9bb70d;
  color: #ffffff;
}
.inner-header .main-menu ul li a:after {
  position: absolute;
  left: 21px;
  top: 25px;
  width: 24px;
  height: 7px;
  background: #9bb70d;
  content: "";
}
.inner-header .main-menu ul li.phone-num {
  background: #F3F4FF;
  padding: 31px 54px 29px 54px;
}
.inner-header .main-menu ul li.phone-num i {
  height: 34px;
  width: 34px;
  background: #9bb70d;
  color: #ffffff;
  display: inline-block;
  text-align: center;
  line-height: 34px;
  border-radius: 50%;
  margin-right: 11px;
}
.inner-header .main-menu ul li.phone-num span {
  font-size: 15px;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  color: #081624;
}
.inner-header .main-menu ul li.search-btn {
  font-size: 22px;
  padding: 30px 35px 31px 35px;
  background: #9bb70d;
  color: #ffffff;
  cursor: pointer;
  margin-right: 0;
}

/*---------------------
  Hero Slider
-----------------------*/
.hero-slider > .container {
  max-width: unset;
  padding: 0;
}
.hero-slider > .container > .row {
  display: block;
  margin: 0;
  padding: 0;
}

.single-hero-item {
  height: 703px;
  padding-top: 220px;
}

.hero-text h1 {
  font-size: 90px;
  color: #ffffff;
  font-weight: 700;
  position: relative;
  opacity: 0;
  top: 50px;
}
.hero-text p {
  color: #ffffff;
  margin-bottom: 30px;
  position: relative;
  opacity: 0;
  top: 50px;
}
.hero-text .primary-btn {
  position: relative;
  opacity: 0;
  top: 50px;
}

.hero-items .owl-nav button[type=button] {
  width: 84px;
  height: 84px;
  background: #081624;
  color: #fff;
  font-size: 30px;
  position: absolute;
  left: 30px;
  top: 50%;
  -webkit-transform: translateY(-50px);
  transform: translateY(-50px);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.hero-items .owl-nav button[type=button]:hover {
  background: #9bb70d;
}
.hero-items .owl-nav button[type=button].owl-next {
  left: auto;
  right: 30px;
}
.hero-items .owl-item.active .hero-text h1, .hero-items .owl-item.active .hero-text p, .hero-items .owl-item.active .hero-text .primary-btn {
  top: 0;
  opacity: 1;
}
.hero-items .owl-item.active .hero-text h1 {
  -webkit-transition: all 0.5s ease 0.2s;
  transition: all 0.5s ease 0.2s;
}
.hero-items .owl-item.active .hero-text p {
  -webkit-transition: all 0.5s ease 0.4s;
  transition: all 0.5s ease 0.4s;
}
.hero-items .owl-item.active .hero-text .primary-btn {
  -webkit-transition: all 0.5s ease 0.6s;
  transition: all 0.5s ease 0.6s;
}

/*---------------------
  Hero Section
-----------------------*/
.hero-section {
  height: 239px;
}
.hero-section .hero-text {
  padding-top: 174px;
}
.hero-section .hero-text h1 {
  font-size: 72px;
  line-height: 93%;
  font-weight: 700;
}

.hero-slider .hero-text h1 {
  color: #9bb70d;
  text-shadow: rgba(0, 0, 0, 0.75) 1.95px 1.95px 2.6px;
}
.hero-slider .hero-text p {
  font-size: 1.3rem;
  margin-top: 1rem;
  text-shadow: rgba(0, 0, 0, 0.75) 1.95px 1.95px 2.6px;
}

/*---------------------
  Footer
-----------------------*/
.footer-section {
  background: #081624;
  padding-top: 35px;
  padding-bottom: 30px;
  padding-left: 40px;
  padding-right: 40px;
}
.footer-section .reserved {
  float: left;
  font-family: "Oswald", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  opacity: 0.37;
}
.footer-section .social-links {
  float: right;
}
.footer-section .social-links a {
  display: inline-block;
  margin-left: 36px;
  color: #ffffff;
  position: relative;
  z-index: 1;
}
.footer-section .social-links a:hover:after {
  opacity: 1;
}
.footer-section .social-links a:after {
  position: absolute;
  left: -18px;
  top: -12px;
  height: 48px;
  width: 48px;
  border-radius: 50%;
  background: #9bb70d;
  content: "";
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: -1;
  opacity: 0;
}

.textarea {
  min-height: calc(100vh - 9.95rem);
}

/*---------------------
  Class Booking
-----------------------*/
.booking-heading {
  background: #9bb70d;
  padding: 75px 0 59px 220px;
  height: 280px;
  margin-left: -15px;
  margin-right: -15px;
}
.booking-heading .booking-inner-text h2 {
  font-size: 48px;
  color: #ffffff;
  margin-bottom: 6px;
}
.booking-heading .booking-inner-text p {
  color: #ffffff;
}

.booking-form {
  padding-right: 30px;
  padding-top: 71px;
  padding-bottom: 20px;
  margin-left: -15px;
  margin-right: -15px;
  padding-left: 30px;
  background: #F3F4FF;
  height: 265px;
}
.booking-form input {
  width: 100%;
  height: 48px;
  border: none;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 30px;
}
.booking-form input:not(.submit-btn) {
  padding-left: 25px;
}
.booking-form input::-webkit-input-placeholder, .booking-form input::-moz-placeholder, .booking-form input:-ms-input-placeholder, .booking-form input::-ms-input-placeholder, .booking-form input::placeholder {
  color: #858585;
}

/*---------------------
  Services Section
-----------------------*/
.services-section {
  padding-top: 0rem;
  padding-bottom: 3rem;
}
.services-section .section-title p {
  margin-top: 17px;
}
.services-section .single-services {
  background: #9bb70d;
  display: block;
  text-align: center;
  color: #ffffff;
  padding-top: 22px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  transition: background-color 0.5s;
}
.services-section .single-services i {
  display: inline-block;
}
.services-section .single-services h4 {
  color: #ffffff;
  white-space: nowrap;
}
.services-section .single-services img {
  height: 6rem;
}
.services-section .single-services:hover {
  background-color: rgba(155, 183, 13, 0.7);
}
.services-section.lessons {
  margin-top: -1.5rem;
}
.services-section.lessons .lesson-item {
  width: calc(100% / 5);
}
.services-section.lessons .lesson-item .single-services {
  margin: 0.5rem;
}
@media only screen and (max-width: 992px) {
  .services-section.lessons .lesson-item {
    width: calc(100% / 3);
  }
}
@media only screen and (max-width: 768px) {
  .services-section.lessons .lesson-item {
    width: calc(100% / 2);
  }
}
@media only screen and (max-width: 576px) {
  .services-section.lessons .lesson-item .single-services {
    margin: 0.15rem;
  }
}

/*---------------------
  Services Section
-----------------------*/
.client-says {
  padding-top: 200px;
  padding-bottom: 195px;
}

.client-text h2 {
  font-size: 48px;
  color: #ffffff;
  line-height: 60px;
  margin-bottom: 45px;
}
.client-text h4 {
  color: #ffffff;
  line-height: 60px;
}
.client-text h4 span {
  color: #9bb70d;
}

/*---------------------
  Lifestyles Section
-----------------------*/
.lifestyle-section {
  padding-top: 150px;
  padding-bottom: 10px;
}

.lifestyle-text {
  margin-top: 88px;
}
.lifestyle-text .section-title h2 {
  margin-bottom: 47px;
}
.lifestyle-text .section-title h2:after {
  margin: 0;
}
.lifestyle-text .section-title p {
  margin-bottom: 52px;
}

/*---------------------
  Boxes Image
-----------------------*/
.boxes-item {
  margin-left: -15px;
  margin-right: -15px;
  height: 100%;
}
.boxes-item .boxes-pic {
  position: relative;
  height: 100%;
}
.boxes-item .boxes-pic img {
  width: 100%;
  height: 100%;
  position: relative;
}
.boxes-item .boxes-text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  line-height: 81%;
}
.boxes-item .boxes-text h1 {
  display: inline-table;
  color: #fff;
  line-height: 90%;
  font-size: 110px;
}

/*---------------------
  Call To Action
-----------------------*/
.callto-section {
  background: #9bb70d;
  padding-top: 65px;
  padding-bottom: 52px;
}

.callto-text h2 {
  font-size: 48px;
  color: #ffffff;
  line-height: 50px;
  margin-bottom: 5px;
}
.callto-text p {
  color: #ffffff;
  margin-bottom: 21px;
}
.callto-text .primary-btn.callto-btn {
  background: #081624;
  padding: 18px 45px;
}

/*---------------------
  Call To Action
-----------------------*/
.map {
  height: 585px;
  position: relative;
}
.map iframe {
  width: 100%;
}
.map .map-address {
  position: absolute;
  left: 106px;
  top: 91px;
}
.map .map-address .map-address-text {
  background: #081624;
  height: 385px;
  width: 364px;
  padding-left: 83px;
  padding-top: 135px;
  padding-right: 20px;
  padding-bottom: 20px;
  opacity: 0.75;
  position: relative;
}
.map .map-address .map-address-text:after {
  position: absolute;
  left: 0;
  bottom: -20px;
  border-left: 30px solid #081624;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  content: "";
}
.map .map-address .map-address-text ul li {
  list-style: none;
  font-size: 16px;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 27px;
  margin-bottom: 30px;
  position: relative;
}
.map .map-address .map-address-text ul li:last-child:after {
  display: none;
}
.map .map-address .map-address-text ul li:after {
  position: absolute;
  left: -4px;
  top: -32px;
  height: 7px;
  width: 52px;
  background: #9bb70d;
  content: "";
}

/* -------------------------- Other Pages Styles ----------------------------*/
/*---------------------
  About Us
-----------------------*/
.about-us-section {
  padding-top: 4rem;
  padding-bottom: 1rem;
}

.about-text {
  margin-top: 15px;
  margin-bottom: 30px;
}
.about-text .section-title {
  margin-bottom: 30px;
}
.about-text .section-title h1:after,
.about-text .section-title h2:after {
  margin: 0;
}
.about-text p {
  margin-bottom: 20px;
}

.text-center .about-text h1::after,
.text-center .about-text h2::after {
  margin: 0 auto;
}

/*---------------------
  About Us
-----------------------*/
.about-counter {
  padding-top: 90px;
  padding-bottom: 50px;
}

.about-counter-text {
  margin-bottom: 42px;
  overflow: hidden;
}
.about-counter-text .counter-head {
  float: left;
}
.about-counter-text .counter-head h2 {
  font-size: 48px;
  color: #ffffff;
  line-height: 50px;
  margin-bottom: 6px;
}
.about-counter-text .counter-head p {
  color: #ffffff;
}
.about-counter-text .counter-btn {
  margin-top: 10px;
  display: inline-block;
  float: right;
}
.about-counter-text .counter-btn .primary-btn {
  background: #ffffff;
  color: #081624;
}

.about-single-counter {
  position: relative;
  margin-bottom: 40px;
}
.about-single-counter .counter-icon {
  color: #ffffff;
  position: absolute;
  top: 18px;
  left: 0;
}
.about-single-counter .counter-text {
  display: inline-block;
  margin-left: 80px;
}
.about-single-counter .counter-text .counter-num {
  font-size: 60px;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 72px;
}
.about-single-counter .counter-text span {
  font-size: 18px;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  color: #ffffff;
  display: block;
}

/*---------------------
  Infoboxes
-----------------------*/
.infobox {
  background-color: #F3F4FF;
  border: 1px solid lightgrey;
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  padding: 1rem 1.5rem;
  position: relative;
}
.infobox .icon {
  margin-left: -0.5rem;
  width: 5rem;
}
.infobox .icon img {
  width: 80%;
}
.infobox h3 {
  color: #4c4c4c;
  flex-grow: 1;
  font-size: 1.6rem;
  align-self: center;
  width: calc(100% - 5rem);
}
.infobox p {
  font-size: 1rem;
  font-weight: 200;
  margin-top: 1rem;
  width: 100%;
}

.infobox-title {
  border: 1px solid #9bb70d;
  margin-bottom: 1.5rem;
  padding: 1rem;
  text-align: center;
}
.infobox-title h3 {
  color: #9bb70d;
  text-transform: uppercase;
}

/*---------------------
  Lessons this week
-----------------------*/
.lessons-this-week {
  background-color: #4c4c4c;
  border: 1px solid lightgrey;
}
.lessons-this-week .heading {
  background-color: #9bb70d;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  padding: 0rem 1rem;
}
.lessons-this-week .heading .icon {
  width: 5rem;
  padding: 0.5rem;
}
.lessons-this-week .heading h3 {
  color: white;
  flex-grow: 1;
  font-size: 1.6rem;
  text-transform: uppercase;
  width: calc(100% - 5rem);
}
.lessons-this-week .lector {
  display: flex;
  padding: 1rem;
}
.lessons-this-week .lector .avatar {
  background-color: white;
  border: 1px solid #9bb70d;
  border-radius: 50%;
  margin-right: 1rem;
  overflow: hidden;
  height: 6rem;
  width: 6rem;
}
.lessons-this-week .lector .schedule * {
  color: white;
}
.lessons-this-week .lector .schedule h4 {
  margin-bottom: 0.5rem;
}
.lessons-this-week .lector .schedule ul {
  font-family: Nunito;
  font-size: 0.9rem;
  font-weight: 300;
  list-style: none;
  text-transform: uppercase;
}
.lessons-this-week .lector .schedule ul .item {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.lessons-this-week .lector .schedule ul .item .time {
  margin-left: 0.5rem;
}
.lessons-this-week p {
  font-size: 1rem;
  font-weight: 200;
  margin-top: 1rem;
  width: 100%;
}

/*---------------------
  About Counter
-----------------------*/
.lectors-wrapper .owl-stage {
  display: flex;
  margin: 0 auto;
}

.about-team {
  padding-top: 145px;
  padding-bottom: 70px;
}
.about-team .section-title {
  margin-bottom: 56px;
}

.single-team-member {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-bottom: 40px;
  padding-bottom: 1rem;
}
.single-team-member .team-member-pic {
  margin-bottom: 4rem;
  position: relative;
  padding-bottom: 130%;
  overflow: hidden;
}
.single-team-member .team-member-pic img {
  top: 0rem;
  left: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  object-fit: cover;
  object-position: top;
}
.single-team-member .team-member-desc {
  margin-bottom: auto;
}
.single-team-member .team-member-desc h3 {
  font-size: 30px;
  font-weight: 500;
  color: #081624;
  position: relative;
  margin-bottom: 40px;
}
.single-team-member .team-member-desc h3:after {
  position: absolute;
  left: 0;
  top: -23px;
  height: 7px;
  width: 52px;
  background: #9bb70d;
  content: "";
}
.single-team-member .team-member-certification {
  background-color: #F3F4FF;
  min-height: 17rem;
  padding: 1.5rem;
}
.single-team-member .team-member-certification h5 {
  font-size: 18px;
  font-weight: 500;
  color: #081624;
  margin-bottom: 2rem;
}
.single-team-member .team-member-certification ul li {
  display: flex;
  justify-content: space-between;
  color: #858585;
  font-size: 16px;
  line-height: 20px;
  list-style: none;
  margin: 0.5rem 0;
  position: relative;
  /*            &::after {
                  position: absolute;
                  left: -20px;
                  top: 6px;
                  height: 9px;
                  width: 9px;
                  background: $main-color;
                  content: "";
                  border-radius: 50%;
              }*/
}
.single-team-member .team-member-certification ul li .name {
  font-weight: 600;
}
.single-team-member .team-member-certification ul li .name i {
  font-size: 0.9rem;
  font-weight: 300;
}
.single-team-member .team-member-certification ul li .time {
  font-weight: 300;
  text-transform: uppercase;
}

/*---------------------
  Classes
-----------------------*/
.classes-section {
  padding-top: 112px;
  padding-bottom: 85px;
}

.single-classes-item {
  background: #9bb70d;
  text-align: center;
  margin-bottom: 30px;
  padding-top: 30px;
  padding-bottom: 32px;
}
.single-classes-item i {
  color: #ffffff;
  display: inline-block;
  margin-bottom: 5px;
}
.single-classes-item h4 {
  color: #ffffff;
  font-size: 24px;
  font-weight: 400;
}

/*---------------------
  Classes Time Table
-----------------------*/
.classes-time-section {
  padding-top: 115px;
  padding-bottom: 130px;
}

.week-name {
  background: #38393F;
  margin-left: -15px;
  margin-right: -15px;
  text-align: center;
  color: #fff;
  height: 50px;
  line-height: 50px;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.75px;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.daily-work {
  margin-left: -15px;
  margin-right: -15px;
  text-align: center;
  margin-right: -11px;
}
.daily-work.last {
  margin-right: -15px;
}
.daily-work .work-hours {
  height: 64px;
  background: #F3F4FF;
  margin-bottom: 4px;
}
.daily-work .work-hours.bg-color {
  background: #9bb70d;
  padding-top: 7px;
}
.daily-work .work-hours ul li {
  list-style: none;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: #ffffff;
}

/*---------------------
  WOD Section
-----------------------*/
.wod-section {
  padding-top: 45px;
  padding-bottom: 45px;
}
.wod-section .section-title h2:after {
  margin: 0;
}
.wod-section h3 {
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.wod-section .single-wod-item {
  margin-bottom: 40px;
}
.wod-section .single-wod-item[data-active="0"] * {
  font-style: normal;
}
.wod-section .single-wod-item span {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: #081624;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.75px;
  margin-bottom: 12px;
}
.wod-section .single-wod-item h4 a {
  font-size: 24px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  color: #858585;
}
.wod-section .single-wod-item h4 a i {
  color: #9bb70d;
  display: block;
  font-size: 0.9rem;
}
.wod-section .single-wod-item h4 a:hover {
  border-bottom: 1px solid lightgrey;
}

/*---------------------
  Blog
-----------------------*/
.blog-section {
  padding-top: 114px;
  padding-bottom: 114px;
}
.blog-section .blog-btn {
  padding-top: 84px;
}

.single-blog-item {
  background: #F3F4FF;
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 91px;
}
.single-blog-item.plain-text {
  padding-left: 45px;
  padding-top: 155px;
  padding-right: 35px;
  height: calc( 100% - 30px);
  position: relative;
}
.single-blog-item.plain-text .blog-text {
  text-align: center;
}
.single-blog-item.plain-text .blog-text h2 {
  font-size: 42px;
  color: #081624;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 19px;
  position: relative;
}
.single-blog-item.plain-text .blog-text h2:after {
  position: absolute;
  left: 0;
  top: -54px;
  right: 0;
  height: 7px;
  width: 52px;
  background: #9bb70d;
  content: "";
  margin: 0 auto;
}
.single-blog-item.plain-text .blog-text span {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  color: #858585;
}
.single-blog-item.plain-text .blog-widget {
  position: absolute;
  left: 38px;
  bottom: 40px;
}
.single-blog-item.plain-text .blog-widget ul li {
  list-style: none;
  display: inline-block;
  position: relative;
  margin-right: 30px;
  cursor: pointer;
}
.single-blog-item.plain-text .blog-widget ul li img {
  position: absolute;
}
.single-blog-item.plain-text .blog-widget ul li span {
  display: inline-block;
  font-weight: 400;
  font-size: 14px;
  color: #858585;
  margin-left: 28px;
}
.single-blog-item.blog-video {
  padding-bottom: 58px;
  height: calc(100% - 30px);
}
.single-blog-item.blog-video .blog-img {
  position: relative;
}
.single-blog-item.blog-video .blog-img img {
  width: 100%;
}
.single-blog-item.blog-video .blog-img .play-btn {
  position: absolute;
  left: 0;
  top: 50%;
  bottom: 0;
  right: 0;
  margin: 0 auto;
  display: inline-block;
  text-align: center;
  -webkit-transform: translateY(-14.5px);
  transform: translateY(-14.5px);
}
.single-blog-item.blog-video .blog-img .play-btn a {
  position: relative;
  z-index: 1;
  cursor: pointer;
  display: inline-block;
  color: #ffffff;
}
.single-blog-item.blog-video .blog-img .play-btn a:after {
  position: absolute;
  left: -54px;
  top: -15px;
  width: 118px;
  height: 55px;
  background: #9bb70d;
  line-height: 55px;
  border-radius: 15px;
  content: "";
  z-index: -1;
  text-align: center;
}
.single-blog-item.blog-video .blog-text {
  padding-left: 38px;
  padding-top: 20px;
  padding-right: 20px;
}
.single-blog-item.blog-video .blog-text h3 {
  font-size: 30px;
  font-weight: 500;
  color: #081624;
  margin-bottom: 20px;
}
.single-blog-item.blog-video .blog-text .blog-widget {
  position: absolute;
  left: 38px;
  bottom: 30px;
}
.single-blog-item.blog-video .blog-text .blog-widget ul li {
  list-style: none;
  display: inline-block;
  position: relative;
  margin-right: 30px;
  cursor: pointer;
}
.single-blog-item.blog-video .blog-text .blog-widget ul li img {
  position: absolute;
}
.single-blog-item.blog-video .blog-text .blog-widget ul li span {
  display: inline-block;
  font-weight: 400;
  font-size: 14px;
  color: #858585;
  margin-left: 28px;
}
.single-blog-item.blog-item .blog-img img {
  width: 100%;
}
.single-blog-item.blog-item .blog-text {
  padding-top: 36px;
  padding-left: 38px;
  padding-right: 20px;
}
.single-blog-item.blog-item .blog-text span.blog-time {
  display: inline-block;
  font-size: 16px;
  color: #858585;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  margin-bottom: 34px;
}
.single-blog-item.blog-item .blog-text h3 {
  font-size: 30px;
  font-weight: 500;
  color: #081624;
  margin-bottom: 20px;
  position: relative;
}
.single-blog-item.blog-item .blog-text h3:after {
  position: absolute;
  left: 0;
  top: -21px;
  height: 7px;
  width: 52px;
  background: #9bb70d;
  content: "";
}
.single-blog-item.blog-item .blog-text p {
  font-size: 15px;
}
.single-blog-item.blog-item .blog-text .blog-widget {
  position: absolute;
  left: 38px;
  bottom: 40px;
}
.single-blog-item.blog-item .blog-text .blog-widget ul li {
  list-style: none;
  display: inline-block;
  position: relative;
  margin-right: 30px;
  cursor: pointer;
}
.single-blog-item.blog-item .blog-text .blog-widget ul li img {
  position: absolute;
}
.single-blog-item.blog-item .blog-text .blog-widget ul li span {
  display: inline-block;
  font-weight: 400;
  font-size: 14px;
  color: #858585;
  margin-left: 28px;
}

/*---------------------
  Contact Section
-----------------------*/
.contact-section {
  padding-top: 145px;
}

.contact-text .section-title {
  margin-bottom: 84px;
}
.contact-text .section-title h2 {
  margin-bottom: 35px;
}
.contact-text .section-title h2:after {
  margin: 0;
}
.contact-text .contact-widget ul li {
  list-style: none;
  font-size: 16px;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  color: #081624;
  line-height: 27px;
  margin-bottom: 30px;
  position: relative;
}
.contact-text .contact-widget ul li::after {
  position: absolute;
  left: -4px;
  top: -32px;
  height: 7px;
  width: 52px;
  background: #9bb70d;
  content: "";
}
.contact-text .contact-widget ul li:last-child:after {
  display: none;
}

.contact-form {
  margin-top: 30px;
}
.contact-form input {
  width: 100%;
  height: 52px;
  border: none;
  background: #F3F4FF;
  color: #858585;
  font-size: 14px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  font-style: italic;
  padding-left: 23px;
  margin-bottom: 15px;
}
.contact-form textarea {
  width: 100%;
  border: none;
  background: #F3F4FF;
  color: #858585;
  height: 187px;
  padding-left: 23px;
  padding-top: 12px;
  font-size: 14px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  font-style: italic;
  resize: none;
  margin-bottom: 12px;
}
.contact-form .submit-btn.contact-btn {
  width: 186px;
  height: 65px;
  background: #9bb70d;
  color: #ffffff;
  padding: 0;
  font-style: normal;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
}

/*---------------------
  Contact Section
-----------------------*/
.elements-section {
  padding-top: 145px;
  padding-bottom: 77px;
}

/*-- Buttons Elem --*/
.buttons-elem {
  padding-bottom: 95px;
}
.buttons-elem .section-title {
  margin-bottom: 46px;
}
.buttons-elem .section-title h2:after {
  margin: 0;
}
.buttons-elem a {
  padding: 22px 77px;
  margin-right: 6px;
  margin-bottom: 10px;
}
.buttons-elem a.black {
  background: #081624;
}
.buttons-elem a.white {
  background: #ffffff;
  color: #081624;
  border: 2px solid #000;
  padding: 20px 75px;
}

/*-- Accordin and Tab Elements --*/
.accordintab-elem {
  padding-bottom: 50px;
  margin-bottom: 30px;
}
.accordintab-elem .section-title {
  margin-bottom: 46px;
}
.accordintab-elem .section-title h2:after {
  margin: 0;
}

.accordin-elem .card {
  border: none;
  margin-bottom: 13px;
}
.accordin-elem .card .card-heading {
  background: #F3F4FF;
  padding: 7px 30px 6px 38px;
}
.accordin-elem .card .card-heading a {
  font-size: 14px;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  cursor: pointer;
  display: block;
  text-align: left;
  text-transform: uppercase;
  color: #081624;
  letter-spacing: 0.5px;
  line-height: 50px;
}
.accordin-elem .card .card-body {
  padding-right: 0;
  padding-left: 0;
  padding-top: 20px;
}
.accordin-elem .card:first-of-type {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.accordin-elem .card:last-of-type {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.accordin-elem .card-heading a:after {
  content: "+";
  float: right;
  font-size: 14px;
  font-weight: 700;
  color: #081624;
}
.accordin-elem .card-heading a[aria-expanded=true]:after {
  content: "-";
  float: right;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.accordin-elem .card-heading > a.active[aria-expanded=false]:after {
  content: "+";
  float: right;
  font-size: 14px;
  font-weight: 700;
  color: #081624;
}
.accordin-elem .card-heading > a.active:after {
  content: "-";
  float: right;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.accordin-elem .card-heading.active {
  background: #9bb70d;
}
.accordin-elem .card-heading.active a {
  color: #fff;
}
.accordin-elem .card-heading.active a:after {
  color: #fff;
}

.tab-elem .tab-content {
  margin-top: 20px;
}
.tab-elem .section-title {
  margin-bottom: 52px;
}
.tab-elem .nav-tabs {
  border-bottom: none;
}
.tab-elem .nav-tabs .nav-item {
  background: #F3F4FF;
  font-size: 14px;
  margin-right: 13px;
  line-height: 50px;
  letter-spacing: 0.5px;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  margin-bottom: 13px;
}
.tab-elem .nav-tabs .nav-item a {
  color: #081624;
}
.tab-elem .nav-tabs .nav-item .nav-link {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border: none;
  display: block;
  padding: 7px 40px;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
  color: #fff !important;
  background-color: #9bb70d;
}

/*-- Milestone Counter --*/
.milestone-counter {
  padding-bottom: 70px;
}
.milestone-counter .section-title {
  margin-bottom: 30px;
}
.milestone-counter .section-title h2:after {
  margin: 0;
}

.single-milestone-counter {
  position: relative;
  margin-bottom: 30px;
}
.single-milestone-counter .counter-icon {
  position: absolute;
  left: 0;
  bottom: -10px;
}
.single-milestone-counter .counter-icon i {
  color: #9bb70d;
}
.single-milestone-counter .counter-text {
  display: inline-block;
  margin-left: 78px;
}
.single-milestone-counter .counter-text span {
  display: block;
  font-weight: 500;
  color: #081624;
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  color: #858585;
}
.single-milestone-counter .counter-text span.counter-num {
  font-size: 60px;
  font-weight: 500;
  color: #081624;
  font-family: "Oswald", sans-serif;
  line-height: 72px;
}

/*-- Loaders --*/
/*-- Progress Loaders  --*/
.progress-loaders {
  padding-bottom: 105px;
}
.progress-loaders .section-title {
  margin-bottom: 46px;
}
.progress-loaders .section-title h2:after {
  margin: 0;
}

.single-loader {
  text-align: center;
  margin-bottom: 30px;
}
.single-loader .loader-circle-wrap {
  position: relative;
}
.single-loader .loader-circle-wrap .loader-percentage {
  position: absolute;
  left: 0;
  top: 30%;
  width: 100%;
  font-size: 60px;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  color: #081624;
  line-height: 52px;
}
.single-loader .loader-circle-wrap .loader-percentage .percentage-sign {
  font-size: 35px;
}
.single-loader .loader-circle-wrap .inner-text {
  position: absolute;
  left: -5px;
  top: 59%;
  width: 100%;
  font-weight: 500;
  font-size: 18px;
  line-height: 14.4px;
  color: #858585;
  font-family: "Oswald", sans-serif;
  display: block;
  margin-top: 12px;
}

/*-- Icon Boxes --*/
.icon-boxes .section-title {
  margin-bottom: 30px;
}
.icon-boxes .section-title h2:after {
  margin: 0;
}

.single-icon-boxes {
  margin-bottom: 30px;
}
.single-icon-boxes i {
  color: #9bb70d;
  margin-bottom: -4px;
}
.single-icon-boxes h3 {
  color: #081624;
  font-size: 30px;
  font-weight: 500;
  line-height: 50px;
  margin-bottom: 14px;
}

.icon-box {
  background-color: #F3F4FF;
  border: 1px solid lightgrey;
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding: 1.5rem 1rem;
  height: calc(100% - 2rem);
}
.icon-box p {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 150%;
  padding-right: 2rem;
}
.icon-box img {
  margin: 0.5rem 2rem 0 0;
  max-width: 6rem;
}

/*
.icon-box {
    background-color: $background-color;
    border: 1px solid lightgrey;
    //display: flex;
    //align-items: flex-start;
    //border-radius: 5px;
    margin-bottom: 2rem;
    padding: 1.5rem 1rem;
    height: calc(100% - 2rem);

    p {
        font-size: 1.0rem;
        font-weight: 300;
        line-height: 150%;
        padding-right: 2rem;
    }

    img {
        float: left;
        margin: 0 2rem 1rem 0;
        max-width: 4rem;
    }
}*/
/*---------------------
  Lessons Today
-----------------------*/
.lessons2day-section {
  padding-top: 40px;
  padding-bottom: 60px;
  /*    + .lessons2day-section {
          padding-top: 0;
      }*/
  /*    .row {
          &.num_items_4,
          &.num_items_3,
          &.num_items_2,
          &.num_items_1 {
              justify-content: center;

              @include mq($xxl) {
                  justify-content: flex-start;
              }
          }
      }

      @include mq($sm) {
          .primary-btn {
              width: 100%;
          }
      }*/
}
.lessons2day-section .about-text {
  padding: 2rem 0 1rem 0;
}
.lessons2day-section .lesson-img {
  position: relative;
  padding-bottom: 60%;
  overflow: hidden;
}
.lessons2day-section .lesson-img img {
  height: 100%;
  margin-top: 0;
  object-fit: cover;
  position: absolute;
}
.lessons2day-section .lesson-btn {
  padding-top: 84px;
}
.lessons2day-section .primary-btn {
  margin-top: 2rem;
}
.lessons2day-section .owl-carousel .owl-stage {
  display: flex;
  margin: 0 auto;
  width: 100%;
}
.lessons2day-section .owl-carousel .single-lesson-item {
  height: calc(100% - 0.5rem);
  width: auto;
}
.lessons2day-section .single-lesson-item {
  background: #F3F4FF;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  position: relative;
  margin: 0 1rem;
  padding-bottom: 90px;
  /*
          @include mq($xxxl) {
              width: calc(100% / 4 - 2rem);
          }

          @include mq($xxl) {
              width: calc(100% / 3 - 2rem);
          }

          @include mq($xl) {
              width: calc(100% / 2 - 2rem);
          }

          @include mq($md) {
              margin: 0;
              width: 100%;
          }

          @include mq($sm) {
              padding-bottom: 1rem;

              h3 {
                  font-size: 1.5rem !important;
              }

              .lesson-img {
                  display: none;
              }
          }*/
}
.lessons2day-section .single-lesson-item.plain-text {
  padding-left: 45px;
  padding-top: 155px;
  padding-right: 35px;
  height: calc( 100% - 30px);
  position: relative;
}
.lessons2day-section .single-lesson-item.plain-text .lesson-text {
  text-align: center;
}
.lessons2day-section .single-lesson-item.plain-text .lesson-text h2 {
  font-size: 42px;
  color: #081624;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 19px;
  position: relative;
}
.lessons2day-section .single-lesson-item.plain-text .lesson-text h2:after {
  position: absolute;
  left: 0;
  top: -54px;
  right: 0;
  height: 7px;
  width: 52px;
  background: #9bb70d;
  content: "";
  margin: 0 auto;
}
.lessons2day-section .single-lesson-item.plain-text .lesson-text span {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  color: #858585;
}
.lessons2day-section .single-lesson-item.plain-text .lesson-widget {
  position: absolute;
  left: 38px;
  bottom: 40px;
}
.lessons2day-section .single-lesson-item.plain-text .lesson-widget ul li {
  list-style: none;
  display: inline-block;
  position: relative;
  margin-right: 30px;
  cursor: pointer;
}
.lessons2day-section .single-lesson-item.plain-text .lesson-widget ul li img {
  position: absolute;
}
.lessons2day-section .single-lesson-item.plain-text .lesson-widget ul li span {
  display: inline-block;
  font-weight: 400;
  font-size: 14px;
  color: #858585;
  margin-left: 28px;
}
.lessons2day-section .single-lesson-item.lesson-item .lesson-img img {
  width: 100%;
}
.lessons2day-section .single-lesson-item.lesson-item .lesson-text {
  padding-top: 36px;
  padding-left: 38px;
  padding-right: 20px;
}
.lessons2day-section .single-lesson-item.lesson-item .lesson-text span.lesson-time {
  display: inline-block;
  font-size: 16px;
  color: #858585;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  margin-bottom: 34px;
  text-transform: uppercase;
}
.lessons2day-section .single-lesson-item.lesson-item .lesson-text span.lesson-time[data-today="1"] {
  background-color: #9bb70d;
  border-radius: 3px;
  color: white;
  padding: 0.25rem 0.5rem;
}
.lessons2day-section .single-lesson-item.lesson-item .lesson-text h3 {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 2.5rem;
  position: relative;
}
.lessons2day-section .single-lesson-item.lesson-item .lesson-text h3 a {
  color: #081624;
}
.lessons2day-section .single-lesson-item.lesson-item .lesson-text h3 a:hover {
  border-bottom: 1px solid #9bb70d;
}
.lessons2day-section .single-lesson-item.lesson-item .lesson-text h3 i {
  color: #9bb70d;
  font-size: 1rem;
  font-weight: 300;
  position: absolute;
  left: 0;
  bottom: -1.5rem;
}
.lessons2day-section .single-lesson-item.lesson-item .lesson-text h3:after {
  position: absolute;
  left: 0;
  top: -21px;
  height: 7px;
  width: 52px;
  background: #9bb70d;
  content: "";
}
.lessons2day-section .single-lesson-item.lesson-item .lesson-text p {
  font-size: 15px;
}
.lessons2day-section .single-lesson-item.lesson-item .lesson-text .lesson-widget {
  position: absolute;
  left: 38px;
  bottom: 40px;
}
.lessons2day-section .single-lesson-item.lesson-item .lesson-text .lesson-widget ul li {
  list-style: none;
  display: inline-block;
  position: relative;
  margin-right: 30px;
  cursor: pointer;
}
.lessons2day-section .single-lesson-item.lesson-item .lesson-text .lesson-widget ul li img {
  position: absolute;
  max-width: 1.5rem;
}
.lessons2day-section .single-lesson-item.lesson-item .lesson-text .lesson-widget ul li span {
  display: inline-block;
  font-weight: 400;
  font-size: 14px;
  margin-left: 28px;
}
.lessons2day-section .single-lesson-item.lesson-item .lesson-text .lesson-widget ul li a {
  color: #858585;
}
.lessons2day-section .single-lesson-item.lesson-item .lesson-text .lesson-widget ul li a:hover {
  color: #9bb70d;
}
.lessons2day-section .single-lesson-item.lesson-item .lesson-text .lesson-widget ul li a:hover span {
  border-bottom: 1px solid #9bb70d;
}
.lessons2day-section.dark {
  background-color: #4c4c4c;
}
.gallery-wrap {
  margin: 1rem 0 4rem 0;
}
.gallery-wrap .gallery {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.5rem;
}
.gallery-wrap .gallery .gallery-item {
  margin: 0.5rem;
  width: calc(100% / 4 - 1rem);
}
.gallery-wrap .gallery .gallery-item img {
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .gallery-wrap .gallery .gallery-item {
    width: calc(100% / 2 - 1rem);
  }
}
@media only screen and (max-width: 540px) {
  .gallery-wrap .gallery .gallery-item {
    margin: 0.5rem 0;
    width: calc(100%);
  }
}
@media only screen and (max-width: 540px) {
  .gallery-wrap .gallery {
    margin-left: auto;
    margin-right: auto;
  }
}

.reviews-section {
  background-color: #F3F4FF;
  padding: 3rem 0 1rem 0;
  /*    .container {
          display: flex;
          flex-wrap: wrap;
      }*/
}
.reviews-section .owl-stage {
  display: flex;
}
.reviews-section .review-item {
  border-radius: 3px;
  color: #4c4c4c;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0.5rem;
  padding: 1.5rem;
}
.reviews-section .review-item .name-wrapper {
  display: flex;
  align-items: center;
  margin-top: auto;
}
.reviews-section .review-item .text {
  align-self: flex-start;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 150%;
  margin-bottom: 1rem;
  width: 100%;
}
.reviews-section .review-item .photo {
  border-radius: 50%;
  margin-right: 1rem;
  height: 2rem;
  width: 2rem;
}
.reviews-section .review-item .name {
  flex-grow: 1;
  font-size: 0.9rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  line-height: 100%;
}
.reviews-section.dark * {
  color: white;
}

.pricing-list {
  margin-bottom: 0rem;
}
.pricing-list .pricing-item {
  border-top: 1px solid #eaeaea;
  display: flex;
  align-items: center;
}
.pricing-list .pricing-item > div {
  padding: 1rem 1.5rem;
}
.pricing-list .pricing-item h3 {
  margin-bottom: 0.25rem;
}
.pricing-list .pricing-item .label {
  flex-grow: 1;
}
.pricing-list .pricing-item .icon {
  padding: 0.25rem;
  min-width: 5rem;
  width: 5rem;
}
.pricing-list .pricing-item .icon img {
  width: 100%;
}
.pricing-list .pricing-item .price {
  color: #4c4c4c;
  font-family: Oswald;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: right;
  min-width: 10rem;
  width: 10rem;
  white-space: nowrap;
}
.pricing-list .pricing-item.heading {
  background-color: #F3F4FF;
  border: none;
  justify-content: flex-end;
  margin: 2rem 0 0rem 0;
}
.pricing-list .pricing-item.heading .price {
  color: #9bb70d;
  font-weight: normal;
}
.pricing-list .pricing-item.heading + .pricing-item {
  padding-top: 2rem;
}
.pricing-list .pricing-item.subitem {
  border: none;
  margin-top: -1.5rem;
}

.pricing-section.homepage {
  background-color: #F3F4FF;
}
.pricing-section.homepage .pricing-list {
  margin-bottom: 2rem;
}
@media only screen and (max-width: 992px) {
  .pricing-section .container {
    max-width: unset;
  }
}
@media only screen and (max-width: 768px) {
  .pricing-section .pricing-item .icon {
    display: none;
  }
  .pricing-section .pricing-item .price {
    min-width: 8rem;
    width: 8rem;
  }
}
@media only screen and (max-width: 576px) {
  .pricing-section .pricing-item {
    justify-content: flex-end;
    flex-wrap: wrap;
  }
  .pricing-section .pricing-item h1 {
    font-size: 2.5rem;
  }
  .pricing-section .pricing-item h2 {
    font-size: 2rem;
  }
  .pricing-section .pricing-item h3 {
    font-size: 1.7rem;
  }
  .pricing-section .pricing-item .label {
    padding-top: 1.5rem;
    padding-bottom: 0;
    width: 100%;
  }
  .pricing-section .pricing-item .price {
    font-size: 1.4rem;
    font-weight: normal;
    padding-top: 0;
    padding-bottom: 1rem;
  }
  .pricing-section .pricing-item.heading:first-child {
    margin-top: 1rem;
  }
  .pricing-section .pricing-item.heading .label {
    padding-bottom: 1rem;
  }
  .pricing-section .pricing-item.heading + .pricing-item {
    padding-top: 0rem;
  }
  .pricing-section.homepage h2 {
    font-size: 2.5rem;
    text-align: center;
  }
  .pricing-section .row > div {
    padding: 0;
  }
}

.opening-hours {
  background-color: #9bb70d;
  border-radius: 3px;
  color: white;
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  padding: 0.75rem 1.5rem 0.25rem;
  margin: 0rem 0 2rem 0;
  max-width: 35rem;
  height: 0%;
  transition: background-color 0.5s;
}
.opening-hours:hover {
  background-color: rgba(155, 183, 13, 0.88);
}
.opening-hours.closed {
  background-color: #4c4c4c;
}
.opening-hours .now {
  display: flex;
  font-family: Oswald;
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.opening-hours .now .status {
  margin-right: 2rem;
}
.opening-hours .now .time {
  font-weight: 300;
  margin-left: auto;
}
.opening-hours .week {
  display: none;
}
.opening-hours .weekday,
.opening-hours .next {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.2rem;
  padding: 0.5rem 0;
}
.opening-hours .weekday .date,
.opening-hours .next .date {
  margin-right: auto;
  text-transform: capitalize;
}
.opening-hours .weekday .slots,
.opening-hours .next .slots {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.opening-hours .weekday .slots .closed,
.opening-hours .next .slots .closed {
  color: red;
}
.opening-hours .weekday:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.opening-hours .expand-btn {
  background-color: #4c4c4c;
  border-radius: 4px;
  color: white;
  display: none;
  flex-grow: 0;
  margin-left: auto;
  margin-top: 0.5rem;
  padding: 0.25rem 0.75rem;
  position: relative;
  width: auto;
}
.opening-hours .expand-btn::before {
  content: "";
  font-family: "FontAwesome";
  font-size: 1rem;
  margin-right: 0.5rem;
}
.opening-hours.closed .now .status {
  margin-right: 3rem;
}
.opening-hours.closed .expand-btn {
  background-color: #9bb70d;
}
.opening-hours.expanded .expand-btn {
  display: none;
}
@media only screen and (max-width: 576px) {
  .opening-hours {
    width: 100%;
    padding: 1rem;
  }
  .opening-hours .now {
    justify-content: space-between;
  }
  .opening-hours .now .status {
    margin-right: 0.5rem;
  }
  .opening-hours .now .time {
    margin: 0;
  }
}

.flex-perex .opening-hours {
  margin-left: 1.5rem;
}
@media only screen and (max-width: 992px) {
  .flex-perex .opening-hours {
    margin-left: 0;
  }
}

.owl-carousel .owl-dots {
  text-align: center;
}
.owl-carousel .owl-dots button.owl-dot {
  border-radius: 50%;
  display: inline-block;
  border: 1px solid #9bb70d;
  margin: 0.5rem;
  height: 0.75rem;
  width: 0.75rem;
}
.owl-carousel .owl-dots button.owl-dot.active {
  background-color: #9bb70d;
}
.reviews-section.dark .owl-carousel .owl-dots button.owl-dot {
  border-color: white;
}
.reviews-section.dark .owl-carousel .owl-dots button.owl-dot.active {
  background-color: white;
}

.hidden-md {
  display: none;
}

/*------------------------ Responsive Media Styles ----------------------*/
@media (min-width: 1200px) {
  .container {
    max-width: 1176px;
  }
}
@media only screen and (max-width: 1450px) {
  .single-lesson-item.lesson-item .lesson-text h3, .single-lesson-item.blog-item .blog-text h3,
.single-blog-item.lesson-item .lesson-text h3,
.single-blog-item.blog-item .blog-text h3 {
    font-size: 20px;
    margin-bottom: 5px;
  }
  .single-lesson-item.lesson-item .lesson-text p, .single-lesson-item.blog-item .blog-text p,
.single-blog-item.lesson-item .lesson-text p,
.single-blog-item.blog-item .blog-text p {
    font-size: 14px;
    line-height: 25px;
  }
  .single-lesson-item.blog-video .blog-text h3, .single-lesson-item.lesson-video .lesson-text h3,
.single-blog-item.blog-video .blog-text h3,
.single-blog-item.lesson-video .lesson-text h3 {
    font-size: 20px;
  }
}
/* Medium Device: 1280px */
@media only screen and (max-width: 1199px) {
  .inner-header .logo {
    padding-left: 0;
  }
  .inner-header .main-menu ul li {
    margin-right: 10px;
  }
  .inner-header .main-menu ul li:nth-child(5) {
    margin-right: 10px;
  }
  .inner-header .main-menu ul li.phone-num {
    padding: 31px 20px 29px 20px;
  }

  .hero-text h1 {
    font-size: 85px;
  }

  .hero-items .owl-nav button[type=button] {
    width: 60px;
    height: 60px;
    left: 5px;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  .hero-items .owl-nav button[type=button].owl-next {
    right: 5px;
  }

  .booking-heading .booking-inner-text h2 {
    font-size: 30px;
  }

  .about-text .section-title {
    margin-bottom: 15px;
  }
  .about-text p {
    margin-bottom: 29px;
  }

  .single-lesson-item,
.single-blog-item {
    /* Original "blog" selector */
  }
  .single-lesson-item.lesson-item .lesson-text, .single-lesson-item.blog-item .blog-text,
.single-blog-item.lesson-item .lesson-text,
.single-blog-item.blog-item .blog-text {
    /* Original "blog" selector */
  }
  .single-lesson-item.lesson-item .lesson-text h3, .single-lesson-item.blog-item .blog-text h3,
.single-blog-item.lesson-item .lesson-text h3,
.single-blog-item.blog-item .blog-text h3 {
    font-size: 15px;
    margin-bottom: 10px;
  }
  .single-lesson-item.lesson-item .lesson-text p, .single-lesson-item.blog-item .blog-text p,
.single-blog-item.lesson-item .lesson-text p,
.single-blog-item.blog-item .blog-text p {
    font-size: 13px;
    line-height: 20px;
  }
  .single-lesson-item.blog-video .blog-text,
.single-blog-item.blog-video .blog-text {
    /* Original "blog" selector */
    padding-right: 15px;
  }
  .single-lesson-item.blog-video .blog-text h3,
.single-blog-item.blog-video .blog-text h3 {
    font-size: 15px;
  }
  .single-lesson-item.plain-text .blog-text h2,
.single-blog-item.plain-text .blog-text h2 {
    font-size: 30px;
  }
}
/* Tablet Device: 768px */
@media only screen and (max-width: 991px) {
  .inner-header .logo {
    padding-left: 0;
    padding-top: 30px;
  }
  .inner-header .logo img {
    width: 130px;
  }
  .inner-header .main-menu ul li {
    margin-right: 5px;
  }
  .inner-header .main-menu ul li a {
    padding: 36px 10px;
  }
  .inner-header .main-menu ul li:nth-child(5) {
    margin-right: 5px;
  }
  .inner-header .main-menu ul li.phone-num {
    padding: 31px 15px 29px 15px;
  }
  .inner-header .main-menu ul li.search-btn {
    padding: 30px 16px 31px 16px;
  }
  .inner-header .main-menu ul li a:after {
    left: 11px;
  }

  .hero-items .owl-nav button[type=button] {
    width: 60px;
    height: 60px;
    left: 5px;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  .hero-items .owl-nav button[type=button].owl-next {
    right: 5px;
  }

  .boxes-item .boxes-pic img {
    height: auto;
  }

  .booking-form {
    height: auto;
    margin-top: -14px;
  }

  .about-counter-text .counter-btn {
    float: none;
  }

  .daily-work .work-hours ul li {
    font-size: 13px;
  }

  .single-lesson-item,
.single-blog-item {
    /* Original "blog" selector */
  }
  .single-lesson-item.lesson-item .lesson-text h3, .single-lesson-item.blog-item .blog-text h3,
.single-blog-item.lesson-item .lesson-text h3,
.single-blog-item.blog-item .blog-text h3 {
    /* Original "blog" selector */
    font-size: 25px;
  }

  .icon-box {
    margin-bottom: 0.75rem;
  }
  .icon-box img {
    margin-right: 1rem;
    max-width: 4rem;
  }
  .icon-box p {
    padding-right: 0rem;
  }
}
/* Large Mobile Device: 480px */
@media only screen and (max-width: 767px) {
  .inner-header {
    padding-bottom: 5px;
    position: relative;
  }
  .inner-header .logo {
    padding: 10px 0;
    margin: 0 auto;
    width: 10rem;
  }
  .inner-header .main-menu {
    display: none;
  }
  .inner-header li.phone-num {
    display: none;
  }

  .hidden-xs {
    display: none;
  }

  .hidden-md {
    display: unset;
  }

  .primary-btn {
    display: block;
    margin: 0 auto;
    width: 100%;
  }

  p {
    margin-bottom: 10px;
  }

  .single-team-member {
    margin-bottom: 1rem;
  }
  .single-team-member .team-member-desc {
    margin-bottom: 1rem;
  }
  .single-team-member .team-member-desc h3 {
    margin-bottom: 1rem;
  }
  .single-team-member .team-member-certification {
    min-height: unset;
  }

  .infobox {
    height: unset;
    margin-bottom: 1.5rem;
  }

  section.background {
    padding-top: 3rem;
    padding-bottom: 1.5rem;
  }

  .lessons2day-section {
    padding-top: 0rem;
    padding-bottom: 2rem;
  }

  .client-says {
    padding: 3rem 0;
  }
  .client-says h2 {
    font-size: 1.8rem;
    line-height: 150%;
  }

  .hero-text h1 {
    font-size: 60px;
  }

  .hero-items .owl-nav button[type=button] {
    left: 0;
    width: 40px;
    height: 40px;
    font-size: 20px;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  .hero-items .owl-nav button[type=button].owl-next {
    right: 0;
  }

  .booking-heading {
    padding: 75px 0 59px 180px;
  }
  .booking-heading .booking-inner-text h2 {
    font-size: 30px;
  }

  .booking-form {
    height: 425px;
  }

  .daily-work .work-hours ul li {
    font-size: 13px;
  }

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

  .footer-section .reserved {
    float: none;
    margin-bottom: 30px;
  }
  .footer-section .social-links {
    float: none;
  }
  .footer-section .social-links a:first-child {
    margin-left: 0;
  }

  .about-us-section {
    padding-top: 2rem;
  }

  .about-counter-text .counter-btn {
    float: none;
  }

  .single-lesson-item.blog-item .blog-text {
    /* Duplicated selector for "lesson" */
    padding: 36px 20px 0;
  }
  .single-lesson-item.blog-item .blog-text .blog-widget {
    left: 20px;
  }

  .read-more {
    display: none;
  }
  .read-more.hide {
    margin: 0;
  }
  .read-more-expand {
    display: inline-block;
    margin-bottom: 0.5rem;
  }

  .icon-box {
    height: unset;
    padding-bottom: 0.5rem;
  }
}
/* Small Mobile Device: 320px */
@media only screen and (max-width: 479px) {
  .about-text,
.hero-text {
    margin-bottom: 15px;
  }
  .about-text h1, .about-text h2,
.hero-text h1,
.hero-text h2 {
    font-size: 32px;
  }
  .about-text p.perex,
.hero-text p.perex {
    font-size: 1.2rem;
  }
  .about-text p,
.hero-text p {
    margin-bottom: 10px;
  }

  .spad {
    padding: 20px 0 25px 0;
  }

  .bpad {
    padding-bottom: 25px;
  }

  .booking-heading {
    padding: 75px 0 59px 50px;
  }

  .map .map-address {
    left: 25px;
  }

  .client-text h4 {
    line-height: 35px;
  }

  .boxes-item .boxes-text h1 {
    font-size: 90px;
  }

  .section-title h1, h2 {
    font-size: 42px;
  }
  .section-title h1::after, h2::after {
    top: -15px !important;
  }

  .section-title h1::after {
    display: none;
  }

  .client-says {
    background: black !important;
    padding: 3rem 2rem;
  }

  .single-lesson-item,
.single-blog-item {
    /* Original "blog" selector */
  }
  .single-lesson-item.lesson-item .lesson-text h3, .single-lesson-item.blog-item .blog-text h3,
.single-blog-item.lesson-item .lesson-text h3,
.single-blog-item.blog-item .blog-text h3 {
    /* Original "blog" selector */
    font-size: 20px;
  }
  .single-lesson-item.lesson-item .lesson-text p, .single-lesson-item.blog-item .blog-text p,
.single-blog-item.lesson-item .lesson-text p,
.single-blog-item.blog-item .blog-text p {
    /* Original "blog" selector */
    line-height: 22px;
    font-size: 13px;
  }

  .map .map-address .map-address-text {
    width: 260px;
    padding-left: 45px;
  }

  .footer-section .social-links a {
    margin-left: 20px;
  }

  .services-section .col-6 {
    padding: 5px;
  }
  .services-section .col-6 a {
    margin-bottom: 0;
  }
  .services-section .primary-btn {
    display: inline-block;
    padding: 22px;
    width: auto;
  }

  .about-us-section {
    padding-top: 0rem;
  }
}
.web-carousel .owl-stage {
  display: flex;
  align-items: center;
}
.web-carousel section.background-image {
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
}

section.pricelist {
  padding-bottom: 2rem;
}
section.pricelist > .container {
  padding: 0;
}
section.pricelist > .container > .row {
  margin: 0;
}
section.pricelist > .container > .row > div {
  padding: 0;
}
section.pricelist.solarium .pricing-item .price:last-child, section.pricelist.senior .pricing-item .price:last-child {
  display: none;
}

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