h1, h2, h3 {
  font-family: "Oduda";
  font-weight: 600;
  margin-bottom: 20px;
}

h1 {
  font-size: 64px;
  font-weight: bold;
  line-height: 1.25;
}

h3 {
  font-size: 30px;
  line-height: 1.1;
}

h6 {
  font-size: 15px;
  margin-bottom: 20px;
}

p {
  margin-bottom: 20px;
}

@font-face {
  font-family: "Oduda";
  src: url("assets/fonts/Oduda-Bold.otf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
.text-center {
  text-align: center;
}

/* global box-sizing */
*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  margin: 0;
  padding: 0;
}

body {
  font: 400 16px/1.6 "Montserrat", sans-serif;
  color: #212a53;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 100vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.wrapper {
  flex: 1 0 auto;
  position: relative;
}

img {
  max-width: 100%;
}

.img-wrap {
  position: relative;
}

a, button {
  transition: all 0.23s ease-in;
}

.btn {
  color: #fff;
  background-color: #84bf41;
  min-width: 148px;
  display: inline-flex;
  border-radius: 100px;
  border: 1px solid #84bf41;
  justify-content: center;
  align-items: center;
  padding: 9px 20px;
  margin-top: 25px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
}
.btn:hover {
  background-color: #9dcc67;
}
.btn i {
  padding: 0 10px;
}

.btn.radius6 {
  border-radius: 6px !important;
}

.btn-tooltip {
  display: inline-flex;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  padding: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
}

.btn-grey {
  background-color: #e9e9f4;
  top: 35%;
  position: relative;
}

.btn-grey:hover {
  background-color: #f3f3f9;
}

.btn-enroll, .modal.add-to-cart .modal-inner_footer .cart-url .btn-tooltip {
  color: #fff !important;
  background-color: #84bf41;
  margin-top: 20px;
  position: relative;
}

.btn-enroll:hover, .modal.add-to-cart .modal-inner_footer .cart-url .btn-tooltip:hover {
  color: #fff;
  background-color: #8bc34c;
}

.btn-disabled {
  cursor: default;
  pointer-events: none !important;
  text-decoration: none;
  background-color: grey;
  color: #fff !important;
  opacity: 0.6;
  margin-top: 20px;
}

.btn-delete {
  color: #fff;
  display: inline-flex;
  border-radius: 5px;
  padding: 9px 20px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  background-color: red;
  margin-top: 20px;
}

a {
  transition: all 0.23s ease-in;
  text-decoration: none;
  color: #84bf41;
}

.section-title {
  position: relative;
  font-size: 48px;
  font-weight: bold;
  line-height: 1.15;
  z-index: 49;
}

.section-title::before {
  content: "";
  background-size: contain !important;
  width: 100%;
  display: block;
  margin-bottom: 5px;
}

.section-title.square-circle::before {
  background: url(assets/images/square-circle.svg) no-repeat;
  height: 47px;
}

.section-title.triangle-square::before {
  background: url(assets/images/triangle-square.svg) no-repeat;
  height: 52px;
}

.section-title.circle-triangle::before {
  background: url(assets/images/circle-triangle.svg) no-repeat;
  height: 52px;
}

.section-title.star::before {
  background: url(assets/images/star.svg) no-repeat;
  height: 95px;
}

@media only screen and (max-width: 1024px) {
  h2.section-title {
    font-size: 33px;
  }
}
ul {
  margin-left: 20px;
}

.ul-green-bullet ul {
  list-style: none;
  margin-left: 0;
}
.ul-green-bullet ul li {
  position: relative;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 10px;
}
.ul-green-bullet ul li::before {
  content: "";
  display: inline-block;
  background: #84bf41;
  width: 7px;
  height: 7px;
  border-radius: 100%;
  position: relative;
  top: -2px;
  margin-right: 12px;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 45px;
  border-radius: 10px;
  border: solid 1px #ccd2de;
  background: #fff url("assets/images/chevron-down.svg") no-repeat 95% center;
  padding: 10px 40px 10px 20px;
  font-size: 16px;
}
@media only screen and (max-width: 767px) {
  select {
    padding-right: 48px;
    background-size: 20px;
  }
}

select:focus {
  outline: none !important;
  border-color: #84bf41;
}

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

.display-block {
  display: block !important;
}

.mr0 {
  margin-right: 0 !important;
  padding-right: 0 !important;
}

.ml0 {
  margin-left: 0 !important;
  padding-left: 0 !important;
}

.mt0 {
  margin-top: 0px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.mr10 {
  margin-right: 10px !important;
}

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

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

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

.border-bottom {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.alertRed {
  margin: 10px 0;
  background: #ff8f9a;
  padding: 10px;
  display: none;
}

.displayNone {
  display: none !important;
}

.st-disclaimer,
.st-logo {
  display: none !important;
}

.st-close img {
  margin-top: -2px;
}

.container,
.container-narrow {
  margin: 0 auto;
}

.container {
  max-width: 1180px;
}

.container-narrow {
  max-width: 870px;
}

@media only screen and (max-width: 1180px) {
  .container,
  .container-narrow {
    padding: 0 20px;
  }
}
.col1,
.col2,
.col3,
.col4,
.col5,
.col6,
.col7,
.col8,
.col9,
.col10,
.col11,
.col12 {
  position: relative;
  padding: 20px;
  flex: 1 1 100%;
  max-width: 100%;
}

@media only screen and (min-width: 480px) {
  .col3 {
    flex: 1 1 50%;
    max-width: 50%;
  }
}
@media only screen and (min-width: 768px) {
  .col1 {
    flex: 1 1 8.33%;
    max-width: 8.33%;
  }
  .col2 {
    flex: 1 1 16.66%;
    max-width: 16.66%;
  }
  .col4 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
  }
  .col5 {
    flex: 1 1 41.66%;
    max-width: 41.66%;
  }
  .col6 {
    flex: 1 1 50%;
    max-width: 50%;
  }
  .col7 {
    flex: 1 1 58.33%;
    max-width: 58.33%;
  }
  .col8 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
  }
  .col9 {
    flex: 1 1 75%;
    max-width: 75%;
  }
  .col10 {
    flex: 1 1 83.33%;
    max-width: 83.33%;
  }
  .col11 {
    flex: 1 1 91.63%;
    max-width: 91.63%;
  }
  .col12 {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
@media only screen and (min-width: 1024px) {
  .col3 {
    flex: 1 1 25%;
    max-width: 25%;
  }
}
.row {
  margin: 0 -20px;
  display: flex;
  flex-wrap: wrap;
}

.flex {
  display: flex;
}

.flex-center {
  justify-content: center;
}

.flex-vertical-center {
  align-items: center;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-space-between {
  justify-content: space-between;
}

.flex-end {
  justify-content: flex-end;
}

.flex-column {
  flex-direction: column;
}

header {
  position: relative;
}
header .btn {
  color: #fff !important;
  margin-top: 0;
}
header .header-top {
  background: #00aaf0;
  color: #fff;
  font-size: 14px;
  padding: 10px 0;
}
header .header-top a {
  color: #fff;
}
header .header-top .logo {
  margin-right: 40px;
}
header .header-top .logo a {
  display: block;
}
header .header-top span {
  display: inline-block;
  margin-right: 15px;
}
header .header-top .socials {
  position: relative;
}
header .header-top .socials i {
  margin-left: 15px;
  font-size: 16px;
}
header .header-top .socials a:hover i {
  color: #212a53;
}
header .header-top .socials::after,
header .header-top .my-account::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 12px;
  background: #fff;
  margin: 0 15px;
}
header .header-top .language-switcher {
  margin-left: 20px;
}
header .header-top .language-switcher ul {
  list-style: none;
  position: relative;
}
header .header-top .language-switcher ul li img {
  display: block;
}
header .header-top .language-switcher ul .active-language {
  padding-right: 18px;
}
header .header-top .language-switcher .lang-submenu {
  display: none;
  position: absolute;
  top: 100%;
  z-index: 1999;
  padding: 8px 15px 0;
  right: 0;
  background-color: #009f8e;
}
header .header-top .language-switcher .lang-submenu li {
  margin-bottom: 8px;
}
header .header-top .language-switcher .lang-submenu li:hover {
  opacity: 0.7;
  transition: 0.3s ease-in-out;
}
header .header-top .language-switcher > ul > li:hover .lang-submenu {
  display: block;
}
header .header-top .language-switcher > ul::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0d7";
  position: absolute;
  top: 0;
  right: 0;
}
header .header-bottom {
  position: relative;
  background-color: #fff;
  padding: 20px 0;
  z-index: 1983;
}
header .header-bottom ul {
  list-style: none;
}
header .header-bottom ul.flex {
  justify-content: space-between;
  align-items: center;
}
header .header-bottom ul.flex li a {
  color: #212a53;
  font-size: 16px;
}
header .header-bottom ul.flex > li > a {
  font-weight: 600;
  z-index: 1983;
  position: relative;
}
header .header-bottom nav ul {
  /* li.has-children::after {
       font-family: "Font Awesome 5 Free";
       font-weight: 900;
       content: "\f078";
       display: inline-block;
       color: $green;
   }*/
}
header .header-bottom nav ul li.has-children:hover > .mega-menu {
  display: block;
}
header .header-bottom nav a:not(.btn):hover,
header .header-bottom nav li.active > a {
  color: #84bf41 !important;
}
header .header-bottom nav > ul .mega-menu {
  display: none;
  position: absolute;
  left: 0;
  width: 100%;
  right: 0;
  top: 49px;
  padding-top: 23px;
}
header .header-bottom nav > ul .mega-menu .sub-menu {
  display: flex;
  max-width: 1180px;
  margin: 0 auto;
}
header .header-bottom nav > ul .mega-menu .sub-menu li a {
  font-size: 14px;
  display: block;
  margin-right: 40px;
}
header .header-waves {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -20px;
  z-index: 119;
  width: 100%;
  transition: all 0.23s ease-in;
}
header .header-waves svg {
  width: 100%;
}
header .header-waves.submmenu-active {
  bottom: -40px;
}

/*responsive*/
@media only screen and (min-width: 1140px) {
  .desktop-hide {
    display: none !important;
  }
}
@media only screen and (max-width: 992px) {
  header .has-children {
    text-align: center;
  }
  header .has-children .submenu-opener {
    color: #84bf41;
    margin-left: 20px;
  }
  header .has-children .mega-menu.active {
    display: block !important;
  }
  header .has-children .mega-menu {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    padding-top: 8px !important;
    display: none;
  }
  header .has-children .mega-menu ul li a {
    margin-right: 0 !important;
  }
  header .has-children::after {
    display: none !important;
  }
  .mobile-hide {
    display: none !important;
  }
  .header-top {
    z-index: 2015;
    position: relative;
  }
  .header-top .logo {
    margin: 0 auto !important;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
  .header-top .container {
    align-items: center;
  }
  header .header-bottom {
    transition: all 0.23s ease-in;
    transform: translateY(-100%);
    height: auto;
    padding: 0 !important;
    overflow: hidden;
    position: absolute;
    top: 73px;
    left: 0;
    width: 100%;
  }
  header .header-bottom nav {
    padding: 20px 0;
  }
  header .header-bottom nav ul {
    flex-direction: column;
  }
  header .header-bottom nav ul li {
    margin: 10px 0;
  }
  .header-bottom.menu-open {
    transform: translateY(0);
  }
}
.mob-menu-bar {
  cursor: pointer;
  position: relative;
  background-color: transparent;
  border: 0;
  height: 40px;
  width: 40px;
  outline: 0;
}
.mob-menu-bar .bar1, .mob-menu-bar .bar2, .mob-menu-bar .bar3 {
  width: 29px;
  height: 3px;
  margin: 8px auto;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  background-color: #fff;
  display: block;
}
.mob-menu-bar.open .bar1 {
  transform: rotate(-45deg) translate(-9px, 6px);
}
.mob-menu-bar.open .bar2 {
  opacity: 0;
}
.mob-menu-bar.open .bar3 {
  transform: rotate(45deg) translate(-9px, -7px);
}

@media only screen and (max-width: 767px) {
  .logo-img {
    height: 36px;
    display: inline-block;
    vertical-align: middle;
  }
  header .header-top .count-items {
    margin-right: 0;
  }
  header .header-bottom {
    top: 60px;
  }
}
.footer {
  position: relative;
  font-size: 15px;
  background-color: #fff;
}
.footer .btn {
  color: #fff !important;
}
.footer ul {
  list-style: none;
}
.footer a {
  color: #212a53;
  font-size: 15px;
}
.footer a:hover {
  color: #84bf41;
}
.footer .footer-top {
  padding-top: 20px;
}
.footer .footer-top .footer-top-menu {
  max-width: 200px;
}
.footer .footer-top .footer-top-menu li {
  margin-bottom: 15px;
}
.footer .footer-top .footer-top-menu > li > a {
  font-weight: 600;
  text-transform: uppercase;
}
.footer .footer-top .footer-top-menu .submenu {
  margin-top: 15px;
}
.footer .footer-middle {
  margin-top: 40px;
}
.footer .footer-middle .container {
  padding-top: 40px;
  padding-bottom: 40px;
  border-top: 1px solid rgba(33, 42, 83, 0.2);
  border-bottom: 1px solid rgba(33, 42, 83, 0.2);
}
.footer .footer-middle .footer-column {
  margin: 20px 0;
  max-width: 265px;
}
.footer .footer-middle .footer-column h5 {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.27;
  margin-bottom: 20px;
}
.footer .footer-middle .footer-column:nth-child(2) {
  text-align: center;
}
.footer .footer-middle .stripe-footer {
  margin-bottom: 20px;
}
.footer .footer-bottom {
  font-size: 15px;
  opacity: 0.8;
  padding: 20px 0;
}
.footer .footer-bottom .footer-bottom-menu {
  display: flex;
}
.footer .footer-bottom .footer-bottom-menu li {
  position: relative;
  margin-left: 15px;
}
.footer .footer-bottom .footer-bottom-menu li::before {
  content: "";
  display: inline-flex;
  background: rgba(33, 42, 83, 0.8);
  width: 1px;
  height: 15px;
  position: relative;
  top: 2px;
  margin-right: 15px;
}

/* FOOTER HERO */
.footer-hero {
  position: relative;
}
.footer-hero img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.footer-shape {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
}
.footer-shape svg {
  width: 100%;
}
.footer-shape .footer-shape-small {
  display: none;
}

.footer-shape-top {
  top: -2px;
}

.footer-shape-bot {
  bottom: -7px;
}

/* end of FOOTER HERO */
/* FOOTER NEWSLETTER */
.footer-newsletter {
  background: #f8faec;
  position: relative;
  margin-top: 100px;
  align-items: center;
  padding: 0 20px;
}
.footer-newsletter img {
  display: block;
  margin: 20px;
  position: relative;
  z-index: 5;
}
.footer-newsletter .footer-newsletter_inner {
  max-width: 400px;
  margin: 20px;
}
.footer-newsletter .footer-newsletter_inner p {
  font-size: 18px;
}
.footer-newsletter .footer-newsletter_inner input:focus {
  outline: none !important;
}
.footer-newsletter .footer-newsletter_inner .newsletter-email {
  font-size: 15px;
  border: solid 1px #ccd2de;
  padding: 12px 15px;
  flex: 1;
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
}
.footer-newsletter .footer-newsletter_inner button {
  background-color: #84bf41;
  border: 1px solid #84bf41;
  padding: 12px 20px;
  height: 44px;
  font-size: 15px;
  color: #fff;
  cursor: pointer;
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
}
.footer-newsletter .footer-newsletter_inner button:hover {
  background-color: #9dcc67;
}
@media only screen and (min-width: 1200px) {
  [data-direction=rtl] .footer-newsletter {
    flex-direction: row-reverse;
  }
}
[data-direction=rtl] .footer-newsletter .footer-newsletter_inner {
  direction: rtl;
}
[data-direction=rtl] .footer-newsletter .newsletter-email {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
}
[data-direction=rtl] .footer-newsletter button {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
}

.footer-newsletter-shape {
  position: absolute;
  top: -80px;
  left: 0;
  width: 100%;
  z-index: -1;
}
.footer-newsletter-shape svg {
  width: 100%;
}
.footer-newsletter-shape .shape-small {
  display: none;
}

/* return to top button */
#return-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  z-index: 1983;
  background: #84bf41;
  padding: 1px 8px 3px;
  border-radius: 3px;
}

#return-to-top:hover {
  background-color: #9dcc67;
}

#return-to-top i {
  color: #84bf41;
  font-size: 28px;
}

/*** RESPONSIVE ***/
@media only screen and (max-width: 1140px) {
  .footer-bottom .container {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
  }
  .footer-bottom .container .footer-bottom-menu {
    flex-direction: column;
    align-items: center;
  }
  .footer-bottom .container .footer-bottom-menu li {
    margin: 10px 0 !important;
  }
  .footer-bottom .container .footer-bottom-menu li:last-child {
    margin-bottom: 20px !important;
  }
  .footer-bottom .container .footer-bottom-menu li::before {
    display: none;
  }
  .footer-slider .flex {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-slider .container .bullets-section {
    text-align: center;
    width: 100%;
    position: relative;
  }
  .footer-slider .container .bullets-section .section-title::before {
    background-position: center !important;
  }
}
@media only screen and (max-width: 768px) {
  .footer-middle .container,
  .footer-top .container,
  .footer-newsletter {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-newsletter {
    margin-top: 60px;
    padding-bottom: 40px;
  }
  .footer-newsletter::before {
    top: -48px;
  }
  .footer-shape svg {
    display: none;
  }
  .footer-shape .footer-shape-small {
    display: block;
  }
  .footer-newsletter-shape {
    top: -60px;
    z-index: 0;
  }
  .footer-newsletter-shape svg {
    display: none;
  }
  .footer-newsletter-shape .shape-small {
    display: block;
  }
  .newsletter-form {
    z-index: 19;
    position: relative;
  }
  .footer-slider .section-title {
    font-size: 26px;
  }
}
body {
  box-sizing: border-box;
}

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

.title-row {
  text-align: center;
  margin: 50px 0;
}
@media (max-width: 768px) {
  .title-row h1 {
    font-size: 36px;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.row .column {
  flex: 1;
  padding: 25px;
}
@media (max-width: 768px) {
  .row .column {
    flex: 100%;
  }
}

.row-photo-text .photo-column img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
.row-photo-text .text-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.row-photo-text .text-column p {
  margin: 10px 0;
}
.row-photo-text .text-column button {
  align-self: flex-start;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .row-photo-text .text-column h2 {
    font-size: 30px;
  }
  .row-photo-text .text-column button {
    align-self: center;
  }
}

.row-form .text-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.row-form .text-column ul {
  list-style: none;
  margin-left: 0px;
}
.row-form .text-column ul li {
  line-height: 1.56;
  position: relative;
  display: flex;
  break-inside: avoid-column;
  margin: 15px 0 0;
  color: #212a53;
}
.row-form .text-column ul li::before {
  content: "";
  background-color: #009f8e;
  width: 9px;
  height: 9px;
  display: inline-block;
  border-radius: 100%;
  position: relative;
  top: 6px;
  flex: 0 0 9px;
  max-width: 9px;
  margin-right: 15px;
}
.row-form .text-column ul li span {
  flex: 1;
}
.row-form .text-column ul li p {
  margin-bottom: 0;
}
.row-form .text-column h2 {
  margin-top: 0;
}
@media (min-width: 1024px) {
  .row-form .text-column {
    transform: translateY(-70px);
  }
}
.row-form .form-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.row-form .form-column form {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.row-form .form-column form label {
  margin-bottom: 5px;
}
.row-form .form-column form input,
.row-form .form-column form textarea {
  margin-bottom: 15px;
  padding: 10px;
  border-radius: 5px;
  font-size: 1em;
  width: 100%;
}
.row-form .form-column form button {
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  margin-top: 10px;
  align-self: center;
}
.row-form .form-column form .note {
  font-size: 0.8em;
  color: #212a53;
  margin-top: 10px;
  text-align: left;
}
.row-form .socials a {
  font-size: 36px;
  color: #000;
}

.footer-slider {
  padding: 50px 0;
}
.footer-slider .container {
  position: relative;
}
.footer-slider .bullets-section {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding-bottom: 20px;
  padding-top: 10px;
  text-align: center;
}
.footer-slider .square-circle::before {
  width: 70px;
  margin: 0 auto 10px;
}
.footer-slider .swiper-section {
  max-width: 940px;
  margin: 0 auto;
}
.footer-slider .swiper-container {
  flex: 1 1 100%;
  width: 100%;
  margin-left: 0;
}
.footer-slider .swiper-container .section-title {
  position: absolute;
  top: 0;
  max-width: 510px;
}
.footer-slider .swiper-container .swiper-slide img {
  border-top-left-radius: 30px;
  border-top-right-radius: 400px;
  border-bottom-left-radius: 90px;
  border-bottom-right-radius: 30px;
  height: 400px;
  width: 590px;
  object-fit: cover;
}
.footer-slider .swiper-container .swiper-slide .slide-text-box {
  padding-right: 20px;
  padding-top: 27px;
  padding-left: 20px;
  display: flex;
  align-items: flex-start;
  margin: 0 auto;
  max-width: 700px;
  text-align: left;
}
.footer-slider .swiper-container .swiper-slide .slide-text-box h3 {
  margin-top: 25px;
}
.footer-slider .swiper-container .swiper-slide .slide-text-box p {
  line-height: 28px;
}
.footer-slider .swiper-container .swiper-slide .slide-text-box::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f10d";
  display: inline-block;
  font-size: 23px;
  margin-right: 15px;
}
.footer-slider .swiper-container .swiper-slide .slide-text-box::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f10d";
  display: inline-block;
  font-size: 23px;
  margin-left: 15px;
  transform: rotate(180deg);
}
[data-direction=rtl] .footer-slider .swiper-container .swiper-slide .slide-text-box {
  text-align: right;
}
[data-direction=rtl] .footer-slider .swiper-container .swiper-slide .slide-text-box h3 {
  direction: rtl;
}
.footer-slider .swiper-pagination {
  bottom: 0;
  left: 0;
}
.footer-slider .swiper-arrow {
  background-color: transparent;
  outline: 0;
  border: 0;
  margin-top: -65px;
}
.footer-slider .swiper-arrow::after {
  color: #84bf41;
  font-size: 30px;
}
.footer-slider .swiper-arrow:hover::after {
  color: #212a53;
}

.footer-slider .swiper-pagination-bullet {
  width: 70px;
  height: 70px;
  opacity: 0.8;
  position: relative;
  background-color: transparent;
}
.footer-slider .swiper-pagination-bullet::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 7px;
  width: 56px;
  height: 56px;
  -webkit-transition: all 0.23s ease-in;
  transition: all 0.23s ease-in;
  border: 2px solid transparent;
  border-radius: 50%;
  background-color: #525c6e;
}

.footer-slider .swiper-pagination {
  display: flex;
  align-items: center;
}

.swiper-pagination-bullet:focus {
  outline: none !important;
}

.footer-slider .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  width: 70px;
  height: 70px;
  border-color: #84bf41;
  top: 0;
  left: 0;
  background-color: #00a3da;
}

@media only screen and (max-width: 992px) {
  .footer-slider .bullets-section {
    transform: translateX(0);
    position: relative;
    left: 0;
    top: 0;
    margin: 0 auto;
    z-index: 100;
  }
  .footer-slider .swiper-container .swiper-slide .slide-text-box {
    padding: 40px 80px 0;
  }
}
@media only screen and (max-width: 767px) {
  .footer-slider {
    position: relative;
    overflow: hidden;
    display: block;
    padding: 60px 0 30px;
  }
  .footer-slider .swiper-pagination {
    flex-wrap: wrap;
    transform: none;
    left: 0;
    position: relative;
    margin-bottom: 20px;
  }
  .footer-slider .swiper-pagination .swiper-pagination-bullet {
    margin: 0;
  }
  .footer-slider .swiper-arrow {
    top: 0;
    margin-top: 0;
  }
  .footer-slider .swiper-arrow:hover::after {
    color: #84bf41;
  }
  .footer-slider .swiper-button-prev {
    left: 40px;
  }
  .footer-slider .swiper-button-next {
    right: 40px;
  }
  .footer-slider .bullets-section {
    padding-bottom: 0;
  }
  .footer-slider .swiper-container .swiper-slide .slide-text-box {
    padding: 60px 0 0;
  }
  .footer-slider .swiper-pagination {
    display: inline-block;
    white-space: nowrap;
  }
  .footer-slider .swiper-pagination-bullet {
    width: 50px;
    height: 50px;
    display: inline-block;
    vertical-align: middle;
  }
  .footer-slider .swiper-pagination-bullet::after {
    width: 36px;
    height: 36px;
  }
  .footer-slider .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
    width: 50px;
    height: 50px;
  }
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  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-slider .slick-track,
.slick-slider .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;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  /* height: 100%; */
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-slide a {
  text-decoration: none;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-slide {
  padding: 10px;
}

.slick-slider {
  /* Remove border from the carousel */
  border: none;
  /* margin-bottom: 100px; */
}

.slick-bordered-item {
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px;
  max-width: 250px; /* Maximum width for bordered items */
  margin: 0 auto; /* Center the items horizontally */
  height: 250px; /* Set the height to match the max-width */
  display: flex; /* Use flexbox for centering */
  flex-direction: column; /* Stack content vertically */
  justify-content: space-between; /* Align content vertically */
}
@media only screen and (max-width: 768px) {
  .slick-bordered-item {
    height: 150px;
  }
}
.slick-bordered-item p svg {
  position: relative;
  top: 4px;
  right: 5px;
}

.slick-item img {
  width: calc(100% - 40px); /* Calculate width minus padding */
  box-sizing: border-box; /* Include padding in the width */
  border-radius: 5px;
  margin: auto; /* Center the image horizontally and vertically */
  display: block; /* Prevent extra space below the image */
}
@media only screen and (max-width: 768px) {
  .slick-item img {
    width: 100%;
  }
}

.slick-item p {
  font-size: 18px;
  text-align: center;
}

/**
 * Swiper 5.3.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://swiperjs.com
 *
 * Copyright 2014-2020 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: January 11, 2020
 */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-container-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-container-multirow-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-container-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

/* 3D Effects */
.swiper-container-3d {
  perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}

.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(-1 * var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-prev.swiper-button-white,
.swiper-button-next.swiper-button-white {
  --swiper-navigation-color: #ffffff;
}

.swiper-button-prev.swiper-button-black,
.swiper-button-next.swiper-button-black {
  --swiper-navigation-color: #000000;
}

.swiper-button-lock {
  display: none;
}

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white {
  --swiper-pagination-color: #ffffff;
}

.swiper-pagination-black {
  --swiper-pagination-color: #000000;
}

.swiper-pagination-lock {
  display: none;
}

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

/* Preloader */
:root {
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  */
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  animation: swiper-preloader-spin 1s infinite linear;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.delay1 {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.delay2 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.hero {
  position: relative;
  height: 80vh;
}
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.33);
}
.hero + .intro-section {
  padding-top: 0;
}
.hero img {
  display: block;
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.hero .hero_inner {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  padding: 95px 20px 20px;
  z-index: 40;
}
.hero .hero_inner h1 {
  max-width: 880px;
  color: #fff;
  text-align: center;
}
[data-direction=rtl] .hero .hero_inner h1 {
  text-align: right;
}

.hero-shape {
  position: absolute;
  left: 0;
  bottom: -8px;
  right: 0;
  z-index: 3;
  pointer-events: none;
}
.hero-shape svg {
  width: 100%;
}
.hero-shape .hero-shape-small {
  display: none;
}

.hero-shape-short {
  position: absolute;
  left: 0;
  bottom: -8px;
  display: none;
  z-index: 2;
  pointer-events: none;
}
.hero-shape-short svg {
  width: 100%;
}
.hero-shape-short .hero-shape-short-small {
  display: none;
}

.hero::before {
  content: "";
  position: absolute;
  bottom: 60px;
  right: 0;
  height: 240px;
  width: 151px;
  background: url(assets/images/triangle-orange.svg) no-repeat;
  z-index: 39;
  background-size: cover;
}

.short-hero .hero-shape {
  display: none;
}
.short-hero .hero-shape-short {
  display: block;
}

.hero.short-hero {
  height: 200px;
}
.hero.short-hero .hero_inner {
  padding-top: 15px;
  align-items: center;
}

.hero.short-hero::before {
  bottom: 0;
  height: 130px;
  width: 90px;
}

@media only screen and (max-width: 1200px) {
  .hero {
    height: 65vh;
  }
  .hero-shape {
    bottom: -2px;
  }
  .hero-shape svg {
    display: none;
  }
  .hero-shape .hero-shape-small {
    display: block;
  }
  .hero-shape-short {
    bottom: -2px;
  }
  .hero-shape-short svg {
    display: none;
  }
  .hero-shape-short .hero-shape-short-small {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .hero {
    height: 220px;
  }
  .hero h1 {
    font-size: 33px;
  }
  .hero .hero_inner {
    padding: 25px 20px 20px;
  }
  body .hero::before {
    bottom: 0px;
    right: 0;
    height: 149px;
    width: 103px;
  }
}
.intro-section {
  position: relative;
  padding: 60px 20px;
  background-color: #fff;
}
.intro-section#home-getting-started {
  padding: 70px 20px 90px;
}
.intro-section .intro-section_inner {
  max-width: 620px;
  margin: 0 auto;
  z-index: 40;
  position: relative;
  text-align: center;
}
.intro-section .intro-section_inner p {
  font-size: 18px;
  line-height: 1.61;
  opacity: 0.8;
}
[data-direction=rtl] .intro-section .intro-section_inner {
  text-align: right;
  direction: rtl;
}
.intro-section .section-title {
  margin-bottom: 30px;
}
.intro-section .section-title::before {
  background-position: center !important;
}

.intro-section::before {
  content: "";
  position: absolute;
  bottom: -80px;
  left: 0;
  height: 240px;
  width: 130px;
  background: url(assets/images/square-blue.svg) no-repeat;
  z-index: 39;
  background-size: cover;
  background-position: right;
}

#about-us-mission::after {
  content: "";
  position: absolute;
  left: 0;
  top: -65px;
  background: url(assets/images/footer-bottom.svg) no-repeat;
  background-size: cover;
  height: 69px;
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .intro-section {
    padding: 40px 20px;
  }
  .intro-section#home-getting-started {
    padding: 30px 20px;
  }
  #parties-camps-second-intro {
    margin-top: -100px;
  }
  #parties-camps-second-intro + .full-width-img-with-text {
    margin: 84px auto -20px;
  }
  .intro-section::before {
    bottom: -80px;
    height: 160px;
    width: 80px;
  }
  #about-us-mission::after {
    top: -65px;
    height: 69px;
    width: 100%;
  }
}
.benefits-section {
  position: relative;
  margin: 30px 0;
  padding: 20px;
}
.benefits-section .section-title {
  margin-bottom: 30px;
}
.benefits-section .section-title::before {
  background-position: center !important;
}
.benefits-section .benefits-section_intro {
  opacity: 0.8;
  font-size: 18px;
  max-width: 620px;
  margin: 0 auto 50px;
}
.benefits-section .benefit-column {
  flex: 1 1 260px;
  max-width: 260px;
  margin: 0 auto;
  text-align: center;
}
.benefits-section .benefit-column h3 {
  font-size: 36px;
  line-height: 0.83;
}
.benefits-section .benefit-column .img-wrap {
  position: relative;
  text-align: center;
  width: 185px;
  height: 185px;
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 20px;
}
.benefits-section .benefit-column .img-wrap img {
  display: block;
}
.benefits-section .benefit-column:nth-child(1) .img-wrap {
  background-color: #fae5ef;
}
.benefits-section .benefit-column:nth-child(1) ol li::before {
  border-color: #fae5ef;
  background-color: #fae5ef;
}
.benefits-section .benefit-column:nth-child(1) ol li span {
  border-color: #fae5ef;
}
.benefits-section .benefit-column:nth-child(2) .img-wrap {
  background-color: #d9f1ee;
}
.benefits-section .benefit-column:nth-child(2) ol li::before {
  border-color: #d9f1ee;
  background-color: #d9f1ee;
}
.benefits-section .benefit-column:nth-child(2) ol li span {
  border-color: #d9f1ee;
}
.benefits-section .benefit-column:nth-child(3) .img-wrap {
  background-color: #fcebdf;
}
.benefits-section .benefit-column:nth-child(3) ol li::before {
  border-color: #fcebdf;
  background-color: #fcebdf;
}
.benefits-section .benefit-column:nth-child(3) ol li span {
  border-color: #fcebdf;
}
.benefits-section ol {
  list-style: none;
  counter-reset: my-awesome-counter;
  text-align: left;
}
.benefits-section ol li {
  position: relative;
  counter-increment: my-awesome-counter;
  display: flex;
  margin-bottom: 10px;
  padding-left: 45px;
}
.benefits-section ol li::before {
  content: counter(my-awesome-counter);
  font-weight: bold;
  width: 45px;
  height: 100%;
  position: absolute;
  top: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  left: 0;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
.benefits-section ol li span {
  flex: 1;
  border: 1px solid;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.29;
  display: inline-flex;
  align-items: center;
  padding: 8px 15px;
  letter-spacing: -0.3px;
  min-height: 45px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
[data-direction=rtl] .benefits-section ol {
  direction: rtl;
  text-align: right;
}
[data-direction=rtl] .benefits-section ol li {
  padding-left: 0;
  padding-right: 45px;
}
[data-direction=rtl] .benefits-section ol li::before {
  left: auto;
  right: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
[data-direction=rtl] .benefits-section ol li span {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

/***** RESPONSIVE ******/
@media only screen and (max-width: 992px) {
  .benefits-section .container.flex {
    flex-wrap: wrap;
  }
  .benefits-section .container.flex .benefit-column {
    max-width: 100%;
    flex: 1 1 100%;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .benefits-section .benefit-column .img-wrap {
    width: 140px;
    height: 140px;
  }
  .benefits-section .benefit-column .img-wrap img {
    max-width: 60%;
    max-height: 60%;
    flex: 1 1 60%;
  }
}
.pricing-info-section {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 50px 0;
  margin: 80px 0;
}
.pricing-info-section .info-card {
  border-radius: 10px;
  background-color: #ffffff;
  padding: 30px;
  overflow: hidden;
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.05);
}
.pricing-info-section .info-card .age {
  border-right: 1px dashed rgba(0, 0, 0, 0.05);
  padding-right: 30px;
  margin-right: 30px;
}
.pricing-info-section .info-card .pricing-info p,
.pricing-info-section .info-card .pricing-info .small {
  color: rgba(33, 42, 83, 0.8);
}
.pricing-info-section .info-card .pricing-info p {
  font-size: 15px;
  margin-bottom: 15px;
}
.pricing-info-section .info-card .pricing-info .small {
  font-size: 14px;
}
.pricing-info-section .info-card .pricing-info h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1;
}
.pricing-info-section .info-card .pricing-info h4 span.price {
  color: #00a3da;
}
.pricing-info-section .info-card .pricing-info hr {
  display: block;
  height: 1px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
}

/*
.pricing-info-section::before {
	content: "";
	top: 0;
	left: 0;
	right: 0;
	background:url(assets/images/blue-shape-pricing-info.svg) no-repeat!important;
	background-size: cover!important;
	height: 600px;
    width: 100%;
    position: absolute;
    z-index: -1;
}*/
.pricing-info-section::before,
.pricing-info-section::after {
  content: "";
  background: url(assets/images/blue-shape-pricing-info.svg) no-repeat;
  background-size: cover;
  left: 0;
  right: 0;
  width: 100%;
  position: absolute;
  height: 230px;
  z-index: -1;
}

.pricing-info-section::before {
  background-position: top;
  top: -112px;
}

.pricing-info-section::after {
  background-position: bottom;
  top: 88px;
}

.classes-list {
  position: relative;
  margin-top: 70px;
  margin-bottom: 58px;
  background: #f4fcfe;
  padding-bottom: 120px;
  padding-top: 50px;
}
.classes-list .section-title::before {
  background-position: center;
}
.classes-list .classes-list_items {
  margin: 45px -10px 0;
  position: relative;
  z-index: 10;
  justify-content: center;
}
.classes-list .classes-list_items .classes-list_item {
  flex: 1 1 50%;
  max-width: 50%;
  padding: 10px;
}
.classes-list .classes-list_items .classes-list_item .classes-list_item_inner {
  position: relative;
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.05);
  background-color: #fff;
  padding: 34px 30px 110px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.classes-list .classes-list_items .classes-list_item .classes-list_item_inner .text-center:first-child {
  margin-bottom: 15px;
  border-bottom: 2px dashed #e9e9f4;
  padding-bottom: 15px;
}
.classes-list .classes-list_items .classes-list_item .classes-list_item_inner .text-center.btn-center {
  position: absolute;
  bottom: 40px;
  right: 0;
  left: 0;
  margin: 0 auto;
}
.classes-list .classes-list_items .classes-list_item .classes-list_item_inner h3 {
  font-size: 36px;
  line-height: 1.05;
  margin-bottom: 10px;
}
.classes-list .classes-list_items .classes-list_item .classes-list_item_inner h4 {
  font-size: 26px;
  font-weight: bold;
  line-height: 1.15;
}
.classes-list .classes-list_items .classes-list_item .classes-list_item_inner h5 {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.15;
}
.classes-list .classes-list_items .classes-list_item .classes-list_item_inner ul {
  list-style: none;
}
.classes-list .classes-list_items .classes-list_item .classes-list_item_inner ul.list-items {
  margin-top: 15px;
  margin-bottom: 15px;
  margin-left: 0px;
}
.classes-list .classes-list_items .classes-list_item .classes-list_item_inner ul:not(.list-items) {
  column-count: 2;
}
.classes-list .classes-list_items .classes-list_item .classes-list_item_inner ul li {
  font-weight: 600;
  line-height: 1.56;
  color: #525c6e;
  position: relative;
  display: flex;
  break-inside: avoid-column;
}
.classes-list .classes-list_items .classes-list_item .classes-list_item_inner ul li::before {
  content: "";
  background-color: #009f8e;
  width: 9px;
  height: 9px;
  display: inline-block;
  border-radius: 100%;
  position: relative;
  top: 6px;
  flex: 0 0 9px;
  max-width: 9px;
  margin-right: 15px;
}
.classes-list .classes-list_items .classes-list_item .classes-list_item_inner ul li span {
  flex: 1;
}
.classes-list .classes-list_items .classes-list_item .classes-list_item_inner ul li p {
  margin-bottom: 0;
}
.classes-list .classes-list_items .classes-list_item .classes-list_item_inner .btn {
  min-width: 260px;
}
[data-direction=rtl] .classes-list .classes-list_items .classes-list_item .classes-list_item_inner {
  text-align: right;
}
[data-direction=rtl] .classes-list .classes-list_items .classes-list_item .classes-list_item_inner ul {
  direction: rtl;
  text-align: right;
}
[data-direction=rtl] .classes-list .classes-list_items .classes-list_item .classes-list_item_inner li::before {
  margin-right: 0;
  margin-left: 15px;
}

.classes-list::before {
  content: "";
  position: absolute;
  top: -80px;
  right: 0;
  height: 240px;
  width: 130px;
  background: url(assets/images/circle-blue.svg) no-repeat;
  z-index: 9;
  background-size: cover;
  background-position: right;
  transform: rotate(180deg);
}

.shape-blue {
  position: absolute;
  top: -91px;
  left: 0;
  width: 100%;
}
.shape-blue svg {
  width: 100%;
}
.shape-blue .shape-blue-small {
  display: none;
}

.shape-blue-down {
  top: auto;
  bottom: -68px;
}

.classes-list.columns3 .classes-list_items .classes-list_item {
  max-width: 33.33%;
  flex: 1 1 33%;
}
.classes-list.columns3 .classes-list_items .classes-list_item ul {
  column-count: 1;
}

/***** RESPONSIVE ******/
@media only screen and (max-width: 992px) {
  .classes-list_items .classes-list_item {
    max-width: 100% !important;
    flex: 1 1 100% !important;
  }
  .classes-list_items .classes-list_item_inner {
    padding: 34px 30px 20px;
  }
  .classes-list_items .classes-list_item_inner .text-center.btn-center {
    position: relative;
    bottom: 0;
  }
  .shape-blue {
    top: -96px;
  }
  .shape-blue svg {
    display: none;
  }
  .shape-blue .shape-blue-small {
    display: block;
  }
  .shape-blue-down {
    top: auto;
    bottom: -16px;
  }
}
@media only screen and (max-width: 767px) {
  .classes-list {
    padding-top: 40px;
    padding-bottom: 60px;
  }
  .classes-list::before {
    height: 160px;
    width: 80px;
  }
}
.meet-team {
  position: relative;
  margin: 80px 0;
}
.meet-team .container > div {
  max-width: 50%;
  flex: 1 1 50%;
  padding: 25px;
}
.meet-team .container > div img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-top-left-radius: 30px;
  border-bottom-right-radius: 30px;
  border-top-right-radius: 115px;
  border-bottom-left-radius: 115px;
}
.meet-team .container .meet-team_text > div {
  margin-top: auto;
}
.meet-team .container .img-wrap {
  padding: 20px 40px;
}

/***** RESPONSIVE ******/
@media only screen and (max-width: 870px) {
  .meet-team .container > div {
    flex: 1 1 100% !important;
    max-width: 100% !important;
  }
}
.page-sections {
  position: relative;
  padding-top: 150px;
}
.page-sections .page-section {
  margin-bottom: 150px;
  position: relative;
  z-index: 40;
}
.page-sections .page-section .img-wrap {
  width: 480px;
  position: relative;
}
.page-sections .page-section .img-wrap img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-top-left-radius: 30px;
  border-top-right-radius: 100px;
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 100px;
}
.page-sections .page-section .img-wrap img.small-img {
  position: absolute;
  width: 250px;
  height: 235px;
  right: 50px;
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.05);
  bottom: -154px;
}
.page-sections .page-section .page-section_text {
  flex: 1;
}
.page-sections .page-section .page-section_text h2 {
  margin-bottom: 5px;
}
.page-sections .page-section .page-section_text h4 {
  font-size: 22px;
  font-weight: 600;
  opacity: 0.8;
  line-height: 1.33;
}
.page-sections .page-section .page-section_text p {
  margin-top: 30px;
  opacity: 0.8;
  font-size: 18px;
}
.page-sections .page-section:nth-child(even) {
  flex-direction: row-reverse;
}
.page-sections .page-section:nth-child(even) .img-wrap {
  border-top-left-radius: 30px;
  border-top-right-radius: 100px;
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 100px;
  margin-left: 80px;
}
.page-sections .page-section:nth-child(odd) .img-wrap {
  margin-right: 80px;
}

.page-sections::before {
  content: "";
  position: absolute;
  top: 380px;
  right: 0;
  height: 240px;
  width: 130px;
  background: url(assets/images/square-orange.svg) no-repeat;
  z-index: 39;
  background-size: cover;
  background-position: left;
  z-index: -1;
}

/***** RESPONSIVE ******/
@media only screen and (max-width: 992px) {
  .page-sections .page-section {
    flex-direction: column !important;
    align-items: center;
    text-align: center;
    margin-bottom: 80px;
  }
  .page-sections .page-section .img-wrap {
    width: 100%;
    margin: 20px !important;
  }
}
@media only screen and (max-width: 767px) {
  .page-sections {
    padding-top: 10px;
  }
  .page-sections + .footer-slider {
    padding-top: 10px;
  }
  .page-sections::before {
    height: 160px;
    width: 90px;
  }
}
.home-middle-section {
  position: relative;
  background-color: #f4fcfe;
  margin: 200px 0;
  padding: 50px 0;
}
.home-middle-section .col6.steam-classes {
  padding-right: 70px;
}
.home-middle-section .col6.steam-classes .badge-price {
  height: 145px;
}
.home-middle-section .text-box {
  flex: 1;
  margin-right: 18px;
}
.home-middle-section .text-box p {
  font-size: 18px;
}
.home-middle-section .text-box ul {
  list-style: none;
}
.home-middle-section .text-box ul li {
  position: relative;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 10px;
}
.home-middle-section .text-box ul li::before {
  content: "";
  display: inline-block;
  background: #84bf41;
  width: 7px;
  height: 7px;
  border-radius: 100%;
  position: relative;
  top: -2px;
  margin-right: 12px;
}
.home-middle-section .separator-line {
  margin: 50px 0;
  display: block;
}
.home-middle-section .img-wrap .badge-price.badge-long {
  background: url(assets/images/badge2.svg) no-repeat;
}
.home-middle-section .img-wrap .badge-price {
  color: #fff;
  background: url(assets/images/badge.svg) no-repeat;
  background-size: contain;
  width: 140px;
  height: 219px;
  padding: 25px 20px;
}
.home-middle-section .img-wrap .badge-price .separator-line-small {
  border-bottom: 1px dashed #fff;
  margin-bottom: 8px;
}
.home-middle-section .img-wrap .badge-price .small {
  font-size: 13px;
}
.home-middle-section .img-wrap .badge-price .price {
  font-size: 30px;
}
.home-middle-section .img-wrap .badge-price .price span:first-child {
  font-size: 20px;
  margin-right: 1px;
}
.home-middle-section .img-wrap .badge-price .price span:last-child {
  font-size: 17px;
  margin-left: 1px;
}
.home-middle-section .working-time {
  border-top: 1px solid rgba(82, 92, 110, 0.3);
}
.home-middle-section .working-time li {
  display: flex;
  justify-content: space-between;
  font-size: 20px;
  font-weight: bold;
  border-bottom: 1px dashed rgba(82, 92, 110, 0.3);
  padding: 20px 0;
  line-height: 1;
  margin-bottom: 0 !important;
}
.home-middle-section .working-time li span {
  font-weight: 400;
  font-size: 16px;
}
.home-middle-section .working-time li::before {
  display: none !important;
}
.home-middle-section .map {
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.05);
  margin-bottom: 35px;
}
.home-middle-section .map img {
  display: block;
}
.home-middle-section .contact-data a {
  color: #212a53;
}
.home-middle-section .contact-data .get-directions {
  color: #84bf41;
  margin-left: auto;
  text-decoration: underline;
}
.home-middle-section .contact-data i {
  font-size: 23px;
  margin-right: 10px;
}
.home-middle-section .contact-data .address {
  margin-bottom: 15px;
}
.home-middle-section .contact-data .address, .home-middle-section .contact-data .phone, .home-middle-section .contact-data .email {
  display: flex;
  align-items: center;
}
.home-middle-section .contact-data .phone {
  margin-right: 25px;
}

.home-middle-section::before,
.home-middle-section::after {
  content: "";
  background: url(assets/images/home/blue-shape.svg) no-repeat;
  background-size: cover;
  left: 0;
  right: 0;
  width: 100%;
  position: absolute;
  height: 115px;
}

.home-middle-section::before {
  background-position: top;
  top: -112px;
}

.home-middle-section::after {
  background-position: bottom;
  bottom: -112px;
}

@media only screen and (max-width: 768px) {
  .home-middle-section .col6 {
    padding: 20px !important;
  }
  .home-middle-section .text-box .flex {
    flex-direction: column;
    align-items: center;
  }
  .home-middle-section .text-box .flex a {
    margin: 10px;
  }
}
@media only screen and (max-width: 480px) {
  .home-middle-section .col6 {
    flex-direction: column-reverse;
  }
}
.colored-text-section {
  position: relative;
  background-color: #f4fcfe;
  margin: 200px 0;
  padding: 50px 0;
}
.colored-text-section .section-title::before {
  background-position: center !important;
}
.colored-text-section .text-intro {
  max-width: 620px;
  margin: 0 auto 60px;
}
.colored-text-section ul {
  list-style: none;
}
.colored-text-section ul li {
  position: relative;
  display: flex;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.32;
  border-bottom: 1px solid rgba(82, 92, 110, 0.2);
  padding: 15px 0;
}
.colored-text-section ul li span {
  flex: 1;
}
.colored-text-section ul li::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f00c";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background-color: #00a3da;
  width: 57px;
  height: 57px;
  color: #fff;
  margin-right: 23px;
}
.colored-text-section ul li:last-child {
  border-bottom: none;
}

.colored-text-section::before,
.colored-text-section::after {
  content: "";
  background: url(assets/images/home/blue-shape.svg) no-repeat;
  background-size: cover;
  left: 0;
  right: 0;
  width: 100%;
  position: absolute;
  height: 115px;
}

.colored-text-section::before {
  background-position: top;
  top: -112px;
}

.colored-text-section::after {
  background-position: bottom;
  bottom: -112px;
}

.steam-colored-boxes-section {
  position: relative;
  font-size: 18px;
}
.steam-colored-boxes-section p {
  opacity: 0.8;
}
.steam-colored-boxes-section img {
  margin: 30px 0 50px;
}
.steam-colored-boxes-section .colored-box.last-child::before {
  position: absolute;
  content: "";
  left: -64px;
  bottom: 3px;
  background: url("assets/images/repeat.svg") no-repeat;
  background-size: contain;
  width: 65px;
  height: 380px;
}
.steam-colored-boxes-section .steam-colored-boxes {
  padding: 20px 20px 20px 75px;
  text-align: center;
}
.steam-colored-boxes-section .steam-colored-boxes .colored-box {
  position: relative;
  margin-bottom: 50px;
  border-radius: 10px;
  padding: 15px 30px;
  border: 3px solid;
}
.steam-colored-boxes-section .steam-colored-boxes .colored-box h3 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 5px;
}
.steam-colored-boxes-section .steam-colored-boxes .colored-box p {
  font-weight: 600;
  margin-bottom: 0;
}
.steam-colored-boxes-section .steam-colored-boxes .colored-box-title {
  position: absolute;
  top: -160px;
  left: -80px;
  font-weight: 700;
  font-size: 26px;
  padding: 5px 20px;
  height: 50px;
  width: 60px;
  text-align: center;
  transform: rotate(90deg);
}
.steam-colored-boxes-section .steam-colored-boxes .colored-box-title span {
  transform: translate(-50%, -50%);
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0 auto;
  background-color: #fff;
  padding: 0 20px;
}
.steam-colored-boxes-section .steam-colored-boxes .colored-box::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 50px;
  background: rgba(82, 92, 110, 0.6);
  bottom: -53px;
  left: 50%;
  transform: translateX(-50%);
}
.steam-colored-boxes-section .steam-colored-boxes .colored-box:last-child::after {
  display: none;
}
.steam-colored-boxes-section .steam-colored-boxes .colored-box:nth-child(1) {
  border-color: rgba(159, 211, 150, 0.36);
  background-color: rgba(221, 241, 217, 0.36);
}
.steam-colored-boxes-section .steam-colored-boxes .colored-box:nth-child(2) {
  border-color: rgba(221, 188, 167, 0.36);
  background-color: rgba(250, 227, 210, 0.36);
}
.steam-colored-boxes-section .steam-colored-boxes .colored-box:nth-child(3) {
  border-color: rgba(227, 176, 199, 0.36);
  background-color: rgba(252, 226, 238, 0.36);
}
.steam-colored-boxes-section .steam-colored-boxes .colored-box:nth-child(4) {
  border-color: rgba(139, 206, 200, 0.36);
  background-color: rgba(220, 244, 241, 0.36);
}
.steam-colored-boxes-section .steam-colored-boxes .colored-box:nth-child(5) {
  border-color: rgba(219, 213, 132, 0.36);
  background-color: rgba(255, 251, 178, 0.36);
}
.steam-colored-boxes-section .steam-colored-boxes .colored-box:nth-child(6) {
  border-color: rgba(113, 182, 203, 0.36);
  background-color: rgba(216, 244, 253, 0.36);
}
[data-direction=rtl] .steam-colored-boxes-section .row {
  flex-direction: row-reverse;
}
[data-direction=rtl] [data-direction=rtl] .steam-colored-boxes-section .col6 > div {
  direction: rtl;
  text-emphasis: right;
}

@media only screen and (max-width: 768px) {
  .steam-colored-boxes-section .steam-colored-boxes {
    padding: 20px !important;
    flex: 1 1 76%;
    max-width: 76%;
    margin: 0 auto;
  }
  .steam-colored-boxes-section .steam-colored-boxes .colored-box h3 {
    font-size: 20px;
  }
}
.accordion-boxes-content {
  position: relative;
}
.accordion-boxes-content .section-title::before {
  background-position: center;
}
.accordion-boxes-content .accordion-boxes {
  margin-top: 60px;
  column-gap: 20px;
}
.accordion-boxes-content .accordion-boxes .accordion-box {
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.05);
  padding: 40px 30px 10px;
  text-align: center;
  background-color: #fff;
  margin-bottom: 20px;
  position: relative;
}
.accordion-boxes-content .accordion-boxes .accordion-box .accordion-box_content {
  display: none;
  position: absolute;
  z-index: 22;
  left: 0;
  right: 0;
  padding: 20px 25px;
  background-color: #fff;
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.05);
}
.accordion-boxes-content .accordion-boxes .accordion-box h4 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.5;
}
.accordion-boxes-content .accordion-boxes .accordion-box .trigger-accordion-box:hover,
.accordion-boxes-content .accordion-boxes .accordion-box .close-accordion-box:hover {
  color: #6a9934;
}
.accordion-boxes-content .accordion-boxes .accordion-box .trigger-accordion-box,
.accordion-boxes-content .accordion-boxes .accordion-box .close-accordion-box {
  color: #84bf41;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.23s ease-in;
}
.accordion-boxes-content .accordion-boxes .accordion-box .trigger-accordion-box b,
.accordion-boxes-content .accordion-boxes .accordion-box .close-accordion-box b {
  text-decoration: underline;
  font-weight: 400;
}
.accordion-boxes-content .accordion-boxes .accordion-box .trigger-accordion-box i,
.accordion-boxes-content .accordion-boxes .accordion-box .close-accordion-box i {
  margin-left: 7px;
}

.blue-shape-background {
  background-color: #f4fcfe;
  margin: 100px 0;
  padding: 60px 0;
  position: relative;
}
.blue-shape-background .intro-section {
  background-color: #f4fcfe;
}
.blue-shape-background#blue-shape-background + #gym-camps-list.classes-list {
  margin-top: -120px;
}

.party-accordions .accordion-box,
.camps-accordions .accordion-box,
.steam-accordions .accordion-box {
  padding-top: 0 !important;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}
.party-accordions .accordion-box .accordion-box_title,
.camps-accordions .accordion-box .accordion-box_title,
.steam-accordions .accordion-box .accordion-box_title {
  color: #fff;
  background-color: #00a3da;
  margin-left: -30px;
  margin-right: -30px;
  padding: 10px;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}
.party-accordions .accordion-box:nth-child(2) .accordion-box_title,
.camps-accordions .accordion-box:nth-child(2) .accordion-box_title,
.steam-accordions .accordion-box:nth-child(2) .accordion-box_title {
  background-color: #e7792c;
}
.party-accordions .accordion-box:nth-child(3) .accordion-box_title,
.camps-accordions .accordion-box:nth-child(3) .accordion-box_title,
.steam-accordions .accordion-box:nth-child(3) .accordion-box_title {
  background-color: #802b7c;
}

.camps-accordions .accordion-box_title {
  background-color: #009f8e !important;
}

.camps-accordions .separator-line {
  margin: 60px 0 20px;
}

.steam-accordions .accordion-box_title {
  background-color: #292c78 !important;
}

@media only screen and (min-width: 1025px) {
  .accordion-boxes-content .accordion-boxes {
    display: grid;
    grid-column-gap: 20px;
    grid-template-columns: auto auto auto;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .blue-shape-background {
    margin: 60px 0;
    padding: 20px 0 60px;
  }
}
@media only screen and (max-width: 767px) {
  .blue-shape-background {
    margin: 140px 0 80px;
    padding-top: 0;
  }
  .blue-shape-background#blue-shape-background + #gym-camps-list.classes-list {
    margin-top: -80px;
  }
}
.schedules {
  position: relative;
}
[data-page=calendar] .schedules {
  padding-bottom: 50px;
}
.schedules .section-title::before {
  background-position: center;
}
.schedules .schedules-nav {
  list-style: none;
  border-bottom: 2px solid #e9e9f4;
  margin: 50px 0;
  font-family: "Oduda";
}
.schedules .schedules-nav li {
  font-size: 25px;
  margin: 0 5px;
  padding: 15px 20px;
  line-height: 1;
  background-color: #e9e9f4;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  position: relative;
  bottom: -2px;
  cursor: pointer;
  transition: all 0.23s ease-in;
}
.schedules .schedules-nav li.active,
.schedules .schedules-nav li:hover {
  background-color: #84bf41;
  color: #fff;
}
.schedules .schedule-intro h5 {
  font-family: "Oduda";
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}
.schedules .schedule-intro p {
  opacity: 0.8;
  font-size: 18px;
}
.schedules .children-icons {
  align-items: flex-end;
}
.schedules .select-session {
  /* display: flex;
  flex-direction: column;
  justify-content: space-between; */
  margin: 30px 0;
}
.schedules .select-session .share-schedule {
  font-family: "Oduda";
  font-size: 20px;
  font-weight: 600;
  color: #84bf41;
  cursor: pointer;
  position: relative;
  align-self: flex-start;
}
.schedules .select-session .share-schedule [data-share] {
  position: absolute;
  top: 100%;
  left: 46%;
  border-radius: 5px;
  padding: 20px 20px 0;
  background-color: #e9e9f4;
  display: none !important;
}
.schedules .select-session .share-schedule [data-share] .st-btn {
  display: block !important;
  margin-bottom: 15px;
  width: 100%;
}
.schedules .select-session .share-schedule [data-share] .st-label {
  display: none;
}
.schedules .select-session .share-schedule:hover [data-share] {
  display: block !important;
}
.schedules .select-session .select-session_wrap span:not([class=label]) {
  display: block;
  font-family: "Oduda";
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
.schedules .range-slider {
  width: 400px;
  margin: 30px 0;
  /*.prefix__cls-1 {
  	fill:#802b7c;
  }*/
}
.schedules .range-slider h5 {
  font-family: "Oduda";
  font-size: 20px;
}
.schedules .range-slider .irs-single,
.schedules .range-slider .irs-from,
.schedules .range-slider .irs-to {
  background: url("assets/images/range-slider-pin.svg") no-repeat !important;
  background-size: contain !important;
  width: 29px;
  height: 35px;
  z-index: 1111;
  background-position-x: right !important;
  cursor: pointer;
}
.schedules .range-slider .irs-single::before {
  display: none;
}
.schedules .range-slider .irs--flat .irs-bar {
  background-color: #009f8e !important;
}
.schedules .range-slider .slider {
  -webkit-appearance: none;
  width: 100%;
  height: 10px;
  outline: none;
  transition: all 0.23s ease-in;
  background-color: #e9e9f4;
}
.schedules .range-slider .slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 40px;
  height: 59px;
  border: 0;
  background: url("assets/images/range-slider-pin.svg") no-repeat;
  background-size: contain;
  background-position: bottom left;
  cursor: pointer;
}
.schedules .range-slider .slider::-moz-range-thumb {
  width: 45px;
  height: 58px;
  border: 0;
  background: url("assets/images/range-slider-pin.svg") no-repeat;
  cursor: pointer;
}

.schedules-holder {
  position: relative;
  overflow: hidden;
}

.table-container {
  position: relative;
  z-index: 2000;
}

.th-day {
  display: block;
  font-size: 14px;
  line-height: 14px;
}

.holiday::after {
  content: "";
  display: block;
  z-index: 60;
  position: absolute;
  top: 100%;
  left: 0;
  width: calc(var(--width) * 100%);
  min-width: 100%;
  height: 100vh;
}
.holiday span {
  display: block;
  z-index: 50;
  color: #fff;
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  letter-spacing: 1.7px;
  position: absolute;
  top: 100%;
  left: 0;
  width: calc(var(--width) * 100%);
  min-width: 100%;
  /*height: 100vh;*/
  height: var(--max-height, 100vh); /* Default to 100vh if the variable is not set */
  background: repeating-linear-gradient(45deg, #aaaaaa, #aaaaaa 10px, #4b4b4b 10px, #4b4b4b 20px);
  opacity: 0.95;
}

table.class {
  width: 100%;
}
table.class th {
  font-family: "Oduda";
  font-size: 23px;
  line-height: 1.15;
  font-weight: bold;
}
table.class tr:first-child th:first-of-type {
  border-top-left-radius: 24px;
}
table.class tr:first-child th:last-of-type {
  border-top-right-radius: 24px;
}
table.class tr:last-child td:last-of-type {
  border-bottom-right-radius: 24px;
}
table.class .first-row {
  background-color: #fafafc;
}
table.class td, table.class th {
  width: 150px;
  padding: 15px;
  text-align: center;
  position: relative;
}
table.class td a, table.class th a {
  color: #212a53;
  font-weight: bold;
  display: block;
}
table.class .day {
  background-color: #fafafc;
  padding: 5px 3px;
  font-size: 12px;
}
table.class .class-name {
  background-color: #009f8e;
  color: #fff;
  text-align: left;
  width: 220px;
  position: relative;
  padding-right: 30px;
}
table.class .class-name b {
  position: absolute;
  right: -2px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 9px;
  max-width: 35px;
  text-align: center;
  background: url(assets/images/flower-badge.svg) no-repeat;
  background-size: contain;
  width: 50px;
  height: 36px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 1025px) and (min-width: 768px) {
  table.class .tbl-row td:last-child .tooltip__content {
    transform: translate3d(-80%, -10%, 0) !important;
  }
  table.class .tbl-row td:last-child .tooltip__content::before {
    left: 80%;
  }
}

@media only screen and (min-width: 768px) {
  .schedule-filter.display-none + .calendar-wrap {
    margin-top: 70px;
  }
}

.price-tag {
  margin: 10px 0;
}
.price-tag .price {
  text-align: right;
}

.colflex {
  flex: 1 1;
  min-width: 42%;
}

.colflexor {
  flex: 1 1;
  min-width: 16%;
  text-align: center;
  padding: 0 4px;
}

.table-dropdown {
  display: none;
}

.schedules-btn {
  display: none;
  margin: 0 auto;
  font-size: 25px;
  padding: 15px 20px;
  line-height: 1;
  background-color: #84bf41;
  color: #fff;
  position: relative;
  cursor: pointer;
  border-radius: 12px;
  border: 0;
  width: 100%;
  margin-bottom: 20px;
  font-weight: 700;
  font-family: "Oduda";
}

@media only screen and (min-width: 768px) {
  .btn-info {
    text-align: center;
    background: url(assets/images/flower-badge.svg) no-repeat;
    background-size: contain;
    width: 35px;
    height: 35px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    outline: 0;
    border: 0;
    font-size: 9px;
    padding: 4px;
  }
  .btn-info + .tooltip__content {
    transform: translate3d(-25%, -10%, 0) !important;
  }
  .btn-info + .tooltip__content::before {
    left: 25%;
  }
}
@media only screen and (min-width: 1025px) {
  .btn-info {
    width: 45px;
    height: 45px;
    font-size: 10px;
    padding: 5px;
  }
}

@media only screen and (min-width: 1025px) {
  .schedules {
    background-color: #fff;
    padding-top: 60px;
  }
}
@media only screen and (max-width: 992px) {
  .schedules-holder {
    overflow: visible;
  }
  .schedules {
    overflow: visible;
    min-height: 480px;
  }
  .schedules .calendar {
    padding: 0 10px;
  }
  .schedules .calendar > .flex {
    flex-direction: column;
  }
  .schedules .calendar .range-slider {
    order: 2;
  }
  .schedules .range-slider {
    width: 100%;
  }
  .schedules .select-session {
    display: block;
    position: relative;
    align-self: flex-start;
    width: auto;
  }
  .schedules .select-session .share-schedule {
    position: absolute;
    top: -35px;
    /* right: 0; */
  }
  .schedules .select-session_wrap {
    margin-bottom: 15px;
  }
  .schedules .select-session_wrap select {
    max-width: 100%;
  }
  .schedules .table-wrap {
    position: relative;
  }
  .schedules .table-wrap .class {
    position: relative;
  }
  .schedules .table-wrap .class th {
    padding: 12px 10px;
  }
  .schedules .table-wrap .first-row th {
    font-size: 16px;
  }
  .schedules .table-wrap .day {
    padding: 15px 5px;
  }
  .schedules .table-wrap .class-name {
    padding-right: 25px;
  }
  .schedules .table-wrap tr:first-child th:first-of-type {
    border-top-left-radius: 10px;
  }
  .schedules .table-wrap tr:first-child th:last-of-type {
    border-top-right-radius: 10px;
  }
  .schedules .table-wrap tr:last-child td:first-of-type {
    border-bottom-left-radius: 10px;
  }
  .schedules .table-wrap tr:last-child td:last-of-type {
    border-bottom-right-radius: 10px;
  }
  .schedules .table-container {
    position: relative;
  }
  .schedules .table-side {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 990;
    background-color: #009f8e;
    padding-top: 85px;
  }
  .schedules .table-item {
    background-color: #009f8e;
    color: #fff;
    text-align: left;
    width: 96px;
    border-top: 2px solid;
    padding: 15px;
  }
  .schedules .table-item h5 {
    font-size: 0.83em;
    margin: 2px 0;
    font-weight: bold;
  }
  .schedules select {
    font-size: 16px;
  }
  .calendar-details {
    margin: 20px 0;
  }
  .calendar-details .flex {
    flex-direction: column;
    padding: 0;
  }
  .calendar-details .campMob__container {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
  }
  .calendar-details .campMob__checkbox-item label {
    font-size: 16px;
    font-weight: 700;
  }
  .campMob__content {
    border-radius: 10px;
    border: 2px solid #009f8e;
    background-color: #009f8e;
    padding: 10px;
    position: relative;
    overflow: hidden;
  }
  .campMob__main-title {
    font-size: 16px;
    line-height: 18px;
    font-weight: 700;
    display: block;
    text-align: center;
    margin-bottom: 8px;
    color: #fff;
  }
  .campMob__title-desc {
    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
    display: block;
    text-align: center;
    color: #fff;
  }
  .campMob__row-inner {
    padding: 10px;
    margin: -10px -10px 15px;
  }
  .campMob__total-info {
    display: inline-block;
    font-weight: 700;
    font-size: 18px;
    line-height: 20px;
  }
  .btn-campMob {
    display: block;
    text-align: center;
    border-radius: 10px;
    padding: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .table-dropdown {
    display: block;
  }
  .table-dropdown-btn {
    display: block;
    width: 100%;
    padding: 20px 60px 20px 20px;
    background-color: #009f8e;
    color: #fff;
    border: 0;
    outline: 0;
    border-radius: 14px;
    font-size: 18px;
    position: relative;
    text-align: left;
    font-weight: 700;
    font-family: "Oduda";
  }
  .table-dropdown-btn::after {
    content: "";
    width: 14px;
    height: 14px;
    border-top: 3px solid #fff;
    border-left: 3px solid #fff;
    position: absolute;
    top: 18px;
    right: 22px;
    transform: rotate(-135deg);
    transition: 0.3s ease;
  }
  .table-dropdown-list {
    padding: 10px 0;
    border: 2px solid #009f8e;
    border-radius: 14px;
    padding: 15px;
    display: none;
  }
  .table-dropdown-btn-active::after {
    top: 24px;
    right: 22px;
    transform: rotate(45deg);
  }
  .table-dropdown-li {
    padding: 10px;
    display: block;
    border-radius: 14px;
  }
  .table-dropdown-li.active {
    color: #fff;
    background-color: #009f8e;
  }
  .schedules-btn {
    display: block;
    outline: 0;
    position: relative;
    text-align: left;
  }
  .schedules-btn::after {
    content: "";
    width: 14px;
    height: 14px;
    border-top: 3px solid #fff;
    border-left: 3px solid #fff;
    position: absolute;
    top: 17px;
    right: 22px;
    transform: rotate(-135deg);
    transition: 0.3s ease;
  }
  .schedules-btn-active::after {
    top: 24px;
    right: 22px;
    transform: rotate(45deg);
  }
  .schedules select {
    width: 100%;
    min-height: 48px;
  }
  .schedules .calendar {
    padding: 0;
  }
  .schedules .schedules-nav {
    display: none;
    overflow: hidden;
    margin-top: 0;
    position: absolute;
    top: 57px;
    left: 0;
    width: 100%;
    padding: 10px;
    background-color: #e9e9f4;
    border: 2px solid #84bf41;
    border-radius: 12px;
  }
  .schedules .schedules-nav li {
    border-radius: 12px;
  }
  .schedules .range-slider,
  .schedules .select-session {
    display: block;
    width: 100%;
  }
  .schedules-nav-wrap {
    position: relative;
    z-index: 100;
  }
  .table-class.class {
    display: block;
    overflow: hidden;
  }
  .table-class.class tbody, .table-class.class tr, .table-class.class td {
    display: block;
  }
  .table-class.class tr {
    display: none;
  }
  .table-class.class .class-name {
    width: 100%;
    margin-bottom: 30px;
  }
  .table-class.class .class-name .tooltip-container {
    position: relative;
  }
  .table-class.class .class-name .tooltip-container .tooltip {
    padding: 0;
  }
  .table-class.class .class-name .tooltip__content {
    display: none;
    padding-top: 20px;
    background-color: #009f8e;
  }
  .table-class.class .class-name .tooltip__content p {
    color: #fff;
  }
  .table-class.class td {
    width: 100%;
    border-radius: 10px;
    margin: 20px 0;
  }
  .table-class.class td:not(.class-name) {
    min-height: 140px;
  }
  .table-class.class .btn-info {
    position: absolute;
    top: -20px;
    right: 0;
    z-index: 99999;
    background-color: transparent;
    font-size: 16px;
    color: #fff;
    border: 0;
    outline: 0;
    text-decoration: underline;
    padding-right: 20px;
  }
  .table-class.class .btn-info::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    transform: rotate(-135deg);
    transition: 0.6s ease;
  }
  .table-class.class .btn-info.active::after {
    top: 7px;
    transform: rotate(45deg);
  }
  .table-class.class .first-row {
    display: none;
  }
  .table-class.class .btn-tooltip {
    padding: 10px;
  }
  .table-class.class .tooltip__content {
    width: 100% !important;
    position: relative;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    box-shadow: none;
    border-radius: 0;
  }
  .table-class.class .tooltip__content::before {
    display: none;
  }
  .table-class.class .tooltip__content > .container {
    padding: 0;
    flex-direction: column;
  }
  .table-class.class .tooltip__content .col12 {
    padding: 0;
  }
  .table-class.class .tooltip__content .col5 {
    padding: 0;
    order: 3;
  }
  .table-class.class .tooltip__content .or {
    text-align: center;
    transform: none;
    font-size: 15px;
    font-weight: 600;
    line-height: 2.4;
    color: #525c6e;
    padding: 10px 20px;
    order: 2;
  }
  .table-class.class .tooltip__content .or + .col5,
  .table-class.class .tooltip__content .or + .col6 {
    order: 1;
  }
  .table-class.class .tooltip-container {
    position: relative;
    transform: none;
  }
  .table-class.class .tooltip-container + .tooltip-container {
    padding: 20px 0 0px;
    margin-top: 40px;
  }
  .table-class.class .tooltip-container + .tooltip-container::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    width: calc(100% + 20px);
    height: 1px;
    background-color: #e9e9f4;
  }
  .table-class.class .tooltip-container.more-info {
    position: static;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    transform: none;
    display: block;
    width: 100%;
    height: auto;
    max-width: none;
    background: none;
  }
  .table-class.class .tooltip-container .tooltip {
    position: relative;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    transform: none;
    width: 100%;
    padding: 0 20px;
  }
  .table-class.class .tooltip-container .tooltip-time {
    position: relative;
    top: 0;
    right: 0;
    z-index: 99999;
    text-align: left;
    display: block;
    margin-bottom: 15px;
    cursor: pointer;
  }
  .table-class.class .slotDuration {
    width: 100%;
  }
  .table-class.class .day {
    background-color: #fff;
    overflow: hidden;
    border: 1px solid #e9e9f4;
    border-radius: 10px;
    position: relative;
    padding: 3px;
    font-size: 13px;
  }
  .table-class.class .day::before {
    text-transform: uppercase;
    background-color: #fafafc;
    color: #212a53;
    display: block;
    text-align: left;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.64;
    text-align: left;
    margin: -15px -20px 20px;
    padding: 13px 20px 15px 20px;
    border-bottom: 1px solid #e9e9f4;
  }
  .table-class.class .day:nth-child(2)::before {
    content: "Monday";
  }
  .table-class.class .day:nth-child(3)::before {
    content: "Tuesday";
  }
  .table-class.class .day:nth-child(4)::before {
    content: "Wednesday";
  }
  .table-class.class .day:nth-child(5)::before {
    content: "Thursday";
  }
  .table-class.class .day:nth-child(6)::before {
    content: "Friday";
  }
  .table-class.class .day:nth-child(7)::before {
    content: "Saturday";
  }
  .table-class.class .day:nth-child(8)::before {
    content: "Sunday";
  }
}
@media only screen and (max-width: 320px) {
  .schedules .select-session .share-schedule {
    top: -30px;
  }
}
.fc .fc-button-group > * {
  outline: 0;
  border: 0;
  background: #009f8e;
  color: #fff;
}
.fc .fc-button-group > * .fc-icon, .fc .fc-button-group > *.fc-month-button {
  color: #fff;
}

.fc-day-header.fc-widget-header {
  padding: 15px;
  text-align: center;
  background: #e9e9f4;
}

.fc-view-container *,
.fc-view-container ::after,
.fc-view-container ::before {
  box-sizing: border-box;
}

.fc.fc-rtl .fc-icon-left-single-arrow,
.fc.fc-rtl .fc-icon-right-single-arrow {
  transform: rotate(180deg);
}
.fc .fc-today-button {
  outline: 0;
  border: 0;
  background: #009f8e;
  color: #fff;
  height: 33px;
}
.fc .toolCal select {
  height: 40px;
}
.fc .fc-day {
  background-color: #fafafc;
}
.fc td.fc-today {
  background-color: #e9e9f4;
}
.fc .fc-widget-content .fc-day-grid-container {
  overflow: visible !important;
}
.fc .fc-basic-view .fc-day-top .fc-day-number {
  float: left;
  padding: 4px 8px;
  color: #212a53;
  font-weight: 600;
}
.fc .tooltip strong {
  font-weight: 700;
  white-space: break-spaces;
  background-color: transparent;
  color: #fff;
  text-decoration: underline;
}
.fc .tooltip strong span {
  display: block;
}
.fc .tooltip__content {
  max-width: 250px;
}
.fc .tooltip__content .toolCal strong {
  color: #212a53;
}
.fc .fc-event {
  background-color: #212a53 !important;
  border: 0 !important;
  padding: 6px;
  margin-bottom: 4px;
}
.fc a.fc-more {
  margin: 2px 8px;
}
.fc .fc-popover.fc-more-popover {
  border-radius: 15px;
}
.fc .fc-header.fc-widget-header {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  padding: 4px 4px 2px;
}
.fc .fc-state-default.fc-corner-right {
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
}
.fc .fc-state-default.fc-corner-left {
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}

.fc-toolbar.fc-header-toolbar {
  display: block;
  padding-top: 0;
  position: relative;
  margin-bottom: 0;
}

.fc-toolbar .fc-left {
  position: absolute;
  top: -52px;
  right: 0;
  left: auto;
}

.fc-toolbar .fc-center {
  display: block;
  width: 100%;
  background-color: #009f8e;
  min-height: 70px;
  padding: 14px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.fc-toolbar .fc-center h2 {
  float: none;
  color: #fff;
}

.fc-toolbar .fc-right {
  position: absolute;
  top: 0;
  right: 0;
  display: none;
}

.fc-button-group + .fc-state-default.fc-corner-left {
  min-width: 100px;
}
.fc-button-group .fc-button {
  height: 33px;
}

.fc-description {
  height: 33px;
  padding: 5px 5px 0;
}

.fc-event {
  cursor: pointer;
}

@media only screen and (max-width: 1024px) {
  .fc .tooltip {
    font-size: 12px;
  }
  .fc .fc-list-empty {
    font-size: 18px;
    padding: 20px;
    border-radius: 0 0 20px 20px;
  }
  .display-none + .calendar-wrap {
    margin-top: 70px;
  }
  .fc-description {
    height: 44px;
    padding: 9px 5px 0;
  }
}
@media only screen and (max-width: 767px) {
  .fc-description {
    height: 44px;
    padding: 9px 5px 0;
  }
  .display-none + .calendar-wrap {
    margin-top: 0;
  }
  .fc .fc-toolbar.fc-header-toolbar {
    padding-top: 62px;
  }
  .fc .fc-list-heading-main,
  .fc .fc-list-heading-alt {
    color: #212a53;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.64;
  }
  .fc .fc-event {
    background-color: #fff !important;
  }
  .fc .fc-event + .fc-event {
    border-top: 1px solid #525c6e !important;
  }
  .fc .fc-button {
    height: 44px;
    padding: 0 10px;
  }
  .fc .fc-button-group + .fc-state-default.fc-corner-left {
    float: right;
    min-width: 100px;
  }
  .fc .tooltip {
    font-size: 16px;
    line-height: 18px;
    text-align: left;
  }
  .fc .tooltip strong {
    display: block;
    padding: 15px 40px 0;
    color: #212a53;
    text-decoration: none;
  }
  .fc .tooltip strong span {
    display: inline-block;
  }
  .fc .tooltip .btn-tooltip {
    min-height: 42px;
  }
  .fc .tooltip__content {
    background-color: transparent;
    border-radius: 0;
    position: relative;
    left: 0;
    width: 100%;
    bottom: 0;
    pointer-events: initial;
    margin: 0;
    max-width: none;
    opacity: 1;
    box-shadow: none;
  }
  .fc .tooltip__content::after, .fc .tooltip__content::before {
    content: none;
  }
  .fc .fc-toolbar .fc-left {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: auto;
  }
}
.blog-list {
  margin-bottom: 0;
  margin-top: 0;
  padding-top: 100px;
}
.blog-list .shape-blue {
  display: none;
}
.blog-list + .footer-newsletter {
  margin-top: 0;
  z-index: 2;
}
@media only screen and (max-width: 1140px) {
  .blog-list {
    padding-bottom: 50px;
  }
  .blog-list + .footer-newsletter {
    margin-top: 20px;
  }
}

.blog-text ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

.blog-list-item .text-center > * {
  margin-bottom: 15px;
}

.blog-list-photo {
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
  z-index: 10;
}
.blog-list-photo img {
  display: block;
}
.blog-detail .blog-list-photo {
  border-radius: 20px;
}
@media only screen and (max-width: 767px) {
  .blog-list-photo {
    margin-bottom: 20px;
  }
}

.blogDetail:hover {
  cursor: pointer;
}

.body-content.contact-us-page {
  background-color: #f4fcfe;
  padding: 40px 0;
  position: relative;
}
.body-content.contact-us-page .intro-section {
  background-color: #f4fcfe;
}

.body-content.contact-us-page::before {
  content: "";
  position: absolute;
  bottom: 80px;
  right: 0;
  height: 300px;
  width: 130px;
  background: url(assets/images/triangle-double-orange.svg) no-repeat;
  z-index: 39;
  background-size: cover;
  background-position: left;
}

.contact-form {
  margin: 84px auto;
}
.contact-form .form {
  background-color: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.05);
}
.contact-form .form .btn {
  margin-top: 0;
  cursor: pointer;
}
.contact-form .col6 .small {
  font-size: 13px;
  margin-bottom: 25px;
  opacity: 0.5;
}
.contact-form .col6 img {
  object-fit: contain;
  width: 100%;
  display: block;
  border-radius: 20px;
  margin-bottom: 35px;
}
.contact-form .col6 .contact-data > div {
  margin-bottom: 20px;
  opacity: 0.8;
}
.contact-form .col6 .contact-data a {
  color: #212a53;
  font-size: 16px;
  line-height: 1.2;
}
.contact-form .col6 .contact-data i {
  font-size: 32px;
  margin-right: 10px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 27px;
}
.contact-form .col6 .contact-data span {
  flex: 1;
}
.contact-form .col6 .contact-data .flex {
  align-items: center;
}
.contact-form .col6 iframe {
  width: 100%;
  height: 500px;
  margin-bottom: 20px;
  border-radius: 20px;
}
[data-direction=rtl] .contact-form .form {
  direction: rtl;
  text-align: right;
}

input, textarea {
  font-family: "Montserrat", sans-serif;
  border-radius: 10px;
  border: solid 1px #ccd2de;
  background-color: #ffffff;
  width: 100%;
  padding: 13px 15px;
  -webkit-appearance: none;
  font-size: 15px;
}

input:focus, textarea:focus {
  outline: none !important;
  border: 1px solid #84bf41;
}

button {
  -webkit-appearance: none;
}

.form-item {
  margin-bottom: 30px;
}
.form-item select {
  width: 100%;
}

.form-wrap-justify .form-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: column;
}

.contact-form-center .form-item {
  flex: 1 1 50%;
  max-width: 50%;
  padding: 0 10px;
  margin-bottom: 20px;
}
.contact-form-center .form-item label {
  font-size: 20px;
  line-height: 22px;
}
.contact-form-center .form-item-full {
  flex: 1 1 100%;
  max-width: 100%;
}
.contact-form-center .errorMsg {
  padding-top: 8px;
  display: block;
}

.flatpickr-calendar .flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-calendar .flatpickr-months .flatpickr-next-month:hover svg {
  fill: #009f8e;
}
.flatpickr-calendar .flatpickr-day.selected, .flatpickr-calendar .flatpickr-day.startRange, .flatpickr-calendar .flatpickr-day.endRange, .flatpickr-calendar .flatpickr-day.selected.inRange, .flatpickr-calendar .flatpickr-day.startRange.inRange, .flatpickr-calendar .flatpickr-day.endRange.inRange, .flatpickr-calendar .flatpickr-day.selected:focus, .flatpickr-calendar .flatpickr-day.startRange:focus, .flatpickr-calendar .flatpickr-day.endRange:focus, .flatpickr-calendar .flatpickr-day.selected:hover, .flatpickr-calendar .flatpickr-day.startRange:hover, .flatpickr-calendar .flatpickr-day.endRange:hover, .flatpickr-calendar .flatpickr-day.selected.prevMonthDay, .flatpickr-calendar .flatpickr-day.startRange.prevMonthDay, .flatpickr-calendar .flatpickr-day.endRange.prevMonthDay, .flatpickr-calendar .flatpickr-day.selected.nextMonthDay, .flatpickr-calendar .flatpickr-day.startRange.nextMonthDay, .flatpickr-calendar .flatpickr-day.endRange.nextMonthDay {
  background: #84bf41;
  border-color: #84bf41;
}
.flatpickr-calendar .flatpickr-day.today {
  border-color: #84bf41;
}
.flatpickr-calendar .flatpickr-day.today:hover {
  background: #84bf41;
}

label {
  display: block;
  font-family: "Oduda";
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

input::placeholder,
textarea::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: rgba(33, 42, 83, 0.69);
  opacity: 0.69; /* Firefox */
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: rgba(33, 42, 83, 0.69);
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder { /* Microsoft Edge */
  color: rgba(33, 42, 83, 0.69);
}

.error {
  color: #dc143c !important;
  border: 1px solid #dc143c !important;
  padding: 13px;
}
.error::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #dc143c;
  opacity: 0.69; /* Firefox */
}
.error:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #dc143c;
}
.error::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #dc143c;
}

@media only screen and (max-width: 1025px) {
  .contact-form-center .form-wrap {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .contact-form-center .form-item {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
  }
  .contact-form-center .form-item .errorMsg {
    order: 4;
  }
  .contact-form-center .form-item .errorMsg + .flatpickr-mobile {
    color: #dc143c !important;
    border: 1px solid #dc143c !important;
  }
}
@media only screen and (max-width: 767px) {
  .contact-form {
    margin: 30px auto 10px;
  }
  .contact-form + .footer-slider {
    padding: 10px 0 10px;
  }
  .body-content.contact-us-page {
    padding: 0 0 40px;
  }
  .contact-form-center .flex.flex-space-between {
    display: block;
  }
  .contact-form-center .form-item,
  .contact-form-center .form-item-full {
    flex: none;
    max-width: 100%;
  }
  .flatpickr-input {
    min-height: 49px;
    font-size: 16px;
  }
  .flatpickr-calendar {
    width: 314px;
  }
}
.refer-friend p {
  margin-bottom: 5px;
}
.refer-friend .socials {
  position: relative;
}
.refer-friend .socials a {
  color: #fff;
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  margin: 10px;
  font-size: 25px;
}
.refer-friend .socials a.facebook {
  background-color: #3b5998;
}
.refer-friend .socials a.facebook:hover {
  background-color: #4c70ba;
}
.refer-friend .socials a.twitter {
  background-color: #55acee;
}
.refer-friend .socials a.twitter:hover {
  background-color: #83c3f3;
}
.refer-friend .socials a.instagram {
  background-color: #6a453b;
}
.refer-friend .socials a.instagram:hover {
  background-color: #8b5a4d;
}
.refer-friend .socials:after {
  content: "";
  position: absolute;
  top: 0;
  right: 40px;
  height: 100%;
  width: 15px;
  background: url(assets/images/vertical-wave-line.svg) no-repeat;
  background-size: cover;
  background-position: center;
}

.jobs-wrapper {
  margin-top: 80px;
  margin-bottom: 80px;
}
.jobs-wrapper h2 {
  font-size: 40px;
}
.jobs-wrapper h3 {
  font-size: 30px;
}
.jobs-wrapper .jobs ul {
  list-style: none;
}
.jobs-wrapper .jobs ul li {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.63;
  margin-bottom: 10px;
}
.jobs-wrapper .jobs ul li span {
  cursor: pointer;
  position: relative;
}
.jobs-wrapper .jobs ul li span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 1px;
  width: 0;
  transition: all 0.23s ease-in;
  background-color: #84bf41;
  display: inline-block;
}
.jobs-wrapper .jobs ul li span:hover::after {
  width: 100%;
}
.jobs-wrapper .jobs ul li.active span::after {
  width: 100%;
  right: 0;
}
.jobs-wrapper .jobs ul i {
  color: #84bf41;
  font-size: 14px;
}
.jobs-wrapper .job-descriptions {
  font-size: 18px;
  padding-top: 30px;
}
.jobs-wrapper .job-descriptions > div {
  display: none;
}
.jobs-wrapper .job-descriptions > div.active {
  display: block;
}
.jobs-wrapper .job-descriptions ul {
  margin: 20px 0 30px;
}

.our-team {
  position: relative;
  padding: 80px 0;
  background-color: #fff;
}
.our-team .section-title::before {
  background-position: center;
}
.our-team p {
  max-width: 830px;
  margin: 0 auto;
}
.our-team img {
  margin: 40px auto 0;
  width: 100%;
  max-width: 980px;
  border-top-right-radius: 100px;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 100px;
  border-bottom-right-radius: 30px;
}
.our-team ul {
  list-style: none;
  width: 70%;
  margin: 0 auto;
}
.our-team ul li {
  font-weight: 600;
  line-height: 1.56;
  color: #525c6e;
  position: relative;
  display: flex;
  break-inside: avoid-column;
}
.our-team ul li::before {
  content: "";
  background-color: #009f8e;
  width: 9px;
  height: 9px;
  display: inline-block;
  border-radius: 100%;
  position: relative;
  top: 6px;
  margin-right: 15px;
}
.our-team ul li span {
  flex: 1;
  text-align: left;
}
[data-direction=rtl] .our-team ul {
  direction: rtl;
  text-align: right;
}
[data-direction=rtl] .our-team ul li::before {
  margin-right: 0;
  margin-left: 15px;
}
@media only screen and (max-width: 1200px) {
  .our-team ul {
    width: 80%;
  }
}
@media only screen and (max-width: 767px) {
  .our-team ul {
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .our-team {
    padding: 20px 0 60px;
  }
}
.jobs-banner-wrapper .jobs-banner {
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.05);
  background-color: #009f8e;
  color: #fff;
  overflow: hidden;
  border-radius: 30px;
  min-height: 250px;
}
.jobs-banner-wrapper .jobs-banner img {
  object-fit: cover;
  max-width: 260px;
  flex: 1 1 260px;
}
.jobs-banner-wrapper .jobs-banner > .flex {
  padding: 30px;
}
.jobs-banner-wrapper .jobs-banner > .flex .jobs-banner_inner_text {
  max-width: 650px;
}
.jobs-banner-wrapper .jobs-banner > .flex .jobs-banner_inner_text h3 {
  font-size: 48px;
  line-height: 1.15;
}
.jobs-banner-wrapper .jobs-banner > .flex .jobs-banner_inner_text p {
  font-size: 20px;
  font-weight: 600;
}
.jobs-banner-wrapper .jobs-banner .banner-btn {
  background-color: #fff;
  color: #84bf41;
  border-radius: 100px;
  font-size: 18px;
  font-weight: 600;
  padding: 16px 30px;
}
.jobs-banner-wrapper .jobs-banner .banner-btn:hover {
  background-color: #e6e6e6;
}

@media only screen and (max-width: 992px) {
  .jobs-banner .flex {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .jobs-banner-wrapper .jobs-banner {
    min-height: auto;
    display: block;
  }
  .jobs-banner-wrapper .jobs-banner img {
    flex: none;
    max-width: 100%;
    width: 100%;
  }
  .jobs-banner-wrapper .jobs-banner .flex {
    padding: 10px 30px 30px;
  }
  .jobs-banner-wrapper .banner-btn {
    display: inline-block;
  }
}
.full-width-img-with-text {
  margin: 20px auto 80px;
  max-width: 1000px;
  padding: 0 20px;
  text-align: center;
}
.full-width-img-with-text img {
  border-radius: 20px 100px;
}
.full-width-img-with-text p {
  max-width: 900px;
  margin: 30px auto 0;
}

.my-account .fa-user::before {
  display: none;
}
.my-account + .footer-hero .footer-shape-top svg path {
  fill: #fff;
}
.my-account .col6 {
  padding: 110px 20px;
}
.my-account .col4 ul li {
  cursor: pointer;
}
.my-account .btn {
  cursor: pointer;
}
.my-account h4 {
  font-family: "Oduda";
  font-size: 24px;
  margin: 15px 0 25px;
  align-items: center;
}
.my-account h4 a {
  font-size: 14px !important;
}
.my-account h4 a.remove {
  color: #f75f5f;
}
.my-account h4 .remove b {
  color: #fff;
  background-color: #f75f5f;
  width: 20px;
  height: 20px;
  display: inline-flex;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
}
.my-account .add-new {
  font-family: "Oduda";
  font-weight: 600;
  line-height: 1;
}
.my-account .add-new b {
  color: #fff;
  background-color: #84bf41;
  width: 20px;
  height: 20px;
  display: inline-flex;
  border-radius: 100%;
  justify-content: center;
  line-height: 1;
}

.removeBtn {
  color: #fff;
  background-color: #f75f5f;
  border: none !important;
}
.removeBtn:hover {
  background-color: #f87777;
}

.my-acount-main-section {
  display: none;
}

.my-acount-main-section.active {
  display: block;
}

form {
  /*select {
  	width: 100%;
  }*/
  /*.half {
  	max-width: 49%;
  	flex: 1 1 49%;
  }

  .form-item-row {
  	display: flex;
  	justify-content: space-between;
  }*/
}

.form-item-row {
  display: flex;
  justify-content: space-between;
}

.half {
  max-width: 49%;
  flex: 1 1 49%;
}

/*Checkboxes styles*/
.checkbox {
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
}

input[type=checkbox] {
  display: none !important;
}

input[type=checkbox] + span,
input[type=checkbox] + label {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 20px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  line-height: 1.4;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  opacity: 0.89;
}

input[type=checkbox] + span::before,
input[type=checkbox] + label::before {
  content: "" !important;
  display: block !important;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 1px solid #c0c0c0;
  background-color: #e9e9e9;
  position: absolute;
  left: 0;
  top: 2px;
  opacity: 0.6;
  -webkit-transition: all 0.12s, border-color 0.08s;
  -o-transition: all 0.12s, border-color 0.08s;
  transition: all 0.12s, border-color 0.08s;
}

input[type=checkbox]:checked + span::before,
input[type=checkbox]:checked + label:before {
  width: 10px;
  top: -2px;
  left: 5px;
  border-radius: 0;
  opacity: 1;
  border-top-color: transparent !important;
  border-left-color: transparent !important;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  border-color: #4cd964;
  background-color: transparent;
}

body.active {
  overflow: hidden;
}

.modal.active {
  display: flex;
}

.modal {
  display: none;
  justify-content: center;
  align-items: center;
  min-width: 300px;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3000;
}
.modal .modal-background {
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.modal .modal-inner {
  z-index: 2015;
  position: relative;
  background-color: #fff;
  padding: 20px;
  width: 90%;
  max-width: 700px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  overflow: auto;
  max-height: 90%;
}
.modal .modal-inner h3 {
  align-items: center;
  line-height: 1.64;
  font-size: 22px;
  border-bottom: solid 1px #ccd2de;
  margin: 0 -20px 30px;
  padding: 0 20px 15px;
}
.modal .modal-inner h3 .modal-close {
  cursor: pointer;
}
.modal .modal-inner .modal-inner_body h4 + .form-item {
  margin-top: 30px;
}
.modal .modal-inner .form-btn-send {
  margin: -10px 0 5px;
  padding: 0;
}
.modal .modal-inner .form-btn-send .btn {
  text-align: center;
  margin: 0;
}
.modal .modal-inner .form-btn-send i {
  padding-right: 0;
}
[data-direction=rtl] .modal .modal-inner {
  direction: rtl;
  text-align: right;
}
[data-direction=rtl] .modal .form-btn-send .btn i {
  padding-right: 10px;
}
[data-direction=rtl] .modal .posCenter {
  margin: 0 auto;
  left: 0;
}

@media only screen and (max-width: 767px) {
  .modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
  }
  .half {
    max-width: 100%;
    flex: 1 1 100%;
  }
  .form-item-row {
    flex-direction: column;
  }
  .my-account .fa-user {
    font-size: 0;
  }
  .my-account .fa-user::before {
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    display: inline-block;
    font-size: 16px;
  }
}
.modal.add-to-cart .modal-inner {
  max-width: 390px;
}
.modal.add-to-cart .modal-inner_header span {
  display: flex;
  align-items: center;
}
.modal.add-to-cart .modal-inner_header span img {
  margin-right: 15px;
}
.modal.add-to-cart .modal-inner_body {
  color: #525c6e;
  padding: 0 20px;
}
.modal.add-to-cart .modal-inner_body b {
  font-family: 17px;
}
.modal.add-to-cart .modal-inner_body p {
  font-size: 16px;
}
.modal.add-to-cart .modal-inner_body .sum {
  justify-content: flex-end;
  color: #212a53;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 20px 38px 0;
  margin: 0 -40px;
}
.modal.add-to-cart .modal-inner_body .duration {
  padding-top: 20px;
}
.modal.add-to-cart .modal-inner_footer a.btn {
  width: 100%;
  border-radius: 6px;
}
.modal.add-to-cart .modal-inner_footer .cart-url {
  margin-top: 20px;
}
.modal.add-to-cart .modal-inner_footer .cart-url .btn-tooltip {
  display: block;
}
.modal.add-to-cart .modal-inner_footer .cart-url .fas {
  margin-right: 5px;
}
.modal.add-to-cart .modal-inner_footer .cart-url a {
  color: #212a53;
  font-family: "Oduda";
  font-size: 20px;
  font-weight: bold;
}
.modal.add-to-cart .modal-inner_footer .cart-url a:hover {
  color: #84bf41;
}

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

.border-bottom {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 767px) {
  .modal.add-to-cart .modal-inner_header span {
    padding-top: 40px;
  }
  .modal.add-to-cart .modal-inner_header span img {
    height: 36px;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
  }
  .modal.add-to-cart .modal-inner_header .modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
  }
}
.body-content {
  position: relative;
  overflow: hidden;
}

.cart-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 20px 0;
}
.cart-header h4 {
  font-size: 20px;
}

.cart-wrapper {
  padding: 50px 0;
}
.cart-wrapper .btn:not(.confirmData) {
  background-color: #e9e9f4;
  border: 1px solid #e9e9f4;
  color: #212a53;
}
.cart-wrapper .btn:not(.confirmData):hover {
  background-color: #212a53;
  border-color: #212a53;
  color: #fff;
}

.cart-sidebar h3 {
  font-size: 20px;
  font-weight: bold;
}
.cart-sidebar .cart-totals-row {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 600;
  padding: 15px 0;
}
.cart-sidebar .cart-totals-row.sum {
  font-size: 30px;
}
.cart-sidebar .info-box {
  color: #525c6e;
  font-size: 14px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 10px 15px;
  border-radius: 6px;
  display: inline-block;
}
.cart-sidebar a.btn {
  border-radius: 6px;
  width: 100%;
  margin-bottom: 30px;
}
.cart-sidebar .secure-checkout {
  font-weight: bold;
  line-height: 1.3;
  margin-top: 20px;
}
.cart-sidebar .secure-checkout .flex.flex-center {
  margin-bottom: 30px;
}
.cart-sidebar .secure-checkout .flex.flex-center img {
  margin-right: 10px;
}
.cart-sidebar .secure-checkout h6 {
  height: 30px;
}

.product-item-box {
  margin-bottom: 20px;
}
.product-item-box .product-item-box_header {
  color: #fff;
  background-color: #009f8e;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}
.product-item-box .product-item-box_header .service {
  display: flex;
}
.product-item-box .product-item-box_header .service .value {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  margin-left: 5px;
}
.product-item-box .product-item-box_header .fa-times {
  cursor: pointer;
  font-size: 23px;
  -webkit-text-stroke: 2px #009f8e;
}
.product-item-box .product-item-box_body {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 20px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.product-item-box .product-item-box_body select {
  width: 100%;
}
.product-item-box .product-item-box_body .quantity {
  margin: 0 15px;
}
.product-item-box .product-item-box_body .price {
  font-weight: 600;
}
.product-item-box .product-item-box_body .price .sum {
  justify-content: flex-end;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 10px;
  margin-top: 10px;
}
.product-item-box .product-item-box_body .price .sum .label {
  margin-right: 10px;
}
.product-item-box .product-item-box_body .children {
  margin-top: 10px;
  flex-wrap: wrap;
}
.product-item-box .product-item-box_body .children .childClass {
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.product-item-box .product-item-box_body .children .childClass input[type=text] {
  margin-right: 10px;
}
.product-item-box .product-item-box_body .children .childClass .fa-times {
  cursor: pointer;
}
.product-item-box .product-item-box_body .children .childClass > div {
  flex: 1 0 26%;
}
.product-item-box .product-item-box_body .children .childClass > .child {
  flex: 1 0 100%;
}
.product-item-box .product-item-box_body .children .childClass > .child .flex {
  flex-wrap: wrap;
}
.product-item-box .product-item-box_body .children .childClass > .child .flex input {
  flex: 1 1 calc(50% - 16px);
  max-width: calc(50% - 16px);
}
.product-item-box .product-item-box_body .addMore {
  flex: 1 0 90%;
}
.product-item-box .product-item-box_body > div {
  flex: 1 0 25%;
}
.product-item-box .label {
  font-size: 15px;
  font-weight: 600;
}

.quantity {
  width: 153px;
  flex: none !important;
}
.quantity span {
  cursor: pointer;
  width: 45px;
  height: 47px;
  color: #84bf41;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  background-color: #fafafc;
}
.quantity span:hover {
  background-color: #eaeaf2;
}
.quantity span.minus {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.quantity span.plus {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.quantity input[type=number]::-webkit-inner-spin-button,
.quantity input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.quantity input[type=number] {
  -moz-appearance: textfield;
  border-radius: 0;
  flex: 1;
  font-size: 18px;
  text-align: center;
  height: 47px;
}

.recommended-boxes {
  margin-top: 50px;
}
.recommended-boxes h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: bold;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 15px;
  margin-bottom: 20px;
}
.recommended-boxes .recommended-box {
  background-color: #009f8e;
  max-width: 49%;
  color: #fff;
  padding: 15px 20px;
  border-radius: 10px;
  flex: 1 1 100%;
}
.recommended-boxes .recommended-box > div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.recommended-boxes .recommended-box > div h4 {
  text-transform: uppercase;
  font-size: 16px;
}
.recommended-boxes .recommended-box .recommended-box-left a {
  background-color: #fff;
  color: #212a53;
  font-size: 14px;
  font-weight: bold;
  border-radius: 6px;
  padding: 6px 13px;
  margin-top: 20px;
}
.recommended-boxes .recommended-box .recommended-box-left a:hover {
  background-color: #ededed;
}
.recommended-boxes .recommended-box .recommended-box-right {
  font-size: 14px;
  text-align: right;
}
.recommended-boxes .recommended-box .recommended-box-right a {
  color: #fff;
  text-decoration: underline;
}
.recommended-boxes .recommended-box .recommended-box-right a:hover {
  text-decoration: none;
}

@media only screen and (max-width: 768px) {
  .product-item-box .product-item-box_body .children .childClass {
    display: block;
  }
  .product-item-box .product-item-box_body .price .sum {
    justify-content: space-between;
  }
  .product-item-box .product-item-box_body .quantity {
    display: flex;
    justify-content: space-between;
    width: auto;
  }
  .product-item-box .product-item-box_body .quantity > .flex {
    width: 153px;
  }
  .product-item-box .product-item-box_body .child {
    margin-top: 10px;
  }
  .cart-wrapper .col8,
  .cart-wrapper .col4 {
    max-width: 100%;
    flex: 1 1 100%;
  }
  .cart-wrapper {
    padding: 50px 20px;
    overflow: hidden;
  }
  .cart-wrapper .product-item-box .product-item-box_header {
    flex-wrap: wrap;
  }
  .cart-wrapper .product-item-box .product-item-box_header .service {
    order: 1;
  }
  .cart-wrapper .product-item-box .product-item-box_header .date-time {
    order: 3;
  }
  .cart-wrapper .product-item-box .product-item-box_header .fa-times {
    order: 2;
  }
  .cart-wrapper .product-item-box .product-item-box_body {
    display: flex;
    flex-direction: column;
  }
  .cart-wrapper .product-item-box .product-item-box_body > div {
    width: 100%;
  }
  .cart-wrapper .product-item-box .product-item-box_body .quantity {
    margin: 20px 0;
  }
  .cart-wrapper .product-item-box .product-item-box_body .quantity label {
    align-self: center;
  }
  .cart-wrapper .product-item-box .product-item-box_body .quantity label + .flex {
    flex: 1 1 160px;
    max-width: 160px;
  }
  .cart-wrapper .recommended-boxes > .flex {
    flex-direction: column;
  }
  .cart-wrapper .recommended-boxes > .flex .recommended-box {
    max-width: 100%;
    flex: 1 1 100%;
    margin-bottom: 20px;
  }
}
.vspace {
  margin: 10px 0;
}

.form-item.checkbox .checkBoxErr {
  display: inline-block;
}

.checkout-header {
  padding: 15px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.checkout-header .flex {
  align-items: center;
}

.checkout-wrapper .sign-in-box {
  background-color: rgba(0, 0, 0, 0.1);
  font-size: 16px;
  padding: 15px;
  margin-bottom: 70px;
}
.checkout-wrapper .sign-in-box a {
  text-decoration: underline;
}
.checkout-wrapper .sign-in-box a:hover {
  text-decoration: none;
}
.checkout-wrapper .steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 50px;
}
.checkout-wrapper .steps::before {
  content: "";
  position: absolute;
  width: 47%;
  height: 1px;
  border-top: 1px dashed #d7d9dd;
  left: 50px;
  top: 8px;
}
.checkout-wrapper .steps::after {
  content: "";
  position: absolute;
  width: 42%;
  height: 1px;
  border-top: 1px dashed #d7d9dd;
  right: 40px;
  top: 8px;
}
.checkout-wrapper .steps a {
  font-size: 21px;
  font-weight: 600;
  font-family: "Oduda";
  position: relative;
  text-align: center;
  display: inline-flex;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
  color: #212a53;
}
.checkout-wrapper .steps a::before {
  content: "";
  border-radius: 100%;
  width: 18px;
  height: 18px;
  background-color: #212a53;
  display: block;
  z-index: 3;
}
.checkout-wrapper .steps .payment,
.checkout-wrapper .steps .review {
  color: #d7d9dd;
}
.checkout-wrapper .steps .payment::before,
.checkout-wrapper .steps .review::before {
  background-color: #d7d9dd;
}
.checkout-wrapper .step-payment::before,
.checkout-wrapper .step-review::before {
  border-top: 1px dashed #212a53;
}
.checkout-wrapper .step-payment::after {
  border-top: 1px dashed #212a53;
}
.checkout-wrapper .step-payment a.payment::before,
.checkout-wrapper .step-review a::before {
  background-color: #212a53 !important;
  background: url(images/assets/check-circle.svg) no-repeat;
  background-size: contain !important;
}
.checkout-wrapper .step-review a.review {
  color: #212a53;
}
.checkout-wrapper .step-review a.review.payment {
  color: #d7d9dd;
}
.checkout-wrapper .step-review .payment::before {
  background-color: #d7d9dd !important;
}
.checkout-wrapper .step-payment a.payment,
.checkout-wrapper .step-payment a.review {
  color: #212a53;
}
.checkout-wrapper .step-payment .review::before {
  background-color: #212a53 !important;
}
.checkout-wrapper .order-summary {
  margin-bottom: 70px;
}
.checkout-wrapper .order-summary h4 {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.checkout-wrapper .order-summary .order-summary-item {
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 25px;
  margin-bottom: 30px;
}
.checkout-wrapper .order-summary .order-summary-item .label {
  font-size: 17px;
}
.checkout-wrapper .order-summary .order-summary-item .service .value {
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
  margin-left: 10px;
}
.checkout-wrapper .order-summary .order-summary-item .duration .label {
  font-weight: 600;
}
.checkout-wrapper .order-summary .order-summary-item .child {
  margin-top: 20px;
  font-size: 15px;
}
.checkout-wrapper .order-summary .order-summary-item .child input {
  margin-left: 10px;
}
.checkout-wrapper .order-summary .order-summary-item .quantity-value {
  font-weight: 600;
}
.checkout-wrapper .order-summary .order-summary-item .quantity-value span {
  font-weight: 400;
}
.checkout-wrapper .order-summary .order-summary-item .sum {
  justify-content: flex-end;
  /*border-top:1px solid rgba(0,0,0,0.1);*/
  margin-bottom: 15px;
  font-size: 17px;
  font-weight: bold;
}
.checkout-wrapper .order-summary .order-summary-item .contentRigh {
  justify-content: flex-end;
  font-size: 17px;
  font-weight: bold;
}
.checkout-wrapper .order-summary .order-summary-item .person-row {
  position: relative;
  margin-bottom: 20px;
}
.checkout-wrapper .order-summary .order-summary-item .person-row div {
  background: #fff;
  z-index: 1;
  position: relative;
}
.checkout-wrapper .order-summary .order-summary-item .person-row::before {
  content: "";
  height: 1px;
  width: 100%;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
}
.checkout-wrapper .summary-information h2 {
  font-size: 30px;
}
.checkout-wrapper .summary-information span.label {
  margin-right: 10px;
  font-size: 15px;
  font-weight: 600;
}

#card-number,
#user-name,
#card-expire,
#secret {
  padding-left: 50px;
}

#card-number {
  background: url(assets/images/pay.svg) no-repeat;
  background-position: 4% center;
}

#user-name {
  background: url(assets/images/user.svg) no-repeat;
  background-position: 5% center;
}

#card-expire {
  background: url(assets/images/calendar.svg) no-repeat;
  background-position: 10% center;
}

#secret {
  background: url(assets/images/lock-green.svg) no-repeat;
  background-position: 12% center;
}

#card {
  border-radius: 10px;
  border: solid 1px #ccd2de;
  padding: 13px 15px;
}

.not-active {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}

.payment-info h3 {
  font-size: 24px;
}
.payment-info .credit-card {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}
.payment-info .credit-card h3 {
  margin-bottom: 62px;
}

.order-summary.step-payment {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 30px;
  /*
  .person-row {
  	position: relative;
  	margin-bottom: 20px;

  	div {
  		background: #fff;
  		z-index: 1;
  		position: relative;
  	}
  }
  .person-row::before {
  	content: "";
  	height: 1px;
  	width: 100%;
  	border-bottom: 1px dashed rgba(0,0,0,0.1);
  	position: absolute;
  	left: 0;
  	right: 0;
  	bottom: 5px;
  }*/
}
.order-summary.step-payment h2 {
  font-size: 30px;
}

.cart-sidebar .form-item.checkbox {
  margin: 20px 0 10px;
}

.back-to-calendar {
  margin-top: 20px;
}
.back-to-calendar a {
  border-radius: 6px;
  min-width: 290px;
}
.back-to-calendar a i {
  margin-right: 10px;
}

@media only screen and (max-width: 767px) {
  .order-summary-item > .flex {
    flex-direction: column;
  }
}
.tooltip-container {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  text-align: center;
  position: relative;
  z-index: 50;
  margin-bottom: 10px;
}
.tooltip-container:not(.more-info) .tooltip__content::after {
  cursor: pointer;
}
@media only screen and (min-width: 768px) {
  .tooltip-container:hover {
    z-index: 99;
  }
}

.campDay .tooltip-container {
  margin-bottom: 0;
}

.tooltip-time {
  cursor: pointer;
}

.tooltip {
  display: block;
}
@media only screen and (min-width: 768px) {
  .tooltip:hover {
    color: #84bf41;
  }
  .tooltip:hover .tooltip__content {
    transform: translate3d(-50%, -10px, 0);
    opacity: 1;
    pointer-events: auto;
  }
  .tooltip:hover .tooltip__content .slotDuration {
    width: 100%;
    cursor: pointer;
  }
}
.tooltip__content {
  background-color: #fff;
  border-radius: 10px;
  color: #212a53;
  display: block;
  font-size: 14px;
  font-weight: normal;
  left: 50%;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  text-align: left;
  bottom: 80%;
  -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
  -moz-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
  -ms-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
  -o-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
  width: 450px;
  z-index: 9999;
}
.tooltip__content:before {
  border-color: transparent;
  border-top-color: #fff;
  border-style: solid;
  border-width: 10px;
  content: " ";
  display: block;
  height: 0;
  left: 50%;
  margin-left: -10px;
  position: absolute;
  bottom: -20px;
  width: 0;
}
.tooltip__content:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -20px;
  left: 50%;
  width: 70%;
  height: 20px;
  transform: translateX(-50%);
  border-radius: 0 0 70% 70%;
}
.tooltip__content:hover {
  opacity: 1;
  pointer-events: auto;
}
.tooltip__content .or {
  position: relative;
  -webkit-transform: translateY(30%);
  -moz-transform: translateY(30%);
  -ms-transform: translateY(30%);
  -o-transform: translateY(30%);
  transform: translateY(30%);
  padding: 20px 10px;
  text-align: center;
}
.tooltip__content p {
  margin-bottom: 15px;
  padding: 0 !important;
  font-size: 13px;
  line-height: 18px;
}
.tooltip__content p:last-child {
  margin-bottom: 0 !important;
}
.tooltip__content ul {
  padding-left: 20px;
}

.tooltip__checkbox-disabled {
  pointer-events: none;
}

.tooltip-holder {
  background-color: rgba(0, 159, 142, 0.9);
}

.tooltip-simple .tooltip-time {
  display: block;
  color: #fff;
}
.tooltip-simple .tooltip__content {
  padding: 15px;
}
.tooltip-simple .tooltip__row-wrap {
  text-align: center;
  position: relative;
}
.tooltip-simple .tooltip__row-wrap .btn-tooltip {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
  margin: 5px 0;
}
.tooltip-simple .tooltip__title-desc,
.tooltip-simple .tooltip__main-title {
  display: block;
  margin-bottom: 5px;
}
.tooltip-simple .tooltip__main-title {
  display: block;
  font-size: 18px;
  line-height: 20px;
}
.tooltip-simple .tooltip__title-desc {
  display: block;
  font-size: 14px;
  line-height: 16px;
}
.tooltip-simple .tooltip__main-title {
  font-weight: 700;
}
.tooltip-simple .container {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 12px 0;
  margin: 12px 0;
}
.tooltip-simple .tooltip__total-info {
  display: block;
  font-size: 18px;
  line-height: 20px;
  font-weight: 700;
  padding: 10px;
}
.tooltip-simple .tooltip__checkbox-item label {
  font-size: 14px;
  line-height: 18px;
}

.toolCal {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 20px;
  flex: 1 1 100%;
  max-width: 100%;
}
.toolCal select {
  height: 25px;
}

.fc-day-grid-event .fc-content, .fc-icon, .fc-row.fc-rigid, .fc-time-grid-event {
  overflow: visible;
}

#login_msg {
  display: none;
}

.posCenter {
  position: relative;
}

@media only screen and (min-width: 768px) {
  .posCenter {
    left: 25%;
  }
}
.errorMsg {
  color: #dc143c !important;
}

/*======================================
  Selectric v1.13.0
======================================*/
.selectric-wrapper {
  position: relative;
  cursor: pointer;
}

.selectric-responsive {
  width: 100%;
}

.selectric {
  border: 1px solid #DDD;
  border-radius: 10px;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.selectric .label {
  min-width: 230px;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
  padding: 10px 40px 10px 12px;
  font-size: 16px;
  line-height: 24px;
  color: #444;
  height: 45px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.selectric .button {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 38px;
  height: 100%;
  line-height: 38px;
  background-color: #F8f8f8;
  color: #BBB;
  text-align: center;
  font-size: 0;
  background: #fff url(assets/images/chevron-down.svg) no-repeat center center;
}

.selectric-focus .selectric {
  border-color: #aaaaaa;
}

.selectric-hover .selectric {
  border-color: #84bf41;
}

.selectric-hover .selectric .button {
  color: #a2a2a2;
}

.selectric-hover .selectric .button:after {
  border-top-color: #a2a2a2;
}

.selectric-open {
  z-index: 9999;
}

.selectric-open .selectric {
  border-color: #c4c4c4;
}

.selectric-open .selectric-items {
  display: block;
}

.selectric-disabled {
  filter: alpha(opacity=50);
  opacity: 0.5;
  cursor: default;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.selectric-hide-select {
  position: relative;
  overflow: hidden;
  width: 0;
  height: 0;
}

.selectric-hide-select select {
  position: absolute;
  left: -100%;
}

.selectric-hide-select.selectric-is-native {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.selectric-hide-select.selectric-is-native select {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  border: none;
  z-index: 1;
  box-sizing: border-box;
  opacity: 0;
}

.selectric-input {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 1px !important;
  height: 1px !important;
  outline: none !important;
  border: none !important;
  *font: 0/0 a !important;
  background: none !important;
}

.selectric-temp-show {
  position: absolute !important;
  visibility: hidden !important;
  display: block !important;
}

/* Items box */
.selectric-items {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #c4c4c4;
  z-index: -1;
  border-radius: 10px;
  overflow: hidden;
  overflow-y: auto;
  max-height: 162px;
}
@media only screen and (max-width: 991px) {
  .selectric-items {
    max-height: 142px;
  }
}

.selectric-items .selectric-scroll {
  height: 100%;
  overflow: auto;
}

.selectric-above .selectric-items {
  top: auto;
  bottom: 100%;
}

.selectric-items ul, .selectric-items li {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
  line-height: 20px;
  min-height: 20px;
}

.selectric-items li {
  display: block;
  padding: 10px 12px;
  color: #666;
  cursor: pointer;
}

.selectric-items li.selected {
  background: #E0E0E0;
  color: #444;
}

.selectric-items li.highlighted {
  background: #fff;
  color: #444;
}

.selectric-items li:hover {
  background: #84bf41;
  color: #fff;
}

.selectric-items .disabled {
  filter: alpha(opacity=50);
  opacity: 0.5;
  cursor: default !important;
  background: none !important;
  color: #666 !important;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.selectric-items .selectric-group .selectric-group-label {
  font-weight: bold;
  padding-left: 10px;
  cursor: default;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background: none;
  color: #444;
}

.selectric-items .selectric-group.disabled li {
  filter: alpha(opacity=100);
  opacity: 1;
}

.selectric-items .selectric-group li {
  padding-left: 25px;
}

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