/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #47b2e4;
  text-decoration: none;
}

a:hover {
  color: #73c5eb;
  text-decoration: none;
}

@font-face {
  font-display: block;
  font-family: "BrownPro-Light";
  src: url("../fonts/BrownPro-Light.woff2") format("woff2");
}

@font-face {
  font-display: block;
  font-family: "BrownPro-Regular";
  src: url("../fonts/BrownPro-Regular.woff2") format("woff2");
}

@font-face {
  font-display: block;
  font-family: "BrownPro-Bold";
  src: url("../fonts/BrownPro-Bold.woff2") format("woff2");
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Jost", sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #8B4AFF;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #8B4AFF;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #FF7F2C;
  width: 60px;
  height: 60px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 32px;
  color: #ffffff;
  line-height: 0;
}

.back-to-top:hover {
  background: rgba(255, 127, 44, 0.45);
  color: #000000;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header.header-scrolled,
#header.header-inner-pages {
  background: #dee2e6;
}

#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding-top: 10px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  width: 124px;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 40px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px 10px 30px;
  font: 16px "BrownPro-Regular";
  font-weight: 500;
  color: #8B4AFF;
  white-space: nowrap;
  transition: 0.3s;
  text-transform: uppercase;
}

@media (max-width: 575px) {
  .navbar {
    background-color: #ff7f2cc2;
    border-radius: 4px;
  }
}

#header.header-scrolled {
  .navbar a,
  .navbar a:focus {
    color: #000000;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #8B4AFF;
  }

  .navbar .getstarted:focus,
  .navbar .getstarted:hover {
    border: 2px solid #8B4AFF;
    color: #ffffff;
    background: #8B4AFF;
  }

}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #FF7F2C;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 50px;
  color: #8B4AFF;
  font-size: 14px;
  border: 2px solid #8B4AFF;
  font-weight: 600;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  border: 2px solid #FF7F2C;
  color: #ffffff;
  background: #FF7F2C;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(139, 74, 255, 0.53);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #37517e;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #814efa;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
  color: #37517e;
  width: fit-content;
  border: 2px solid #814efa;
}

.navbar-mobile .getstarted:focus {
  background: #814efa;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 80vh;
  background: url(../../public/img/home_background.png) #ffffff no-repeat center 85%;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: auto 100%;
}

#hero .container {
  padding-top: 100px;
}

#hero h1 {
  margin: 0 0 10px 0;
  font: 52px "BrownPro-Regular";
  font-weight: 700;
  line-height: 56px;
  color: #000000;
}

#hero h2 {
  margin-bottom: 10px;
  color: #000000;
  font: 24px "BrownPro-Light";
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

#hero h3 {
  color: #000000;
  font: 16px "BrownPro-Light";
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

#hero .btn-book-spot-now {
  font: 16px "BrownPro-Bold";
  letter-spacing: 1px;
  display: inline-block;
  padding: 20px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px 0 0 0;
  color: #fff;
  font-style: normal;
  font-weight: 500;
  line-height: 16px; /* 100% */
  background: #8B4AFF;
  text-transform: uppercase;
}

#hero .btn-book-spot-now:hover {
  color: #ffffff;
  background: #FF7F2C;
}

.register-marginTop {
  margin-top: 2%;
}

.scan-to-register-marginTop {
  margin-top: 4%;
  margin-left: 12%;
}

#her .scan-to-register {
  margin-top: 0;
  margin-bottom: 1rem;
  justify-content: center;
  display: flex;
  color: #fff;
  font: 12px "BrownPro-Bold";
}

#hero .scan-to-register-image {
 width: auto;
  height: 90%;
}

#hero .btn-scan-to-register i {
  line-height: 0;
  color: #fff;
  font-size: 32px;
  transition: 0.3s;
  margin-right: 8px;
}

#hero .btn-scan-to-register:hover i {
  color: #47b2e4;
}

#hero .scan-to-register-img {
  height: auto;
  width: 49%;
  justify-content: center;
  display: flex;
  padding: 5px;
  background: #fff;
  border-radius: 12px;
}

#hero .btn-scan-to-register {
  font: 16px "BrownPro-Bold";
  display: flex;
  align-items: center;
  transition: 0.5s;
  margin: 10px 0 0 25px;
  color: #fff;
  line-height: 1;
  justify-content: center;
  text-transform: uppercase;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 991px) {
  #hero {
    height: 100vh;
    text-align: center;
    background-size: cover;
  }

  #hero .animated {
    animation: none;
  }

  #hero .hero-img {
    text-align: center;
  }

  #hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 10px;
  }

  #hero .hero-img img {
    width: 70%;
  }

  .scan-to-register-marginTop {
    margin-top: 4%;
    margin-left: 0;
  }
}

@media (max-width: 1024px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 10px;
  }

  #hero .hero-img img {
    width: 70%;
  }

  .scan-to-register-marginTop {
    margin-top: 4%;
    margin-left: 0;
  }

  #hero .register-marginTop {
    margin-top: 5%;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 40%;
  }

  #hero .btn-book-spot-now {
    font-size: 16px;
    padding: 18px 32px;
  }

  #hero .scan-to-register-img {
    width: 20%;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 0px 0;
  overflow: hidden;
}

.section-padding-top {
  padding-top: 30px;
  overflow: hidden;
}

.section-padding-bottom {
  padding-bottom: 30px;
  overflow: hidden;
}

.section-bg {
  background-color: #ADFCE8;
}

.section-bg-dark {
  background-color: #814efa;
}

.section-title {
  text-align: center;
  padding: 30px;
}

.section-title h2 {
  font: 32px "BrownPro-Bold";
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #814efa;
}

.section-title p {
  font: 16px "BrownPro-Regular";
  margin-bottom: 0;
}

.light-white {
  color: #fff !important;
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #814efa;
  bottom: 0;
  left: calc(50% - 20px);
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding: 60px 0;
  text-align: center;
}

.clients .display-center {
  justify-content: center;
}

.clients img {
  max-width: 56%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
  filter: grayscale(100);
}

.clients img:hover {
  filter: none;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .clients img {
    max-width: 40%;
  }
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .content {
  padding: 60px 100px 0 100px;
}

.why-us .content h3 {
  font-weight: 400;
  font: 34px "BrownPro-Bold";
  color: #37517e;
}

.why-us .content h4 {
  font: 20px "BrownPro-Regular";
  font-weight: 700;
  margin-top: 5px;
}

.why-us .content p {
  font-size: 15px;
  color: #848484;
}

.why-us .img {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.why-us .accordion-list {
  padding: 0 100px 60px 100px !important;
}

.why-us .accordion-list ul {
  padding: 0;
  list-style: none;
}

.why-us .accordion-list li+li {
  margin-top: 15px;
  margin-bottom: 15px;
}

.why-us .accordion-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
}

.why-us .accordion-list a {
  display: block;
  position: relative;
  font: 16px "BrownPro-Bold";
  line-height: 24px;
  font-weight: 500;
  padding-right: 20px;
  outline: none;
  cursor: pointer;
  color: #8B4AFF;
}

.why-us .accordion-list {
  display: block;
  position: relative;
  font: 16px "BrownPro-Bold";
  line-height: 24px;
  font-weight: 500;
  padding-right: 5px;
  outline: none;
  cursor: pointer;
  color: #8B4AFF;
}

.why-us .accordion-list span {
  color: #000000;
  font-weight: 600;
  font-size: 18px;
  padding-right: 10px;
}

.why-us .accordion-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.why-us .accordion-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
  font: 16px "BrownPro-Regular";
}

.why-us .accordion-list .icon-show {
  display: none;
}

.why-us .accordion-list a.collapsed {
  color: #343a40;
}

.why-us .accordion-list a.collapsed:hover {
  color: #FF7F2C;
}

.why-us .accordion-list a.collapsed .icon-show {
  display: inline-block;
}

.why-us .accordion-list a.collapsed .icon-close {
  display: none;
}

.why-us .member .pic {
  overflow: hidden;
  width: 72px;
  border-radius: 50%;
}

.why-us .member .img-fluid {
  width: 100%;
  height: auto;
  object-fit: fill;
}

.why-us .member .member-info {
  padding: 10px 50px;
}

.why-us .member .member-info1 {
  padding: 10px 0px;
}

.why-us .member .member-info , .why-us .member .member-info1 h4  {
  font: 1rem "BrownPro-Bold";
  margin: 0;
  width: auto;
}

.why-us .member .member-info span, .why-us .member .member-info1 span {
  width: max-content;
  font: 0.8rem "BrownPro-Regular";
}

.why-us .member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.why-us .member .social a {
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 32px;
  height: 32px;
  background: #eff2f8;
  padding: 0;
}

.why-us .member .social a i {
  color: #37517e;
  font: 16px "BrownPro-Regular";
  margin: 0 2px;
  position: relative;
}

.why-us .member .social a:hover {
  background: #FF7F2C;
}

.why-us .member .social a:hover i {
  color: #000000;
}

.why-us .member .social a+a {
  margin-left: 8px;
}

@media (max-width: 1024px) {

  .why-us .content,
  .why-us .accordion-list {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

@media (max-width: 992px) {
  .why-us .img {
    min-height: 400px;
  }

  .why-us .content {
    padding-top: 30px;
  }

  .why-us .accordion-list {
    padding-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .why-us .img {
    min-height: 200px;
  }
  .why-us .member .member-info {
    padding: 10px 30px 10px 70px;
    width: 90%;
  }

  .why-us .member .member-info1 {
    padding: 10px 0px;
  }
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  position: relative;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 20px 30px;
  border-radius: 5px;
  background: #fff;
  transition: 0.5s;
}

.team .member .pic {
  overflow: hidden;
  width: 120px;
  border-radius: 50%;
}

.team .member .min-width {
  width: 95px !important;
}

.team .member .pic img {
  transition: ease-in-out 0.3s;
  width: auto;
  object-fit: cover;
}

.team .member:hover {
  transform: translateY(-10px);
}

.team .member .member-info {
  padding-left: 30px;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font: 16px "BrownPro-Bold";
  color: #8B4AFF;
}

.team .member span {
  display: block;
  font: 15px "BrownPro-Regular";
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

.team .member span::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #cbd6e9;
  bottom: 0;
  left: 0;
}

.team .member p {
  margin: 10px 0 0 0;
  font: 14px "BrownPro-Regular";
}

.team .member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.team .member .social a {
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 32px;
  height: 32px;
  background: #eff2f8;
}

.team .member .social a i {
  color: #37517e;
  font: 16px "BrownPro-Regular";
  margin: 0 2px;
}

.team .member .social a:hover {
  background: #FF7F2C;
  color: #ffffff;
}

.team .member .social a:hover i {
  color: #000000;
}

.team .member .social a+a {
  margin-left: 8px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 14px;
  background: #814efa;
}

#footer .footer-bottom {
  padding-top: 30px;
  padding-bottom: 30px;
  color: #fff;
}

#footer .copyright {
  float: left;
  font: 14px "BrownPro-Bold";
}

#footer .credits {
  float: right;
  font: 13px "BrownPro-Bold";
}

#footer .credits a {
  transition: 0.3s;
  color: #FF7F2C;
}

@media (max-width: 768px) {
  #footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  #footer .copyright,
  #footer .credits {
    text-align: center;
    float: none;
  }

  #footer .credits {
    padding-top: 4px;
  }
}